Files
Terminal.Gui/UICatalog/Scenarios/MessageBoxes.cs
Charlie Kindel a08a411a91 crazy refactoring
2020-06-15 22:52:35 -07:00

177 lines
4.7 KiB
C#

using NStack;
using System;
using System.Collections.Generic;
using System.Text;
using Terminal.Gui;
namespace UICatalog {
[ScenarioMetadata (Name: "MessageBoxes", Description: "Demonstrates how to use MessageBoxes")]
[ScenarioCategory ("Controls")]
[ScenarioCategory ("Dialogs")]
class MessageBoxes : Scenario {
public override void Setup ()
{
var frame = new FrameView ("MessageBox Options") {
X = Pos.Center(),
Y = 1,
Width = Dim.Percent(75),
Height = 10
};
Win.Add (frame);
var label = new Label ("width:") {
X = 0,
Y = 0,
Width = 15,
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
frame.Add (label);
var widthEdit = new TextField ("0") {
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
Width = 5,
Height = 1
};
frame.Add (widthEdit);
label = new Label ("height:") {
X = 0,
Y = Pos.Bottom (label),
Width = Dim.Width(label),
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
frame.Add (label);
var heightEdit = new TextField ("0") {
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
Width = 5,
Height = 1
};
frame.Add (heightEdit);
frame.Add (new Label ("If height & width are both 0,") {
X = Pos.Right (widthEdit) + 2,
Y = Pos.Top (widthEdit),
});
frame.Add (new Label ("the MessageBox will be sized automatically.") {
X = Pos.Right (heightEdit) + 2,
Y = Pos.Top (heightEdit),
});
label = new Label ("Title:") {
X = 0,
Y = Pos.Bottom (label),
Width = Dim.Width (label),
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
frame.Add (label);
var titleEdit = new TextField ("Title") {
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
Width = Dim.Fill(),
Height = 1
};
frame.Add (titleEdit);
label = new Label ("Message:") {
X = 0,
Y = Pos.Bottom (label),
Width = Dim.Width (label),
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
frame.Add (label);
var messageEdit = new TextView () {
Text = "Message",
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
Width = Dim.Fill (),
Height = 5,
ColorScheme = Colors.Dialog,
};
frame.Add (messageEdit);
label = new Label ("Num Buttons:") {
X = 0,
Y = Pos.Bottom (messageEdit),
Width = Dim.Width (label),
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
frame.Add (label);
var numButtonsEdit = new TextField ("3") {
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
Width = 5,
Height = 1
};
frame.Add (numButtonsEdit);
label = new Label ("Style:") {
X = 0,
Y = Pos.Bottom (label),
Width = Dim.Width (label),
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
frame.Add (label);
var styleRadioGroup = new RadioGroup (new ustring [] { "_Query", "_Error" } ) {
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
};
frame.Add (styleRadioGroup);
frame.Height = Dim.Height (widthEdit) + Dim.Height (heightEdit) + Dim.Height (titleEdit) + Dim.Height (messageEdit)
+ Dim.Height(numButtonsEdit) + Dim.Height (styleRadioGroup) + 2;
label = new Label ("Button Pressed:") {
X = Pos.Center (),
Y = Pos.Bottom (frame) + 2,
Height = 1,
TextAlignment = Terminal.Gui.TextAlignment.Right,
};
Win.Add (label);
var buttonPressedLabel = new Label ("") {
X = Pos.Center (),
Y = Pos.Bottom (frame) + 4,
Width = 25,
Height = 1,
ColorScheme = Colors.Error,
};
var btnText = new [] { "_Zero", "_One", "T_wo", "_Three", "_Four", "Fi_ve", "Si_x", "_Seven", "_Eight", "_Nine" };
var showMessageBoxButton = new Button ("Show MessageBox") {
X = Pos.Center(),
Y = Pos.Bottom (frame) + 2 ,
IsDefault = true,
Clicked = () => {
try {
int width = int.Parse (widthEdit.Text.ToString ());
int height = int.Parse (heightEdit.Text.ToString ());
int numButtons = int.Parse (numButtonsEdit.Text.ToString ());
var btns = new List<ustring> ();
for (int i = 0; i < numButtons; i++) {
btns.Add(btnText[i % 10]);
}
if (styleRadioGroup.SelectedItem == 0) {
buttonPressedLabel.Text = $"{MessageBox.Query (width, height, titleEdit.Text.ToString (), messageEdit.Text.ToString (), btns.ToArray ())}";
} else {
buttonPressedLabel.Text = $"{MessageBox.ErrorQuery (width, height, titleEdit.Text.ToString (), messageEdit.Text.ToString (), btns.ToArray ())}";
}
} catch (FormatException) {
buttonPressedLabel.Text = "Invalid Options";
}
},
};
Win.Add (showMessageBoxButton);
Win.Add (buttonPressedLabel);
}
}
}