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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
|
#include "cru/ui/controls/TextHostControlService.hpp"
#include "../Helper.hpp"
#include "cru/common/Logger.hpp"
#include "cru/common/StringUtil.hpp"
#include "cru/platform/gui/Base.hpp"
#include "cru/platform/gui/Cursor.hpp"
#include "cru/platform/gui/InputMethod.hpp"
#include "cru/platform/gui/Keyboard.hpp"
#include "cru/platform/gui/UiApplication.hpp"
#include "cru/platform/gui/Window.hpp"
#include "cru/ui/Base.hpp"
#include "cru/ui/DebugFlags.hpp"
#include "cru/ui/events/UiEvent.hpp"
#include "cru/ui/helper/ShortcutHub.hpp"
#include "cru/ui/host/WindowHost.hpp"
#include "cru/ui/render/ScrollRenderObject.hpp"
#include "cru/ui/render/TextRenderObject.hpp"
namespace cru::ui::controls {
TextHostControlService::TextHostControlService(gsl::not_null<Control*> control)
: control_(control),
text_host_control_(dynamic_cast<ITextHostControl*>(control.get())) {
SetUpShortcuts();
SetupOneHandler(&Control::MouseMoveEvent,
&TextHostControlService::MouseMoveHandler);
SetupOneHandler(&Control::MouseDownEvent,
&TextHostControlService::MouseDownHandler);
SetupOneHandler(&Control::MouseUpEvent,
&TextHostControlService::MouseUpHandler);
SetupOneHandler(&Control::GainFocusEvent,
&TextHostControlService::GainFocusHandler);
SetupOneHandler(&Control::LoseFocusEvent,
&TextHostControlService::LoseFocusHandler);
shortcut_hub_.Install(control_);
}
void TextHostControlService::SetEnabled(bool enable) {
if (enable == this->enable_) return;
this->enable_ = enable;
if (enable) {
if (this->caret_visible_) {
this->SetupCaret();
}
this->control_->SetCursor(
GetUiApplication()->GetCursorManager()->GetSystemCursor(
platform::gui::SystemCursorType::IBeam));
} else {
this->AbortSelection();
this->TearDownCaret();
this->control_->SetCursor(nullptr);
}
}
void TextHostControlService::SetEditable(bool editable) {
this->editable_ = editable;
if (!editable) CancelComposition();
}
void TextHostControlService::SetText(String text, bool stop_composition) {
this->text_ = std::move(text);
CoerceSelection();
if (stop_composition) {
CancelComposition();
}
SyncTextRenderObject();
}
void TextHostControlService::InsertText(gsl::index position,
std::u16string_view text,
bool stop_composition) {
if (!Utf16IsValidInsertPosition(this->text_, position)) {
log::TagError(log_tag, u"Invalid text insert position.");
return;
}
this->text_.insert(this->text_.cbegin() + position, text.begin(), text.end());
if (stop_composition) {
CancelComposition();
}
SyncTextRenderObject();
}
void TextHostControlService::DeleteChar(gsl::index position,
bool stop_composition) {
if (!Utf16IsValidInsertPosition(this->text_, position)) {
log::TagError(log_tag, u"Invalid text delete position.");
return;
}
if (position == static_cast<gsl::index>(this->text_.size())) return;
Index next;
Utf16NextCodePoint(this->text_, position, &next);
this->DeleteText(TextRange::FromTwoSides(position, next), stop_composition);
}
// Return the position of deleted character.
gsl::index TextHostControlService::DeleteCharPrevious(gsl::index position,
bool stop_composition) {
if (!Utf16IsValidInsertPosition(this->text_, position)) {
log::TagError(log_tag, u"Invalid text delete position.");
return 0;
}
if (position == 0) return 0;
Index previous;
Utf16PreviousCodePoint(this->text_, position, &previous);
this->DeleteText(TextRange::FromTwoSides(previous, position),
stop_composition);
return previous;
}
void TextHostControlService::DeleteText(TextRange range,
bool stop_composition) {
if (range.count == 0) return;
range = range.Normalize();
if (!Utf16IsValidInsertPosition(this->text_, range.GetStart())) {
log::TagError(log_tag, u"Invalid text delete start position.");
return;
}
if (!Utf16IsValidInsertPosition(this->text_, range.GetStart())) {
log::TagError(log_tag, u"Invalid text delete end position.");
return;
}
this->text_.erase(this->text_.cbegin() + range.GetStart(),
this->text_.cbegin() + range.GetEnd());
this->CoerceSelection();
if (stop_composition) {
CancelComposition();
}
this->SyncTextRenderObject();
}
platform::gui::IInputMethodContext*
TextHostControlService ::GetInputMethodContext() {
host::WindowHost* host = this->control_->GetWindowHost();
if (!host) return nullptr;
platform::gui::INativeWindow* native_window = host->GetNativeWindow();
if (!native_window) return nullptr;
return native_window->GetInputMethodContext();
}
void TextHostControlService::CancelComposition() {
auto input_method_context = GetInputMethodContext();
if (input_method_context == nullptr) return;
input_method_context->CancelComposition();
}
std::optional<platform::gui::CompositionText>
TextHostControlService::GetCompositionInfo() {
auto input_method_context = GetInputMethodContext();
if (input_method_context == nullptr) return std::nullopt;
auto composition_info = input_method_context->GetCompositionText();
if (composition_info.text.empty()) return std::nullopt;
return composition_info;
}
void TextHostControlService::SetCaretVisible(bool visible) {
if (visible == this->caret_visible_) return;
this->caret_visible_ = visible;
if (this->enable_) {
if (visible) {
this->SetupCaret();
} else {
this->TearDownCaret();
}
}
}
void TextHostControlService::SetCaretBlinkDuration(int milliseconds) {
if (this->caret_blink_duration_ == milliseconds) return;
if (this->enable_ && this->caret_visible_) {
this->TearDownCaret();
this->SetupCaret();
}
}
void TextHostControlService::ScrollToCaret() {
if (const auto scroll_render_object = this->GetScrollRenderObject()) {
this->control_->GetWindowHost()->RunAfterLayoutStable(
[this, scroll_render_object]() {
const auto caret_rect = this->GetTextRenderObject()->GetCaretRect();
scroll_render_object->ScrollToContain(caret_rect, Thickness{5.f});
});
}
}
gsl::not_null<render::TextRenderObject*>
TextHostControlService::GetTextRenderObject() {
return this->text_host_control_->GetTextRenderObject();
}
render::ScrollRenderObject* TextHostControlService::GetScrollRenderObject() {
return this->text_host_control_->GetScrollRenderObject();
}
void TextHostControlService::SetSelection(gsl::index caret_position) {
this->SetSelection(TextRange{caret_position, 0});
}
void TextHostControlService::SetSelection(TextRange selection,
bool scroll_to_caret) {
this->selection_ = selection;
CoerceSelection();
SyncTextRenderObject();
if (scroll_to_caret) {
this->ScrollToCaret();
}
}
void TextHostControlService::ChangeSelectionEnd(Index new_end) {
auto selection = GetSelection();
selection.ChangeEnd(new_end);
this->SetSelection(selection);
}
void TextHostControlService::AbortSelection() {
if (this->mouse_move_selecting_) {
this->control_->ReleaseMouse();
this->mouse_move_selecting_ = false;
}
SetSelection(GetCaretPosition());
}
void TextHostControlService::ReplaceSelectedText(std::u16string_view text) {
DeleteSelectedText();
InsertText(GetSelection().GetStart(), text);
SetSelection(GetSelection().GetStart() + text.size());
}
void TextHostControlService::DeleteSelectedText() {
this->DeleteText(GetSelection());
SetSelection(GetSelection().Normalize().GetStart());
}
void TextHostControlService::SetupCaret() {
const auto application = GetUiApplication();
this->GetTextRenderObject()->SetDrawCaret(true);
this->caret_timer_canceler_.Reset(application->SetInterval(
std::chrono::milliseconds(this->caret_blink_duration_),
[this] { this->GetTextRenderObject()->ToggleDrawCaret(); }));
}
void TextHostControlService::TearDownCaret() {
this->caret_timer_canceler_.Reset();
this->GetTextRenderObject()->SetDrawCaret(false);
}
void TextHostControlService::CoerceSelection() {
this->selection_ = this->selection_.CoerceInto(0, text_.size());
}
void TextHostControlService::SyncTextRenderObject() {
const auto text_render_object = this->GetTextRenderObject();
const auto composition_info = this->GetCompositionInfo();
if (composition_info) {
const auto caret_position = GetCaretPosition();
auto text = this->text_;
text.insert(text.cbegin() + caret_position, composition_info->text);
text_render_object->SetText(text);
text_render_object->SetCaretPosition(caret_position +
composition_info->selection.GetEnd());
auto selection = composition_info->selection;
selection.position += caret_position;
text_render_object->SetSelectionRange(selection);
} else {
text_render_object->SetText(this->text_);
text_render_object->SetCaretPosition(this->GetCaretPosition());
text_render_object->SetSelectionRange(this->GetSelection());
}
}
void TextHostControlService::UpdateInputMethodPosition() {
if (auto input_method_context = this->GetInputMethodContext()) {
Point right_bottom =
this->GetTextRenderObject()->GetTotalOffset() +
this->GetTextRenderObject()->GetCaretRect().GetRightBottom();
right_bottom.x += 5;
right_bottom.y += 5;
if constexpr (debug_flags::text_service) {
log::TagDebug(log_tag,
u"Calculate input method candidate window position: {}.",
right_bottom);
}
input_method_context->SetCandidateWindowPosition(right_bottom);
}
}
void TextHostControlService::MouseDownHandler(
event::MouseButtonEventArgs& args) {
if (IsEnabled()) {
this->control_->SetFocus();
if (args.GetButton() == mouse_buttons::left &&
!this->mouse_move_selecting_) {
if (!this->control_->CaptureMouse()) return;
this->mouse_move_selecting_ = true;
const auto text_render_object = this->GetTextRenderObject();
const auto result = text_render_object->TextHitTest(
args.GetPointToContent(text_render_object));
const auto position = result.position + (result.trailing ? 1 : 0);
SetSelection(position);
}
}
}
void TextHostControlService::MouseUpHandler(event::MouseButtonEventArgs& args) {
if (args.GetButton() == mouse_buttons::left && mouse_move_selecting_) {
this->control_->ReleaseMouse();
this->mouse_move_selecting_ = false;
}
}
void TextHostControlService::MouseMoveHandler(event::MouseEventArgs& args) {
if (this->mouse_move_selecting_) {
const auto text_render_object = this->GetTextRenderObject();
const auto result = text_render_object->TextHitTest(
args.GetPointToContent(text_render_object));
const auto position = result.position + (result.trailing ? 1 : 0);
ChangeSelectionEnd(position);
}
}
void TextHostControlService::GainFocusHandler(
event::FocusChangeEventArgs& args) {
CRU_UNUSED(args);
if (editable_) {
auto input_method_context = GetInputMethodContext();
if (input_method_context == nullptr) return;
input_method_context->EnableIME();
auto sync = [this](std::nullptr_t) {
this->SyncTextRenderObject();
ScrollToCaret();
};
input_method_context_event_guard_ +=
input_method_context->CompositionStartEvent()->AddHandler(
[this](std::nullptr_t) { this->DeleteSelectedText(); });
input_method_context_event_guard_ +=
input_method_context->CompositionEvent()->AddHandler(sync);
input_method_context_event_guard_ +=
input_method_context->CompositionEndEvent()->AddHandler(sync);
input_method_context_event_guard_ +=
input_method_context->TextEvent()->AddHandler(
[this](const std::u16string_view& text) {
this->ReplaceSelectedText(text);
});
host::WindowHost* window_host = control_->GetWindowHost();
if (window_host)
input_method_context_event_guard_ +=
window_host->AfterLayoutEvent()->AddHandler(
[this](auto) { this->UpdateInputMethodPosition(); });
SetCaretVisible(true);
}
}
void TextHostControlService::LoseFocusHandler(
event::FocusChangeEventArgs& args) {
if (!args.IsWindow()) this->AbortSelection();
input_method_context_event_guard_.Clear();
auto input_method_context = GetInputMethodContext();
if (input_method_context) {
input_method_context->DisableIME();
}
SetCaretVisible(false);
SyncTextRenderObject();
}
void TextHostControlService::SetUpShortcuts() {
using platform::gui::KeyCode;
using platform::gui::KeyModifiers;
shortcut_hub_.RegisterShortcut(u"Backspace", KeyCode::Backspace, [this] {
if (!IsEnabled()) return false;
if (!IsEditable()) return false;
const auto selection = GetSelection();
if (selection.count == 0) {
SetSelection(DeleteCharPrevious(GetCaretPosition()));
} else {
this->DeleteSelectedText();
}
return true;
});
shortcut_hub_.RegisterShortcut(u"Delete", KeyCode::Delete, [this] {
if (!IsEnabled()) return false;
if (!IsEditable()) return false;
const auto selection = GetSelection();
if (selection.count == 0) {
DeleteChar(GetCaretPosition());
} else {
this->DeleteSelectedText();
}
return true;
});
shortcut_hub_.RegisterShortcut(u"Left", KeyCode::Left, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
Utf16PreviousCodePoint(text, caret, &caret);
this->SetSelection(caret);
return true;
});
shortcut_hub_.RegisterShortcut(u"ShiftLeft",
{KeyCode::Left, KeyModifiers::shift}, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
Utf16PreviousCodePoint(text, caret, &caret);
this->ChangeSelectionEnd(caret);
return true;
});
shortcut_hub_.RegisterShortcut(
u"CtrlLeft", {KeyCode::Left, KeyModifiers::ctrl}, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
this->SetSelection(Utf16PreviousWord(text, caret));
return true;
});
shortcut_hub_.RegisterShortcut(
u"CtrlShiftLeft",
{KeyCode::Left, KeyModifiers::ctrl | KeyModifiers::shift}, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
this->ChangeSelectionEnd(Utf16PreviousWord(text, caret));
return true;
});
shortcut_hub_.RegisterShortcut(u"Right", KeyCode::Right, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
Utf16NextCodePoint(text, caret, &caret);
this->SetSelection(caret);
return true;
});
shortcut_hub_.RegisterShortcut(u"ShiftRight",
{KeyCode::Right, KeyModifiers::shift}, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
Utf16NextCodePoint(text, caret, &caret);
this->ChangeSelectionEnd(caret);
return true;
});
shortcut_hub_.RegisterShortcut(
u"CtrlRight", {KeyCode::Right, KeyModifiers::ctrl}, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
this->SetSelection(Utf16NextWord(text, caret));
return true;
});
shortcut_hub_.RegisterShortcut(
u"CtrlShiftRight",
{KeyCode::Right, KeyModifiers::ctrl | KeyModifiers::shift}, [this] {
auto text = this->GetTextView();
auto caret = this->GetCaretPosition();
this->ChangeSelectionEnd(Utf16NextWord(text, caret));
return true;
});
}
} // namespace cru::ui::controls
|