mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
d4af8498af
Functionality is currently limited to some OsuSettings, but will expand in the future when high precision mouse is added.
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Localisation;
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
namespace osu.iOS
|
|
{
|
|
public class IOSMouseSettings : SettingsSubsection
|
|
{
|
|
protected override LocalisableString Header => MouseSettingsStrings.Mouse;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager osuConfig)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = MouseSettingsStrings.DisableMouseWheelVolumeAdjust,
|
|
TooltipText = MouseSettingsStrings.DisableMouseWheelVolumeAdjustTooltip,
|
|
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableWheel),
|
|
},
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = MouseSettingsStrings.DisableMouseButtons,
|
|
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons),
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|