2019-10-13 19:43:30 +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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-10-13 19:43:30 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
|
|
|
|
using osu.Framework.Localisation;
|
2019-10-13 19:43:30 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2019-10-13 19:43:30 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Comments
|
|
|
|
|
{
|
|
|
|
|
public class CommentsShowMoreButton : ShowMoreButton
|
|
|
|
|
{
|
|
|
|
|
public readonly BindableInt Current = new BindableInt();
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
Current.BindValueChanged(onCurrentChanged, true);
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onCurrentChanged(ValueChangedEvent<int> count)
|
|
|
|
|
{
|
2022-01-28 12:53:48 +08:00
|
|
|
|
Text = new TranslatableString(@"_", "{0} ({1})",
|
|
|
|
|
CommonStrings.ButtonsShowMore.ToUpper(), count.NewValue);
|
2019-10-13 19:43:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|