aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/TextHostControlService.cpp
blob: ace02a464e75c91a76ca30b45453a94fd5554523 (plain)
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
#include "cru/ui/controls/TextHostControlService.h"

#include "../Helper.h"
#include "cru/base/Base.h"
#include "cru/base/String.h"
#include "cru/base/StringUtil.h"
#include "cru/base/log/Logger.h"
#include "cru/platform/graphics/Font.h"
#include "cru/platform/gui/Base.h"
#include "cru/platform/gui/Clipboard.h"
#include "cru/platform/gui/Cursor.h"
#include "cru/platform/gui/InputMethod.h"
#include "cru/platform/gui/Keyboard.h"
#include "cru/platform/gui/UiApplication.h"
#include "cru/platform/gui/Window.h"
#include "cru/ui/Base.h"
#include "cru/ui/DebugFlags.h"
#include "cru/ui/DeleteLater.h"
#include "cru/ui/components/Menu.h"
#include "cru/ui/events/UiEvents.h"
#include "cru/ui/helper/ShortcutHub.h"
#include "cru/ui/host/WindowHost.h"
#include "cru/ui/render/ScrollRenderObject.h"
#include "cru/ui/render/TextRenderObject.h"

#include <memory>

namespace cru::ui::controls {
TextControlMovePattern TextControlMovePattern::kLeft(
    u"Left", helper::ShortcutKeyBind(platform::gui::KeyCode::Left),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      Utf16PreviousCodePoint(text, current_position, &current_position);
      return current_position;
    });
TextControlMovePattern TextControlMovePattern::kRight(
    u"Right", helper::ShortcutKeyBind(platform::gui::KeyCode::Right),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      Utf16NextCodePoint(text, current_position, &current_position);
      return current_position;
    });
TextControlMovePattern TextControlMovePattern::kCtrlLeft(
    u"Ctrl+Left(Previous Word)",
    helper::ShortcutKeyBind(platform::gui::KeyCode::Left,
                            platform::gui::KeyModifiers::ctrl),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      return Utf16PreviousWord(text, current_position);
    });
TextControlMovePattern TextControlMovePattern::kCtrlRight(
    u"Ctrl+Right(Next Word)",
    helper::ShortcutKeyBind(platform::gui::KeyCode::Right,
                            platform::gui::KeyModifiers::ctrl),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      return Utf16NextWord(text, current_position);
    });
TextControlMovePattern TextControlMovePattern::kUp(
    u"Up", helper::ShortcutKeyBind(platform::gui::KeyCode::Up),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(text)
      auto text_render_object = service->GetTextRenderObject();
      auto rect = text_render_object->TextSinglePoint(current_position, false);
      rect.top -= 0.1f;
      auto result = text_render_object->TextHitTest(rect.GetLeftTop());
      return result.trailing ? result.position + 1 : result.position;
    });
TextControlMovePattern TextControlMovePattern::kDown(
    u"Down", helper::ShortcutKeyBind(platform::gui::KeyCode::Down),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(text)
      auto text_render_object = service->GetTextRenderObject();
      auto rect = text_render_object->TextSinglePoint(current_position, false);
      rect.top += rect.height + 0.1f;
      auto result = text_render_object->TextHitTest(rect.GetLeftTop());
      return result.trailing ? result.position + 1 : result.position;
    });
TextControlMovePattern TextControlMovePattern::kHome(
    u"Home(Line Begin)", helper::ShortcutKeyBind(platform::gui::KeyCode::Home),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      return Utf16BackwardUntil(text, current_position,
                                [](CodePoint c) { return c == u'\n'; });
    });
TextControlMovePattern TextControlMovePattern::kEnd(
    u"End(Line End)", helper::ShortcutKeyBind(platform::gui::KeyCode::End),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      return Utf16ForwardUntil(text, current_position,
                               [](CodePoint c) { return c == u'\n'; });
    });
TextControlMovePattern TextControlMovePattern::kCtrlHome(
    u"Ctrl+Home(Document Begin)",
    helper::ShortcutKeyBind(platform::gui::KeyCode::Home,
                            platform::gui::KeyModifiers::ctrl),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      CRU_UNUSED(text)
      CRU_UNUSED(current_position)
      return 0;
    });
TextControlMovePattern TextControlMovePattern::kCtrlEnd(
    u"Ctrl+End(Document End)",
    helper::ShortcutKeyBind(platform::gui::KeyCode::End,
                            platform::gui::KeyModifiers::ctrl),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      CRU_UNUSED(text)
      CRU_UNUSED(current_position)
      return text.size();
    });
TextControlMovePattern TextControlMovePattern::kPageUp(
    u"PageUp", helper::ShortcutKeyBind(platform::gui::KeyCode::PageUp),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      CRU_UNUSED(text)
      // TODO: Implement this.
      return current_position;
    });
TextControlMovePattern TextControlMovePattern::kPageDown(
    u"PageDown", helper::ShortcutKeyBind(platform::gui::KeyCode::PageDown),
    [](TextHostControlService* service, StringView text,
       Index current_position) {
      CRU_UNUSED(service)
      CRU_UNUSED(text)
      // TODO: Implement this.
      return current_position;
    });

std::vector<TextControlMovePattern> TextControlMovePattern::kDefaultPatterns = {
    TextControlMovePattern::kLeft,     TextControlMovePattern::kRight,
    TextControlMovePattern::kCtrlLeft, TextControlMovePattern::kCtrlRight,
    TextControlMovePattern::kUp,       TextControlMovePattern::kDown,
    TextControlMovePattern::kHome,     TextControlMovePattern::kEnd,
    TextControlMovePattern::kCtrlHome, TextControlMovePattern::kCtrlEnd,
    TextControlMovePattern::kPageUp,   TextControlMovePattern::kPageDown};

TextHostControlService::TextHostControlService(Control* control)
    : control_(control),
      text_host_control_(dynamic_cast<ITextHostControl*>(control)) {
  context_menu_ = MakeDeleteLaterPtr<components::PopupMenu>();

  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_);
}

TextHostControlService::~TextHostControlService() {}

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::SetContextMenuEnabled(bool enabled) {
  if (context_menu_enabled_ == enabled) return;

  context_menu_enabled_ = enabled;

  if (!context_menu_enabled_ && context_menu_) {
    context_menu_->Close();
  }
}

void TextHostControlService::SetEditable(bool editable) {
  this->editable_ = editable;
  if (!editable) CancelComposition();
}

void TextHostControlService::SetMultiLine(bool multi_line) {
  this->multi_line_ = multi_line;

  if (!multi_line) {
    auto text = GetText();
    for (auto& c : text) {
      if (c == u'\n') c = u' ';
    }
    SetText(text);
  }
}

void TextHostControlService::SetText(String text, bool stop_composition) {
  this->text_ = std::move(text);
  CoerceSelection();
  if (stop_composition) {
    CancelComposition();
  }
  SyncTextRenderObject();
  text_change_event_.Raise(nullptr);
}

void TextHostControlService::InsertText(Index position, StringView text,
                                        bool stop_composition) {
  if (!Utf16IsValidInsertPosition(this->text_, position)) {
    CRU_LOG_TAG_ERROR("Invalid text insert position.");
    return;
  }
  this->text_.insert(this->text_.cbegin() + position, text);
  if (stop_composition) {
    CancelComposition();
  }
  SyncTextRenderObject();
  text_change_event_.Raise(nullptr);
}

void TextHostControlService::DeleteChar(Index position, bool stop_composition) {
  if (!Utf16IsValidInsertPosition(this->text_, position)) {
    CRU_LOG_TAG_ERROR("Invalid text delete position.");
    return;
  }
  if (position == static_cast<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.
Index TextHostControlService::DeleteCharPrevious(Index position,
                                                 bool stop_composition) {
  if (!Utf16IsValidInsertPosition(this->text_, position)) {
    CRU_LOG_TAG_ERROR("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())) {
    CRU_LOG_TAG_ERROR("Invalid text delete start position.");
    return;
  }
  if (!Utf16IsValidInsertPosition(this->text_, range.GetStart())) {
    CRU_LOG_TAG_ERROR("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();
  text_change_event_.Raise(nullptr);
}

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()) {
    auto window_host = this->control_->GetWindowHost();
    if (window_host)
      window_host->RunAfterLayoutStable([this, scroll_render_object]() {
        const auto caret_rect = this->GetTextRenderObject()->GetCaretRect();
        scroll_render_object->ScrollToContain(caret_rect, Thickness{5.f});
      });
  }
}

render::TextRenderObject* TextHostControlService::GetTextRenderObject() {
  return this->text_host_control_->GetTextRenderObject();
}

render::ScrollRenderObject* TextHostControlService::GetScrollRenderObject() {
  return this->text_host_control_->GetScrollRenderObject();
}

StringView TextHostControlService::GetSelectedText() {
  auto selection = this->GetSelection().Normalize();
  return GetTextView().substr(selection.position, selection.count);
}

void TextHostControlService::SetSelection(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::SelectAll() {
  this->SetSelection(TextRange{0, this->text_.size()});
}

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(StringView text) {
  DeleteSelectedText();
  InsertText(GetSelection().GetStart(), text);
  SetSelection(GetSelection().GetStart() + text.size());
}

void TextHostControlService::DeleteSelectedText() {
  this->DeleteText(GetSelection());
  SetSelection(GetSelection().Normalize().GetStart());
}

void TextHostControlService::Cut() {
  Copy();
  ReplaceSelectedText(StringView{});
}

void TextHostControlService::Copy() {
  auto selected_text = GetSelectedText();
  if (selected_text.size() == 0) return;
  auto clipboard = GetUiApplication()->GetClipboard();
  clipboard->SetText(selected_text.ToString());
}

void TextHostControlService::Paste() {
  auto clipboard = GetUiApplication()->GetClipboard();
  auto text = clipboard->GetText();
  if (text.empty()) return;
  ReplaceSelectedText(text);
}

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) {
      CRU_LOG_TAG_DEBUG("Calculate input method candidate window position: {}.",
                    right_bottom);
    }

    input_method_context->SetCandidateWindowPosition(right_bottom);
  }
}

void TextHostControlService::MouseDownHandler(
    events::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);
      args.SetHandled(true);
    } else if (args.GetButton() == mouse_buttons::right) {
      // TODO: Finish context menu logic here.

      const Point p = args.GetPointToContent(GetTextRenderObject());
      if (GetSelection().count != 0) {
        auto selected_area =
            GetTextRenderObject()->TextRangeRect(GetSelection());

        bool inside = false;

        for (const auto& rect : selected_area) {
          if (rect.IsPointInside(p)) {
            inside = true;
            break;
          }
        }

        if (inside) {
          ContextMenuItem items = ContextMenuItem(kSelectAll | kCopy);
          if (IsEditable()) {
            items = ContextMenuItem(items | kCut | kPaste);
          }

          this->OpenContextMenu(args.GetPointOfScreen(), items);
          args.SetHandled(true);
          return;
        }
      }

      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);

      ContextMenuItem items = ContextMenuItem::kSelectAll;
      if (IsEditable()) {
        items = ContextMenuItem(items | ContextMenuItem::kPaste);
      }

      OpenContextMenu(args.GetPointOfScreen(), items);

      args.SetHandled(true);
    }
  }
}

void TextHostControlService::MouseUpHandler(
    events::MouseButtonEventArgs& args) {
  if (args.GetButton() == mouse_buttons::left && mouse_move_selecting_) {
    this->control_->ReleaseMouse();
    this->mouse_move_selecting_ = false;
    args.SetHandled();
  }
}

void TextHostControlService::MouseMoveHandler(events::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);
    args.SetHandled();
  }
}

void TextHostControlService::GainFocusHandler(
    events::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](StringView text) {
          if (!multi_line_ && text == u"\n") {
            return;
          }
          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(
    events::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;
  using platform::gui::kKeyModifierCommand;

  shortcut_hub_.RegisterShortcut(u"Select All",
                                 {KeyCode::A, kKeyModifierCommand}, [this] {
                                   if (IsEnabled()) {
                                     this->SelectAll();
                                     return true;
                                   }
                                   return false;
                                 });

  shortcut_hub_.RegisterShortcut(u"Cut", {KeyCode::X, kKeyModifierCommand},
                                 [this] {
                                   if (IsEnabled() && IsEditable()) {
                                     this->Cut();
                                     return true;
                                   }
                                   return false;
                                 });

  shortcut_hub_.RegisterShortcut(u"Copy", {KeyCode::C, kKeyModifierCommand},
                                 [this] {
                                   if (IsEnabled()) {
                                     this->Copy();
                                     return true;
                                   }
                                   return false;
                                 });

  shortcut_hub_.RegisterShortcut(u"Paste", {KeyCode::V, kKeyModifierCommand},
                                 [this] {
                                   if (IsEnabled() && IsEditable()) {
                                     this->Paste();
                                     return true;
                                   }
                                   return false;
                                 });

  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;
  });

  for (const auto& pattern : TextControlMovePattern::kDefaultPatterns) {
    auto name = pattern.GetName();
    shortcut_hub_.RegisterShortcut(
        u"Move " + name, pattern.GetKeyBind(), [this, &pattern] {
          auto text = this->GetTextView();
          auto caret = this->GetCaretPosition();
          auto new_position = pattern.Move(this, text, caret);
          this->SetSelection(new_position);
          return true;
        });

    shortcut_hub_.RegisterShortcut(
        u"Move And Select " + name,
        pattern.GetKeyBind().AddModifier(platform::gui::KeyModifiers::shift),
        [this, &pattern] {
          auto text = this->GetTextView();
          auto caret = this->GetCaretPosition();
          auto new_position = pattern.Move(this, text, caret);
          this->ChangeSelectionEnd(new_position);
          return true;
        });
  }
}

void TextHostControlService::OpenContextMenu(const Point& position,
                                             ContextMenuItem items) {
  context_menu_ = MakeDeleteLaterPtr<components::PopupMenu>();
  auto menu = context_menu_->GetMenu();
  if (items & ContextMenuItem::kSelectAll) {
    menu->AddTextItem(u"Select All", [this] { this->SelectAll(); });
  }
  if (items & ContextMenuItem::kCopy) {
    menu->AddTextItem(u"Copy", [this] { this->Copy(); });
  }
  if (items & ContextMenuItem::kCut) {
    menu->AddTextItem(u"Cut", [this] { this->Cut(); });
  }
  if (items & ContextMenuItem::kPaste) {
    menu->AddTextItem(u"Paste", [this] { this->Paste(); });
  }
  context_menu_->SetPosition(position);
  context_menu_->Show();
}

}  // namespace cru::ui::controls