mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 22:57:25 +08:00
6233135ad5
TextBoxFix: Ctrl-A, Ctrl-Z, Ctrl-Y
95 lines
2.6 KiB
C#
95 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeWalker.WinForms
|
|
{
|
|
public partial class TextBoxFix : TextBox
|
|
{
|
|
bool ignoreChange = true;
|
|
List<string> storageUndo;
|
|
List<string> storageRedo;
|
|
|
|
public TextBoxFix()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnPaint(PaintEventArgs pe)
|
|
{
|
|
base.OnPaint(pe);
|
|
}
|
|
|
|
protected override void OnCreateControl()
|
|
{
|
|
base.OnCreateControl();
|
|
storageRedo = new List<string>();
|
|
storageUndo = new List<string> { Text };
|
|
ignoreChange = false;
|
|
}
|
|
|
|
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
|
|
{
|
|
//Fix for Ctrl-A/Z/Y not working in multiline textboxes.
|
|
const int WM_KEYDOWN = 0x100;
|
|
var keyCode = (Keys)(msg.WParam.ToInt32() & Convert.ToInt32(Keys.KeyCode));
|
|
if (msg.Msg == WM_KEYDOWN && (ModifierKeys == Keys.Control) && Focused)
|
|
{
|
|
if (keyCode == Keys.A)
|
|
{
|
|
SelectAll();
|
|
return true;
|
|
}
|
|
if (keyCode == Keys.Z)
|
|
{
|
|
Undo();
|
|
return true;
|
|
}
|
|
if (keyCode == Keys.Y)
|
|
{
|
|
Redo();
|
|
return true;
|
|
}
|
|
}
|
|
return base.ProcessCmdKey(ref msg, keyData);
|
|
}
|
|
protected override void OnTextChanged(EventArgs e)
|
|
{
|
|
base.OnTextChanged(e);
|
|
|
|
if (!ignoreChange)
|
|
{
|
|
ClearUndo();
|
|
if (storageUndo.Count > 2048) storageUndo.RemoveAt(0);
|
|
if (storageRedo.Count > 2048) storageRedo.RemoveAt(0);
|
|
|
|
storageUndo.Add(Text);
|
|
}
|
|
}
|
|
|
|
public void Redo()
|
|
{
|
|
if (storageRedo.Count > 0)
|
|
{
|
|
ignoreChange = true;
|
|
Text = storageRedo[storageRedo.Count - 1];
|
|
storageUndo.Add(Text);
|
|
storageRedo.RemoveAt(storageRedo.Count - 1);
|
|
ignoreChange = false;
|
|
}
|
|
}
|
|
|
|
public new void Undo()
|
|
{
|
|
if (storageUndo.Count > 1)
|
|
{
|
|
ignoreChange = true;
|
|
Text = storageUndo[storageUndo.Count - 2];
|
|
storageRedo.Add(storageUndo[storageUndo.Count - 1]);
|
|
storageUndo.RemoveAt(storageUndo.Count - 1);
|
|
ignoreChange = false;
|
|
}
|
|
}
|
|
}
|
|
}
|