2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-07-16 22:03:44 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
|
|
|
|
{
|
2021-03-12 17:36:28 +08:00
|
|
|
|
public class BindingSettings : SettingsSubsection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-07-16 22:03:44 +08:00
|
|
|
|
protected override LocalisableString Header => BindingSettingsStrings.ShortcutAndGameplayBindings;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-03-12 17:36:28 +08:00
|
|
|
|
public BindingSettings(KeyBindingPanel keyConfig)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsButton
|
|
|
|
|
{
|
2021-07-16 22:03:44 +08:00
|
|
|
|
Text = BindingSettingsStrings.Configure,
|
|
|
|
|
TooltipText = BindingSettingsStrings.ChangeBindingsButton,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Action = keyConfig.ToggleVisibility
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|