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
|
2016-12-06 17:56:20 +08:00
|
|
|
|
|
2016-12-05 18:45:54 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2016-11-08 08:04:31 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-11-15 18:34:20 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-11-08 08:04:31 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2017-01-31 17:37:11 +08:00
|
|
|
|
using osu.Framework.Input;
|
2017-01-31 17:53:52 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2016-11-15 18:34:20 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-11-08 08:04:31 +08:00
|
|
|
|
|
2017-01-31 17:37:11 +08:00
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
2016-11-09 19:13:13 +08:00
|
|
|
|
{
|
2017-03-31 16:38:33 +08:00
|
|
|
|
public class OsuCheckbox : Checkbox
|
2016-11-09 19:13:13 +08:00
|
|
|
|
{
|
|
|
|
|
private Bindable<bool> bindable;
|
|
|
|
|
|
|
|
|
|
public Bindable<bool> Bindable
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
bindable = value;
|
2017-04-10 16:10:15 +08:00
|
|
|
|
Current.BindTo(bindable);
|
2016-11-09 19:13:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-15 18:34:20 +08:00
|
|
|
|
public Color4 CheckedColor { get; set; } = Color4.Cyan;
|
|
|
|
|
public Color4 UncheckedColor { get; set; } = Color4.White;
|
|
|
|
|
public int FadeDuration { get; set; }
|
|
|
|
|
|
|
|
|
|
public string LabelText
|
|
|
|
|
{
|
|
|
|
|
get { return labelSpriteText?.Text; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (labelSpriteText != null)
|
|
|
|
|
labelSpriteText.Text = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MarginPadding LabelPadding
|
|
|
|
|
{
|
|
|
|
|
get { return labelSpriteText?.Padding ?? new MarginPadding(); }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (labelSpriteText != null)
|
|
|
|
|
labelSpriteText.Padding = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-30 15:40:35 +08:00
|
|
|
|
protected readonly Nub Nub;
|
|
|
|
|
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly SpriteText labelSpriteText;
|
2017-02-18 16:35:04 +08:00
|
|
|
|
private SampleChannel sampleChecked;
|
|
|
|
|
private SampleChannel sampleUnchecked;
|
2016-11-15 18:34:20 +08:00
|
|
|
|
|
2017-01-31 17:37:11 +08:00
|
|
|
|
public OsuCheckbox()
|
2016-11-15 18:34:20 +08:00
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-01-31 17:53:52 +08:00
|
|
|
|
labelSpriteText = new OsuSpriteText(),
|
2017-05-30 15:40:35 +08:00
|
|
|
|
Nub = new Nub
|
2016-11-15 18:34:20 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
Margin = new MarginPadding { Right = 5 },
|
2017-11-26 01:41:18 +08:00
|
|
|
|
},
|
|
|
|
|
new HoverClickSounds()
|
2016-11-15 18:34:20 +08:00
|
|
|
|
};
|
|
|
|
|
|
2017-05-30 15:40:35 +08:00
|
|
|
|
Nub.Current.BindTo(Current);
|
2017-04-10 16:10:15 +08:00
|
|
|
|
|
2017-04-10 13:31:08 +08:00
|
|
|
|
Current.ValueChanged += newValue =>
|
|
|
|
|
{
|
|
|
|
|
if (newValue)
|
|
|
|
|
sampleChecked?.Play();
|
|
|
|
|
else
|
|
|
|
|
sampleUnchecked?.Play();
|
|
|
|
|
};
|
2017-04-21 12:53:11 +08:00
|
|
|
|
|
|
|
|
|
Current.DisabledChanged += disabled =>
|
|
|
|
|
{
|
|
|
|
|
Alpha = disabled ? 0.3f : 1;
|
|
|
|
|
};
|
2016-11-09 19:13:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-15 18:34:20 +08:00
|
|
|
|
protected override bool OnHover(InputState state)
|
|
|
|
|
{
|
2017-05-30 15:40:35 +08:00
|
|
|
|
Nub.Glowing = true;
|
|
|
|
|
Nub.Expanded = true;
|
2016-11-15 18:34:20 +08:00
|
|
|
|
return base.OnHover(state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(InputState state)
|
|
|
|
|
{
|
2017-05-30 15:40:35 +08:00
|
|
|
|
Nub.Glowing = false;
|
|
|
|
|
Nub.Expanded = false;
|
2016-11-15 18:34:20 +08:00
|
|
|
|
base.OnHoverLost(state);
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-05 18:45:54 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio)
|
|
|
|
|
{
|
2017-06-29 01:19:04 +08:00
|
|
|
|
sampleChecked = audio.Sample.Get(@"UI/check-on");
|
|
|
|
|
sampleUnchecked = audio.Sample.Get(@"UI/check-off");
|
2016-12-05 18:45:54 +08:00
|
|
|
|
}
|
2016-11-09 19:13:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|