mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
94 lines
3.0 KiB
C#
94 lines
3.0 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
namespace osu.Game.Overlays.Wiki
|
|
{
|
|
public class WikiTableOfContents : CompositeDrawable
|
|
{
|
|
private readonly FillFlowContainer content;
|
|
|
|
private TableOfContentsEntry lastMainTitle;
|
|
|
|
private TableOfContentsEntry lastSubTitle;
|
|
|
|
public WikiTableOfContents()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
InternalChild = content = new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
};
|
|
}
|
|
|
|
public void AddEntry(string title, MarkdownHeading target, bool subtitle = false)
|
|
{
|
|
var entry = new TableOfContentsEntry(title, target, subtitle);
|
|
|
|
if (subtitle)
|
|
{
|
|
lastMainTitle.Margin = new MarginPadding(0);
|
|
|
|
if (lastSubTitle != null)
|
|
lastSubTitle.Margin = new MarginPadding(0);
|
|
|
|
content.Add(lastSubTitle = entry.With(d => d.Margin = new MarginPadding { Bottom = 10 }));
|
|
|
|
return;
|
|
}
|
|
|
|
lastSubTitle = null;
|
|
|
|
content.Add(lastMainTitle = entry.With(d => d.Margin = new MarginPadding { Bottom = 5 }));
|
|
}
|
|
|
|
private class TableOfContentsEntry : OsuHoverContainer
|
|
{
|
|
private readonly MarkdownHeading target;
|
|
|
|
private readonly OsuTextFlowContainer textFlow;
|
|
|
|
public TableOfContentsEntry(string text, MarkdownHeading target, bool subtitle = false)
|
|
{
|
|
this.target = target;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Child = textFlow = new OsuTextFlowContainer(t =>
|
|
{
|
|
t.Font = OsuFont.GetFont(size: subtitle ? 12 : 15);
|
|
}).With(f =>
|
|
{
|
|
f.AddText(text);
|
|
f.RelativeSizeAxes = Axes.X;
|
|
f.AutoSizeAxes = Axes.Y;
|
|
f.Margin = new MarginPadding { Bottom = 2 };
|
|
});
|
|
Padding = new MarginPadding { Left = subtitle ? 10 : 0 };
|
|
}
|
|
|
|
protected override IEnumerable<Drawable> EffectTargets => new Drawable[] { textFlow };
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider, OverlayScrollContainer scrollContainer)
|
|
{
|
|
IdleColour = colourProvider.Light2;
|
|
HoverColour = colourProvider.Light1;
|
|
Action = () => scrollContainer.ScrollTo(target);
|
|
}
|
|
}
|
|
}
|
|
}
|