mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 03:17:45 +08:00
66 lines
1.8 KiB
C#
66 lines
1.8 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 osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class OptionSlider<T> : OptionSlider<T, OsuSliderBar<T>> where T: struct
|
|
{
|
|
}
|
|
|
|
public class OptionSlider<T, U> : FillFlowContainer where T : struct where U : SliderBar<T>, new()
|
|
{
|
|
private readonly SliderBar<T> slider;
|
|
private readonly SpriteText text;
|
|
|
|
public string LabelText
|
|
{
|
|
get { return text.Text; }
|
|
set
|
|
{
|
|
text.Text = value;
|
|
text.Alpha = string.IsNullOrEmpty(value) ? 0 : 1;
|
|
}
|
|
}
|
|
|
|
private Bindable<T> bindable;
|
|
|
|
public Bindable<T> Bindable
|
|
{
|
|
set
|
|
{
|
|
bindable = value;
|
|
slider.Current.BindTo(bindable);
|
|
}
|
|
}
|
|
|
|
public OptionSlider()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Padding = new MarginPadding { Right = 5 };
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
text = new OsuSpriteText
|
|
{
|
|
Alpha = 0,
|
|
},
|
|
slider = new U()
|
|
{
|
|
Margin = new MarginPadding { Top = 5, Bottom = 5 },
|
|
RelativeSizeAxes = Axes.X
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|