2021-05-07 14:20:06 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-05-07 14:20:06 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown
|
|
|
|
{
|
|
|
|
public class OsuMarkdownOrderedListItem : OsuMarkdownListItem
|
|
|
|
{
|
|
|
|
private const float left_padding = 30;
|
|
|
|
|
|
|
|
private readonly int order;
|
|
|
|
|
|
|
|
public OsuMarkdownOrderedListItem(int order)
|
|
|
|
{
|
|
|
|
this.order = order;
|
|
|
|
Padding = new MarginPadding { Left = left_padding };
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override SpriteText CreateMarker() => base.CreateMarker().With(t =>
|
|
|
|
{
|
|
|
|
t.X = -left_padding;
|
|
|
|
t.Text = $"{order}.";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|