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

46 lines
1.4 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
2017-03-16 13:49:23 +08:00
using OpenTK;
2017-03-08 17:19:00 +08:00
using osu.Framework.Graphics.Primitives;
using osu.Framework.Screens.Testing;
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;
2017-03-08 17:19:00 +08:00
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;
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.PinTab(GroupMode.All);
filter.PinTab(GroupMode.RecentlyPlayed);
2017-03-08 17:19:00 +08:00
filter.ValueChanged += (sender, mode) =>
{
2017-03-16 13:49:23 +08:00
text.Text = "Currently Selected: " + mode.ToString();
2017-03-08 17:19:00 +08:00
};
}
}
}