mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using OpenTK;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Screens.Select.Filter;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
public class TestCaseTabControl : TestCase
|
|
{
|
|
public override string Description => @"Filter for song select";
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
OsuSpriteText text;
|
|
OsuTabControl<GroupMode> filter;
|
|
Add(filter = new OsuTabControl<GroupMode>
|
|
{
|
|
Margin = new MarginPadding(4),
|
|
Size = new Vector2(229, 24),
|
|
AutoSort = true
|
|
});
|
|
Add(text = new OsuSpriteText
|
|
{
|
|
Text = "None",
|
|
Margin = new MarginPadding(4),
|
|
Position = new Vector2(275, 5)
|
|
});
|
|
|
|
filter.PinItem(GroupMode.All);
|
|
filter.PinItem(GroupMode.RecentlyPlayed);
|
|
|
|
filter.Current.ValueChanged += newFilter =>
|
|
{
|
|
text.Text = "Currently Selected: " + newFilter.ToString();
|
|
};
|
|
}
|
|
}
|
|
}
|