mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
110 lines
3.1 KiB
C#
110 lines
3.1 KiB
C#
// 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;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Graphics.Containers;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class OsuCheckbox : Checkbox
|
|
{
|
|
public Color4 CheckedColor { get; set; } = Color4.Cyan;
|
|
public Color4 UncheckedColor { get; set; } = Color4.White;
|
|
public int FadeDuration { get; set; }
|
|
|
|
public string LabelText
|
|
{
|
|
set
|
|
{
|
|
if (labelText != null)
|
|
labelText.Text = value;
|
|
}
|
|
}
|
|
|
|
public MarginPadding LabelPadding
|
|
{
|
|
get => labelText?.Padding ?? new MarginPadding();
|
|
set
|
|
{
|
|
if (labelText != null)
|
|
labelText.Padding = value;
|
|
}
|
|
}
|
|
|
|
protected readonly Nub Nub;
|
|
|
|
private readonly OsuTextFlowContainer labelText;
|
|
private SampleChannel sampleChecked;
|
|
private SampleChannel sampleUnchecked;
|
|
|
|
public OsuCheckbox()
|
|
{
|
|
AutoSizeAxes = Axes.Y;
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
const float nub_padding = 5;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
labelText = new OsuTextFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Y,
|
|
RelativeSizeAxes = Axes.X,
|
|
Padding = new MarginPadding { Right = Nub.EXPANDED_SIZE + nub_padding }
|
|
},
|
|
Nub = new Nub
|
|
{
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
Margin = new MarginPadding { Right = nub_padding },
|
|
},
|
|
new HoverClickSounds()
|
|
};
|
|
|
|
Nub.Current.BindTo(Current);
|
|
|
|
Current.DisabledChanged += disabled => labelText.Alpha = Nub.Alpha = disabled ? 0.3f : 1;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Current.ValueChanged += enabled =>
|
|
{
|
|
if (enabled.NewValue)
|
|
sampleChecked?.Play();
|
|
else
|
|
sampleUnchecked?.Play();
|
|
};
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
Nub.Glowing = true;
|
|
Nub.Expanded = true;
|
|
return base.OnHover(e);
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
Nub.Glowing = false;
|
|
Nub.Expanded = false;
|
|
base.OnHoverLost(e);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(AudioManager audio)
|
|
{
|
|
sampleChecked = audio.Samples.Get(@"UI/check-on");
|
|
sampleUnchecked = audio.Samples.Get(@"UI/check-off");
|
|
}
|
|
}
|
|
}
|