2018-04-13 17:19:50 +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 System;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestCaseTextAwesome : OsuTestCase
|
|
|
|
|
{
|
|
|
|
|
public TestCaseTextAwesome()
|
|
|
|
|
{
|
|
|
|
|
FillFlowContainer flow;
|
|
|
|
|
|
|
|
|
|
Add(new ScrollContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Child = flow = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Full,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
foreach (FontAwesome fa in Enum.GetValues(typeof(FontAwesome)))
|
|
|
|
|
flow.Add(new Icon(fa));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class Icon : Container, IHasTooltip
|
|
|
|
|
{
|
|
|
|
|
public string TooltipText { get; }
|
|
|
|
|
|
|
|
|
|
public Icon(FontAwesome fa)
|
|
|
|
|
{
|
|
|
|
|
TooltipText = fa.ToString();
|
|
|
|
|
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
Child = new SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
Icon = fa,
|
|
|
|
|
Size = new Vector2(60),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|