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
|
|
|
|
|
|
|
|
|
using System;
|
2019-01-22 05:22:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
2018-06-28 04:04:39 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
|
|
|
{
|
|
|
|
|
public class OsuTextFlowContainer : TextFlowContainer
|
|
|
|
|
{
|
2019-02-28 04:31:40 +00:00
|
|
|
|
public OsuTextFlowContainer(Action<SpriteText> defaultCreationParameters = null)
|
|
|
|
|
: base(defaultCreationParameters)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override SpriteText CreateSpriteText() => new OsuSpriteText();
|
|
|
|
|
|
2018-06-28 04:04:39 +00:00
|
|
|
|
public void AddArbitraryDrawable(Drawable drawable) => AddInternal(drawable);
|
|
|
|
|
|
2019-03-27 10:29:27 +00:00
|
|
|
|
public IEnumerable<Drawable> AddIcon(IconUsage icon, Action<SpriteText> creationParameters = null) => AddText(icon.Icon.ToString(), creationParameters);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|