1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00
osu-lazer/osu.Game/Overlays/Comments/Buttons/ShowRepliesButton.cs

32 lines
875 B
C#
Raw Normal View History

2020-07-11 12:47:17 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using Humanizer;
using osu.Framework.Bindables;
using osu.Framework.Input.Events;
2020-07-11 12:47:17 +08:00
namespace osu.Game.Overlays.Comments.Buttons
{
public class ShowRepliesButton : CommentRepliesButton
{
public readonly BindableBool Expanded = new BindableBool(true);
2020-07-11 12:47:17 +08:00
public ShowRepliesButton(int count)
{
2020-07-12 17:27:26 +08:00
Text = "reply".ToQuantity(count);
2020-07-11 12:47:17 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-07-14 08:01:14 +08:00
Expanded.BindValueChanged(expanded => SetIconDirection(expanded.NewValue), true);
}
protected override bool OnClick(ClickEvent e)
{
Expanded.Toggle();
return base.OnClick(e);
}
2020-07-11 12:47:17 +08:00
}
}