1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-24 05:13:13 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/OsuContextMenu.cs

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

51 lines
1.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
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
2017-06-12 17:56:07 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
2019-11-08 10:13:53 +08:00
using osu.Framework.Graphics.UserInterface;
2018-04-13 17:19:50 +08:00
2017-06-12 17:56:07 +08:00
namespace osu.Game.Graphics.UserInterface
{
2017-08-28 13:42:52 +08:00
public partial class OsuContextMenu : OsuMenu
2017-06-12 17:56:07 +08:00
{
[Resolved]
private OsuMenuSamples menuSamples { get; set; } = null!;
2018-04-13 17:19:50 +08:00
public OsuContextMenu(bool playSamples)
: base(Direction.Vertical, topLevelMenu: false, playSamples)
2017-06-12 17:56:07 +08:00
{
2017-09-04 08:10:04 +08:00
MaskingContainer.CornerRadius = 5;
MaskingContainer.EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow,
Colour = Color4.Black.Opacity(0.1f),
Radius = 4,
};
2018-04-13 17:19:50 +08:00
2017-09-04 08:10:04 +08:00
ItemsContainer.Padding = new MarginPadding { Vertical = DrawableOsuMenuItem.MARGIN_VERTICAL };
MaxHeight = 250;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2022-01-15 08:06:39 +08:00
private void load(OsuColour colours)
{
BackgroundColour = colours.ContextMenuGray;
2021-08-06 19:59:26 +08:00
}
protected override void AnimateOpen()
{
if (PlaySamples && !WasOpened)
menuSamples.PlayClickSample();
2021-08-06 19:59:26 +08:00
base.AnimateOpen();
2021-08-06 19:59:26 +08:00
}
2019-11-08 10:13:53 +08:00
protected override Menu CreateSubMenu() => new OsuContextMenu(false); // sub menu samples are handled by OsuMenu.OnSubmenuOpen.
2017-06-12 17:56:07 +08:00
}
2018-01-05 19:21:19 +08:00
}