mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Framework.Configuration;
|
|
|
|
namespace osu.Game.Screens.Edit.Components.RadioButtons
|
|
{
|
|
public class RadioButton
|
|
{
|
|
/// <summary>
|
|
/// Whether this <see cref="RadioButton"/> is selected.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public readonly BindableBool Selected;
|
|
|
|
/// <summary>
|
|
/// The text that should be displayed in this button.
|
|
/// </summary>
|
|
public string Text;
|
|
|
|
/// <summary>
|
|
/// The <see cref="Action"/> that should be invoked when this button is selected.
|
|
/// </summary>
|
|
public Action Action;
|
|
|
|
public RadioButton(string text, Action action)
|
|
{
|
|
Text = text;
|
|
Action = action;
|
|
Selected = new BindableBool();
|
|
}
|
|
|
|
public RadioButton(string text)
|
|
: this(text, null)
|
|
{
|
|
Text = text;
|
|
Action = null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Selects this <see cref="RadioButton"/>.
|
|
/// </summary>
|
|
public void Select() => Selected.Value = true;
|
|
|
|
/// <summary>
|
|
/// Deselects this <see cref="RadioButton"/>.
|
|
/// </summary>
|
|
public void Deselect() => Selected.Value = false;
|
|
}
|
|
}
|