Searched refs:windowid (Results 1 – 6 of 6) sorted by relevance
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/pointer/include/ |
H A D | js_pointer_manager.h | 72 …napi_value SetPointerStyle(napi_env env, int32_t windowid, int32_t pointerStyle, napi_value handle… 73 napi_value SetPointerStyleSync(napi_env env, int32_t windowid, int32_t pointerStyle); 74 napi_value GetPointerStyle(napi_env env, int32_t windowid, napi_value handle = nullptr); 75 napi_value GetPointerStyleSync(napi_env env, int32_t windowid);
|
/ohos5.0/foundation/multimodalinput/input/service/ |
H A D | hisysevent.yaml | 147 AGENT_WINDOWID: {type: INT32, desc: agent windowid} 148 TARGET_WINDOWID: {type: INT32, desc: target windowid} 168 AGENT_WINDOWID: {type: INT32, desc: agent windowid} 169 TARGET_WINDOWID: {type: INT32, desc: target windowid} 186 OLD_FOCUS_WINDOWID: {type: INT32, desc: old focus windowid} 187 NEW_FOCUS_WINDOWID: {type: INT32, desc: new focus windowid} 194 OLD_ZORDER_FIRST_WINDOWID: {type: INT32, desc: old zorder first windowid} 195 NEW_ZORDER_FIRST_WINDOWID: {type: INT32, desc: new zorder first windowid}
|
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/pointer/src/ |
H A D | js_pointer_context.cpp | 762 int32_t windowid = 0; in SetPointerStyle() local 763 CHKRP(napi_get_value_int32(env, argv[0], &windowid), GET_VALUE_INT32); in SetPointerStyle() 764 if (windowid < 0 && windowid != GLOBAL_WINDOW_ID) { in SetPointerStyle() 785 return jsPointerMgr->SetPointerStyle(env, windowid, pointerStyle); in SetPointerStyle() 811 int32_t windowid = 0; in SetPointerStyleSync() local 812 CHKRP(napi_get_value_int32(env, argv[0], &windowid), GET_VALUE_INT32); in SetPointerStyleSync() 813 if (windowid < 0 && windowid != GLOBAL_WINDOW_ID) { in SetPointerStyleSync() 852 int32_t windowid = 0; in GetPointerStyle() local 854 if (windowid < 0 && windowid != GLOBAL_WINDOW_ID) { in GetPointerStyle() 863 return jsPointerMgr->GetPointerStyle(env, windowid); in GetPointerStyle() [all …]
|
H A D | js_pointer_manager.cpp | 560 napi_value JsPointerManager::SetPointerStyle(napi_env env, int32_t windowid, int32_t pointerStyle, … in SetPointerStyle() argument 567 asyncContext->errorCode = InputManager::GetInstance()->SetPointerStyle(windowid, style); in SetPointerStyle() 581 napi_value JsPointerManager::SetPointerStyleSync(napi_env env, int32_t windowid, int32_t pointerSty… in SetPointerStyleSync() argument 586 InputManager::GetInstance()->SetPointerStyle(windowid, style); in SetPointerStyleSync() 595 napi_value JsPointerManager::GetPointerStyle(napi_env env, int32_t windowid, napi_value handle) in GetPointerStyle() argument 601 asyncContext->errorCode = InputManager::GetInstance()->GetPointerStyle(windowid, pointerStyle); in GetPointerStyle() 614 napi_value JsPointerManager::GetPointerStyleSync(napi_env env, int32_t windowid) in GetPointerStyleSync() argument 618 InputManager::GetInstance()->GetPointerStyle(windowid, pointerStyle); in GetPointerStyleSync()
|
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodability/ |
H A D | js_input_method_engine_setting.h | 105 uint32_t windowid = 0; member
|
H A D | js_input_method_engine_setting.cpp | 644 auto entry = GetEntry(type, [&windowId](UvEntry &entry) { entry.windowid = windowId; }); in OnSetCallingWindow() 660 napi_create_uint32(env, entry->windowid, &args[0]); in OnSetCallingWindow()
|