2019-01-24 16:43:03 +08:00
|
|
|
|
// 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;
|
2018-04-13 17:19:50 +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;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public class OsuContextMenu : OsuMenu
|
|
|
|
|
{
|
|
|
|
|
private const int fade_duration = 250;
|
|
|
|
|
|
|
|
|
|
public OsuContextMenu()
|
|
|
|
|
: base(Direction.Vertical)
|
|
|
|
|
{
|
|
|
|
|
MaskingContainer.CornerRadius = 5;
|
|
|
|
|
MaskingContainer.EdgeEffect = new EdgeEffectParameters
|
|
|
|
|
{
|
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
|
Colour = Color4.Black.Opacity(0.1f),
|
|
|
|
|
Radius = 4,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ItemsContainer.Padding = new MarginPadding { Vertical = DrawableOsuMenuItem.MARGIN_VERTICAL };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
BackgroundColour = colours.ContextMenuGray;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void AnimateOpen() => this.FadeIn(fade_duration, Easing.OutQuint);
|
|
|
|
|
protected override void AnimateClose() => this.FadeOut(fade_duration, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|