-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextBoxHandler.cs
executable file
·403 lines (357 loc) · 11.6 KB
/
TextBoxHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
using System.Runtime;
using swd = System.Windows.Documents;
namespace Eto.Wpf.Forms.Controls
{
public class EtoWatermarkTextBox : xwt.WatermarkTextBox, IEtoWpfControl
{
public IWpfFrameworkElement Handler { get; set; }
protected override sw.Size MeasureOverride(sw.Size constraint)
{
return Handler?.MeasureOverride(constraint, base.MeasureOverride) ?? base.MeasureOverride(constraint);
}
}
public class TextBoxHandler : TextBoxHandler<xwt.WatermarkTextBox, TextBox, TextBox.ICallback>, TextBox.IHandler
{
internal static object CurrentText_Key = new object();
internal static object CurrentSelection_Key = new object();
internal static object DisableTextChanged_Key = new object();
internal static object EnableNoGCRegion_Key = new object();
/// <summary>
/// Gets or sets the default value indicating to use GC.TryStartNoGCRegion() when setting TextBox.Text
/// to avoid performance issues with WPF.
/// See https://github.com/dotnet/wpf/issues/5887
/// </summary>
public static bool EnableNoGCRegionDefault = true;
protected override swc.TextBox TextBox => Control;
public TextBoxHandler()
{
Control = new EtoWatermarkTextBox { Handler = this, KeepWatermarkOnGotFocus = true };
}
public override string PlaceholderText
{
get { return Control.Watermark as string; }
set { Control.Watermark = value; }
}
}
public abstract class TextBoxHandler<TControl, TWidget, TCallback> : WpfControl<TControl, TWidget, TCallback>, TextBox.IHandler
where TControl : swc.Control
where TWidget : TextBox
where TCallback: TextBox.ICallback
{
bool initialSelection;
protected override sw.Size DefaultSize => new sw.Size(100, double.NaN);
protected override bool PreventUserResize { get { return true; } }
protected abstract swc.TextBox TextBox { get; }
protected virtual swc.Control BorderControl => TextBox;
public override bool ShowBorder
{
get { return BorderControl.ReadLocalValue(swc.Control.BorderThicknessProperty) == sw.DependencyProperty.UnsetValue; }
set
{
if (value)
BorderControl.ClearValue(swc.Control.BorderThicknessProperty);
else
BorderControl.BorderThickness = new sw.Thickness(0);
}
}
/// <summary>
/// Gets or sets a value indicating to use GC.TryStartNoGCRegion() when setting TextBox.Text
/// to avoid performance issues with WPF.
/// See https://github.com/dotnet/wpf/issues/5887
/// </summary>
/// <seealso cref="TextBoxHandler.EnableNoGCRegionDefault" />
public bool EnableNoGCRegion
{
get => Widget.Properties.Get<bool?>(TextBoxHandler.EnableNoGCRegion_Key) ?? TextBoxHandler.EnableNoGCRegionDefault;
set => Widget.Properties.Set(TextBoxHandler.EnableNoGCRegion_Key, value);
}
public TextAlignment TextAlignment
{
get { return TextBox.TextAlignment.ToEto(); }
set
{
TextBox.TextAlignment = value.ToWpfTextAlignment();
TextBox.HorizontalContentAlignment = value.ToWpf();
}
}
public TextBoxHandler ()
{
}
protected override void Initialize()
{
base.Initialize();
TextBox.GotKeyboardFocus += Control_GotKeyboardFocus;
TextBox.PreviewMouseLeftButtonDown += TextBox_PreviewMouseLeftButtonDown;
}
void TextBox_PreviewMouseLeftButtonDown(object sender, swi.MouseButtonEventArgs e)
{
if (AutoSelectMode == AutoSelectMode.Always && !TextBox.IsKeyboardFocusWithin)
{
TextBox.SelectAll();
TextBox.Focus();
e.Handled = true;
}
}
void Control_GotKeyboardFocus(object sender, sw.Input.KeyboardFocusChangedEventArgs e)
{
if (initialSelection)
{
initialSelection = false;
return;
}
if (AutoSelectMode == AutoSelectMode.OnFocus || AutoSelectMode == AutoSelectMode.Always)
TextBox.SelectAll();
}
public override bool UseMousePreview { get { return true; } }
public override bool UseKeyPreview { get { return true; } }
static Func<char, bool> testIsNonWord = ch => char.IsWhiteSpace(ch) || char.IsPunctuation(ch);
static Clipboard clipboard;
public override void AttachEvent (string id)
{
switch (id) {
case TextControl.TextChangedEvent:
TextBox.TextChanged += TextBox_TextChanged;
break;
case Eto.Forms.TextBox.TextChangingEvent:
if (clipboard == null)
clipboard = new Clipboard();
bool didUpdate = false;
swi.TextCompositionManager.AddPreviewTextInputStartHandler(TextBox, (sender, e) =>
{
// ensure we only fire TextChanging after any IME composition is completed
DisableTextChanged++;
didUpdate = false;
// keep selection/text as they change during composition
CurrentSelection = Selection;
CurrentText = Text;
});
swi.TextCompositionManager.AddPreviewTextInputUpdateHandler(TextBox, (sender, e) =>
{
didUpdate = true;
});
swi.TextCompositionManager.AddPreviewTextInputHandler(TextBox, (sender, e) =>
{
// composition is finished, fire textchanging event unless it was cancelled
DisableTextChanged--;
if (!string.IsNullOrEmpty(e.Text) || Selection.Length() > 0)
{
var tia = new TextChangingEventArgs(e.Text, Selection, Text, true);
Callback.OnTextChanging(Widget, tia);
e.Handled = tia.Cancel;
if (didUpdate && tia.Cancel && CurrentText != null)
{
// restore last text value if the event was cancelled and the text wasn't changed manually.
DisableTextChanged++;
Text = CurrentText;
DisableTextChanged--;
}
}
CurrentText = null;
CurrentSelection = null;
didUpdate = false;
});
TextBox.AddHandler(swi.CommandManager.PreviewExecutedEvent, new swi.ExecutedRoutedEventHandler((sender, e) =>
{
var command = e.Command as swi.RoutedUICommand;
if (command == null)
return;
if (command == swi.ApplicationCommands.Cut || command == swi.ApplicationCommands.Delete)
{
var text = TextBox.SelectedText;
var tia = new TextChangingEventArgs(string.Empty, Selection, true);
Callback.OnTextChanging(Widget, tia);
if (tia.Cancel)
{
if (command == swi.ApplicationCommands.Cut)
clipboard.Text = text;
e.Handled = true;
}
}
else if (command == swi.ApplicationCommands.Paste)
{
var text = clipboard.Text;
var tia = new TextChangingEventArgs(text, Selection, true);
Callback.OnTextChanging(Widget, tia);
e.Handled = tia.Cancel;
}
else if (command == swd.EditingCommands.Delete || command == swd.EditingCommands.Backspace)
{
var range = Selection;
if (range.Length() == 0)
range = new Range<int>(command == swd.EditingCommands.Delete ? range.Start : range.Start - 1);
if (range.Start >= 0)
{
var tia = new TextChangingEventArgs(string.Empty, range, true);
Callback.OnTextChanging(Widget, tia);
e.Handled = tia.Cancel;
}
}
else if (command == swd.EditingCommands.DeletePreviousWord)
{
string text = Text;
int end = CaretIndex;
int start = end;
// find start of previous word
while (start > 0 && testIsNonWord(text[start - 1]))
start--;
while (start > 0 && !testIsNonWord(text[start - 1]))
start--;
if (end > start)
{
var tia = new TextChangingEventArgs(string.Empty, new Range<int>(start, end - 1), true);
Callback.OnTextChanging(Widget, tia);
e.Handled = tia.Cancel;
}
}
else if (command == swd.EditingCommands.DeleteNextWord)
{
string text = Text;
int start = CaretIndex;
int end = start;
int length = text.Length;
// find end of next word
while (end < length && !testIsNonWord(text[end]))
end++;
while (end < length && testIsNonWord(text[end]))
end++;
if (end > start)
{
var tia = new TextChangingEventArgs(string.Empty, new Range<int>(start, end - 1), true);
Callback.OnTextChanging(Widget, tia);
e.Handled = tia.Cancel;
}
}
else if (command.OwnerType == typeof(swd.EditingCommands) && command.Name == "Space")
{
// space doesn't trigger TextInput (which you'd expect) as it can be interpreted through IME
var text = " ";
var tia = new TextChangingEventArgs(text, Selection, true);
Callback.OnTextChanging(Widget, tia);
e.Handled = tia.Cancel;
}
}));
break;
default:
base.AttachEvent (id);
break;
}
}
private void TextBox_TextChanged(object sender, swc.TextChangedEventArgs e)
{
if (DisableTextChanged == 0)
Callback.OnTextChanged(Widget, EventArgs.Empty);
}
public bool ReadOnly
{
get { return TextBox.IsReadOnly; }
set { TextBox.IsReadOnly = value; }
}
public int MaxLength
{
get { return TextBox.MaxLength; }
set { TextBox.MaxLength = value; }
}
string CurrentText
{
get => Widget.Properties.Get<string>(TextBoxHandler.CurrentText_Key);
set => Widget.Properties.Set(TextBoxHandler.CurrentText_Key, value);
}
public string Text
{
get => CurrentText ?? TextBox.Text;
set
{
var oldText = Text;
CurrentText = null;
var newText = value ?? string.Empty;
TextBox.BeginChange();
if (newText != oldText)
{
var args = new TextChangingEventArgs(oldText, newText, false);
Callback.OnTextChanging(Widget, args);
if (args.Cancel)
{
TextBox.EndChange();
return;
}
var needsTextChanged = TextBox.Text == newText;
// Improve performance when setting text often
// See https://github.com/dotnet/wpf/issues/5887#issuecomment-1604577981
var endNoGCRegion = EnableNoGCRegion
&& GCSettings.LatencyMode != GCLatencyMode.NoGCRegion;
try
{
endNoGCRegion &= GC.TryStartNoGCRegion(1000000); // is this magic number reasonable??
}
catch
{
// Ignore any exceptions, they can apparently still happen even though we check the LatencyMode above
endNoGCRegion = false;
}
try
{
TextBox.Text = newText;
}
finally
{
if (endNoGCRegion && GCSettings.LatencyMode == GCLatencyMode.NoGCRegion)
GC.EndNoGCRegion();
}
if (needsTextChanged)
{
Callback.OnTextChanged(Widget, EventArgs.Empty);
}
}
if (value != null && AutoSelectMode == AutoSelectMode.Never && !HasFocus)
{
TextBox.SelectionStart = value.Length;
TextBox.SelectionLength = 0;
}
TextBox.EndChange();
}
}
public abstract string PlaceholderText { get; set; }
public int CaretIndex
{
get => CurrentSelection?.Start ?? TextBox.CaretIndex;
set
{
CurrentSelection = null;
TextBox.CaretIndex = value;
if (!HasFocus)
initialSelection = true;
}
}
public void SelectAll()
{
TextBox.SelectAll();
if (!HasFocus)
initialSelection = true;
}
int DisableTextChanged
{
get => Widget.Properties.Get<int>(TextBoxHandler.DisableTextChanged_Key);
set => Widget.Properties.Set(TextBoxHandler.DisableTextChanged_Key, value);
}
Range<int>? CurrentSelection
{
get => Widget.Properties.Get<Range<int>?>(TextBoxHandler.CurrentSelection_Key);
set => Widget.Properties.Set(TextBoxHandler.CurrentSelection_Key, value);
}
public Range<int> Selection
{
get => CurrentSelection ?? new Range<int>(TextBox.SelectionStart, TextBox.SelectionStart + TextBox.SelectionLength - 1);
set
{
CurrentSelection = null;
TextBox.BeginChange();
TextBox.SelectionStart = value.Start;
TextBox.SelectionLength = value.Length();
TextBox.EndChange();
if (!HasFocus)
initialSelection = true;
}
}
public AutoSelectMode AutoSelectMode { get; set; }
}
}