2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-09-14 21:44:36 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-03-11 02:59:20 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-09-14 21:44:36 +08:00
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Graphics
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public class DetailSettings : SettingsSubsection
|
2016-11-11 06:40:42 +08:00
|
|
|
|
{
|
2016-11-09 11:38:40 +08:00
|
|
|
|
protected override string Header => "Detail Settings";
|
2017-09-14 21:44:36 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2018-03-11 02:59:20 +08:00
|
|
|
|
Children = new Drawable[]
|
2017-09-14 21:44:36 +08:00
|
|
|
|
{
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Storyboards",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
|
|
|
|
|
},
|
2017-09-17 06:47:55 +08:00
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Rotate cursor when dragging",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuSetting.CursorRotation)
|
|
|
|
|
},
|
2018-03-11 02:59:20 +08:00
|
|
|
|
new SettingsEnumDropdown<ScreenshotFormat>()
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Screenshot format",
|
|
|
|
|
Bindable = config.GetBindable<ScreenshotFormat>(OsuSetting.ScreenshotFormat)
|
|
|
|
|
}
|
2017-09-14 21:44:36 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2016-11-11 06:40:42 +08:00
|
|
|
|
}
|
2017-05-04 22:07:24 +08:00
|
|
|
|
}
|