1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00
osu-lazer/osu.Game/Overlays/Wiki/WikiSidebar.cs
Gagah Pangeran Rosfatiputra 41ec531bab
add subtitle toc
2021-06-04 11:12:42 +07:00

80 lines
2.5 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.
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;
using osu.Game.Graphics.Sprites;
namespace osu.Game.Overlays.Wiki
{
public class WikiSidebar : OverlaySidebar
{
private FillFlowContainer tableOfContents;
protected override Drawable CreateContent() => new FillFlowContainer
{
Direction = FillDirection.Vertical,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Children = new Drawable[]
{
new OsuSpriteText
{
Text = "CONTENTS",
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold),
},
tableOfContents = new FillFlowContainer
{
Direction = FillDirection.Vertical,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
}
},
};
public void AddToc(string title, MarkdownHeading heading, int level)
{
switch (level)
{
case 2:
tableOfContents.Add(new TocTitle(title));
break;
case 3:
tableOfContents.Add(new TocTitle(title, true));
break;
}
}
private class TocTitle : OsuHoverContainer
{
private readonly OsuSpriteText spriteText;
public TocTitle(string text, bool subtitle = false)
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Child = spriteText = new OsuSpriteText
{
Text = text,
Font = OsuFont.GetFont(size: subtitle ? 12 : 15),
};
}
protected override IEnumerable<Drawable> EffectTargets => new Drawable[] { spriteText };
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
IdleColour = colourProvider.Light2;
HoverColour = colourProvider.Light1;
}
}
}
}