1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseTabControl.cs

43 lines
1.3 KiB
C#
Raw Normal View History

2017-03-08 17:19:00 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-03-15 11:30:42 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-08 17:19:00 +08:00
using osu.Framework.Graphics;
2017-03-08 17:19:00 +08:00
using osu.Game.Graphics.Sprites;
2017-03-16 08:11:50 +08:00
using osu.Game.Graphics.UserInterface;
2017-03-16 13:49:23 +08:00
using osu.Game.Screens.Select.Filter;
using OpenTK;
2017-03-08 17:19:00 +08:00
namespace osu.Desktop.Tests.Visual
2017-03-08 17:19:00 +08:00
{
public class TestCaseTabControl : OsuTestCase
2017-03-08 17:19:00 +08:00
{
public override string Description => @"Filter for song select";
public TestCaseTabControl()
2017-03-08 17:19:00 +08:00
{
OsuSpriteText text;
2017-03-16 08:11:50 +08:00
OsuTabControl<GroupMode> filter;
2017-03-16 13:49:23 +08:00
Add(filter = new OsuTabControl<GroupMode>
{
Margin = new MarginPadding(4),
2017-03-16 15:43:42 +08:00
Size = new Vector2(229, 24),
2017-03-16 13:49:23 +08:00
AutoSort = true
});
Add(text = new OsuSpriteText
2017-03-08 17:19:00 +08:00
{
2017-03-16 13:49:23 +08:00
Text = "None",
Margin = new MarginPadding(4),
Position = new Vector2(275, 5)
2017-03-08 17:19:00 +08:00
});
2017-03-15 10:46:13 +08:00
filter.PinItem(GroupMode.All);
filter.PinItem(GroupMode.RecentlyPlayed);
2017-03-15 10:46:13 +08:00
filter.Current.ValueChanged += newFilter =>
2017-03-08 17:19:00 +08:00
{
text.Text = "Currently Selected: " + newFilter.ToString();
2017-03-08 17:19:00 +08:00
};
}
}
}