2019-01-24 08:43:03 +00: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-04-13 09:19:50 +00:00
|
|
|
|
|
2017-06-12 16:58:32 +00:00
|
|
|
|
using System;
|
2021-08-01 15:12:04 +00:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2018-06-28 04:04:39 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-06-12 16:51:06 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-06-12 16:51:06 +00:00
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
|
|
|
{
|
2017-06-12 18:58:10 +00:00
|
|
|
|
public class OsuTextFlowContainer : TextFlowContainer
|
2017-06-12 16:51:06 +00:00
|
|
|
|
{
|
2019-02-28 04:31:40 +00:00
|
|
|
|
public OsuTextFlowContainer(Action<SpriteText> defaultCreationParameters = null)
|
|
|
|
|
: base(defaultCreationParameters)
|
2017-06-12 18:58:10 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-06-12 16:51:06 +00:00
|
|
|
|
protected override SpriteText CreateSpriteText() => new OsuSpriteText();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-08-01 15:12:04 +00:00
|
|
|
|
public ITextPart AddArbitraryDrawable(Drawable drawable) => AddPart(new TextPartManual(drawable.Yield()));
|
2018-06-28 04:04:39 +00:00
|
|
|
|
|
2021-08-01 15:12:04 +00:00
|
|
|
|
public ITextPart AddIcon(IconUsage icon, Action<SpriteText> creationParameters = null) => AddText(icon.Icon.ToString(), creationParameters);
|
2017-06-12 16:51:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|