2020-09-30 16:52:12 +08: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.
|
|
|
|
|
2024-05-22 16:29:39 +08:00
|
|
|
using System.Numerics;
|
2022-01-08 23:12:52 +08:00
|
|
|
using System.Globalization;
|
2020-09-30 16:52:12 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2021-10-31 00:50:13 +08:00
|
|
|
using osu.Framework.Localisation;
|
2020-09-30 16:52:12 +08:00
|
|
|
using osu.Game.Overlays.Settings;
|
2022-01-08 23:12:52 +08:00
|
|
|
using osu.Game.Utils;
|
2024-05-22 16:29:39 +08:00
|
|
|
using Vector2 = osuTK.Vector2;
|
2020-09-30 16:52:12 +08:00
|
|
|
|
2023-08-01 06:22:08 +08:00
|
|
|
namespace osu.Game.Graphics.UserInterfaceV2
|
2020-09-30 16:52:12 +08:00
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class SliderWithTextBoxInput<T> : CompositeDrawable, IHasCurrentValue<T>
|
2024-05-22 16:29:39 +08:00
|
|
|
where T : struct, INumber<T>, IMinMaxValue<T>
|
2020-09-30 16:52:12 +08:00
|
|
|
{
|
2023-08-01 06:51:29 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A custom step value for each key press which actuates a change on this control.
|
|
|
|
/// </summary>
|
|
|
|
public float KeyboardStep
|
|
|
|
{
|
|
|
|
get => slider.KeyboardStep;
|
|
|
|
set => slider.KeyboardStep = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Bindable<T> Current
|
|
|
|
{
|
|
|
|
get => slider.Current;
|
|
|
|
set => slider.Current = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool instantaneous;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Whether changes to the slider should instantaneously transfer to the text box (and vice versa).
|
|
|
|
/// If <see langword="false"/>, the transfer will happen on text box commit (explicit, or implicit via focus loss), or on slider drag end.
|
|
|
|
/// </summary>
|
|
|
|
public bool Instantaneous
|
|
|
|
{
|
|
|
|
get => instantaneous;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
instantaneous = value;
|
|
|
|
slider.TransferValueOnCommit = !instantaneous;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-30 16:52:12 +08:00
|
|
|
private readonly SettingsSlider<T> slider;
|
2023-08-01 06:51:29 +08:00
|
|
|
private readonly LabelledTextBox textBox;
|
2020-09-30 16:52:12 +08:00
|
|
|
|
2021-10-31 00:50:13 +08:00
|
|
|
public SliderWithTextBoxInput(LocalisableString labelText)
|
2020-09-30 16:52:12 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
2022-05-24 17:02:37 +08:00
|
|
|
Spacing = new Vector2(20),
|
2020-09-30 16:52:12 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2021-12-10 13:15:00 +08:00
|
|
|
textBox = new LabelledTextBox
|
2020-09-30 16:52:12 +08:00
|
|
|
{
|
|
|
|
Label = labelText,
|
|
|
|
},
|
|
|
|
slider = new SettingsSlider<T>
|
|
|
|
{
|
2020-10-02 16:59:57 +08:00
|
|
|
TransferValueOnCommit = true,
|
2020-09-30 16:52:12 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
textBox.OnCommit += textCommitted;
|
|
|
|
textBox.Current.BindValueChanged(textChanged);
|
2022-12-01 15:08:14 +08:00
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
Current.BindValueChanged(updateTextBoxFromSlider, true);
|
|
|
|
}
|
2022-12-01 15:08:14 +08:00
|
|
|
|
2024-05-27 17:02:51 +08:00
|
|
|
public bool TakeFocus() => GetContainingFocusManager()?.ChangeFocus(textBox) == true;
|
2023-07-10 03:00:35 +08:00
|
|
|
|
2024-05-26 00:41:31 +08:00
|
|
|
public bool SelectAll() => textBox.SelectAll();
|
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
private bool updatingFromTextBox;
|
2020-10-01 12:06:24 +08:00
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
private void textChanged(ValueChangedEvent<string> change)
|
|
|
|
{
|
|
|
|
if (!instantaneous) return;
|
2020-09-30 16:52:12 +08:00
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
tryUpdateSliderFromTextBox();
|
2020-09-30 16:52:12 +08:00
|
|
|
}
|
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
private void textCommitted(TextBox t, bool isNew)
|
2021-03-19 16:13:30 +08:00
|
|
|
{
|
2023-08-01 06:51:29 +08:00
|
|
|
tryUpdateSliderFromTextBox();
|
|
|
|
|
|
|
|
// If the attempted update above failed, restore text box to match the slider.
|
|
|
|
Current.TriggerChange();
|
2021-03-19 16:13:30 +08:00
|
|
|
}
|
|
|
|
|
2023-08-01 06:51:29 +08:00
|
|
|
private void tryUpdateSliderFromTextBox()
|
2020-09-30 16:52:12 +08:00
|
|
|
{
|
2023-08-01 06:51:29 +08:00
|
|
|
updatingFromTextBox = true;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch (slider.Current)
|
|
|
|
{
|
|
|
|
case Bindable<int> bindableInt:
|
|
|
|
bindableInt.Value = int.Parse(textBox.Current.Value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Bindable<double> bindableDouble:
|
|
|
|
bindableDouble.Value = double.Parse(textBox.Current.Value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2023-12-13 13:07:38 +08:00
|
|
|
slider.Current.Parse(textBox.Current.Value, CultureInfo.CurrentCulture);
|
2023-08-01 06:51:29 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
// ignore parsing failures.
|
|
|
|
// sane state will eventually be restored by a commit (either explicit, or implicit via focus loss).
|
|
|
|
}
|
|
|
|
|
|
|
|
updatingFromTextBox = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateTextBoxFromSlider(ValueChangedEvent<T> _)
|
|
|
|
{
|
|
|
|
if (updatingFromTextBox) return;
|
|
|
|
|
2024-05-22 16:29:39 +08:00
|
|
|
decimal decimalValue = decimal.CreateTruncating(slider.Current.Value);
|
2023-08-01 06:51:29 +08:00
|
|
|
textBox.Text = decimalValue.ToString($@"N{FormatUtils.FindPrecision(decimalValue)}");
|
2020-09-30 16:52:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|