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