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
|
|
|
|
|
2017-05-04 14:07:24 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-02-22 08:14:00 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2017-05-04 14:07:24 +00:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-15 01:55:29 +00:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-05-04 14:07:24 +00:00
|
|
|
|
{
|
2017-05-15 01:55:29 +00:00
|
|
|
|
public partial class SettingsCheckbox : SettingsItem<bool>
|
2017-05-04 14:07:24 +00:00
|
|
|
|
{
|
2021-02-22 08:14:00 +00:00
|
|
|
|
private LocalisableString labelText;
|
2019-06-12 06:16:59 +00:00
|
|
|
|
|
2020-03-23 04:11:40 +00:00
|
|
|
|
protected override Drawable CreateControl() => new OsuCheckbox();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-02-22 08:14:00 +00:00
|
|
|
|
public override LocalisableString LabelText
|
2017-05-04 14:07:24 +00:00
|
|
|
|
{
|
2019-06-12 06:16:59 +00:00
|
|
|
|
get => labelText;
|
2021-10-30 16:50:34 +00:00
|
|
|
|
set => ((OsuCheckbox)Control).LabelText = labelText = value;
|
2017-05-04 14:07:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|