Home
last modified time | relevance | path

Searched refs:InputMethodManager (Results 1 - 16 of 16) sorted by relevance

/foundation/arkui/ace_engine/adapter/preview/osal/
H A Dinput_method_manager_preview.cpp19 std::unique_ptr<InputMethodManager> InputMethodManager::instance_ = nullptr;
21 InputMethodManager* InputMethodManager::GetInstance() in GetInstance()
25 instance_.reset(new InputMethodManager()); in GetInstance()
30 void InputMethodManager::OnFocusNodeChange(const RefPtr<NG::FrameNode>& curFocusNode) {} in OnFocusNodeChange()
32 void InputMethodManager::ProcessKeyboardInWindowScene(const RefPtr<NG::FrameNode>& curFocusNode) {} in ProcessKeyboardInWindowScene()
34 void InputMethodManager::ProcessKeyboard(const RefPtr<NG::FrameNode>& curFocusNode) {} in ProcessKeyboard()
36 void InputMethodManager::SetWindowFocus(bool windowFocus) {} in SetWindowFocus()
38 bool InputMethodManager
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pipeline/
H A Dmock_input_method_manager.cpp19 std::unique_ptr<InputMethodManager> InputMethodManager::instance_ = nullptr;
20 std::mutex InputMethodManager::mtx_;
22 InputMethodManager* InputMethodManager::GetInstance() in GetInstance()
27 instance_.reset(new InputMethodManager); in GetInstance()
33 void InputMethodManager::OnFocusNodeChange(const RefPtr<NG::FrameNode>& curFocusNode) {} in OnFocusNodeChange()
35 void InputMethodManager::ProcessKeyboardInWindowScene(const RefPtr<NG::FrameNode>& curFocusNode) {} in ProcessKeyboardInWindowScene()
37 void InputMethodManager::ProcessKeyboard(const RefPtr<NG::FrameNode>& curFocusNode) {} in ProcessKeyboard()
39 void InputMethodManager
[all...]
/foundation/arkui/ui_lite/interfaces/innerkits/common/
H A Dinput_method_manager.h25 class InputMethodManager : public HeapBase { class
56 * @brief return InputMethodManager's singleton
57 * @return InputMethodManager*
59 static InputMethodManager& GetInstance();
114 InputMethodManager() {} in InputMethodManager() function in OHOS::InputMethodManager
115 ~InputMethodManager() {} in ~InputMethodManager()
117 InputMethodManager(const InputMethodManager&) = delete;
118 InputMethodManager& operator=(const InputMethodManager
[all...]
/foundation/arkui/ui_lite/frameworks/core/
H A Dinput_method_manager.cpp23 InputMethodManager& InputMethodManager::GetInstance() in GetInstance()
25 static InputMethodManager InputMethodManager; in GetInstance() local
26 return InputMethodManager; in GetInstance()
29 void InputMethodManager::ShowInputMethod(UIView* view) in ShowInputMethod()
55 void InputMethodManager::HideInputMethod() in HideInputMethod()
64 void InputMethodManager::SetInputMethodListener(InputMethodListener* listener) in SetInputMethodListener()
69 void InputMethodManager::InsertText(std::string text) in InsertText()
82 void InputMethodManager
[all...]
/foundation/arkui/ace_engine/frameworks/core/common/ime/
H A Dinput_method_manager.h23 class InputMethodManager final {
26 static InputMethodManager* GetInstance();
40 InputMethodManager() = default;
41 InputMethodManager(const InputMethodManager&) = delete;
42 InputMethodManager& operator=(const InputMethodManager&) = delete;
47 static std::unique_ptr<InputMethodManager> instance_;
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dinput_method_manager_ohos.cpp28 std::unique_ptr<InputMethodManager> InputMethodManager::instance_ = nullptr;
29 std::mutex InputMethodManager::mtx_;
31 InputMethodManager* InputMethodManager::GetInstance() in GetInstance()
36 instance_.reset(new InputMethodManager); in GetInstance()
42 void InputMethodManager::OnFocusNodeChange(const RefPtr<NG::FrameNode>& curFocusNode) in OnFocusNodeChange()
76 void InputMethodManager::ProcessKeyboardInWindowScene(const RefPtr<NG::FrameNode>& curFocusNode) in ProcessKeyboardInWindowScene()
98 void InputMethodManager::ProcessKeyboard(const RefPtr<NG::FrameNode>& curFocusNode) in ProcessKeyboard()
141 void InputMethodManager
[all...]
/foundation/arkui/ui_lite/test/unittest/common/
H A Dinput_method_manager_unit_test.cpp30 class TestInputMethodListener : public InputMethodManager::InputMethodListener {
32 void OnShow(InputMethodManager::InputMethodParam& param) override
57 InputMethodManager& inputMethodManager = InputMethodManager::GetInstance(); in TearDownTestCase()
70 InputMethodManager& inputMethodManager = InputMethodManager::GetInstance(); in HWTEST_F()
95 InputMethodManager& inputMethodManager = InputMethodManager::GetInstance(); in HWTEST_F()
119 InputMethodManager& inputMethodManager = InputMethodManager in HWTEST_F()
[all...]
/foundation/arkui/ui_lite/test/uitest/test_edit_text/
H A Dcustom_input_method.cpp115 void CustomInputMethod::OnShow(InputMethodManager::InputMethodParam& param) in OnShow()
139 InputMethodManager::GetInstance().OnKeyboardShow(); in OnShow()
148 InputMethodManager::GetInstance().OnKeyboardHide(); in OnHide()
288 InputMethodManager::GetInstance().SetInputType(InputType::PASSWORD_TYPE); in OnClick()
291 InputMethodManager::GetInstance().SetInputType(InputType::TEXT_TYPE); in OnClick()
312 InputMethodManager::GetInstance().SetCursorIndex(editView_->GetCursorIndex()); in DealKeyEvent()
314 editView_->SetCursorIndex(InputMethodManager::GetInstance().GetCursorIndex()); in DealKeyEvent()
334 InputMethodManager::GetInstance().DeleteBackward(1); in DealKeyEvent()
337 InputMethodManager::GetInstance().InsertText(" "); in DealKeyEvent()
342 InputMethodManager in DealKeyEvent()
[all...]
H A Dcustom_input_method.h39 public InputMethodManager::InputMethodListener {
61 void OnShow(InputMethodManager::InputMethodParam& param) override;
H A Dui_test_edit_text.cpp34 InputMethodManager::GetInstance().SetInputMethodListener(inputMethod); in SetUp()
/foundation/arkui/ui_lite/frameworks/dock/
H A Dfocus_manager.cpp48 InputMethodManager::GetInstance().ShowInputMethod(focusView_); in RequestFocus()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stage/
H A Dstage_manager.cpp157 InputMethodManager::GetInstance()->CloseKeyboard(); in PageChangeCloseKeyboard()
/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dpipeline_context.cpp159 auto needSoftKeyboard = InputMethodManager::GetInstance()->NeedSoftKeyboard(); in NeedSoftKeyboard()
4061 InputMethodManager::GetInstance()->SetWindowFocus(true); in WindowFocus()
4248 InputMethodManager::GetInstance()->CloseKeyboardInPipelineDestroy(); in Destroy()
5271 InputMethodManager::GetInstance()->OnFocusNodeChange(node); in RegisterFocusCallback()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_pattern.cpp786 InputMethodManager::GetInstance()->CloseKeyboard(); in RefreshNavDestination()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/
H A Doverlay_manager.cpp3977 InputMethodManager::GetInstance()->ProcessModalPageScene(); in ModalPageLostFocus()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/
H A Dweb_pattern.cpp6617 InputMethodManager::GetInstance()->CloseKeyboard(); in CloseKeyboard()

Completed in 45 milliseconds