mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
256 lines
9.3 KiB
C#
256 lines
9.3 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Linq;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Graphics.Sprites;
|
|
using OpenTK;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class OsuDropdown<T> : Dropdown<T>, IHasAccentColour
|
|
{
|
|
private Color4 accentColour;
|
|
public Color4 AccentColour
|
|
{
|
|
get { return accentColour; }
|
|
set
|
|
{
|
|
accentColour = value;
|
|
updateAccentColour();
|
|
}
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
if (accentColour == default(Color4))
|
|
accentColour = colours.PinkDarker;
|
|
updateAccentColour();
|
|
}
|
|
|
|
private void updateAccentColour()
|
|
{
|
|
var header = Header as IHasAccentColour;
|
|
if (header != null) header.AccentColour = accentColour;
|
|
|
|
var menu = Menu as IHasAccentColour;
|
|
if (menu != null) menu.AccentColour = accentColour;
|
|
}
|
|
|
|
protected override DropdownHeader CreateHeader() => new OsuDropdownHeader();
|
|
|
|
protected override DropdownMenu CreateMenu() => new OsuDropdownMenu();
|
|
|
|
#region OsuDropdownMenu
|
|
protected class OsuDropdownMenu : DropdownMenu, IHasAccentColour
|
|
{
|
|
// todo: this uses the same styling as OsuMenu. hopefully we can just use OsuMenu in the future with some refactoring
|
|
public OsuDropdownMenu()
|
|
{
|
|
CornerRadius = 4;
|
|
BackgroundColour = Color4.Black.Opacity(0.5f);
|
|
|
|
// todo: this uses the same styling as OsuMenu. hopefully we can just use OsuMenu in the future with some refactoring
|
|
ItemsContainer.Padding = new MarginPadding(5);
|
|
}
|
|
|
|
// todo: this uses the same styling as OsuMenu. hopefully we can just use OsuMenu in the future with some refactoring
|
|
protected override void AnimateOpen() => this.FadeIn(300, Easing.OutQuint);
|
|
protected override void AnimateClose() => this.FadeOut(300, Easing.OutQuint);
|
|
|
|
// todo: this uses the same styling as OsuMenu. hopefully we can just use OsuMenu in the future with some refactoring
|
|
protected override void UpdateSize(Vector2 newSize)
|
|
{
|
|
if (Direction == Direction.Vertical)
|
|
{
|
|
Width = newSize.X;
|
|
this.ResizeHeightTo(newSize.Y, 300, Easing.OutQuint);
|
|
}
|
|
else
|
|
{
|
|
Height = newSize.Y;
|
|
this.ResizeWidthTo(newSize.X, 300, Easing.OutQuint);
|
|
}
|
|
}
|
|
|
|
private Color4 accentColour;
|
|
public Color4 AccentColour
|
|
{
|
|
get { return accentColour; }
|
|
set
|
|
{
|
|
accentColour = value;
|
|
foreach (var c in Children.OfType<IHasAccentColour>())
|
|
c.AccentColour = value;
|
|
}
|
|
}
|
|
|
|
protected override DrawableMenuItem CreateDrawableMenuItem(MenuItem item) => new DrawableOsuDropdownMenuItem(item) { AccentColour = accentColour };
|
|
|
|
#region DrawableOsuDropdownMenuItem
|
|
public class DrawableOsuDropdownMenuItem : DrawableDropdownMenuItem, IHasAccentColour
|
|
{
|
|
private Color4? accentColour;
|
|
public Color4 AccentColour
|
|
{
|
|
get { return accentColour ?? nonAccentSelectedColour; }
|
|
set
|
|
{
|
|
accentColour = value;
|
|
updateColours();
|
|
}
|
|
}
|
|
|
|
private void updateColours()
|
|
{
|
|
BackgroundColourHover = accentColour ?? nonAccentHoverColour;
|
|
BackgroundColourSelected = accentColour ?? nonAccentSelectedColour;
|
|
UpdateBackgroundColour();
|
|
UpdateForegroundColour();
|
|
}
|
|
|
|
private Color4 nonAccentHoverColour;
|
|
private Color4 nonAccentSelectedColour;
|
|
|
|
public DrawableOsuDropdownMenuItem(MenuItem item)
|
|
: base(item)
|
|
{
|
|
Foreground.Padding = new MarginPadding(2);
|
|
|
|
Masking = true;
|
|
CornerRadius = 6;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
BackgroundColour = Color4.Transparent;
|
|
|
|
nonAccentHoverColour = colours.PinkDarker;
|
|
nonAccentSelectedColour = Color4.Black.Opacity(0.5f);
|
|
updateColours();
|
|
|
|
AddInternal(new HoverClickSounds(HoverSampleSet.Soft));
|
|
}
|
|
|
|
protected override void UpdateForegroundColour()
|
|
{
|
|
base.UpdateForegroundColour();
|
|
|
|
var content = Foreground.Children.FirstOrDefault() as Content;
|
|
if (content != null) content.Chevron.Alpha = IsHovered ? 1 : 0;
|
|
}
|
|
|
|
protected override Drawable CreateContent() => new Content();
|
|
|
|
protected new class Content : FillFlowContainer, IHasText
|
|
{
|
|
public string Text
|
|
{
|
|
get { return Label.Text; }
|
|
set { Label.Text = value; }
|
|
}
|
|
|
|
public readonly OsuSpriteText Label;
|
|
public readonly SpriteIcon Chevron;
|
|
|
|
public Content()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Direction = FillDirection.Horizontal;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
Chevron = new SpriteIcon
|
|
{
|
|
AlwaysPresent = true,
|
|
Icon = FontAwesome.fa_chevron_right,
|
|
Colour = Color4.Black,
|
|
Alpha = 0.5f,
|
|
Size = new Vector2(8),
|
|
Margin = new MarginPadding { Left = 3, Right = 3 },
|
|
Origin = Anchor.CentreLeft,
|
|
Anchor = Anchor.CentreLeft,
|
|
},
|
|
Label = new OsuSpriteText
|
|
{
|
|
Origin = Anchor.CentreLeft,
|
|
Anchor = Anchor.CentreLeft,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
#endregion
|
|
|
|
public class OsuDropdownHeader : DropdownHeader, IHasAccentColour
|
|
{
|
|
protected readonly SpriteText Text;
|
|
protected override string Label
|
|
{
|
|
get { return Text.Text; }
|
|
set { Text.Text = value; }
|
|
}
|
|
|
|
protected readonly SpriteIcon Icon;
|
|
|
|
private Color4 accentColour;
|
|
public virtual Color4 AccentColour
|
|
{
|
|
get { return accentColour; }
|
|
set
|
|
{
|
|
accentColour = value;
|
|
BackgroundColourHover = accentColour;
|
|
}
|
|
}
|
|
|
|
public OsuDropdownHeader()
|
|
{
|
|
Foreground.Padding = new MarginPadding(4);
|
|
|
|
AutoSizeAxes = Axes.None;
|
|
Margin = new MarginPadding { Bottom = 4 };
|
|
CornerRadius = 4;
|
|
Height = 40;
|
|
|
|
Foreground.Children = new Drawable[]
|
|
{
|
|
Text = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
},
|
|
Icon = new SpriteIcon
|
|
{
|
|
Icon = FontAwesome.fa_chevron_down,
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
Margin = new MarginPadding { Right = 4 },
|
|
Size = new Vector2(20),
|
|
},
|
|
};
|
|
|
|
AddInternal(new HoverClickSounds());
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
BackgroundColour = Color4.Black.Opacity(0.5f);
|
|
BackgroundColourHover = colours.PinkDarker;
|
|
}
|
|
}
|
|
}
|
|
}
|