1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 04:07:24 +08:00
osu-lazer/osu.Game/Overlays/KeyBinding/GlobalKeyBindingsSection.cs

56 lines
1.8 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 17:19:50 +08:00
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Input.Bindings;
using osu.Game.Overlays.Settings;
namespace osu.Game.Overlays.KeyBinding
{
public class GlobalKeyBindingsSection : SettingsSection
{
2019-04-02 18:55:24 +08:00
public override IconUsage Icon => FontAwesome.Solid.Globe;
2018-04-13 17:19:50 +08:00
public override string Header => "Global";
public GlobalKeyBindingsSection(GlobalActionContainer manager)
{
Add(new DefaultBindingsSubsection(manager));
2019-08-13 11:40:20 +08:00
Add(new AudioControlKeyBindingsSubsection(manager));
2018-04-13 17:19:50 +08:00
Add(new InGameKeyBindingsSubsection(manager));
}
private class DefaultBindingsSubsection : KeyBindingsSubsection
{
protected override string Header => string.Empty;
public DefaultBindingsSubsection(GlobalActionContainer manager)
: base(null)
{
Defaults = manager.GlobalKeyBindings;
}
}
private class InGameKeyBindingsSubsection : KeyBindingsSubsection
{
protected override string Header => "In Game";
2019-02-28 12:31:40 +08:00
public InGameKeyBindingsSubsection(GlobalActionContainer manager)
: base(null)
2018-04-13 17:19:50 +08:00
{
Defaults = manager.InGameKeyBindings;
}
}
2019-08-13 11:40:20 +08:00
private class AudioControlKeyBindingsSubsection : KeyBindingsSubsection
{
protected override string Header => "Audio";
public AudioControlKeyBindingsSubsection(GlobalActionContainer manager)
: base(null)
{
Defaults = manager.AudioControlKeyBindings;
}
}
2018-04-13 17:19:50 +08:00
}
}