mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
* Readonly HSL view * Make it possible to move between bars by moving to subview * Basically working and with mouse support * Fix HSL to work properly with double values instead of color matching * Fix Value on ColorPicker to match HSL values * Fix color spectrum * Add Swatch and better sync with text box * Work on jitter * ColorPicker HSL working * More keybindings * Add ColorModel * Support both HSL and HSV * Add RGB * Better mouse handling * WIP: AttributeView and integrate into LineDrawing (does not currently work properly) * Fix color picking * Add concept of an ITool * Add ColorPickerStyle * Fix selected cell rendering * Add first test for ColorPicker2 * Add more RGB tests * Improve ColorPicker2 setup process * Tests and fixes for keyboard changing value R * Fix margin on bars when no textfields * Add mouse test * Add tests for with text field * Add more tests and fix bug sync component text field change with hex text field (WIP - failing tests) * Fix tests and fix clicking in a bar label area possibly not selecting * Move AttributeView to LineDrawing and adjust to have a 'transparent pattern' too * Render triangle in dark gray if background is black * Add ColorChanged event * Resharper Cleanup * Xml comments and public/private adjustments * Explore replacing diagram test with fragile Subview diving * Migrate ColorPicker_DefaultBoot to sub asserts * Port other tests * Replace ColorPicker with new view * Fix ColorPicker size to match scenarios size assumptions * Split to separate files and ignore invalid test for ColorPicker * Ignore also in mouse version of AllViews_Enter_Leave_Events * Remove bool _updating from ColorPicker Now instead we are more selective about what we update when and do so deterministically * Typo fix * Fix ReSharper bad renames in comments for "Value" * Refactor to single implementation of 'prompt for color' logic - Now called PromptForColor - Shared by LineDrawing and ProgressBarStyles scenarios * Sum runes instead of Length * Hide ColorBar and SetValueWithoutRaisingEvent from public API * Move ColorEventArgs to Drawing folder * Move ColorModel to Drawing folder * First try at Dim.Auto for ColorPicker * Remove explicit width/height setting in most scenarios * Remove explicit heights * Fixed build/test issues. Illustrated test best practice. * WIP: Start working on test changes and add new options to ColorPickers scenario (Color Model and show textfields). * Fix for R indicator arrow sometimes 'falling off' the drawn area. * Add nullable enable * Test fixes and refactor for avoiding Begin * Make ColorEventArgs inherit from EventArgs<Color> * Fix Dispose not being called on bars when switching color models * Remove 'oldColor' from test now it is not supported * Add initial stab at ColorPickerStyle.ShowName * Use AppendAutocomplete for color names * Implemented resoruce based colorname resolver * Update GetTextField to support getting the color names field Change style setting to ShowColorName * Color name updates when navigating away from the named color * Restore old color picker as ColorPicker16 * Add test that shows 'Save as' is currently considered a named color >< * Fix GetW3CColorNames * Removed dupe colors * Revert to old color pickers * Nullability question marks for everyone! --------- Co-authored-by: Tig <tig@users.noreply.github.com>
384 lines
14 KiB
C#
384 lines
14 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Timers;
|
|
using Terminal.Gui;
|
|
|
|
namespace UICatalog.Scenarios;
|
|
|
|
[ScenarioMetadata ("Shortcuts", "Illustrates Shortcut class.")]
|
|
[ScenarioCategory ("Controls")]
|
|
public class Shortcuts : Scenario
|
|
{
|
|
public override void Main ()
|
|
{
|
|
Application.Init ();
|
|
Window app = new ();
|
|
|
|
app.Loaded += App_Loaded;
|
|
|
|
Application.Run (app);
|
|
app.Dispose ();
|
|
Application.Shutdown ();
|
|
}
|
|
|
|
// Setting everything up in Loaded handler because we change the
|
|
// QuitKey and it only sticks if changed after init
|
|
private void App_Loaded (object sender, EventArgs e)
|
|
{
|
|
Application.QuitKey = Key.F4.WithCtrl;
|
|
Application.Top.Title = GetQuitKeyAndName ();
|
|
|
|
ObservableCollection<string> eventSource = new ();
|
|
|
|
var eventLog = new ListView
|
|
{
|
|
X = Pos.AnchorEnd (),
|
|
Width = 40,
|
|
Height = Dim.Fill (4),
|
|
ColorScheme = Colors.ColorSchemes ["Toplevel"],
|
|
Source = new ListWrapper<string> (eventSource),
|
|
BorderStyle = LineStyle.Double,
|
|
Title = "E_vents"
|
|
};
|
|
Application.Top.Add (eventLog);
|
|
|
|
var vShortcut1 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Width = 35,
|
|
Title = "A_pp Shortcut",
|
|
Key = Key.F1,
|
|
Text = "Width is 35",
|
|
KeyBindingScope = KeyBindingScope.Application,
|
|
};
|
|
Application.Top.Add (vShortcut1);
|
|
|
|
var vShortcut2 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcut1),
|
|
Width = 35,
|
|
Key = Key.F2,
|
|
Text = "Width is 35",
|
|
KeyBindingScope = KeyBindingScope.HotKey,
|
|
CommandView = new RadioGroup
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
RadioLabels = ["O_ne", "T_wo", "Th_ree", "Fo_ur"]
|
|
}
|
|
};
|
|
|
|
((RadioGroup)vShortcut2.CommandView).SelectedItemChanged += (o, args) =>
|
|
{
|
|
eventSource.Add ($"SelectedItemChanged: {o.GetType ().Name} - {args.SelectedItem}");
|
|
eventLog.MoveDown ();
|
|
};
|
|
|
|
vShortcut2.Accept += (o, args) =>
|
|
{
|
|
// Cycle to next item. If at end, set 0
|
|
if (((RadioGroup)vShortcut2.CommandView).SelectedItem < ((RadioGroup)vShortcut2.CommandView).RadioLabels.Length - 1)
|
|
{
|
|
((RadioGroup)vShortcut2.CommandView).SelectedItem++;
|
|
}
|
|
else
|
|
{
|
|
((RadioGroup)vShortcut2.CommandView).SelectedItem = 0;
|
|
}
|
|
};
|
|
Application.Top.Add (vShortcut2);
|
|
|
|
var vShortcut3 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcut2),
|
|
CommandView = new CheckBox { Text = "_Align" },
|
|
Key = Key.F5.WithCtrl.WithAlt.WithShift,
|
|
HelpText = "Width is Fill",
|
|
Width = Dim.Fill () - Dim.Width (eventLog),
|
|
KeyBindingScope = KeyBindingScope.HotKey,
|
|
};
|
|
|
|
((CheckBox)vShortcut3.CommandView).CheckedStateChanging += (s, e) =>
|
|
{
|
|
if (vShortcut3.CommandView is CheckBox cb)
|
|
{
|
|
eventSource.Add ($"Toggle: {cb.Text}");
|
|
eventLog.MoveDown ();
|
|
|
|
var max = 0;
|
|
var toAlign = Application.Top.Subviews.Where (v => v is Shortcut { Orientation: Orientation.Vertical, Width: not DimAbsolute });
|
|
|
|
if (e.NewValue == CheckState.Checked)
|
|
{
|
|
foreach (Shortcut peer in toAlign)
|
|
{
|
|
// DANGER: KeyView is internal so we can't access it. So we assume this is how it works.
|
|
max = Math.Max (max, peer.Key.ToString ().GetColumns ());
|
|
}
|
|
}
|
|
|
|
foreach (Shortcut peer in toAlign)
|
|
{
|
|
peer.MinimumKeyTextSize = max;
|
|
}
|
|
}
|
|
};
|
|
Application.Top.Add (vShortcut3);
|
|
|
|
var vShortcut4 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcut3),
|
|
Width = Dim.Width (vShortcut3),
|
|
CommandView = new Button
|
|
{
|
|
Title = "_Button",
|
|
},
|
|
HelpText = "Width is Fill",
|
|
Key = Key.K,
|
|
KeyBindingScope = KeyBindingScope.HotKey,
|
|
};
|
|
Button button = (Button)vShortcut4.CommandView;
|
|
vShortcut4.CommandView.Accept += Button_Clicked;
|
|
|
|
Application.Top.Add (vShortcut4);
|
|
|
|
var vShortcut5 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcut4),
|
|
Width = Dim.Width (vShortcut4),
|
|
|
|
Key = Key.F4,
|
|
HelpText = "CommandView.CanFocus",
|
|
KeyBindingScope = KeyBindingScope.HotKey,
|
|
CommandView = new CheckBox { Text = "_CanFocus" },
|
|
};
|
|
|
|
((CheckBox)vShortcut5.CommandView).CheckedStateChanging += (s, e) =>
|
|
{
|
|
if (vShortcut5.CommandView is CheckBox cb)
|
|
{
|
|
eventSource.Add ($"Toggle: {cb.Text}");
|
|
eventLog.MoveDown ();
|
|
|
|
foreach (Shortcut peer in Application.Top.Subviews.Where (v => v is Shortcut)!)
|
|
{
|
|
if (peer.CanFocus)
|
|
{
|
|
peer.CommandView.CanFocus = e.NewValue == CheckState.Checked;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
Application.Top.Add (vShortcut5);
|
|
|
|
var vShortcutSlider = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcut5),
|
|
HelpText = "Width is Fill",
|
|
Width = Dim.Width (vShortcut5),
|
|
|
|
KeyBindingScope = KeyBindingScope.HotKey,
|
|
CommandView = new Slider<string>
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
AllowEmpty = true
|
|
},
|
|
Key = Key.F5,
|
|
};
|
|
|
|
((Slider<string>)vShortcutSlider.CommandView).Options = new () { new () { Legend = "A" }, new () { Legend = "B" }, new () { Legend = "C" } };
|
|
((Slider<string>)vShortcutSlider.CommandView).SetOption (0);
|
|
|
|
((Slider<string>)vShortcutSlider.CommandView).OptionsChanged += (o, args) =>
|
|
{
|
|
eventSource.Add ($"OptionsChanged: {o.GetType ().Name} - {string.Join (",", ((Slider<string>)o).GetSetOptions ())}");
|
|
eventLog.MoveDown ();
|
|
};
|
|
|
|
Application.Top.Add (vShortcutSlider);
|
|
|
|
var vShortcut6 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcutSlider),
|
|
Width = Dim.Width (vShortcutSlider),
|
|
|
|
Title = "_No Key",
|
|
HelpText = "Keyless",
|
|
};
|
|
|
|
Application.Top.Add (vShortcut6);
|
|
|
|
|
|
var vShortcut7 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Vertical,
|
|
X = 0,
|
|
Y = Pos.Bottom (vShortcut6),
|
|
Width = Dim.Width (vShortcutSlider),
|
|
Key = Key.F6,
|
|
Title = "Not _very much help",
|
|
HelpText = "",
|
|
};
|
|
|
|
Application.Top.Add (vShortcut7);
|
|
vShortcut7.SetFocus ();
|
|
|
|
|
|
// Horizontal
|
|
var hShortcut1 = new Shortcut
|
|
{
|
|
X = Pos.Align (Alignment.Start, AlignmentModes.IgnoreFirstOrLast, 1),
|
|
Y = Pos.Bottom (eventLog) + 1,
|
|
Key = Key.F7,
|
|
HelpText = "Horizontal",
|
|
CanFocus = false
|
|
};
|
|
|
|
hShortcut1.CommandView = new ProgressBar
|
|
{
|
|
Text = "Progress",
|
|
Title = "P",
|
|
Fraction = 0.5f,
|
|
Width = 10,
|
|
Height = 1,
|
|
ProgressBarStyle = ProgressBarStyle.Continuous
|
|
};
|
|
hShortcut1.CommandView.Width = 10;
|
|
hShortcut1.CommandView.Height = 1;
|
|
hShortcut1.CommandView.CanFocus = false;
|
|
|
|
Timer timer = new (10)
|
|
{
|
|
AutoReset = true,
|
|
};
|
|
timer.Elapsed += (o, args) =>
|
|
{
|
|
if (hShortcut1.CommandView is ProgressBar pb)
|
|
{
|
|
if (pb.Fraction == 1.0)
|
|
{
|
|
pb.Fraction = 0;
|
|
}
|
|
pb.Fraction += 0.01f;
|
|
|
|
Application.Wakeup ();
|
|
|
|
pb.SetNeedsDisplay ();
|
|
}
|
|
};
|
|
timer.Start ();
|
|
|
|
Application.Top.Add (hShortcut1);
|
|
|
|
var textField = new TextField ()
|
|
{
|
|
Text = "Edit me",
|
|
Width = 10,
|
|
Height = 1,
|
|
CanFocus = true
|
|
};
|
|
|
|
var hShortcut2 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Horizontal,
|
|
X = Pos.Align (Alignment.Start, AlignmentModes.IgnoreFirstOrLast, 1),
|
|
Y = Pos.Top (hShortcut1),
|
|
Key = Key.F8,
|
|
HelpText = "TextField",
|
|
CanFocus = true,
|
|
CommandView = textField,
|
|
};
|
|
|
|
Application.Top.Add (hShortcut2);
|
|
|
|
var hShortcutBG = new Shortcut
|
|
{
|
|
Orientation = Orientation.Horizontal,
|
|
X = Pos.Align (Alignment.Start, AlignmentModes.IgnoreFirstOrLast, 1) - 1,
|
|
Y = Pos.Top (hShortcut2),
|
|
Key = Key.F9,
|
|
HelpText = "BG Color",
|
|
CanFocus = false
|
|
};
|
|
|
|
var bgColor = new ColorPicker16 ()
|
|
{
|
|
BoxHeight = 1,
|
|
BoxWidth = 1,
|
|
CanFocus = false
|
|
};
|
|
bgColor.ColorChanged += (o, args) =>
|
|
{
|
|
Application.Top.ColorScheme = new ColorScheme (Application.Top.ColorScheme)
|
|
{
|
|
Normal = new Attribute (Application.Top.ColorScheme.Normal.Foreground, args.CurrentValue),
|
|
};
|
|
};
|
|
hShortcutBG.CommandView = bgColor;
|
|
|
|
Application.Top.Add (hShortcutBG);
|
|
|
|
var hShortcut3 = new Shortcut
|
|
{
|
|
Orientation = Orientation.Horizontal,
|
|
X = Pos.Align (Alignment.Start, AlignmentModes.IgnoreFirstOrLast, 1),
|
|
Y = Pos.Top (hShortcut2),
|
|
Key = Key.Esc,
|
|
KeyBindingScope = KeyBindingScope.Application,
|
|
Title = "Quit",
|
|
HelpText = "App Scope",
|
|
CanFocus = false
|
|
};
|
|
hShortcut3.Accept += (o, args) =>
|
|
{
|
|
Application.RequestStop ();
|
|
};
|
|
|
|
Application.Top.Add (hShortcut3);
|
|
|
|
foreach (View sh in Application.Top.Subviews.Where (v => v is Shortcut)!)
|
|
{
|
|
if (sh is Shortcut shortcut)
|
|
{
|
|
shortcut.Accept += (o, args) =>
|
|
{
|
|
eventSource.Add ($"Accept: {shortcut!.CommandView.Text}");
|
|
eventLog.MoveDown ();
|
|
args.Handled = true;
|
|
};
|
|
|
|
shortcut.CommandView.Accept += (o, args) =>
|
|
{
|
|
eventSource.Add ($"CommandView.Accept: {shortcut!.CommandView.Text}");
|
|
eventLog.MoveDown ();
|
|
};
|
|
}
|
|
}
|
|
|
|
//((CheckBox)vShortcut5.CommandView).OnToggle ();
|
|
}
|
|
|
|
private void Button_Clicked (object sender, HandledEventArgs e)
|
|
{
|
|
//e.Cancel = true;
|
|
MessageBox.Query ("Hi", $"You clicked {sender}");
|
|
}
|
|
}
|