mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
56 lines
1.7 KiB
C#
56 lines
1.7 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Screens.Edit.Components
|
|
{
|
|
/// <summary>
|
|
/// A sidebar area that can be attached to the left or right edge of the screen.
|
|
/// Houses scrolling sectionised content.
|
|
/// </summary>
|
|
internal class EditorSidebar : Container<EditorSidebarSection>
|
|
{
|
|
private readonly Box background;
|
|
|
|
protected override Container<EditorSidebarSection> Content { get; }
|
|
|
|
public EditorSidebar()
|
|
{
|
|
Width = 250;
|
|
RelativeSizeAxes = Axes.Y;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
background = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
new OsuScrollContainer
|
|
{
|
|
Padding = new MarginPadding { Left = 20 },
|
|
ScrollbarOverlapsContent = false,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = Content = new FillFlowContainer<EditorSidebarSection>
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
},
|
|
}
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
background.Colour = colourProvider.Background5;
|
|
}
|
|
}
|
|
}
|