123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251 |
- #define OTHER_CONTROLS
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Globalization;
- using System.Linq;
- using System.Net.Http;
- using System.Reflection;
- using System.Text;
- using System.Text.Json;
- using System.Text.Unicode;
- using System.Threading.Tasks;
- using Terminal.Gui;
- using static Terminal.Gui.SpinnerStyle;
- namespace UICatalog.Scenarios;
- /// <summary>
- /// This Scenario demonstrates building a custom control (a class deriving from View) that: - Provides a
- /// "Character Map" application (like Windows' charmap.exe). - Helps test unicode character rendering in Terminal.Gui -
- /// Illustrates how to do infinite scrolling
- /// </summary>
- [ScenarioMetadata ("Character Map", "Unicode viewer demonstrating infinite content, scrolling, and Unicode.")]
- [ScenarioCategory ("Text and Formatting")]
- [ScenarioCategory ("Drawing")]
- [ScenarioCategory ("Controls")]
- [ScenarioCategory ("Layout")]
- [ScenarioCategory ("Scrolling")]
- public class CharacterMap : Scenario
- {
- public Label _errorLabel;
- private TableView _categoryList;
- private CharMap _charMap;
- // Don't create a Window, just return the top-level view
- public override void Main ()
- {
- Application.Init ();
- var top = new Window
- {
- BorderStyle = LineStyle.None
- };
- _charMap = new ()
- {
- X = 0,
- Y = 0,
- Width = Dim.Fill (),
- Height = Dim.Fill ()
- };
- top.Add (_charMap);
- #if OTHER_CONTROLS
- _charMap.Y = 1;
- var jumpLabel = new Label
- {
- X = Pos.Right (_charMap) + 1,
- Y = Pos.Y (_charMap),
- HotKeySpecifier = (Rune)'_',
- Text = "_Jump To Code Point:"
- };
- top.Add (jumpLabel);
- var jumpEdit = new TextField
- {
- X = Pos.Right (jumpLabel) + 1, Y = Pos.Y (_charMap), Width = 10, Caption = "e.g. 01BE3"
- };
- top.Add (jumpEdit);
- _errorLabel = new ()
- {
- X = Pos.Right (jumpEdit) + 1, Y = Pos.Y (_charMap), ColorScheme = Colors.ColorSchemes ["error"], Text = "err"
- };
- top.Add (_errorLabel);
- #if TEXT_CHANGED_TO_JUMP
- jumpEdit.TextChanged += JumpEdit_TextChanged;
- #else
- jumpEdit.Accept += JumpEditOnAccept;
- void JumpEditOnAccept (object sender, CancelEventArgs e)
- {
- JumpEdit_TextChanged (sender, new (jumpEdit.Text, jumpEdit.Text));
- // Cancel the event to prevent ENTER from being handled elsewhere
- e.Cancel = true;
- }
- #endif
- _categoryList = new () { X = Pos.Right (_charMap), Y = Pos.Bottom (jumpLabel), Height = Dim.Fill () };
- _categoryList.FullRowSelect = true;
- //jumpList.Style.ShowHeaders = false;
- //jumpList.Style.ShowHorizontalHeaderOverline = false;
- //jumpList.Style.ShowHorizontalHeaderUnderline = false;
- _categoryList.Style.ShowHorizontalBottomline = true;
- //jumpList.Style.ShowVerticalCellLines = false;
- //jumpList.Style.ShowVerticalHeaderLines = false;
- _categoryList.Style.AlwaysShowHeaders = true;
- var isDescending = false;
- _categoryList.Table = CreateCategoryTable (0, isDescending);
- // if user clicks the mouse in TableView
- _categoryList.MouseClick += (s, e) =>
- {
- _categoryList.ScreenToCell (e.MouseEvent.X, e.MouseEvent.Y, out int? clickedCol);
- if (clickedCol != null && e.MouseEvent.Flags.HasFlag (MouseFlags.Button1Clicked))
- {
- EnumerableTableSource<UnicodeRange> table = (EnumerableTableSource<UnicodeRange>)_categoryList.Table;
- string prevSelection = table.Data.ElementAt (_categoryList.SelectedRow).Category;
- isDescending = !isDescending;
- _categoryList.Table = CreateCategoryTable (clickedCol.Value, isDescending);
- table = (EnumerableTableSource<UnicodeRange>)_categoryList.Table;
- _categoryList.SelectedRow = table.Data
- .Select ((item, index) => new { item, index })
- .FirstOrDefault (x => x.item.Category == prevSelection)
- ?.index
- ?? -1;
- }
- };
- int longestName = UnicodeRange.Ranges.Max (r => r.Category.GetColumns ());
- _categoryList.Style.ColumnStyles.Add (
- 0,
- new () { MaxWidth = longestName, MinWidth = longestName, MinAcceptableWidth = longestName }
- );
- _categoryList.Style.ColumnStyles.Add (1, new () { MaxWidth = 1, MinWidth = 6 });
- _categoryList.Style.ColumnStyles.Add (2, new () { MaxWidth = 1, MinWidth = 6 });
- _categoryList.Width = _categoryList.Style.ColumnStyles.Sum (c => c.Value.MinWidth) + 4;
- _categoryList.SelectedCellChanged += (s, args) =>
- {
- EnumerableTableSource<UnicodeRange> table = (EnumerableTableSource<UnicodeRange>)_categoryList.Table;
- _charMap.StartCodePoint = table.Data.ToArray () [args.NewRow].Start;
- };
- top.Add (_categoryList);
- // TODO: Replace this with Dim.Auto when that's ready
- _categoryList.Initialized += _categoryList_Initialized;
- var menu = new MenuBar
- {
- Menus =
- [
- new (
- "_File",
- new MenuItem []
- {
- new (
- "_Quit",
- $"{Application.QuitKey}",
- () => Application.RequestStop ()
- )
- }
- ),
- new (
- "_Options",
- new [] { CreateMenuShowWidth () }
- )
- ]
- };
- top.Add (menu);
- #endif // OTHER_CONTROLS
- _charMap.SelectedCodePoint = 0;
- _charMap.SetFocus ();
- Application.Run (top);
- top.Dispose ();
- }
- private void _categoryList_Initialized (object sender, EventArgs e) { _charMap.Width = Dim.Fill () - _categoryList.Width; }
- private EnumerableTableSource<UnicodeRange> CreateCategoryTable (int sortByColumn, bool descending)
- {
- Func<UnicodeRange, object> orderBy;
- var categorySort = string.Empty;
- var startSort = string.Empty;
- var endSort = string.Empty;
- string sortIndicator = descending ? CM.Glyphs.DownArrow.ToString () : CM.Glyphs.UpArrow.ToString ();
- switch (sortByColumn)
- {
- case 0:
- orderBy = r => r.Category;
- categorySort = sortIndicator;
- break;
- case 1:
- orderBy = r => r.Start;
- startSort = sortIndicator;
- break;
- case 2:
- orderBy = r => r.End;
- endSort = sortIndicator;
- break;
- default:
- throw new ArgumentException ("Invalid column number.");
- }
- IOrderedEnumerable<UnicodeRange> sortedRanges = descending
- ? UnicodeRange.Ranges.OrderByDescending (orderBy)
- : UnicodeRange.Ranges.OrderBy (orderBy);
- return new (
- sortedRanges,
- new ()
- {
- { $"Category{categorySort}", s => s.Category },
- { $"Start{startSort}", s => $"{s.Start:x5}" },
- { $"End{endSort}", s => $"{s.End:x5}" }
- }
- );
- }
- private MenuItem CreateMenuShowWidth ()
- {
- var item = new MenuItem { Title = "_Show Glyph Width" };
- item.CheckType |= MenuItemCheckStyle.Checked;
- item.Checked = _charMap?.ShowGlyphWidths;
- item.Action += () => { _charMap.ShowGlyphWidths = (bool)(item.Checked = !item.Checked); };
- return item;
- }
- private void JumpEdit_TextChanged (object sender, StateEventArgs<string> e)
- {
- var jumpEdit = sender as TextField;
- if (jumpEdit.Text.Length == 0)
- {
- return;
- }
- uint result = 0;
- if (jumpEdit.Text.StartsWith ("U+", StringComparison.OrdinalIgnoreCase) || jumpEdit.Text.StartsWith ("\\u"))
- {
- try
- {
- result = uint.Parse (jumpEdit.Text [2..], NumberStyles.HexNumber);
- }
- catch (FormatException)
- {
- _errorLabel.Text = "Invalid hex value";
- return;
- }
- }
- else if (jumpEdit.Text.StartsWith ("0", StringComparison.OrdinalIgnoreCase) || jumpEdit.Text.StartsWith ("\\u"))
- {
- try
- {
- result = uint.Parse (jumpEdit.Text, NumberStyles.HexNumber);
- }
- catch (FormatException)
- {
- _errorLabel.Text = "Invalid hex value";
- return;
- }
- }
- else
- {
- try
- {
- result = uint.Parse (jumpEdit.Text, NumberStyles.Integer);
- }
- catch (FormatException)
- {
- _errorLabel.Text = "Invalid value";
- return;
- }
- }
- if (result > RuneExtensions.MaxUnicodeCodePoint)
- {
- _errorLabel.Text = "Beyond maximum codepoint";
- return;
- }
- _errorLabel.Text = $"U+{result:x5}";
- EnumerableTableSource<UnicodeRange> table = (EnumerableTableSource<UnicodeRange>)_categoryList.Table;
- _categoryList.SelectedRow = table.Data
- .Select ((item, index) => new { item, index })
- .FirstOrDefault (x => x.item.Start <= result && x.item.End >= result)
- ?.index
- ?? -1;
- _categoryList.EnsureSelectedCellIsVisible ();
- // Ensure the typed glyph is selected
- _charMap.SelectedCodePoint = (int)result;
- }
- }
- internal class CharMap : View
- {
- private const CursorVisibility _cursor = CursorVisibility.Default;
- private const int COLUMN_WIDTH = 3;
- private ContextMenu _contextMenu = new ();
- private int _rowHeight = 1;
- private int _selected;
- private int _start;
- public CharMap ()
- {
- ColorScheme = Colors.ColorSchemes ["Dialog"];
- CanFocus = true;
- ContentSize = new (RowWidth, (MaxCodePoint / 16 + 2) * _rowHeight);
- AddCommand (
- Command.ScrollUp,
- () =>
- {
- if (SelectedCodePoint >= 16)
- {
- SelectedCodePoint -= 16;
- }
- ScrollVertical (-_rowHeight);
- return true;
- }
- );
- AddCommand (
- Command.ScrollDown,
- () =>
- {
- if (SelectedCodePoint <= MaxCodePoint - 16)
- {
- SelectedCodePoint += 16;
- }
- if (Cursor.Y >= Viewport.Height)
- {
- ScrollVertical (_rowHeight);
- }
- return true;
- }
- );
- AddCommand (
- Command.ScrollLeft,
- () =>
- {
- if (SelectedCodePoint > 0)
- {
- SelectedCodePoint--;
- }
- if (Cursor.X > RowLabelWidth + 1)
- {
- ScrollHorizontal (-COLUMN_WIDTH);
- }
- return true;
- }
- );
- AddCommand (
- Command.ScrollRight,
- () =>
- {
- if (SelectedCodePoint < MaxCodePoint)
- {
- SelectedCodePoint++;
- }
- if (Cursor.X >= Viewport.Width)
- {
- ScrollHorizontal (COLUMN_WIDTH);
- }
- return true;
- }
- );
- AddCommand (
- Command.PageUp,
- () =>
- {
- int page = (Viewport.Height - 1 / _rowHeight) * 16;
- SelectedCodePoint -= Math.Min (page, SelectedCodePoint);
- Viewport = Viewport with { Y = SelectedCodePoint / 16 * _rowHeight };
- return true;
- }
- );
- AddCommand (
- Command.PageDown,
- () =>
- {
- int page = (Viewport.Height - 1 / _rowHeight) * 16;
- SelectedCodePoint += Math.Min (page, MaxCodePoint - SelectedCodePoint);
- Viewport = Viewport with { Y = SelectedCodePoint / 16 * _rowHeight };
- return true;
- }
- );
- AddCommand (
- Command.TopHome,
- () =>
- {
- SelectedCodePoint = 0;
- return true;
- }
- );
- AddCommand (
- Command.BottomEnd,
- () =>
- {
- SelectedCodePoint = MaxCodePoint;
- Viewport = Viewport with { Y = SelectedCodePoint / 16 * _rowHeight };
- return true;
- }
- );
- AddCommand (
- Command.Accept,
- () =>
- {
- ShowDetails ();
- return true;
- }
- );
- KeyBindings.Add (Key.Enter, Command.Accept);
- KeyBindings.Add (Key.CursorUp, Command.ScrollUp);
- KeyBindings.Add (Key.CursorDown, Command.ScrollDown);
- KeyBindings.Add (Key.CursorLeft, Command.ScrollLeft);
- KeyBindings.Add (Key.CursorRight, Command.ScrollRight);
- KeyBindings.Add (Key.PageUp, Command.PageUp);
- KeyBindings.Add (Key.PageDown, Command.PageDown);
- KeyBindings.Add (Key.Home, Command.TopHome);
- KeyBindings.Add (Key.End, Command.BottomEnd);
- MouseClick += Handle_MouseClick;
- MouseEvent += Handle_MouseEvent;
- // Prototype scrollbars
- Padding.Thickness = new (0, 0, 1, 1);
- var up = new Button
- {
- AutoSize = false,
- X = Pos.AnchorEnd (1),
- Y = 0,
- Height = 1,
- Width = 1,
- NoPadding = true,
- NoDecorations = true,
- Title = CM.Glyphs.UpArrow.ToString (),
- WantContinuousButtonPressed = true,
- CanFocus = false
- };
- up.Accept += (sender, args) => { args.Cancel = ScrollVertical (-1) == true; };
- var down = new Button
- {
- AutoSize = false,
- X = Pos.AnchorEnd (1),
- Y = Pos.AnchorEnd (2),
- Height = 1,
- Width = 1,
- NoPadding = true,
- NoDecorations = true,
- Title = CM.Glyphs.DownArrow.ToString (),
- WantContinuousButtonPressed = true,
- CanFocus = false
- };
- down.Accept += (sender, args) => { ScrollVertical (1); };
- var left = new Button
- {
- AutoSize = false,
- X = 0,
- Y = Pos.AnchorEnd (1),
- Height = 1,
- Width = 1,
- NoPadding = true,
- NoDecorations = true,
- Title = CM.Glyphs.LeftArrow.ToString (),
- WantContinuousButtonPressed = true,
- CanFocus = false
- };
- left.Accept += (sender, args) => { ScrollHorizontal (-1); };
- var right = new Button
- {
- AutoSize = false,
- X = Pos.AnchorEnd (2),
- Y = Pos.AnchorEnd (1),
- Height = 1,
- Width = 1,
- NoPadding = true,
- NoDecorations = true,
- Title = CM.Glyphs.RightArrow.ToString (),
- WantContinuousButtonPressed = true,
- CanFocus = false
- };
- right.Accept += (sender, args) => { ScrollHorizontal (1); };
- Padding.Add (up, down, left, right);
- }
- private void Handle_MouseEvent (object sender, MouseEventEventArgs e)
- {
- if (e.MouseEvent.Flags == MouseFlags.WheeledDown)
- {
- ScrollVertical (1);
- e.Handled = true;
- return;
- }
- if (e.MouseEvent.Flags == MouseFlags.WheeledUp)
- {
- ScrollVertical (-1);
- e.Handled = true;
- return;
- }
- if (e.MouseEvent.Flags == MouseFlags.WheeledRight)
- {
- ScrollHorizontal (1);
- e.Handled = true;
- return;
- }
- if (e.MouseEvent.Flags == MouseFlags.WheeledLeft)
- {
- ScrollHorizontal (-1);
- e.Handled = true;
- }
- }
- /// <summary>Gets the coordinates of the Cursor based on the SelectedCodePoint in screen coordinates</summary>
- public Point Cursor
- {
- get
- {
- int row = SelectedCodePoint / 16 * _rowHeight - Viewport.Y + 1;
- int col = SelectedCodePoint % 16 * COLUMN_WIDTH - Viewport.X + RowLabelWidth + 1; // + 1 for padding between label and first column
- return new (col, row);
- }
- set => throw new NotImplementedException ();
- }
- public static int MaxCodePoint = UnicodeRange.Ranges.Max (r => r.End);
- /// <summary>
- /// Specifies the starting offset for the character map. The default is 0x2500 which is the Box Drawing
- /// characters.
- /// </summary>
- public int SelectedCodePoint
- {
- get => _selected;
- set
- {
- if (_selected == value)
- {
- return;
- }
- _selected = value;
- if (IsInitialized)
- {
- int row = SelectedCodePoint / 16 * _rowHeight;
- int col = SelectedCodePoint % 16 * COLUMN_WIDTH;
- if (row - Viewport.Y < 0)
- {
- // Moving up.
- Viewport = Viewport with { Y = row };
- }
- else if (row - Viewport.Y >= Viewport.Height)
- {
- // Moving down.
- Viewport = Viewport with { Y = row - Viewport.Height };
- }
- int width = Viewport.Width / COLUMN_WIDTH * COLUMN_WIDTH - RowLabelWidth;
- if (col - Viewport.X < 0)
- {
- // Moving left.
- Viewport = Viewport with { X = col };
- }
- else if (col - Viewport.X >= width)
- {
- // Moving right.
- Viewport = Viewport with { X = col - width };
- }
- }
- SetNeedsDisplay ();
- SelectedCodePointChanged?.Invoke (this, new (SelectedCodePoint, null));
- }
- }
- public bool ShowGlyphWidths
- {
- get => _rowHeight == 2;
- set
- {
- _rowHeight = value ? 2 : 1;
- SetNeedsDisplay ();
- }
- }
- /// <summary>
- /// Specifies the starting offset for the character map. The default is 0x2500 which is the Box Drawing
- /// characters.
- /// </summary>
- public int StartCodePoint
- {
- get => _start;
- set
- {
- _start = value;
- SelectedCodePoint = value;
- Viewport = Viewport with { Y = SelectedCodePoint / 16 * _rowHeight };
- SetNeedsDisplay ();
- }
- }
- private static int RowLabelWidth => $"U+{MaxCodePoint:x5}".Length + 1;
- private static int RowWidth => RowLabelWidth + COLUMN_WIDTH * 16;
- public event EventHandler<ListViewItemEventArgs> Hover;
- public override void OnDrawContent (Rectangle viewport)
- {
- if (viewport.Height == 0 || viewport.Width == 0)
- {
- return;
- }
- Clear ();
- int cursorCol = Cursor.X + Viewport.X - RowLabelWidth - 1;
- int cursorRow = Cursor.Y + Viewport.Y - 1;
- Driver.SetAttribute (GetHotNormalColor ());
- Move (0, 0);
- Driver.AddStr (new (' ', RowLabelWidth + 1));
- int firstColumnX = RowLabelWidth - Viewport.X;
- // Header
- for (var hexDigit = 0; hexDigit < 16; hexDigit++)
- {
- int x = firstColumnX + hexDigit * COLUMN_WIDTH;
- if (x > RowLabelWidth - 2)
- {
- Move (x, 0);
- Driver.SetAttribute (GetHotNormalColor ());
- Driver.AddStr (" ");
- Driver.SetAttribute (HasFocus && cursorCol + firstColumnX == x ? ColorScheme.HotFocus : GetHotNormalColor ());
- Driver.AddStr ($"{hexDigit:x}");
- Driver.SetAttribute (GetHotNormalColor ());
- Driver.AddStr (" ");
- }
- }
- // Even though the Clip is set to prevent us from drawing on the row potentially occupied by the horizontal
- // scroll bar, we do the smart thing and not actually draw that row if not necessary.
- for (var y = 1; y < Viewport.Height; y++)
- {
- // What row is this?
- int row = (y + Viewport.Y - 1) / _rowHeight;
- int val = row * 16;
- if (val > MaxCodePoint)
- {
- break;
- }
- Move (firstColumnX + COLUMN_WIDTH, y);
- Driver.SetAttribute (GetNormalColor ());
- for (var col = 0; col < 16; col++)
- {
- int x = firstColumnX + COLUMN_WIDTH * col + 1;
- if (x < 0 || x > Viewport.Width - 1)
- {
- continue;
- }
- Move (x, y);
- // If we're at the cursor position, and we don't have focus, invert the colors.
- if (row == cursorRow && x == cursorCol && !HasFocus)
- {
- Driver.SetAttribute (GetFocusColor ());
- }
- int scalar = val + col;
- var rune = (Rune)'?';
- if (Rune.IsValid (scalar))
- {
- rune = new (scalar);
- }
- int width = rune.GetColumns ();
- if (!ShowGlyphWidths || (y + Viewport.Y) % _rowHeight > 0)
- {
- // Draw the rune
- if (width > 0)
- {
- Driver.AddRune (rune);
- }
- else
- {
- if (rune.IsCombiningMark ())
- {
- // This is a hack to work around the fact that combining marks
- // a) can't be rendered on their own
- // b) that don't normalize are not properly supported in
- // any known terminal (esp Windows/AtlasEngine).
- // See Issue #2616
- var sb = new StringBuilder ();
- sb.Append ('a');
- sb.Append (rune);
- // Try normalizing after combining with 'a'. If it normalizes, at least
- // it'll show on the 'a'. If not, just show the replacement char.
- string normal = sb.ToString ().Normalize (NormalizationForm.FormC);
- if (normal.Length == 1)
- {
- Driver.AddRune (normal [0]);
- }
- else
- {
- Driver.AddRune (Rune.ReplacementChar);
- }
- }
- }
- }
- else
- {
- // Draw the width of the rune
- Driver.SetAttribute (ColorScheme.HotNormal);
- Driver.AddStr ($"{width}");
- }
- // If we're at the cursor position, and we don't have focus, revert the colors to normal
- if (row == cursorRow && x == cursorCol && !HasFocus)
- {
- Driver.SetAttribute (GetNormalColor ());
- }
- }
- // Draw row label (U+XXXX_)
- Move (0, y);
- Driver.SetAttribute (HasFocus && y + Viewport.Y - 1 == cursorRow ? ColorScheme.HotFocus : ColorScheme.HotNormal);
- if (!ShowGlyphWidths || (y + Viewport.Y) % _rowHeight > 0)
- {
- Driver.AddStr ($"U+{val / 16:x5}_ ");
- }
- else
- {
- Driver.AddStr (new (' ', RowLabelWidth));
- }
- }
- }
- public override bool OnEnter (View view)
- {
- if (IsInitialized)
- {
- Application.Driver.SetCursorVisibility (_cursor);
- }
- return base.OnEnter (view);
- }
- public override bool OnLeave (View view)
- {
- Driver.SetCursorVisibility (CursorVisibility.Invisible);
- return base.OnLeave (view);
- }
- public override Point? PositionCursor ()
- {
- if (HasFocus
- && Cursor.X >= RowLabelWidth
- && Cursor.X < Viewport.Width
- && Cursor.Y > 0
- && Cursor.Y < Viewport.Height)
- {
- Driver.SetCursorVisibility (_cursor);
- Move (Cursor.X, Cursor.Y);
- }
- else
- {
- Driver.SetCursorVisibility (CursorVisibility.Invisible);
- }
- return Cursor;
- }
- public event EventHandler<ListViewItemEventArgs> SelectedCodePointChanged;
- public static string ToCamelCase (string str)
- {
- if (string.IsNullOrEmpty (str))
- {
- return str;
- }
- TextInfo textInfo = new CultureInfo ("en-US", false).TextInfo;
- str = textInfo.ToLower (str);
- str = textInfo.ToTitleCase (str);
- return str;
- }
- private void CopyCodePoint () { Clipboard.Contents = $"U+{SelectedCodePoint:x5}"; }
- private void CopyGlyph () { Clipboard.Contents = $"{new Rune (SelectedCodePoint)}"; }
- private void Handle_MouseClick (object sender, MouseEventEventArgs args)
- {
- MouseEvent me = args.MouseEvent;
- if (me.Flags != MouseFlags.ReportMousePosition && me.Flags != MouseFlags.Button1Clicked && me.Flags != MouseFlags.Button1DoubleClicked)
- {
- return;
- }
- if (me.Y == 0)
- {
- me.Y = Cursor.Y;
- }
- if (me.X < RowLabelWidth || me.X > RowLabelWidth + 16 * COLUMN_WIDTH - 1)
- {
- me.X = Cursor.X;
- }
- int row = (me.Y - 1 - -Viewport.Y) / _rowHeight; // -1 for header
- int col = (me.X - RowLabelWidth - -Viewport.X) / COLUMN_WIDTH;
- if (col > 15)
- {
- col = 15;
- }
- int val = row * 16 + col;
- if (val > MaxCodePoint)
- {
- return;
- }
- if (me.Flags == MouseFlags.ReportMousePosition)
- {
- Hover?.Invoke (this, new (val, null));
- }
- if (!HasFocus && CanFocus)
- {
- SetFocus ();
- }
- args.Handled = true;
- if (me.Flags == MouseFlags.Button1Clicked)
- {
- SelectedCodePoint = val;
- return;
- }
- if (me.Flags == MouseFlags.Button1DoubleClicked)
- {
- SelectedCodePoint = val;
- ShowDetails ();
- return;
- }
- if (me.Flags == _contextMenu.MouseFlags)
- {
- SelectedCodePoint = val;
- _contextMenu = new ()
- {
- Position = new (me.X + 1, me.Y + 1),
- MenuItems = new (
- new MenuItem []
- {
- new (
- "_Copy Glyph",
- "",
- CopyGlyph,
- null,
- null,
- (KeyCode)Key.C.WithCtrl
- ),
- new (
- "Copy Code _Point",
- "",
- CopyCodePoint,
- null,
- null,
- (KeyCode)Key.C.WithCtrl
- .WithShift
- )
- }
- )
- };
- _contextMenu.Show ();
- }
- }
- private void ShowDetails ()
- {
- var client = new UcdApiClient ();
- var decResponse = string.Empty;
- var getCodePointError = string.Empty;
- var waitIndicator = new Dialog
- {
- Title = "Getting Code Point Information",
- X = Pos.Center (),
- Y = Pos.Center (),
- Height = 7,
- Width = 50,
- Buttons = [new () { Text = "Cancel" }]
- };
- var errorLabel = new Label
- {
- Text = UcdApiClient.BaseUrl,
- AutoSize = false,
- X = 0,
- Y = 1,
- Width = Dim.Fill (),
- Height = Dim.Fill (1),
- TextAlignment = TextAlignment.Centered
- };
- var spinner = new SpinnerView { X = Pos.Center (), Y = Pos.Center (), Style = new Aesthetic () };
- spinner.AutoSpin = true;
- waitIndicator.Add (errorLabel);
- waitIndicator.Add (spinner);
- waitIndicator.Ready += async (s, a) =>
- {
- try
- {
- decResponse = await client.GetCodepointDec (SelectedCodePoint);
- Application.Invoke (() => waitIndicator.RequestStop ());
- }
- catch (HttpRequestException e)
- {
- getCodePointError = errorLabel.Text = e.Message;
- Application.Invoke (() => waitIndicator.RequestStop ());
- }
- };
- Application.Run (waitIndicator);
- waitIndicator.Dispose ();
- if (!string.IsNullOrEmpty (decResponse))
- {
- var name = string.Empty;
- using (JsonDocument document = JsonDocument.Parse (decResponse))
- {
- JsonElement root = document.RootElement;
- // Get a property by name and output its value
- if (root.TryGetProperty ("name", out JsonElement nameElement))
- {
- name = nameElement.GetString ();
- }
- //// Navigate to a nested property and output its value
- //if (root.TryGetProperty ("property3", out JsonElement property3Element)
- //&& property3Element.TryGetProperty ("nestedProperty", out JsonElement nestedPropertyElement)) {
- // Console.WriteLine (nestedPropertyElement.GetString ());
- //}
- decResponse = JsonSerializer.Serialize (
- document.RootElement,
- new
- JsonSerializerOptions
- { WriteIndented = true }
- );
- }
- var title = $"{ToCamelCase (name)} - {new Rune (SelectedCodePoint)} U+{SelectedCodePoint:x5}";
- var copyGlyph = new Button { Text = "Copy _Glyph" };
- var copyCP = new Button { Text = "Copy Code _Point" };
- var cancel = new Button { Text = "Cancel" };
- var dlg = new Dialog { Title = title, Buttons = [copyGlyph, copyCP, cancel] };
- copyGlyph.Accept += (s, a) =>
- {
- CopyGlyph ();
- dlg.RequestStop ();
- };
- copyCP.Accept += (s, a) =>
- {
- CopyCodePoint ();
- dlg.RequestStop ();
- };
- cancel.Accept += (s, a) => dlg.RequestStop ();
- var rune = (Rune)SelectedCodePoint;
- var label = new Label { Text = "IsAscii: ", X = 0, Y = 0 };
- dlg.Add (label);
- label = new () { Text = $"{rune.IsAscii}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = ", Bmp: ", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = $"{rune.IsBmp}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = ", CombiningMark: ", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = $"{rune.IsCombiningMark ()}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = ", SurrogatePair: ", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = $"{rune.IsSurrogatePair ()}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = ", Plane: ", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = $"{rune.Plane}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = "Columns: ", X = 0, Y = Pos.Bottom (label) };
- dlg.Add (label);
- label = new () { Text = $"{rune.GetColumns ()}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = ", Utf16SequenceLength: ", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new () { Text = $"{rune.Utf16SequenceLength}", X = Pos.Right (label), Y = Pos.Top (label) };
- dlg.Add (label);
- label = new ()
- {
- Text =
- $"Code Point Information from {UcdApiClient.BaseUrl}codepoint/dec/{SelectedCodePoint}:",
- X = 0,
- Y = Pos.Bottom (label)
- };
- dlg.Add (label);
- var json = new TextView
- {
- X = 0,
- Y = Pos.Bottom (label),
- Width = Dim.Fill (),
- Height = Dim.Fill (2),
- ReadOnly = true,
- Text = decResponse
- };
- dlg.Add (json);
- Application.Run (dlg);
- dlg.Dispose ();
- }
- else
- {
- MessageBox.ErrorQuery (
- "Code Point API",
- $"{UcdApiClient.BaseUrl}codepoint/dec/{SelectedCodePoint} did not return a result for\r\n {new Rune (SelectedCodePoint)} U+{SelectedCodePoint:x5}.",
- "Ok"
- );
- }
- // BUGBUG: This is a workaround for some weird ScrollView related mouse grab bug
- Application.GrabMouse (this);
- }
- }
- public class UcdApiClient
- {
- public const string BaseUrl = "https://ucdapi.org/unicode/latest/";
- private static readonly HttpClient _httpClient = new ();
- public async Task<string> GetChars (string chars)
- {
- HttpResponseMessage response = await _httpClient.GetAsync ($"{BaseUrl}chars/{Uri.EscapeDataString (chars)}");
- response.EnsureSuccessStatusCode ();
- return await response.Content.ReadAsStringAsync ();
- }
- public async Task<string> GetCharsName (string chars)
- {
- HttpResponseMessage response =
- await _httpClient.GetAsync ($"{BaseUrl}chars/{Uri.EscapeDataString (chars)}/name");
- response.EnsureSuccessStatusCode ();
- return await response.Content.ReadAsStringAsync ();
- }
- public async Task<string> GetCodepointDec (int dec)
- {
- HttpResponseMessage response = await _httpClient.GetAsync ($"{BaseUrl}codepoint/dec/{dec}");
- response.EnsureSuccessStatusCode ();
- return await response.Content.ReadAsStringAsync ();
- }
- public async Task<string> GetCodepointHex (string hex)
- {
- HttpResponseMessage response = await _httpClient.GetAsync ($"{BaseUrl}codepoint/hex/{hex}");
- response.EnsureSuccessStatusCode ();
- return await response.Content.ReadAsStringAsync ();
- }
- }
- internal class UnicodeRange
- {
- public static List<UnicodeRange> Ranges = GetRanges ();
- public string Category;
- public int End;
- public int Start;
- public UnicodeRange (int start, int end, string category)
- {
- Start = start;
- End = end;
- Category = category;
- }
- public static List<UnicodeRange> GetRanges ()
- {
- IEnumerable<UnicodeRange> ranges =
- from r in typeof (UnicodeRanges).GetProperties (BindingFlags.Static | BindingFlags.Public)
- let urange = r.GetValue (null) as System.Text.Unicode.UnicodeRange
- let name = string.IsNullOrEmpty (r.Name)
- ? $"U+{urange.FirstCodePoint:x5}-U+{urange.FirstCodePoint + urange.Length:x5}"
- : r.Name
- where name != "None" && name != "All"
- select new UnicodeRange (urange.FirstCodePoint, urange.FirstCodePoint + urange.Length, name);
- // .NET 8.0 only supports BMP in UnicodeRanges: https://learn.microsoft.com/en-us/dotnet/api/system.text.unicode.unicoderanges?view=net-8.0
- List<UnicodeRange> nonBmpRanges = new ()
- {
- new (
- 0x1F130,
- 0x1F149,
- "Squared Latin Capital Letters"
- ),
- new (
- 0x12400,
- 0x1240f,
- "Cuneiform Numbers and Punctuation"
- ),
- new (0x10000, 0x1007F, "Linear B Syllabary"),
- new (0x10080, 0x100FF, "Linear B Ideograms"),
- new (0x10100, 0x1013F, "Aegean Numbers"),
- new (0x10300, 0x1032F, "Old Italic"),
- new (0x10330, 0x1034F, "Gothic"),
- new (0x10380, 0x1039F, "Ugaritic"),
- new (0x10400, 0x1044F, "Deseret"),
- new (0x10450, 0x1047F, "Shavian"),
- new (0x10480, 0x104AF, "Osmanya"),
- new (0x10800, 0x1083F, "Cypriot Syllabary"),
- new (
- 0x1D000,
- 0x1D0FF,
- "Byzantine Musical Symbols"
- ),
- new (0x1D100, 0x1D1FF, "Musical Symbols"),
- new (0x1D300, 0x1D35F, "Tai Xuan Jing Symbols"),
- new (
- 0x1D400,
- 0x1D7FF,
- "Mathematical Alphanumeric Symbols"
- ),
- new (0x1F600, 0x1F532, "Emojis Symbols"),
- new (
- 0x20000,
- 0x2A6DF,
- "CJK Unified Ideographs Extension B"
- ),
- new (
- 0x2F800,
- 0x2FA1F,
- "CJK Compatibility Ideographs Supplement"
- ),
- new (0xE0000, 0xE007F, "Tags")
- };
- return ranges.Concat (nonBmpRanges).OrderBy (r => r.Category).ToList ();
- }
- }
|