1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:07:25 +08:00
osu-lazer/osu.Game/Overlays/Music/CollectionDropdown.cs

69 lines
2.2 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;
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;
using osu.Game.Collections;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
namespace osu.Game.Overlays.Music
{
/// <summary>
/// A <see cref="CollectionFilterDropdown"/> for use in the <see cref="NowPlayingOverlay"/>.
/// </summary>
public class CollectionDropdown : CollectionFilterDropdown
2018-04-13 17:19:50 +08:00
{
protected override bool ShowManageCollectionsItem => false;
protected override CollectionDropdownHeader CreateCollectionHeader() => new CollectionsHeader();
2018-04-13 17:19:50 +08:00
protected override CollectionDropdownMenu CreateCollectionMenu() => new CollectionsMenu();
2018-04-13 17:19:50 +08:00
private class CollectionsMenu : CollectionDropdownMenu
2018-04-13 17:19:50 +08:00
{
public CollectionsMenu()
{
2020-04-11 14:29:52 +08:00
Masking = true;
2018-04-13 17:19:50 +08:00
CornerRadius = 5;
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
BackgroundColour = colours.Gray4;
HoverColour = SelectionColour = colours.Gray6;
2018-04-13 17:19:50 +08:00
}
}
private class CollectionsHeader : CollectionDropdownHeader
2018-04-13 17:19:50 +08:00
{
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
BackgroundColour = colours.Gray4;
BackgroundColourHover = colours.Gray6;
2018-04-13 17:19:50 +08:00
}
public CollectionsHeader()
{
CornerRadius = 5;
Height = 30;
Icon.Size = new Vector2(14);
Icon.Margin = new MarginPadding(0);
Foreground.Padding = new MarginPadding { Top = 4, Bottom = 4, Left = 10, Right = 10 };
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow,
Colour = Color4.Black.Opacity(0.3f),
Radius = 3,
Offset = new Vector2(0f, 1f),
};
}
}
}
}