2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-09-19 05:04:51 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2019-09-19 05:04:51 +00:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Graphics
|
|
|
|
|
{
|
2019-09-17 17:15:18 +00:00
|
|
|
|
public class UserInterfaceSettings : SettingsSubsection
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
protected override string Header => "User Interface";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2019-09-19 05:04:51 +00:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-17 17:15:18 +00:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Rotate cursor when dragging",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.CursorRotation)
|
|
|
|
|
},
|
2018-04-13 09:19:50 +00:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Parallax",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.MenuParallax)
|
|
|
|
|
},
|
2019-10-02 04:26:46 +00:00
|
|
|
|
new SettingsSlider<float, TimeSlider>
|
2019-09-19 05:04:51 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Hold-to-confirm activation time",
|
2019-10-02 04:26:46 +00:00
|
|
|
|
Bindable = config.GetBindable<float>(OsuSetting.UIHoldActivationDelay),
|
2019-09-19 05:04:51 +00:00
|
|
|
|
KeyboardStep = 50
|
|
|
|
|
},
|
2018-04-13 09:19:50 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2019-09-19 05:04:51 +00:00
|
|
|
|
|
2019-10-02 04:26:46 +00:00
|
|
|
|
private class TimeSlider : OsuSliderBar<float>
|
2019-09-19 05:04:51 +00:00
|
|
|
|
{
|
|
|
|
|
public override string TooltipText => Current.Value.ToString("N0") + "ms";
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|