Searched refs:CursorMove (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/ime/ |
H A D | text_input_client.cpp | 70 … { KeyComb(KeyCode::KEY_DPAD_LEFT), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::Left); } }, in __anon1d5a884c0b02() 71 …{ KeyComb(KeyCode::KEY_DPAD_RIGHT), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::Right); } … in __anon1d5a884c0c02() 72 { KeyComb(KeyCode::KEY_DPAD_UP), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::Up); } }, in __anon1d5a884c0d02() 73 … { KeyComb(KeyCode::KEY_DPAD_DOWN), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::Down); } }, in __anon1d5a884c0e02() 74 …{ KeyComb(KeyCode::KEY_MOVE_HOME), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::LineBegin);… in __anon1d5a884c0f02() 75 …{ KeyComb(KeyCode::KEY_MOVE_END), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::LineEnd); } … in __anon1d5a884c1002() 81 …{ KeyComb(KeyCode::KEY_MOVE_END, KEY_CTRL), [](tic* c) -> void { c->CursorMove(CaretMoveIntent::En… in __anon1d5a884c1602() 94 [](tic* c) -> void { c->CursorMove(CaretMoveIntent::ParagraghBegin); } }, in __anon1d5a884c1f02() 96 [](tic* c) -> void { c->CursorMove(CaretMoveIntent::ParagraghEnd); } }, in __anon1d5a884c2002() 98 [](tic* c) -> void { c->CursorMove(CaretMoveIntent::Home); } }, in __anon1d5a884c2102() [all …]
|
H A D | text_input_client.h | 162 virtual void CursorMove(CaretMoveIntent direction) {} in CursorMove() function
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/ |
H A D | rich_editor_keyboard_shortcut_test_ng.cpp | 133 richEditorPattern->CursorMove(CaretMoveIntent::Left); 135 richEditorPattern->CursorMove(CaretMoveIntent::LeftWord); 138 richEditorPattern->CursorMove(CaretMoveIntent::RightWord); 141 richEditorPattern->CursorMove(CaretMoveIntent::ParagraghBegin); 144 richEditorPattern->CursorMove(CaretMoveIntent::ParagraghEnd); 147 richEditorPattern->CursorMove(CaretMoveIntent::Home); 150 richEditorPattern->CursorMove(CaretMoveIntent::End); 153 richEditorPattern->CursorMove(CaretMoveIntent::LineBegin); 195 richEditorPattern->CursorMove(CaretMoveIntent::LineEnd);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | on_text_changed_listener_impl.cpp | 207 client->CursorMove(CaretMoveIntent::Up); in MoveCursor() 210 client->CursorMove(CaretMoveIntent::Down); in MoveCursor() 213 client->CursorMove(CaretMoveIntent::Left); in MoveCursor() 216 client->CursorMove(CaretMoveIntent::Right); in MoveCursor()
|
H A D | text_field_pattern.h | 559 void CursorMove(CaretMoveIntent direction) override;
|
H A D | text_field_pattern.cpp | 1078 void TextFieldPattern::CursorMove(CaretMoveIntent direction) in CursorMove() function in OHOS::Ace::NG::TextFieldPattern
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_pattern.h | 438 void CursorMove(CaretMoveIntent direction) override;
|
H A D | rich_editor_pattern.cpp | 6501 void RichEditorPattern::CursorMove(CaretMoveIntent direction) in OnBackPressed() function in OHOS::Ace::NG::RichEditorPattern
|