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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-11 16:48:37 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Graphics
|
|
|
|
|
{
|
2021-10-12 13:34:00 +08:00
|
|
|
|
public class ScreenshotSettings : SettingsSubsection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-10-12 13:34:00 +08:00
|
|
|
|
protected override LocalisableString Header => GraphicsSettingsStrings.Screenshots;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsEnumDropdown<ScreenshotFormat>
|
|
|
|
|
{
|
2021-08-11 16:48:37 +08:00
|
|
|
|
LabelText = GraphicsSettingsStrings.ScreenshotFormat,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<ScreenshotFormat>(OsuSetting.ScreenshotFormat)
|
2018-04-13 20:13:09 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-11 16:48:37 +08:00
|
|
|
|
LabelText = GraphicsSettingsStrings.ShowCursorInScreenshots,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.ScreenshotCaptureMenuCursor)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|