/ohos5.0/base/inputmethod/imf/frameworks/ndk/src/ |
H A D | inputmethod_inputmethod_proxy_capi.cpp | 22 …utMethod_ErrorCode OH_InputMethodProxy_ShowKeyboard(InputMethod_InputMethodProxy *inputMethodProxy) in OH_InputMethodProxy_ShowKeyboard() argument 24 auto errCode = IsValidInputMethodProxy(inputMethodProxy); in OH_InputMethodProxy_ShowKeyboard() 31 …utMethod_ErrorCode OH_InputMethodProxy_HideKeyboard(InputMethod_InputMethodProxy *inputMethodProxy) in OH_InputMethodProxy_HideKeyboard() argument 33 auto errCode = IsValidInputMethodProxy(inputMethodProxy); in OH_InputMethodProxy_HideKeyboard() 41 …InputMethod_InputMethodProxy *inputMethodProxy, char16_t text[], size_t length, int start, int end) in OH_InputMethodProxy_NotifySelectionChange() argument 43 auto errCode = IsValidInputMethodProxy(inputMethodProxy); in OH_InputMethodProxy_NotifySelectionChange() 63 auto errCode = IsValidInputMethodProxy(inputMethodProxy); in OH_InputMethodProxy_NotifyConfigurationChange() 75 InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_CursorInfo *cursorInfo) in OH_InputMethodProxy_NotifyCursorUpdate() argument 77 auto errCode = IsValidInputMethodProxy(inputMethodProxy); in OH_InputMethodProxy_NotifyCursorUpdate() 91 …InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_PrivateCommand *privateCommand[], size… in OH_InputMethodProxy_SendPrivateCommand() argument [all …]
|
H A D | inputmethod_controller_capi.cpp | 39 InputMethod_ErrorCode IsValidInputMethodProxy(InputMethod_InputMethodProxy *inputMethodProxy) in IsValidInputMethodProxy() argument 41 if (inputMethodProxy == nullptr) { in IsValidInputMethodProxy() 51 if (g_inputMethodProxy != inputMethodProxy) { in IsValidInputMethodProxy() 148 InputMethod_AttachOptions *options, InputMethod_InputMethodProxy **inputMethodProxy) in OH_InputMethodController_Attach() argument 150 …dTextEditorProxy(textEditor) != IME_ERR_OK) || options == nullptr || inputMethodProxy == nullptr) { in OH_InputMethodController_Attach() 181 *inputMethodProxy = g_inputMethodProxy; in OH_InputMethodController_Attach() 198 …putMethod_ErrorCode OH_InputMethodController_Detach(InputMethod_InputMethodProxy *inputMethodProxy) in OH_InputMethodController_Detach() argument 200 if (inputMethodProxy == nullptr) { in OH_InputMethodController_Detach() 211 if (g_inputMethodProxy != inputMethodProxy) { in OH_InputMethodController_Detach()
|
/ohos5.0/base/inputmethod/imf/interfaces/kits/c/ |
H A D | inputmethod_inputmethod_proxy_capi.h | 68 …tMethod_ErrorCode OH_InputMethodProxy_ShowKeyboard(InputMethod_InputMethodProxy *inputMethodProxy); 84 …tMethod_ErrorCode OH_InputMethodProxy_HideKeyboard(InputMethod_InputMethodProxy *inputMethodProxy); 108 …InputMethod_InputMethodProxy *inputMethodProxy, char16_t text[], size_t length, int start, int end… 127 …rCode OH_InputMethodProxy_NotifyConfigurationChange(InputMethod_InputMethodProxy *inputMethodProxy, 148 InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_CursorInfo *cursorInfo); 168 …InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_PrivateCommand *privateCommand[], size…
|
H A D | inputmethod_controller_capi.h | 68 InputMethod_AttachOptions *options, InputMethod_InputMethodProxy **inputMethodProxy); 83 …utMethod_ErrorCode OH_InputMethodController_Detach(InputMethod_InputMethodProxy *inputMethodProxy);
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ime-kit/ |
H A D | inputmethod__inputmethod__proxy__capi_8h.md | 31 …hod_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy) | 显示键盘。 | 32 …hod_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy) | 隐藏键盘。 | 33 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, char16_t tex… 34 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, [InputMethod… 35 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, [InputMethod… 36 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, [InputMethod…
|
H A D | _input_method.md | 1071 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。生命周期维持到… 1093 …tMethod_ErrorCode OH_InputMethodController_Detach (InputMethod_InputMethodProxy * inputMethodProxy) 1106 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。 inputM… 1126 …Method_ErrorCode OH_InputMethodProxy_HideKeyboard (InputMethod_InputMethodProxy * inputMethodProxy) 1139 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。 inputM… 1174 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。 inputM… 1213 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。 inputM… 1253 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。 inputM… 1294 | inputMethodProxy | 表示指向[InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy)实例的指针。 inputM… 1320 …Method_ErrorCode OH_InputMethodProxy_ShowKeyboard (InputMethod_InputMethodProxy * inputMethodProxy) [all …]
|
H A D | inputmethod__controller__capi_8h.md | 24 …nputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*\*inputMethodProxy) | 将应用绑定到输入法服… 25 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy) | 将应用从输入法服务解…
|
/ohos5.0/docs/zh-cn/application-dev/inputmethod/ |
H A D | use-inputmethod-in-custom-edit-box-ndk.md | 49 InputMethod_InputMethodProxy *inputMethodProxy = nullptr; 51 …if (OH_InputMethodController_Attach(textEditorProxy, options, &inputMethodProxy) != InputMethod_Er… 62 if (OH_InputMethodProxy_ShowKeyboard(inputMethodProxy) != InputMethod_ErrorCode::IME_ERR_OK) { 66 if (OH_InputMethodProxy_HideKeyboard(inputMethodProxy) != InputMethod_ErrorCode::IME_ERR_OK) { 70 if (OH_InputMethodProxy_NotifyConfigurationChange(inputMethodProxy, InputMethod_EnterKeyType::IME_E… 111 if (OH_InputMethodController_Detach(inputMethodProxy) != InputMethod_ErrorCode::IME_ERR_OK) { 114 inputMethodProxy = nullptr;
|
/ohos5.0/docs/en/application-dev/reference/apis-ime-kit/ |
H A D | inputmethod__inputmethod__proxy__capi_8h.md | 31 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy) | Displays t… 32 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy) | Hides the … 33 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, char16_t tex… 34 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, [InputMethod… 35 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, [InputMethod… 36 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy, [InputMethod…
|
H A D | inputmethod__controller__capi_8h.md | 24 …nputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*\*inputMethodProxy) | Binds an a… 25 …_InputMethodProxy](_input_method.md#inputmethod_inputmethodproxy) \*inputMethodProxy) | Unbinds an…
|
H A D | _input_method.md | 1093 …tMethod_ErrorCode OH_InputMethodController_Detach (InputMethod_InputMethodProxy * inputMethodProxy) 1106 …inputMethodProxy | Pointer to the [InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy) in… 1126 …Method_ErrorCode OH_InputMethodProxy_HideKeyboard (InputMethod_InputMethodProxy * inputMethodProxy) 1139 …inputMethodProxy | Pointer to the [InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy) in… 1174 …inputMethodProxy | Pointer to the [InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy) in… 1200 …InputMethodProxy_NotifyCursorUpdate (InputMethod_InputMethodProxy * inputMethodProxy, InputMethod_… 1213 …inputMethodProxy | Pointer to the [InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy) in… 1253 …inputMethodProxy | Pointer to the [InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy) in… 1294 …inputMethodProxy | Pointer to the [InputMethod_InputMethodProxy](#inputmethod_inputmethodproxy) in… 1320 …Method_ErrorCode OH_InputMethodProxy_ShowKeyboard (InputMethod_InputMethodProxy * inputMethodProxy) [all …]
|
/ohos5.0/docs/en/application-dev/inputmethod/ |
H A D | use-inputmethod-in-custom-edit-box-ndk.md | 49 InputMethod_InputMethodProxy *inputMethodProxy = nullptr; 51 …if (OH_InputMethodController_Attach(textEditorProxy, options, &inputMethodProxy) != InputMethod_Er… 62 if (OH_InputMethodProxy_ShowKeyboard(inputMethodProxy) != InputMethod_ErrorCode::IME_ERR_OK) { 66 if (OH_InputMethodProxy_HideKeyboard(inputMethodProxy) != InputMethod_ErrorCode::IME_ERR_OK) { 70 if (OH_InputMethodProxy_NotifyConfigurationChange(inputMethodProxy, InputMethod_EnterKeyType::IME_E… 111 if (OH_InputMethodController_Detach(inputMethodProxy) != InputMethod_ErrorCode::IME_ERR_OK) { 114 inputMethodProxy = nullptr;
|
/ohos5.0/base/inputmethod/imf/frameworks/ndk/include/ |
H A D | native_inputmethod_utils.h | 24 InputMethod_ErrorCode IsValidInputMethodProxy(InputMethod_InputMethodProxy *inputMethodProxy);
|
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | inputmethod_controller_capi_test.cpp | 1503 InputMethod_InputMethodProxy *inputMethodProxy = nullptr; variable 1504 …EQ(IME_ERR_IMCLIENT, OH_InputMethodController_Attach(textEditorProxy, options, &inputMethodProxy)); 1505 …EQ(IME_ERR_IMCLIENT, OH_InputMethodController_Attach(textEditorProxy, options, &inputMethodProxy)); 1510 …Q(IME_ERR_IMCLIENT, OH_InputMethodController_Attach(textEditorProxy2, options, &inputMethodProxy));
|