2021-04-30 10:43:05 +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-04-30 11:35:40 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-04-30 10:43:05 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-04-30 11:35:40 +08:00
|
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
2021-05-07 14:19:30 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-04-30 10:43:05 +08:00
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown
|
|
|
|
{
|
2021-05-07 14:19:30 +08:00
|
|
|
public abstract class OsuMarkdownListItem : CompositeDrawable
|
2021-04-30 10:43:05 +08:00
|
|
|
{
|
2021-04-30 11:35:40 +08:00
|
|
|
[Resolved]
|
|
|
|
private IMarkdownTextComponent parentTextComponent { get; set; }
|
|
|
|
|
2021-05-07 14:19:30 +08:00
|
|
|
public FillFlowContainer Content { get; private set; }
|
2021-04-30 11:12:43 +08:00
|
|
|
|
2021-05-07 14:19:30 +08:00
|
|
|
protected OsuMarkdownListItem()
|
2021-04-30 10:43:05 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2021-05-07 14:19:30 +08:00
|
|
|
}
|
2021-04-30 11:12:43 +08:00
|
|
|
|
2021-05-07 14:19:30 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2021-04-30 11:12:43 +08:00
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2021-05-07 14:19:30 +08:00
|
|
|
CreateMarker(),
|
2021-04-30 11:12:43 +08:00
|
|
|
Content = new FillFlowContainer
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Spacing = new Vector2(10, 10),
|
|
|
|
}
|
|
|
|
};
|
2021-04-30 10:43:05 +08:00
|
|
|
}
|
2021-04-30 11:35:40 +08:00
|
|
|
|
2021-05-07 14:19:30 +08:00
|
|
|
protected virtual SpriteText CreateMarker() => parentTextComponent.CreateSpriteText();
|
2021-04-30 10:43:05 +08:00
|
|
|
}
|
|
|
|
}
|