1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 17:17:25 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/Menus/EditorMenuBar.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

170 lines
5.6 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
2018-11-06 17:28:22 +08:00
using osu.Framework.Input.Events;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
2018-11-06 17:28:22 +08:00
namespace osu.Game.Screens.Edit.Components.Menus
{
2017-09-06 20:14:29 +08:00
public partial class EditorMenuBar : OsuMenu
{
2017-09-06 20:14:29 +08:00
public EditorMenuBar()
2017-09-07 19:36:32 +08:00
: base(Direction.Horizontal, true)
{
RelativeSizeAxes = Axes.X;
2018-04-13 17:19:50 +08:00
MaskingContainer.CornerRadius = 0;
ItemsContainer.Padding = new MarginPadding { Left = 100 };
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
BackgroundColour = colourProvider.Background3;
2017-09-06 20:14:29 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
protected override Framework.Graphics.UserInterface.Menu CreateSubMenu() => new SubMenu();
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
protected override DrawableMenuItem CreateDrawableMenuItem(MenuItem item) => new DrawableEditorBarMenuItem(item);
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
private partial class DrawableEditorBarMenuItem : DrawableOsuMenuItem
{
public DrawableEditorBarMenuItem(MenuItem item)
: base(item)
{
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
ForegroundColour = colourProvider.Light3;
BackgroundColour = colourProvider.Background2;
ForegroundColourHover = colourProvider.Content1;
BackgroundColourHover = colourProvider.Background1;
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
Foreground.Anchor = Anchor.CentreLeft;
Foreground.Origin = Anchor.CentreLeft;
}
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
protected override void UpdateBackgroundColour()
{
2017-09-06 20:14:29 +08:00
if (State == MenuItemState.Selected)
Background.FadeColour(BackgroundColourHover);
2017-09-06 20:14:29 +08:00
else
base.UpdateBackgroundColour();
}
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
protected override void UpdateForegroundColour()
{
2017-09-06 20:14:29 +08:00
if (State == MenuItemState.Selected)
Foreground.FadeColour(ForegroundColourHover);
2017-09-06 20:14:29 +08:00
else
base.UpdateForegroundColour();
}
2018-04-13 17:19:50 +08:00
protected override DrawableOsuMenuItem.TextContainer CreateTextContainer() => new TextContainer();
2018-04-13 17:19:50 +08:00
private new partial class TextContainer : DrawableOsuMenuItem.TextContainer
{
public TextContainer()
{
NormalText.Font = OsuFont.TorusAlternate;
BoldText.Font = OsuFont.TorusAlternate.With(weight: FontWeight.Bold);
}
}
2017-09-06 20:14:29 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
private partial class SubMenu : OsuMenu
{
public SubMenu()
: base(Direction.Vertical)
{
ItemsContainer.Padding = new MarginPadding();
MaskingContainer.CornerRadius = 0;
2017-09-06 20:14:29 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
BackgroundColour = colourProvider.Background2;
2017-09-06 20:14:29 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-06 20:14:29 +08:00
protected override Framework.Graphics.UserInterface.Menu CreateSubMenu() => new SubMenu();
2018-04-13 17:19:50 +08:00
protected override DrawableMenuItem CreateDrawableMenuItem(MenuItem item)
2017-09-06 20:14:29 +08:00
{
switch (item)
{
case EditorMenuItemSpacer spacer:
return new DrawableSpacer(spacer);
case StatefulMenuItem stateful:
return new EditorStatefulMenuItem(stateful);
default:
return new EditorMenuItem(item);
}
}
private partial class EditorStatefulMenuItem : DrawableStatefulMenuItem
{
public EditorStatefulMenuItem(StatefulMenuItem item)
: base(item)
{
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
BackgroundColour = colourProvider.Background2;
BackgroundColourHover = colourProvider.Background1;
Foreground.Padding = new MarginPadding { Vertical = 2 };
}
}
private partial class EditorMenuItem : DrawableOsuMenuItem
{
public EditorMenuItem(MenuItem item)
: base(item)
{
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
BackgroundColour = colourProvider.Background2;
BackgroundColourHover = colourProvider.Background1;
Foreground.Padding = new MarginPadding { Vertical = 2 };
}
}
2019-02-28 12:31:40 +08:00
private partial class DrawableSpacer : DrawableOsuMenuItem
{
public DrawableSpacer(MenuItem item)
: base(item)
{
Scale = new Vector2(1, 0.3f);
}
2018-04-13 17:19:50 +08:00
protected override bool OnHover(HoverEvent e) => true;
2019-02-28 12:31:40 +08:00
protected override bool OnClick(ClickEvent e) => true;
}
}
}
}