2019-05-13 16:14:52 +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.
|
2018-07-24 10:04:18 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Overlays.Changelog.Header;
|
2019-05-12 23:36:05 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-07-24 10:04:18 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
public class TestCaseTextBadgePair : OsuTestCase
|
|
|
|
|
{
|
|
|
|
|
public TestCaseTextBadgePair()
|
|
|
|
|
{
|
|
|
|
|
TextBadgePair textBadgePair;
|
|
|
|
|
|
2018-07-24 23:02:24 +08:00
|
|
|
|
Add(new Container
|
2018-07-24 10:04:18 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Width = 250,
|
|
|
|
|
Height = 50,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Colour = Color4.Gray,
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
textBadgePair = new TextBadgePair(Color4.DeepSkyBlue, "Test")
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep(@"Deactivate", textBadgePair.Deactivate);
|
|
|
|
|
AddStep(@"Activate", textBadgePair.Activate);
|
|
|
|
|
AddStep(@"Hide text", () => textBadgePair.HideText(200));
|
|
|
|
|
AddStep(@"Show text", () => textBadgePair.ShowText(200));
|
|
|
|
|
AddStep(@"Different text", () => textBadgePair.ChangeText(200, "This one's a little bit wider"));
|
|
|
|
|
AddStep(@"Different text", () => textBadgePair.ChangeText(200, "Ok?.."));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|