2023-06-23 00:37:25 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2020-10-06 15:40:47 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2024-04-22 16:15:56 +08:00
|
|
|
|
using System.Numerics;
|
2020-10-06 15:40:47 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterfaceV2
|
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
|
public partial class LabelledSliderBar<TNumber> : LabelledComponent<SettingsSlider<TNumber>, TNumber>
|
2024-04-22 16:15:56 +08:00
|
|
|
|
where TNumber : struct, INumber<TNumber>, IMinMaxValue<TNumber>
|
2020-10-06 15:40:47 +08:00
|
|
|
|
{
|
|
|
|
|
public LabelledSliderBar()
|
|
|
|
|
: base(true)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override SettingsSlider<TNumber> CreateComponent() => new SettingsSlider<TNumber>
|
|
|
|
|
{
|
|
|
|
|
TransferValueOnCommit = true,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|