//
// TextField.cs: single-line text editor with Emacs keybindings
//
// Authors:
// Miguel de Icaza (miguel@gnome.org)
//
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Text;
using Terminal.Gui.Resources;
namespace Terminal.Gui {
///
/// Single-line text entry
///
///
/// The provides editing functionality and mouse support.
///
public class TextField : View {
List _text;
int _first, _point;
int _selectedStart = -1; // -1 represents there is no text selection.
string _selectedText;
HistoryText _historyText = new HistoryText ();
CultureInfo _currentCulture;
///
/// Gets or sets the text to render in control when no value has
/// been entered yet and the does not yet have
/// input focus.
///
public string Caption { get; set; }
///
/// Gets or sets the foreground to use when
/// rendering .
///
public Color CaptionColor { get; set; } = Color.DarkGray;
///
/// Tracks whether the text field should be considered "used", that is, that the user has moved in the entry, so new input should be appended at the cursor position, rather than clearing the entry
///
public bool Used { get; set; }
///
/// If set to true its not allow any changes in the text.
///
public bool ReadOnly { get; set; } = false;
///
/// Changing event, raised before the changes and can be canceled or changing the new text.
///
public event EventHandler TextChanging;
///
/// Changed event, raised when the text has changed.
///
///
/// This event is raised when the changes.
///
///
/// The passed is a containing the old value.
///
public event EventHandler TextChanged;
///
/// Initializes a new instance of the class using positioning.
///
public TextField () : this (string.Empty) { }
///
/// Initializes a new instance of the class using positioning.
///
/// Initial text contents.
public TextField (string text) : base (text)
{
SetInitialProperties (text, text.GetRuneCount () + 1);
}
///
/// Initializes a new instance of the class using positioning.
///
/// The x coordinate.
/// The y coordinate.
/// The width.
/// Initial text contents.
public TextField (int x, int y, int w, string text) : base (new Rect (x, y, w, 1))
{
SetInitialProperties (text, w);
}
void SetInitialProperties (string text, int w)
{
Height = 1;
if (text == null)
text = "";
this._text = text.Split ("\n") [0].EnumerateRunes ().ToList ();
_point = text.GetRuneCount ();
_first = _point > w + 1 ? _point - w + 1 : 0;
CanFocus = true;
Used = true;
WantMousePositionReports = true;
_savedCursorVisibility = _desiredCursorVisibility;
_historyText.ChangeText += HistoryText_ChangeText;
Initialized += TextField_Initialized;
// Things this view knows how to do
AddCommand (Command.DeleteCharRight, () => { DeleteCharRight (); return true; });
AddCommand (Command.DeleteCharLeft, () => { DeleteCharLeft (); return true; });
AddCommand (Command.LeftHomeExtend, () => { MoveHomeExtend (); return true; });
AddCommand (Command.RightEndExtend, () => { MoveEndExtend (); return true; });
AddCommand (Command.LeftHome, () => { MoveHome (); return true; });
AddCommand (Command.LeftExtend, () => { MoveLeftExtend (); return true; });
AddCommand (Command.RightExtend, () => { MoveRightExtend (); return true; });
AddCommand (Command.WordLeftExtend, () => { MoveWordLeftExtend (); return true; });
AddCommand (Command.WordRightExtend, () => { MoveWordRightExtend (); return true; });
AddCommand (Command.Left, () => { MoveLeft (); return true; });
AddCommand (Command.RightEnd, () => { MoveEnd (); return true; });
AddCommand (Command.Right, () => { MoveRight (); return true; });
AddCommand (Command.CutToEndLine, () => { KillToEnd (); return true; });
AddCommand (Command.CutToStartLine, () => { KillToStart (); return true; });
AddCommand (Command.Undo, () => { Undo (); return true; });
AddCommand (Command.Redo, () => { Redo (); return true; });
AddCommand (Command.WordLeft, () => { MoveWordLeft (); return true; });
AddCommand (Command.WordRight, () => { MoveWordRight (); return true; });
AddCommand (Command.KillWordForwards, () => { KillWordForwards (); return true; });
AddCommand (Command.KillWordBackwards, () => { KillWordBackwards (); return true; });
AddCommand (Command.ToggleOverwrite, () => { SetOverwrite (!Used); return true; });
AddCommand (Command.EnableOverwrite, () => { SetOverwrite (true); return true; });
AddCommand (Command.DisableOverwrite, () => { SetOverwrite (false); return true; });
AddCommand (Command.Copy, () => { Copy (); return true; });
AddCommand (Command.Cut, () => { Cut (); return true; });
AddCommand (Command.Paste, () => { Paste (); return true; });
AddCommand (Command.SelectAll, () => { SelectAll (); return true; });
AddCommand (Command.DeleteAll, () => { DeleteAll (); return true; });
AddCommand (Command.Accept, () => { ShowContextMenu (); return true; });
// Default keybindings for this view
AddKeyBinding (Key.DeleteChar, Command.DeleteCharRight);
AddKeyBinding (Key.D | Key.CtrlMask, Command.DeleteCharRight);
AddKeyBinding (Key.Delete, Command.DeleteCharLeft);
AddKeyBinding (Key.Backspace, Command.DeleteCharLeft);
AddKeyBinding (Key.Home | Key.ShiftMask, Command.LeftHomeExtend);
AddKeyBinding (Key.Home | Key.ShiftMask | Key.CtrlMask, Command.LeftHomeExtend);
AddKeyBinding (Key.A | Key.ShiftMask | Key.CtrlMask, Command.LeftHomeExtend);
AddKeyBinding (Key.End | Key.ShiftMask, Command.RightEndExtend);
AddKeyBinding (Key.End | Key.ShiftMask | Key.CtrlMask, Command.RightEndExtend);
AddKeyBinding (Key.E | Key.ShiftMask | Key.CtrlMask, Command.RightEndExtend);
AddKeyBinding (Key.Home, Command.LeftHome);
AddKeyBinding (Key.Home | Key.CtrlMask, Command.LeftHome);
AddKeyBinding (Key.A | Key.CtrlMask, Command.LeftHome);
AddKeyBinding (Key.CursorLeft | Key.ShiftMask, Command.LeftExtend);
AddKeyBinding (Key.CursorUp | Key.ShiftMask, Command.LeftExtend);
AddKeyBinding (Key.CursorRight | Key.ShiftMask, Command.RightExtend);
AddKeyBinding (Key.CursorDown | Key.ShiftMask, Command.RightExtend);
AddKeyBinding (Key.CursorLeft | Key.ShiftMask | Key.CtrlMask, Command.WordLeftExtend);
AddKeyBinding (Key.CursorUp | Key.ShiftMask | Key.CtrlMask, Command.WordLeftExtend);
AddKeyBinding ((Key)((int)'B' + Key.ShiftMask | Key.AltMask), Command.WordLeftExtend);
AddKeyBinding (Key.CursorRight | Key.ShiftMask | Key.CtrlMask, Command.WordRightExtend);
AddKeyBinding (Key.CursorDown | Key.ShiftMask | Key.CtrlMask, Command.WordRightExtend);
AddKeyBinding ((Key)((int)'F' + Key.ShiftMask | Key.AltMask), Command.WordRightExtend);
AddKeyBinding (Key.CursorLeft, Command.Left);
AddKeyBinding (Key.B | Key.CtrlMask, Command.Left);
AddKeyBinding (Key.End, Command.RightEnd);
AddKeyBinding (Key.End | Key.CtrlMask, Command.RightEnd);
AddKeyBinding (Key.E | Key.CtrlMask, Command.RightEnd);
AddKeyBinding (Key.CursorRight, Command.Right);
AddKeyBinding (Key.F | Key.CtrlMask, Command.Right);
AddKeyBinding (Key.K | Key.CtrlMask, Command.CutToEndLine);
AddKeyBinding (Key.K | Key.AltMask, Command.CutToStartLine);
AddKeyBinding (Key.Z | Key.CtrlMask, Command.Undo);
AddKeyBinding (Key.Backspace | Key.AltMask, Command.Undo);
AddKeyBinding (Key.Y | Key.CtrlMask, Command.Redo);
AddKeyBinding (Key.CursorLeft | Key.CtrlMask, Command.WordLeft);
AddKeyBinding (Key.CursorUp | Key.CtrlMask, Command.WordLeft);
AddKeyBinding ((Key)((int)'B' + Key.AltMask), Command.WordLeft);
AddKeyBinding (Key.CursorRight | Key.CtrlMask, Command.WordRight);
AddKeyBinding (Key.CursorDown | Key.CtrlMask, Command.WordRight);
AddKeyBinding ((Key)((int)'F' + Key.AltMask), Command.WordRight);
AddKeyBinding (Key.DeleteChar | Key.CtrlMask, Command.KillWordForwards);
AddKeyBinding (Key.Backspace | Key.CtrlMask, Command.KillWordBackwards);
AddKeyBinding (Key.InsertChar, Command.ToggleOverwrite);
AddKeyBinding (Key.C | Key.CtrlMask, Command.Copy);
AddKeyBinding (Key.X | Key.CtrlMask, Command.Cut);
AddKeyBinding (Key.V | Key.CtrlMask, Command.Paste);
AddKeyBinding (Key.T | Key.CtrlMask, Command.SelectAll);
AddKeyBinding (Key.R | Key.CtrlMask, Command.DeleteAll);
AddKeyBinding (Key.D | Key.CtrlMask | Key.ShiftMask, Command.DeleteAll);
_currentCulture = Thread.CurrentThread.CurrentUICulture;
ContextMenu = new ContextMenu (this, BuildContextMenuBarItem ());
ContextMenu.KeyChanged += ContextMenu_KeyChanged;
AddKeyBinding (ContextMenu.Key, Command.Accept);
}
private MenuBarItem BuildContextMenuBarItem ()
{
return new MenuBarItem (new MenuItem [] {
new MenuItem (Strings.ctxSelectAll, "", () => SelectAll (), null, null, GetKeyFromCommand (Command.SelectAll)),
new MenuItem (Strings.ctxDeleteAll, "", () => DeleteAll (), null, null, GetKeyFromCommand (Command.DeleteAll)),
new MenuItem (Strings.ctxCopy, "", () => Copy (), null, null, GetKeyFromCommand (Command.Copy)),
new MenuItem (Strings.ctxCut, "", () => Cut (), null, null, GetKeyFromCommand (Command.Cut)),
new MenuItem (Strings.ctxPaste, "", () => Paste (), null, null, GetKeyFromCommand (Command.Paste)),
new MenuItem (Strings.ctxUndo, "", () => Undo (), null, null, GetKeyFromCommand (Command.Undo)),
new MenuItem (Strings.ctxRedo, "", () => Redo (), null, null, GetKeyFromCommand (Command.Redo)),
});
}
private void ContextMenu_KeyChanged (object sender, KeyChangedEventArgs e)
{
ReplaceKeyBinding (e.OldKey, e.NewKey);
}
private void HistoryText_ChangeText (object sender, HistoryText.HistoryTextItem obj)
{
if (obj == null)
return;
Text = TextModel.ToString (obj?.Lines [obj.CursorPosition.Y]);
CursorPosition = obj.CursorPosition.X;
Adjust ();
}
void TextField_Initialized (object sender, EventArgs e)
{
Autocomplete.HostControl = this;
Autocomplete.PopupInsideContainer = false;
}
///
public override bool OnEnter (View view)
{
if (IsInitialized) {
Application.Driver.SetCursorVisibility (DesiredCursorVisibility);
}
return base.OnEnter (view);
}
///
public override bool OnLeave (View view)
{
if (Application.MouseGrabView != null && Application.MouseGrabView == this)
Application.UngrabMouse ();
//if (SelectedLength != 0 && !(Application.MouseGrabView is MenuBar))
// ClearAllSelection ();
return base.OnLeave (view);
}
///
/// Provides autocomplete context menu based on suggestions at the current cursor
/// position. Configure to enable this feature.
///
public IAutocomplete Autocomplete { get; set; } = new TextFieldAutocomplete ();
///
public override Rect Frame {
get => base.Frame;
set {
if (value.Height > 1) {
base.Frame = new Rect (value.X, value.Y, value.Width, 1);
Height = 1;
} else {
base.Frame = value;
}
Adjust ();
}
}
///
/// Sets or gets the text held by the view.
///
///
///
public new string Text {
get {
return StringExtensions.ToString (_text);
}
set {
var oldText = StringExtensions.ToString (_text);
if (oldText == value)
return;
var newText = OnTextChanging (value.Replace ("\t", "").Split ("\n") [0]);
if (newText.Cancel) {
if (_point > _text.Count) {
_point = _text.Count;
}
return;
}
ClearAllSelection ();
_text = newText.NewText.EnumerateRunes ().ToList ();
if (!Secret && !_historyText.IsFromHistory) {
_historyText.Add (new List> () { TextModel.ToRuneCellList (oldText) },
new Point (_point, 0));
_historyText.Add (new List> () { TextModel.ToRuneCells (_text) }, new Point (_point, 0)
, HistoryText.LineStatus.Replaced);
}
TextChanged?.Invoke (this, new TextChangedEventArgs (oldText));
ProcessAutocomplete ();
if (_point > _text.Count) {
_point = Math.Max (TextModel.DisplaySize (_text, 0).size - 1, 0);
}
Adjust ();
SetNeedsDisplay ();
}
}
///
/// Sets the secret property.
///
///
/// This makes the text entry suitable for entering passwords.
///
public bool Secret { get; set; }
///
/// Sets or gets the current cursor position.
///
public virtual int CursorPosition {
get { return _point; }
set {
if (value < 0) {
_point = 0;
} else if (value > _text.Count) {
_point = _text.Count;
} else {
_point = value;
}
PrepareSelection (_selectedStart, _point - _selectedStart);
}
}
///
/// Gets the left offset position.
///
public int ScrollOffset => _first;
///
/// Indicates whatever the text was changed or not.
/// if the text was changed otherwise.
///
public bool IsDirty => _historyText.IsDirty (Text);
///
/// Indicates whatever the text has history changes or not.
/// if the text has history changes otherwise.
///
public bool HasHistoryChanges => _historyText.HasHistoryChanges;
///
/// Get the for this view.
///
public ContextMenu ContextMenu { get; private set; }
///
/// Sets the cursor position.
///
public override void PositionCursor ()
{
ProcessAutocomplete ();
var col = 0;
for (int idx = _first < 0 ? 0 : _first; idx < _text.Count; idx++) {
if (idx == _point)
break;
var cols = _text [idx].GetColumns ();
TextModel.SetCol (ref col, Frame.Width - 1, cols);
}
var pos = _point - _first + Math.Min (Frame.X, 0);
var offB = OffSetBackground ();
var containerFrame = SuperView?.ViewToScreen (SuperView.Bounds) ?? default;
var thisFrame = ViewToScreen (Bounds);
if (pos > -1 && col >= pos && pos < Frame.Width + offB
&& containerFrame.IntersectsWith (thisFrame)) {
RestoreCursorVisibility ();
Move (col, 0);
} else {
HideCursorVisibility ();
if (pos < 0) {
Move (pos, 0, false);
} else {
Move (pos - offB, 0, false);
}
}
}
CursorVisibility _savedCursorVisibility;
void HideCursorVisibility ()
{
if (_desiredCursorVisibility != CursorVisibility.Invisible) {
DesiredCursorVisibility = CursorVisibility.Invisible;
}
}
CursorVisibility _visibility;
void RestoreCursorVisibility ()
{
Application.Driver.GetCursorVisibility (out _visibility);
if (_desiredCursorVisibility != _savedCursorVisibility || _visibility != _savedCursorVisibility) {
DesiredCursorVisibility = _savedCursorVisibility;
}
}
bool _isDrawing = false;
///
public override void OnDrawContent (Rect contentArea)
{
_isDrawing = true;
var selColor = new Attribute (ColorScheme.Focus.Background, ColorScheme.Focus.Foreground);
SetSelectedStartSelectedLength ();
Driver.SetAttribute (GetNormalColor ());
Move (0, 0);
int p = _first;
int col = 0;
int width = Frame.Width + OffSetBackground ();
var tcount = _text.Count;
var roc = GetReadOnlyColor ();
for (int idx = p; idx < tcount; idx++) {
var rune = _text [idx];
var cols = rune.GetColumns ();
if (idx == _point && HasFocus && !Used && _length == 0 && !ReadOnly) {
Driver.SetAttribute (selColor);
} else if (ReadOnly) {
Driver.SetAttribute (idx >= _start && _length > 0 && idx < _start + _length ? selColor : roc);
} else if (!HasFocus && Enabled) {
Driver.SetAttribute (ColorScheme.Focus);
} else if (!Enabled) {
Driver.SetAttribute (roc);
} else {
Driver.SetAttribute (idx >= _start && _length > 0 && idx < _start + _length ? selColor : ColorScheme.Focus);
}
if (col + cols <= width) {
Driver.AddRune ((Secret ? CM.Glyphs.Dot : rune));
}
if (!TextModel.SetCol (ref col, width, cols)) {
break;
}
if (idx + 1 < tcount && col + _text [idx + 1].GetColumns () > width) {
break;
}
}
Driver.SetAttribute (ColorScheme.Focus);
for (int i = col; i < width; i++) {
Driver.AddRune ((Rune)' ');
}
PositionCursor ();
RenderCaption ();
ProcessAutocomplete ();
_isDrawing = false;
}
private void ProcessAutocomplete ()
{
if (_isDrawing) {
return;
}
if (SelectedLength > 0) {
return;
}
// draw autocomplete
GenerateSuggestions ();
var renderAt = new Point (
Autocomplete.Context.CursorPosition, 0);
Autocomplete.RenderOverlay (renderAt);
}
private void RenderCaption ()
{
if (HasFocus || Caption == null || Caption.Length == 0
|| Text?.Length > 0) {
return;
}
var color = new Attribute (CaptionColor, GetNormalColor ().Background);
Driver.SetAttribute (color);
Move (0, 0);
var render = Caption;
if (render.GetColumns () > Bounds.Width) {
render = render [..Bounds.Width];
}
Driver.AddStr (render);
}
private void GenerateSuggestions ()
{
var currentLine = TextModel.ToRuneCellList (Text);
var cursorPosition = Math.Min (this.CursorPosition, currentLine.Count);
Autocomplete.Context = new AutocompleteContext (currentLine, cursorPosition,
Autocomplete.Context != null ? Autocomplete.Context.Canceled : false);
Autocomplete.GenerateSuggestions (
Autocomplete.Context);
}
///
public override Attribute GetNormalColor ()
{
return Enabled ? ColorScheme.Focus : ColorScheme.Disabled;
}
Attribute GetReadOnlyColor ()
{
if (ColorScheme.Disabled.Foreground == ColorScheme.Focus.Background) {
return new Attribute (ColorScheme.Focus.Foreground, ColorScheme.Focus.Background);
}
return new Attribute (ColorScheme.Disabled.Foreground, ColorScheme.Focus.Background);
}
void Adjust ()
{
if (!IsAdded)
return;
int offB = OffSetBackground ();
bool need = NeedsDisplay || !Used;
if (_point < _first) {
_first = _point;
need = true;
} else if (Frame.Width > 0 && (_first + _point - (Frame.Width + offB) == 0 ||
TextModel.DisplaySize (_text, _first, _point).size >= Frame.Width + offB)) {
_first = Math.Max (TextModel.CalculateLeftColumn (_text, _first,
_point, Frame.Width + offB), 0);
need = true;
}
if (need) {
SetNeedsDisplay ();
} else {
PositionCursor ();
}
}
int OffSetBackground ()
{
int offB = 0;
if (SuperView?.Frame.Right - Frame.Right < 0) {
offB = SuperView.Frame.Right - Frame.Right - 1;
}
return offB;
}
void SetText (List newText)
{
Text = StringExtensions.ToString (newText);
}
void SetText (IEnumerable newText)
{
SetText (newText.ToList ());
}
///
public override bool CanFocus {
get => base.CanFocus;
set { base.CanFocus = value; }
}
void SetClipboard (IEnumerable text)
{
if (!Secret)
Clipboard.Contents = StringExtensions.ToString (text.ToList ());
}
int _oldCursorPos;
///
/// Processes key presses for the .
///
///
///
///
/// The control responds to the following keys:
///
///
/// Keys
/// Function
///
/// -
/// ,
/// Deletes the character before cursor.
///
///
///
public override bool ProcessKey (KeyEvent kb)
{
// remember current cursor position
// because the new calculated cursor position is needed to be set BEFORE the change event is triggest
// Needed for the Elmish Wrapper issue https://github.com/DieselMeister/Terminal.Gui.Elmish/issues/2
_oldCursorPos = _point;
// Give autocomplete first opportunity to respond to key presses
if (SelectedLength == 0 && Autocomplete.Suggestions.Count > 0 && Autocomplete.ProcessKey (kb)) {
return true;
}
var result = InvokeKeybindings (new KeyEvent (ShortcutHelper.GetModifiersKey (kb),
new KeyModifiers () { Alt = kb.IsAlt, Ctrl = kb.IsCtrl, Shift = kb.IsShift }));
if (result != null)
return (bool)result;
// Ignore other control characters.
if (kb.Key < Key.Space || kb.Key > Key.CharMask)
return false;
if (ReadOnly)
return true;
InsertText (kb);
return true;
}
void InsertText (KeyEvent kb, bool useOldCursorPos = true)
{
_historyText.Add (new List> () { TextModel.ToRuneCells (_text) }, new Point (_point, 0));
List newText = _text;
if (_length > 0) {
newText = DeleteSelectedText ();
_oldCursorPos = _point;
}
if (!useOldCursorPos) {
_oldCursorPos = _point;
}
var kbstr = ((Rune)(uint)kb.Key).ToString ().EnumerateRunes ();
if (Used) {
_point++;
if (_point == newText.Count + 1) {
SetText (newText.Concat (kbstr).ToList ());
} else {
if (_oldCursorPos > newText.Count) {
_oldCursorPos = newText.Count;
}
SetText (newText.GetRange (0, _oldCursorPos).Concat (kbstr).Concat (newText.GetRange (_oldCursorPos, Math.Min (newText.Count - _oldCursorPos, newText.Count))));
}
} else {
SetText (newText.GetRange (0, _oldCursorPos).Concat (kbstr).Concat (newText.GetRange (Math.Min (_oldCursorPos + 1, newText.Count), Math.Max (newText.Count - _oldCursorPos - 1, 0))));
_point++;
}
Adjust ();
}
void SetOverwrite (bool overwrite)
{
Used = overwrite;
SetNeedsDisplay ();
}
TextModel GetModel ()
{
var model = new TextModel ();
model.LoadString (Text);
return model;
}
///
/// Deletes word backwards.
///
public virtual void KillWordBackwards ()
{
ClearAllSelection ();
var newPos = GetModel ().WordBackward (_point, 0);
if (newPos == null) return;
if (newPos.Value.col != -1) {
SetText (_text.GetRange (0, newPos.Value.col).Concat (_text.GetRange (_point, _text.Count - _point)));
_point = newPos.Value.col;
}
Adjust ();
}
///
/// Deletes word forwards.
///
public virtual void KillWordForwards ()
{
ClearAllSelection ();
var newPos = GetModel ().WordForward (_point, 0);
if (newPos == null) return;
if (newPos.Value.col != -1) {
SetText (_text.GetRange (0, _point).Concat (_text.GetRange (newPos.Value.col, _text.Count - newPos.Value.col)));
}
Adjust ();
}
void MoveWordRight ()
{
ClearAllSelection ();
var newPos = GetModel ().WordForward (_point, 0);
if (newPos == null) return;
if (newPos.Value.col != -1)
_point = newPos.Value.col;
Adjust ();
}
void MoveWordLeft ()
{
ClearAllSelection ();
var newPos = GetModel ().WordBackward (_point, 0);
if (newPos == null) return;
if (newPos.Value.col != -1)
_point = newPos.Value.col;
Adjust ();
}
///
/// Redoes the latest changes.
///
public void Redo ()
{
if (ReadOnly) {
return;
}
_historyText.Redo ();
//if (string.IsNullOrEmpty (Clipboard.Contents))
// return true;
//var clip = TextModel.ToRunes (Clipboard.Contents);
//if (clip == null)
// return true;
//if (point == text.Count) {
// point = text.Count;
// SetText(text.Concat(clip).ToList());
//} else {
// point += clip.Count;
// SetText(text.GetRange(0, oldCursorPos).Concat(clip).Concat(text.GetRange(oldCursorPos, text.Count - oldCursorPos)));
//}
//Adjust ();
}
///
/// Undoes the latest changes.
///
public void Undo ()
{
if (ReadOnly) {
return;
}
_historyText.Undo ();
}
void KillToStart ()
{
if (ReadOnly)
return;
ClearAllSelection ();
if (_point == 0)
return;
SetClipboard (_text.GetRange (0, _point));
SetText (_text.GetRange (_point, _text.Count - _point));
_point = 0;
Adjust ();
}
void KillToEnd ()
{
if (ReadOnly)
return;
ClearAllSelection ();
if (_point >= _text.Count)
return;
SetClipboard (_text.GetRange (_point, _text.Count - _point));
SetText (_text.GetRange (0, _point));
Adjust ();
}
void MoveRight ()
{
ClearAllSelection ();
if (_point == _text.Count)
return;
_point++;
Adjust ();
}
///
/// Moves cursor to the end of the typed text.
///
public void MoveEnd ()
{
ClearAllSelection ();
_point = _text.Count;
Adjust ();
}
void MoveLeft ()
{
ClearAllSelection ();
if (_point > 0) {
_point--;
Adjust ();
}
}
void MoveWordRightExtend ()
{
if (_point < _text.Count) {
int x = _start > -1 && _start > _point ? _start : _point;
var newPos = GetModel ().WordForward (x, 0);
if (newPos == null) return;
if (newPos.Value.col != -1)
_point = newPos.Value.col;
PrepareSelection (x, newPos.Value.col - x);
}
}
void MoveWordLeftExtend ()
{
if (_point > 0) {
int x = Math.Min (_start > -1 && _start > _point ? _start : _point, _text.Count);
if (x > 0) {
var newPos = GetModel ().WordBackward (x, 0);
if (newPos == null) return;
if (newPos.Value.col != -1)
_point = newPos.Value.col;
PrepareSelection (x, newPos.Value.col - x);
}
}
}
void MoveRightExtend ()
{
if (_point < _text.Count) {
PrepareSelection (_point++, 1);
}
}
void MoveLeftExtend ()
{
if (_point > 0) {
PrepareSelection (_point--, -1);
}
}
void MoveHome ()
{
ClearAllSelection ();
_point = 0;
Adjust ();
}
void MoveEndExtend ()
{
if (_point <= _text.Count) {
int x = _point;
_point = _text.Count;
PrepareSelection (x, _point - x);
}
}
void MoveHomeExtend ()
{
if (_point > 0) {
int x = _point;
_point = 0;
PrepareSelection (x, _point - x);
}
}
///
/// Deletes the left character.
///
public virtual void DeleteCharLeft (bool useOldCursorPos = true)
{
if (ReadOnly)
return;
_historyText.Add (new List> () { TextModel.ToRuneCells (_text) }, new Point (_point, 0));
if (_length == 0) {
if (_point == 0)
return;
if (!useOldCursorPos) {
_oldCursorPos = _point;
}
_point--;
if (_oldCursorPos < _text.Count) {
SetText (_text.GetRange (0, _oldCursorPos - 1).Concat (_text.GetRange (_oldCursorPos, _text.Count - _oldCursorPos)));
} else {
SetText (_text.GetRange (0, _oldCursorPos - 1));
}
Adjust ();
} else {
var newText = DeleteSelectedText ();
Text = StringExtensions.ToString (newText);
Adjust ();
}
}
///
/// Deletes the right character.
///
public virtual void DeleteCharRight ()
{
if (ReadOnly)
return;
_historyText.Add (new List> () { TextModel.ToRuneCells (_text) }, new Point (_point, 0));
if (_length == 0) {
if (_text.Count == 0 || _text.Count == _point)
return;
SetText (_text.GetRange (0, _point).Concat (_text.GetRange (_point + 1, _text.Count - (_point + 1))));
Adjust ();
} else {
var newText = DeleteSelectedText ();
Text = StringExtensions.ToString (newText);
Adjust ();
}
}
void ShowContextMenu ()
{
if (_currentCulture != Thread.CurrentThread.CurrentUICulture) {
_currentCulture = Thread.CurrentThread.CurrentUICulture;
ContextMenu.MenuItems = BuildContextMenuBarItem ();
}
ContextMenu.Show ();
}
///
/// Selects all text.
///
public void SelectAll ()
{
if (_text.Count == 0) {
return;
}
_selectedStart = 0;
MoveEndExtend ();
SetNeedsDisplay ();
}
///
/// Deletes all text.
///
public void DeleteAll ()
{
if (_text.Count == 0) {
return;
}
_selectedStart = 0;
MoveEndExtend ();
DeleteCharLeft ();
SetNeedsDisplay ();
}
///
/// Start position of the selected text.
///
public int SelectedStart {
get => _selectedStart;
set {
if (value < -1) {
_selectedStart = -1;
} else if (value > _text.Count) {
_selectedStart = _text.Count;
} else {
_selectedStart = value;
}
PrepareSelection (_selectedStart, _point - _selectedStart);
}
}
///
/// Length of the selected text.
///
public int SelectedLength { get => _length; }
///
/// The selected text.
///
public string SelectedText {
get => Secret ? null : _selectedText;
private set => _selectedText = value;
}
int _start, _length;
bool _isButtonPressed;
bool _isButtonReleased = true;
///
public override bool MouseEvent (MouseEvent ev)
{
if (!ev.Flags.HasFlag (MouseFlags.Button1Pressed) && !ev.Flags.HasFlag (MouseFlags.ReportMousePosition) &&
!ev.Flags.HasFlag (MouseFlags.Button1Released) && !ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked) &&
!ev.Flags.HasFlag (MouseFlags.Button1TripleClicked) && !ev.Flags.HasFlag (ContextMenu.MouseFlags)) {
return false;
}
if (!CanFocus) {
return true;
}
if (!HasFocus && ev.Flags != MouseFlags.ReportMousePosition) {
SetFocus ();
}
// Give autocomplete first opportunity to respond to mouse clicks
if (SelectedLength == 0 && Autocomplete.MouseEvent (ev, true)) {
return true;
}
if (ev.Flags == MouseFlags.Button1Pressed) {
EnsureHasFocus ();
PositionCursor (ev);
if (_isButtonReleased) {
ClearAllSelection ();
}
_isButtonReleased = true;
_isButtonPressed = true;
} else if (ev.Flags == (MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition) && _isButtonPressed) {
int x = PositionCursor (ev);
_isButtonReleased = false;
PrepareSelection (x);
if (Application.MouseGrabView == null) {
Application.GrabMouse (this);
}
} else if (ev.Flags == MouseFlags.Button1Released) {
_isButtonReleased = true;
_isButtonPressed = false;
Application.UngrabMouse ();
} else if (ev.Flags == MouseFlags.Button1DoubleClicked) {
EnsureHasFocus ();
int x = PositionCursor (ev);
int sbw = x;
if (x == _text.Count || (x > 0 && (char)_text [x - 1].Value != ' ')
|| (x > 0 && (char)_text [x].Value == ' ')) {
var newPosBw = GetModel ().WordBackward (x, 0);
if (newPosBw == null) return true;
sbw = newPosBw.Value.col;
}
if (sbw != -1) {
x = sbw;
PositionCursor (x);
}
var newPosFw = GetModel ().WordForward (x, 0);
if (newPosFw == null) return true;
ClearAllSelection ();
if (newPosFw.Value.col != -1 && sbw != -1) {
_point = newPosFw.Value.col;
}
PrepareSelection (sbw, newPosFw.Value.col - sbw);
} else if (ev.Flags == MouseFlags.Button1TripleClicked) {
EnsureHasFocus ();
PositionCursor (0);
ClearAllSelection ();
PrepareSelection (0, _text.Count);
} else if (ev.Flags == ContextMenu.MouseFlags) {
ShowContextMenu ();
}
SetNeedsDisplay ();
return true;
void EnsureHasFocus ()
{
if (!HasFocus) {
SetFocus ();
}
}
}
int PositionCursor (MouseEvent ev)
{
// We could also set the cursor position.
int x;
var pX = TextModel.GetColFromX (_text, _first, ev.X);
if (_text.Count == 0) {
x = pX - ev.OfX;
} else {
x = pX;
}
return PositionCursor (x, false);
}
int PositionCursor (int x, bool getX = true)
{
int pX = x;
if (getX) {
pX = TextModel.GetColFromX (_text, _first, x);
}
if (_first + pX > _text.Count) {
_point = _text.Count;
} else if (_first + pX < _first) {
_point = 0;
} else {
_point = _first + pX;
}
return _point;
}
void PrepareSelection (int x, int direction = 0)
{
x = x + _first < -1 ? 0 : x;
_selectedStart = _selectedStart == -1 && _text.Count > 0 && x >= 0 && x <= _text.Count ? x : _selectedStart;
if (_selectedStart > -1) {
_length = Math.Abs (x + direction <= _text.Count ? x + direction - _selectedStart : _text.Count - _selectedStart);
SetSelectedStartSelectedLength ();
if (_start > -1 && _length > 0) {
_selectedText = _length > 0 ? StringExtensions.ToString (_text.GetRange (
_start < 0 ? 0 : _start, _length > _text.Count ? _text.Count : _length)) : "";
if (_first > _start) {
_first = _start;
}
} else if (_start > -1 && _length == 0) {
_selectedText = null;
}
} else if (_length > 0 || _selectedText != null) {
ClearAllSelection ();
}
Adjust ();
}
///
/// Clear the selected text.
///
public void ClearAllSelection ()
{
if (_selectedStart == -1 && _length == 0 && string.IsNullOrEmpty (_selectedText)) {
return;
}
_selectedStart = -1;
_length = 0;
_selectedText = null;
_start = 0;
_length = 0;
SetNeedsDisplay ();
}
void SetSelectedStartSelectedLength ()
{
if (SelectedStart > -1 && _point < SelectedStart) {
_start = _point;
} else {
_start = SelectedStart;
}
}
///
/// Copy the selected text to the clipboard.
///
public virtual void Copy ()
{
if (Secret || _length == 0)
return;
Clipboard.Contents = SelectedText;
}
///
/// Cut the selected text to the clipboard.
///
public virtual void Cut ()
{
if (ReadOnly || Secret || _length == 0)
return;
Clipboard.Contents = SelectedText;
var newText = DeleteSelectedText ();
Text = StringExtensions.ToString (newText);
Adjust ();
}
List DeleteSelectedText ()
{
SetSelectedStartSelectedLength ();
int selStart = SelectedStart > -1 ? _start : _point;
var newText = StringExtensions.ToString (_text.GetRange (0, selStart)) +
StringExtensions.ToString (_text.GetRange (selStart + _length, _text.Count - (selStart + _length)));
ClearAllSelection ();
_point = selStart >= newText.GetRuneCount () ? newText.GetRuneCount () : selStart;
return newText.ToRuneList ();
}
///
/// Paste the selected text from the clipboard.
///
public virtual void Paste ()
{
if (ReadOnly || string.IsNullOrEmpty (Clipboard.Contents)) {
return;
}
SetSelectedStartSelectedLength ();
int selStart = _start == -1 ? CursorPosition : _start;
string cbTxt = Clipboard.Contents.Split ("\n") [0] ?? "";
Text = StringExtensions.ToString (_text.GetRange (0, selStart)) +
cbTxt +
StringExtensions.ToString (_text.GetRange (selStart + _length, _text.Count - (selStart + _length)));
_point = selStart + cbTxt.GetRuneCount ();
ClearAllSelection ();
SetNeedsDisplay ();
Adjust ();
}
///
/// Virtual method that invoke the event if it's defined.
///
/// The new text to be replaced.
/// Returns the
public virtual TextChangingEventArgs OnTextChanging (string newText)
{
var ev = new TextChangingEventArgs (newText);
TextChanging?.Invoke (this, ev);
return ev;
}
CursorVisibility _desiredCursorVisibility = CursorVisibility.Default;
///
/// Get / Set the wished cursor when the field is focused
///
public CursorVisibility DesiredCursorVisibility {
get => _desiredCursorVisibility;
set {
if ((_desiredCursorVisibility != value || _visibility != value) && HasFocus) {
Application.Driver.SetCursorVisibility (value);
}
_desiredCursorVisibility = _visibility = value;
}
}
///
/// Inserts the given text at the current cursor position
/// exactly as if the user had just typed it
///
/// Text to add
/// If uses the .
public void InsertText (string toAdd, bool useOldCursorPos = true)
{
foreach (var ch in toAdd) {
Key key;
try {
key = (Key)ch;
} catch (Exception) {
throw new ArgumentException ($"Cannot insert character '{ch}' because it does not map to a Key");
}
InsertText (new KeyEvent () { Key = key }, useOldCursorPos);
}
}
///
/// Allows clearing the items updating the original text.
///
public void ClearHistoryChanges ()
{
_historyText.Clear (Text);
}
///
/// Returns if the current cursor position is
/// at the end of the . This includes when it is empty.
///
///
internal bool CursorIsAtEnd ()
{
return CursorPosition == Text.Length;
}
///
/// Returns if the current cursor position is
/// at the start of the .
///
///
internal bool CursorIsAtStart ()
{
return CursorPosition <= 0;
}
}
///
/// Renders an overlay on another view at a given point that allows selecting
/// from a range of 'autocomplete' options.
/// An implementation on a TextField.
///
public class TextFieldAutocomplete : PopupAutocomplete {
///
protected override void DeleteTextBackwards ()
{
((TextField)HostControl).DeleteCharLeft (false);
}
///
protected override void InsertText (string accepted)
{
((TextField)HostControl).InsertText (accepted, false);
}
///
protected override void SetCursorPosition (int column)
{
((TextField)HostControl).CursorPosition = column;
}
}
}