1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:27:46 +08:00

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

62 lines
2.1 KiB
C#
Raw Normal View History

2019-04-26 13:29:58 +09: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.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2019-04-26 13:29:58 +09:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Graphics.UserInterface;
2021-07-17 15:18:45 +02:00
using osu.Game.Resources.Localisation.Web;
2019-04-26 13:29:58 +09:00
using osuTK;
2019-04-26 13:49:44 +09:00
namespace osu.Game.Overlays.Profile.Header.Components
2019-04-26 13:29:58 +09:00
{
2022-12-31 20:09:49 +01:00
public partial class ToggleCoverButton : ProfileHeaderButton
2019-04-26 13:29:58 +09:00
{
public readonly BindableBool CoverExpanded = new BindableBool(true);
2019-04-26 13:29:58 +09:00
public override LocalisableString TooltipText => CoverExpanded.Value ? UsersStrings.ShowCoverTo0 : UsersStrings.ShowCoverTo1;
2019-04-26 13:29:58 +09:00
2022-12-30 13:17:59 +01:00
private SpriteIcon icon = null!;
private Sample? sampleOpen;
private Sample? sampleClose;
protected override HoverSounds CreateHoverSounds(HoverSampleSet sampleSet) => new HoverClickSounds();
2019-04-26 13:29:58 +09:00
2022-12-31 20:09:49 +01:00
public ToggleCoverButton()
2019-04-26 13:29:58 +09:00
{
Action = () =>
{
CoverExpanded.Toggle();
(CoverExpanded.Value ? sampleOpen : sampleClose)?.Play();
};
2019-04-26 13:29:58 +09:00
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider, AudioManager audio)
2019-04-26 13:29:58 +09:00
{
2020-01-29 22:25:28 +01:00
IdleColour = colourProvider.Background2;
2022-12-31 20:09:49 +01:00
HoverColour = colourProvider.Background1;
2019-04-26 13:29:58 +09:00
sampleOpen = audio.Samples.Get(@"UI/dropdown-open");
sampleClose = audio.Samples.Get(@"UI/dropdown-close");
2022-12-31 20:09:49 +01:00
AutoSizeAxes = Axes.None;
Size = new Vector2(30);
2019-04-26 13:29:58 +09:00
Child = icon = new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2022-12-31 20:09:49 +01:00
Size = new Vector2(10.5f, 12)
2019-04-26 13:29:58 +09:00
};
CoverExpanded.BindValueChanged(visible => updateState(visible.NewValue), true);
2019-04-26 13:29:58 +09:00
}
private void updateState(bool detailsVisible) => icon.Icon = detailsVisible ? FontAwesome.Solid.ChevronUp : FontAwesome.Solid.ChevronDown;
}
}