#include <text_input_plugin.h>
Definition at line 29 of file text_input_plugin.h.
◆ TextInputPlugin()
Definition at line 108 of file text_input_plugin.cc.
115 active_model_(
nullptr) {
116 channel_->SetMethodCallHandler(
120 HandleMethodCall(call, std::move(result));
◆ ~TextInputPlugin()
flutter::TextInputPlugin::~TextInputPlugin |
( |
| ) |
|
|
virtualdefault |
◆ ComposeBeginHook()
void flutter::TextInputPlugin::ComposeBeginHook |
( |
| ) |
|
|
virtual |
Definition at line 126 of file text_input_plugin.cc.
127 if (active_model_ ==
nullptr) {
130 active_model_->BeginComposing();
131 if (enable_delta_model) {
132 std::string
text = active_model_->GetText();
133 TextRange selection = active_model_->selection();
134 TextEditingDelta delta = TextEditingDelta(
text);
135 SendStateUpdateWithDelta(*active_model_, &delta);
137 SendStateUpdate(*active_model_);
References text.
Referenced by flutter::testing::TEST_F().
◆ ComposeChangeHook()
void flutter::TextInputPlugin::ComposeChangeHook |
( |
const std::u16string & |
text, |
|
|
int |
cursor_pos |
|
) |
| |
|
virtual |
Definition at line 193 of file text_input_plugin.cc.
195 if (active_model_ ==
nullptr) {
198 std::string text_before_change = active_model_->GetText();
199 TextRange composing_before_change = active_model_->composing_range();
200 active_model_->AddText(
text);
201 active_model_->UpdateComposingText(
text, TextRange(cursor_pos, cursor_pos));
202 std::string text_after_change = active_model_->GetText();
203 if (enable_delta_model) {
204 TextEditingDelta delta = TextEditingDelta(
205 fml::Utf8ToUtf16(text_before_change), composing_before_change,
text);
206 SendStateUpdateWithDelta(*active_model_, &delta);
208 SendStateUpdate(*active_model_);
References text.
Referenced by flutter::testing::TEST_F().
◆ ComposeCommitHook()
void flutter::TextInputPlugin::ComposeCommitHook |
( |
| ) |
|
|
virtual |
Definition at line 141 of file text_input_plugin.cc.
142 if (active_model_ ==
nullptr) {
145 std::string text_before_change = active_model_->GetText();
146 TextRange selection_before_change = active_model_->selection();
147 TextRange composing_before_change = active_model_->composing_range();
148 std::string composing_text_before_change = text_before_change.substr(
149 composing_before_change.start(), composing_before_change.length());
150 active_model_->CommitComposing();
References flutter::TextRange::length(), and flutter::TextRange::start().
Referenced by flutter::testing::TEST_F().
◆ ComposeEndHook()
void flutter::TextInputPlugin::ComposeEndHook |
( |
| ) |
|
|
virtual |
Definition at line 176 of file text_input_plugin.cc.
177 if (active_model_ ==
nullptr) {
180 std::string text_before_change = active_model_->GetText();
181 TextRange selection_before_change = active_model_->selection();
182 active_model_->CommitComposing();
183 active_model_->EndComposing();
184 if (enable_delta_model) {
185 std::string
text = active_model_->GetText();
186 TextEditingDelta delta = TextEditingDelta(
text);
187 SendStateUpdateWithDelta(*active_model_, &delta);
189 SendStateUpdate(*active_model_);
References text.
Referenced by flutter::testing::TEST_F().
◆ KeyboardHook()
void flutter::TextInputPlugin::KeyboardHook |
( |
int |
key, |
|
|
int |
scancode, |
|
|
int |
action, |
|
|
char32_t |
character, |
|
|
bool |
extended, |
|
|
bool |
was_down |
|
) |
| |
|
virtual |
◆ TextHook()
void flutter::TextInputPlugin::TextHook |
( |
const std::u16string & |
text | ) |
|
|
virtual |
Definition at line 68 of file text_input_plugin.cc.
69 if (active_model_ ==
nullptr) {
72 std::u16string text_before_change =
73 fml::Utf8ToUtf16(active_model_->GetText());
74 TextRange selection_before_change = active_model_->selection();
75 active_model_->AddText(
text);
77 if (enable_delta_model) {
78 TextEditingDelta delta =
79 TextEditingDelta(text_before_change, selection_before_change,
text);
80 SendStateUpdateWithDelta(*active_model_, &delta);
82 SendStateUpdate(*active_model_);
References text.
◆ TextInputPluginModifier
The documentation for this class was generated from the following files: