1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-18 05:52:55 +08:00
osu-lazer/osu.Game.Tests/Visual/TestCaseClickableText.cs

41 lines
1.5 KiB
C#
Raw Normal View History

2018-07-22 14:28:12 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
using System;
using System.Collections.Generic;
namespace osu.Game.Tests.Visual
{
public class TestCaseClickableText : OsuTestCase
{
2018-07-22 15:31:51 +08:00
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(ClickableText), typeof(FillFlowContainer) };
2018-07-22 14:28:12 +08:00
2018-07-22 18:02:45 +08:00
ClickableText text;
2018-07-22 14:28:12 +08:00
2018-07-22 18:02:45 +08:00
protected override void LoadComplete()
{
using (var fillFlowContainer = new FillFlowContainer<ClickableText>
2018-07-22 15:31:51 +08:00
{
Direction = FillDirection.Vertical,
Children = new[]
{
new ClickableText{ Text = "Default", },
new ClickableText{ IsEnabled = false, Text = "Disabled", },
new ClickableText{ Text = "Without sounds", IsMuted = true, },
new ClickableText{ Text = "Without click sounds", IsClickMuted = true, },
new ClickableText{ Text = "Without hover sounds", IsHoverMuted = true, },
text = new ClickableText{ Text = "Disables after click (Action)", },
new ClickableText{ Text = "Has tooltip", TooltipText = "Yep", }
}
2018-07-22 18:02:45 +08:00
})
{
Add(fillFlowContainer);
}
2018-07-22 14:28:12 +08:00
text.Action = () => text.IsEnabled = false;
2018-07-22 18:02:45 +08:00
base.LoadComplete();
2018-07-22 14:28:12 +08:00
}
}
}