1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 08:27:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/PageSelector/PageSelector.cs

93 lines
3.0 KiB
C#
Raw Normal View History

2019-09-07 12:31:07 +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 System.Linq;
2019-09-07 12:31:07 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Framework.Bindables;
namespace osu.Game.Graphics.UserInterface.PageSelector
2019-09-07 12:31:07 +08:00
{
public class PageSelector : CompositeDrawable
{
public readonly BindableInt CurrentPage = new BindableInt { MinValue = 0, };
2019-09-07 12:31:07 +08:00
public readonly BindableInt AvailablePages = new BindableInt(1) { MinValue = 1, };
private readonly FillFlowContainer itemsFlow;
2019-09-07 12:31:07 +08:00
private readonly PageSelectorPrevNextButton previousPageButton;
private readonly PageSelectorPrevNextButton nextPageButton;
2019-09-10 06:36:25 +08:00
public PageSelector()
2019-09-07 12:31:07 +08:00
{
AutoSizeAxes = Axes.Both;
2022-01-04 15:46:42 +08:00
InternalChild = new FillFlowContainer
2019-09-07 12:31:07 +08:00
{
AutoSizeAxes = Axes.Both,
2019-09-07 12:31:07 +08:00
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
previousPageButton = new PageSelectorPrevNextButton(false, "prev")
{
Action = () => CurrentPage.Value -= 1,
},
itemsFlow = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
},
nextPageButton = new PageSelectorPrevNextButton(true, "next")
{
Action = () => CurrentPage.Value += 1
}
}
2019-09-07 12:31:07 +08:00
};
}
protected override void LoadComplete()
{
base.LoadComplete();
CurrentPage.BindValueChanged(onCurrentPageChanged);
AvailablePages.BindValueChanged(_ => redraw(), true);
2019-09-07 12:31:07 +08:00
}
private void onCurrentPageChanged(ValueChangedEvent<int> currentPage)
2019-09-07 12:31:07 +08:00
{
if (currentPage.NewValue >= AvailablePages.Value)
2019-09-08 05:27:40 +08:00
{
CurrentPage.Value = AvailablePages.Value - 1;
2019-09-08 05:27:40 +08:00
return;
}
foreach (var page in itemsFlow.OfType<PageSelectorPageButton>())
page.Selected = page.PageNumber == currentPage.NewValue + 1;
2019-09-10 06:36:25 +08:00
previousPageButton.Enabled.Value = currentPage.NewValue != 0;
nextPageButton.Enabled.Value = currentPage.NewValue < AvailablePages.Value - 1;
2019-09-10 06:36:25 +08:00
}
2020-01-05 02:14:56 +08:00
private void redraw()
2019-09-10 06:36:25 +08:00
{
2020-01-05 02:14:56 +08:00
itemsFlow.Clear();
for (int i = 0; i < AvailablePages.Value; i++)
2020-01-05 02:14:56 +08:00
{
int pageIndex = i;
2020-01-05 02:14:56 +08:00
itemsFlow.Add(new PageSelectorPageButton(pageIndex + 1)
{
Action = () => CurrentPage.Value = pageIndex,
});
}
2020-01-05 02:14:56 +08:00
if (CurrentPage.Value != 0)
CurrentPage.Value = 0;
2020-01-05 03:25:08 +08:00
else
CurrentPage.TriggerChange();
}
2019-09-07 12:31:07 +08:00
}
}