2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2017-02-07 13:52:19 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 12:50:34 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-07-16 23:03:44 +09:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2021-03-12 18:36:28 +09:00
|
|
|
|
public class BindingSettings : SettingsSubsection
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2021-07-16 23:03:44 +09:00
|
|
|
|
protected override LocalisableString Header => BindingSettingsStrings.ShortcutAndGameplayBindings;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-03-12 18:36:28 +09:00
|
|
|
|
public BindingSettings(KeyBindingPanel keyConfig)
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-10-21 13:16:06 +10:30
|
|
|
|
new SettingsButton
|
2017-02-07 13:52:19 +09:00
|
|
|
|
{
|
2021-07-16 23:03:44 +09:00
|
|
|
|
Text = BindingSettingsStrings.Configure,
|
|
|
|
|
TooltipText = BindingSettingsStrings.ChangeBindingsButton,
|
2017-09-14 12:58:32 +09:00
|
|
|
|
Action = keyConfig.ToggleVisibility
|
2017-02-07 13:52:19 +09:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-05 20:21:19 +09:00
|
|
|
|
}
|