2017-02-07 12:59:30 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-03 18:13:10 +08:00
|
|
|
|
|
|
|
using OpenTK;
|
2017-02-03 18:23:14 +08:00
|
|
|
using OpenTK.Graphics;
|
2017-03-05 02:42:37 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2017-03-15 10:46:13 +08:00
|
|
|
using osu.Framework.Graphics.Transforms;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2017-02-03 18:13:10 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
{
|
|
|
|
public class OsuDropDownMenu<U> : DropDownMenu<U>
|
|
|
|
{
|
2017-03-09 18:50:00 +08:00
|
|
|
protected override DropDownHeader CreateHeader() => new OsuDropDownHeader();
|
2017-02-03 18:13:10 +08:00
|
|
|
|
|
|
|
public OsuDropDownMenu()
|
|
|
|
{
|
2017-02-04 15:05:24 +08:00
|
|
|
ContentContainer.CornerRadius = 4;
|
2017-02-03 18:23:14 +08:00
|
|
|
ContentBackground.Colour = Color4.Black.Opacity(0.5f);
|
2017-02-03 18:13:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void AnimateOpen()
|
|
|
|
{
|
|
|
|
ContentContainer.FadeIn(300, EasingTypes.OutQuint);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void AnimateClose()
|
|
|
|
{
|
|
|
|
ContentContainer.FadeOut(300, EasingTypes.OutQuint);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void UpdateContentHeight()
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
ContentContainer.ResizeTo(State == DropDownMenuState.Opened ? new Vector2(1, ContentHeight) : new Vector2(1, 0), 300, EasingTypes.OutQuint);
|
2017-02-03 18:13:10 +08:00
|
|
|
}
|
2017-03-14 21:39:57 +08:00
|
|
|
|
|
|
|
protected override DropDownMenuItem<U> CreateDropDownItem(string key, U value) => new OsuDropDownMenuItem<U>(key, value);
|
2017-02-03 18:13:10 +08:00
|
|
|
}
|
|
|
|
}
|