123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- //
- // Checkbox.cs: Checkbox control
- //
- // Authors:
- // Miguel de Icaza ([email protected])
- //
- using System;
- using NStack;
- namespace Terminal.Gui {
- /// <summary>
- /// The Checkbox View shows an on/off toggle that the user can set
- /// </summary>
- public class CheckBox : View {
- ustring text;
- int hot_pos = -1;
- Rune hot_key;
- /// <summary>
- /// Toggled event, raised when the CheckButton is toggled.
- /// </summary>
- /// <remarks>
- /// Client code can hook up to this event, it is
- /// raised when the checkbutton is activated either with
- /// the mouse or the keyboard.
- /// </remarks>
- public event EventHandler Toggled;
- /// <summary>
- /// Public constructor, creates a CheckButton based on the given text, uses Computed layout and sets the height and width.
- /// </summary>
- /// <param name="s">S.</param>
- /// <param name="is_checked">If set to <c>true</c> is checked.</param>
- public CheckBox (ustring s, bool is_checked = false) : base ()
- {
- Checked = is_checked;
- Text = s;
- CanFocus = true;
- Height = 1;
- Width = s.Length + 4;
- }
- /// <summary>
- /// Public constructor, creates a CheckButton based on
- /// the given text at an absolute position.
- /// </summary>
- /// <remarks>
- /// The size of CheckButton is computed based on the
- /// text length. This CheckButton is not toggled.
- /// </remarks>
- public CheckBox (int x, int y, ustring s) : this (x, y, s, false)
- {
- }
- /// <summary>
- /// Public constructor, creates a CheckButton based on
- /// the given text at the given position and a state.
- /// </summary>
- /// <remarks>
- /// The size of CheckButton is computed based on the
- /// text length.
- /// </remarks>
- public CheckBox (int x, int y, ustring s, bool is_checked) : base (new Rect (x, y, s.Length + 4, 1))
- {
- Checked = is_checked;
- Text = s;
- CanFocus = true;
- }
- /// <summary>
- /// The state of the checkbox.
- /// </summary>
- public bool Checked { get; set; }
- /// <summary>
- /// The text displayed by this widget.
- /// </summary>
- public ustring Text {
- get {
- return text;
- }
- set {
- text = value;
- int i = 0;
- hot_pos = -1;
- hot_key = (char)0;
- foreach (Rune c in text) {
- if (Rune.IsUpper (c)) {
- hot_key = c;
- hot_pos = i;
- break;
- }
- i++;
- }
- }
- }
- ///<inheritdoc cref="Redraw"/>
- public override void Redraw (Rect region)
- {
- Driver.SetAttribute (HasFocus ? ColorScheme.Focus : ColorScheme.Normal);
- Move (0, 0);
- Driver.AddStr (Checked ? "[x] " : "[ ] ");
- Move (4, 0);
- Driver.AddStr (Text);
- if (hot_pos != -1) {
- Move (4 + hot_pos, 0);
- Driver.SetAttribute (HasFocus ? ColorScheme.HotFocus : ColorScheme.HotNormal);
- Driver.AddRune (hot_key);
- }
- }
- ///<inheritdoc cref="PositionCursor"/>
- public override void PositionCursor ()
- {
- Move (1, 0);
- }
- ///<inheritdoc cref="ProcessKey"/>
- public override bool ProcessKey (KeyEvent kb)
- {
- if (kb.KeyValue == ' ') {
- Checked = !Checked;
- if (Toggled != null)
- Toggled (this, EventArgs.Empty);
- SetNeedsDisplay ();
- return true;
- }
- return base.ProcessKey (kb);
- }
- ///<inheritdoc cref="MouseEvent"/>
- public override bool MouseEvent (MouseEvent me)
- {
- if (!me.Flags.HasFlag (MouseFlags.Button1Clicked))
- return false;
- SuperView.SetFocus (this);
- Checked = !Checked;
- SetNeedsDisplay ();
- if (Toggled != null)
- Toggled (this, EventArgs.Empty);
- return true;
- }
- }
- }
|