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-09-14 15:44:36 +02:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-03-10 21:59:20 +03:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 12:50:34 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2017-09-14 15:44:36 +02:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-11 16:48:37 +08: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.Graphics
|
2016-11-10 17:40:42 -05:00
|
|
|
|
{
|
2021-10-12 14:34:00 +09:00
|
|
|
|
public class ScreenshotSettings : SettingsSubsection
|
2016-11-10 17:40:42 -05:00
|
|
|
|
{
|
2021-10-12 14:34:00 +09:00
|
|
|
|
protected override LocalisableString Header => GraphicsSettingsStrings.Screenshots;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-09-14 15:44:36 +02:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2018-03-10 21:59:20 +03:00
|
|
|
|
Children = new Drawable[]
|
2017-09-14 15:44:36 +02:00
|
|
|
|
{
|
2018-03-16 20:42:05 +03:00
|
|
|
|
new SettingsEnumDropdown<ScreenshotFormat>
|
2018-03-10 21:59:20 +03:00
|
|
|
|
{
|
2021-08-11 16:48:37 +08:00
|
|
|
|
LabelText = GraphicsSettingsStrings.ScreenshotFormat,
|
2020-10-06 17:18:41 +09:00
|
|
|
|
Current = config.GetBindable<ScreenshotFormat>(OsuSetting.ScreenshotFormat)
|
2018-04-13 21:13:09 +09:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-11 16:48:37 +08:00
|
|
|
|
LabelText = GraphicsSettingsStrings.ShowCursorInScreenshots,
|
2020-10-06 17:18:41 +09:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ScreenshotCaptureMenuCursor)
|
2018-03-10 21:59:20 +03:00
|
|
|
|
}
|
2017-09-14 15:44:36 +02:00
|
|
|
|
};
|
|
|
|
|
}
|
2016-11-10 17:40:42 -05:00
|
|
|
|
}
|
2017-05-04 23:07:24 +09:00
|
|
|
|
}
|