1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-09 09:57:18 +08:00

32 lines
1.1 KiB
C#
Raw Normal View History

// 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
using System.Collections.Generic;
using System.Linq;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Framework.Localisation;
using osu.Game.Localisation;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Settings.Sections.Input
{
2022-11-24 14:32:20 +09:00
public partial class BindingSettings : SettingsSubsection
2018-04-13 18:19:50 +09:00
{
protected override LocalisableString Header => BindingSettingsStrings.ShortcutAndGameplayBindings;
2018-04-13 18:19:50 +09:00
public override IEnumerable<LocalisableString> FilterTerms => base.FilterTerms.Concat(new LocalisableString[] { @"keybindings", @"controls", @"keyboard", @"keys" });
public BindingSettings(KeyBindingPanel keyConfig)
2018-04-13 18:19:50 +09:00
{
Children = new Drawable[]
{
new SettingsButton
{
Text = BindingSettingsStrings.Configure,
TooltipText = BindingSettingsStrings.ChangeBindingsButton,
2018-04-13 18:19:50 +09:00
Action = keyConfig.ToggleVisibility
},
};
}
}
}