Searched refs:InputMethod_CursorInfo (Results 1 - 8 of 8) sorted by relevance
/base/inputmethod/imf/interfaces/kits/c/ |
H A D | inputmethod_cursor_info_capi.h | 42 * @brief Define the InputMethod_CursorInfo structure type. 48 typedef struct InputMethod_CursorInfo InputMethod_CursorInfo; typedef 51 * @brief Create a new {@link InputMethod_CursorInfo} instance. 57 * @return If the creation succeeds, a pointer to the newly created {@link InputMethod_CursorInfo} 61 InputMethod_CursorInfo *OH_CursorInfo_Create(double left, double top, double width, double height); 64 * @brief Destroy a {@link InputMethod_CursorInfo} instance. 66 * @param cursorInfo Represents a pointer to an {@link InputMethod_CursorInfo} instance which will be destroyed. 69 void OH_CursorInfo_Destroy(InputMethod_CursorInfo *cursorInfo); 74 * @param cursorInfo Represents a pointer to an {@link InputMethod_CursorInfo} instanc [all...] |
H A D | inputmethod_inputmethod_proxy_capi.h | 135 * @param cursorInfo Represents a pointer to an {@link InputMethod_CursorInfo} instance. 148 InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_CursorInfo *cursorInfo);
|
H A D | inputmethod_text_config_capi.h | 177 * @param cursorInfo Represents a pointer to an {@link InputMethod_CursorInfo} instance. 184 InputMethod_ErrorCode OH_TextConfig_GetCursorInfo(InputMethod_TextConfig *config, InputMethod_CursorInfo **cursorInfo);
|
/base/inputmethod/imf/frameworks/ndk/src/ |
H A D | inputmethod_cursor_info_capi.cpp | 20 InputMethod_CursorInfo *OH_CursorInfo_Create(double left, double top, double width, double height) in OH_CursorInfo_Create() 22 return new InputMethod_CursorInfo({ left, top, width, height }); in OH_CursorInfo_Create() 24 void OH_CursorInfo_Destroy(InputMethod_CursorInfo *cursorInfo) in OH_CursorInfo_Destroy() 33 InputMethod_CursorInfo *cursorInfo, double left, double top, double width, double height) in OH_CursorInfo_SetRect() 47 InputMethod_CursorInfo *cursorInfo, double *left, double *top, double *width, double *height) in OH_CursorInfo_GetRect()
|
H A D | inputmethod_text_config_capi.cpp | 128 InputMethod_ErrorCode OH_TextConfig_GetCursorInfo(InputMethod_TextConfig *config, InputMethod_CursorInfo **cursorInfo) in OH_TextConfig_GetCursorInfo()
|
H A D | inputmethod_inputmethod_proxy_capi.cpp | 75 InputMethod_InputMethodProxy *inputMethodProxy, InputMethod_CursorInfo *cursorInfo) in OH_InputMethodProxy_NotifyCursorUpdate()
|
/base/inputmethod/imf/frameworks/ndk/include/ |
H A D | native_inputmethod_types.h | 26 struct InputMethod_CursorInfo { struct 41 InputMethod_CursorInfo cursorInfo;
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | inputmethod_controller_capi_test.cpp | 62 InputMethod_CursorInfo *cursorInfo = nullptr; in TestCursorInfoOfTextConfig() 1403 InputMethod_CursorInfo *cursorInfo = OH_CursorInfo_Create(left, top, width, height); in HWTEST_F()
|
Completed in 5 milliseconds