Home
last modified time | relevance | path

Searched refs:isPressed (Results 1 - 25 of 52) sorted by relevance

123

/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_item_group_paint_method.cpp60 nextIsPressed = nextId < 0 ? child.second.isPressed : itemPosition_[nextId].isPressed; in UpdateDividerList()
61 if (!isFirstItem && !(child.second.isPressed || nextIsPressed)) { in UpdateDividerList()
87 if (!itemPosition_.at(index).isPressed) { in UpdateDividerList()
H A Dlist_paint_method.cpp109 nextIsPressed = nextId < 0 || lastIsItemGroup || child.second.isGroup ? false : itemPosition_[nextId].isPressed; in UpdateDividerList()
110 if (!isFirstItem && !(child.second.isPressed || nextIsPressed)) { in UpdateDividerList()
127 if (!itemPosition_.at(index.first).isPressed) { in UpdateDividerList()
H A Dlist_item_group_paint_method.h56 child.second.isPressed = true; in ListItemGroupPaintMethod()
H A Dlist_paint_method.h98 child.second.isPressed = true; in SetItemsPosition()
H A Dlist_item_group_pattern.h271 void SetItemPressed(bool isPressed, int32_t id) in SetItemPressed() argument
273 if (isPressed) { in SetItemPressed()
H A Dlist_pattern.h319 void SetItemPressed(bool isPressed, int32_t id) in SetItemPressed() argument
321 if (isPressed) { in SetItemPressed()
H A Dlist_item_pattern.h251 void HandlePressEvent(bool isPressed, const RefPtr<NG::FrameNode>& itemNode);
/foundation/window/window_manager/wm/include/
H A Dgtx_input_event_sender.h36 bool isPressed = false; member
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar_picker/
H A Dcalendar_picker_pattern.h171 void HandleTouchEvent(bool isPressed, const Offset& globalLocation);
191 void HandleButtonTouchEvent(bool isPressed, int32_t index);
H A Dcalendar_dialog_pattern.h156 void HandleEntryNodeTouchEvent(bool isPressed, const Offset& globalLocation);
/foundation/multimodalinput/input/frameworks/napi/input_event_client/src/
H A Djs_register_module.cpp86 bool isPressed = false; in GetInjectionEventDataNative() local
87 if (GetNamedPropertyBool(env, keyHandle, "isPressed", isPressed) != RET_OK) { in GetInjectionEventDataNative()
88 MMI_HILOGE("Get isPressed failed"); in GetInjectionEventDataNative()
111 auto keyAction = isPressed ? Input_KeyEventAction::KEY_ACTION_DOWN : Input_KeyEventAction::KEY_ACTION_UP; in GetInjectionEventDataNative()
125 bool isPressed = false;
126 if (GetNamedPropertyBool(env, keyHandle, "isPressed", isPressed) != RET_OK) {
127 MMI_HILOGE("Get isPressed failed");
151 auto keyAction = isPressed
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper_indicator/dot_indicator/
H A Ddot_indicator_paint_method.h105 void SetIsPressed(bool isPressed) in SetIsPressed() argument
107 isPressed_ = isPressed; in SetIsPressed()
H A Ddot_indicator_modifier.h230 void SetIsPressed(bool isPressed) in SetIsPressed() argument
232 isPressed_ = isPressed; in SetIsPressed()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_theme/theme_apply/
H A Djs_button_theme.h83 static Color BackgroundColor(const std::optional<JSThemeColors>& themeColors, bool isPressed) in BackgroundColor() argument
/foundation/window/window_manager/wm/src/
H A Dgtx_input_event_sender.cpp61 dstTouchPoint.isPressed = srcTouchPoint.IsPressed(); in SetTouchEvent()
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dstate_style_manager.cpp244 bool isPressed = state == UI_STATE_PRESSED; in PostListItemPressStyleTask() local
254 listGroupPattern->SetItemPressed(isPressed, nodeId); in PostListItemPressStyleTask()
260 listPattern->SetItemPressed(isPressed, nodeId); in PostListItemPressStyleTask()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_item_pattern.h165 void HandlePressEvent(bool isPressed);
H A Dgrid_item_pattern.cpp203 void GridItemPattern::HandlePressEvent(bool isPressed) in HandlePressEvent() argument
214 isPressed_ = isPressed; in HandlePressEvent()
310 isPressed_ ? DumpLog::GetInstance().AddDesc("isPressed:true") : DumpLog::GetInstance().AddDesc("isPressed:false"); in DumpAdvanceInfo()
365 json->Put("isPressed", isPressed_); in DumpAdvanceInfo()
/foundation/arkui/ace_engine/adapter/preview/external/multimodalinput/
H A Dpointer_event.h57 bool isPressed = false; member
/foundation/CastEngine/castengine_cast_framework/interfaces/inner_api/include/
H A Doh_remote_control_event.h122 bool isPressed = false; // Whether the current point is pressed. member
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar/
H A Dcalendar_month_pattern.h134 void OnTouchEvent(const Offset& localLocation, bool isPressed);
/foundation/multimodalinput/input/util/common/src/
H A Dinput_event_data_transformation.cpp92 bool isPressed = false; in NetPacketToKeyEvent() local
102 pkt >> isPressed; in NetPacketToKeyEvent() local
104 MMI_HILOGE("Packet read item isPressed failed"); in NetPacketToKeyEvent()
107 keyItem.SetPressed(isPressed); in NetPacketToKeyEvent()
/foundation/multimodalinput/input/intention/cooperate/plugin/src/input_event_transmission/
H A Dinput_event_serialization.cpp90 bool isPressed = false; in NetPacketToKeyEvent() local
100 pkt >> isPressed; in NetPacketToKeyEvent() local
102 FI_HILOGE("Packet read item isPressed failed"); in NetPacketToKeyEvent()
105 keyItem.SetPressed(isPressed); in NetPacketToKeyEvent()
/foundation/barrierfree/accessibility/interfaces/kits/napi/src/
H A Dnapi_accessibility_utils.cpp1538 bool isPressed = HasKeyCode(pressedKeys, OHOS::MMI::KeyEvent::KEYCODE_CTRL_LEFT) in SetKeyPropertyPart1() local
1541 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, isPressed, &ctrlKeyValue)); in SetKeyPropertyPart1()
1545 isPressed = HasKeyCode(pressedKeys, OHOS::MMI::KeyEvent::KEYCODE_ALT_LEFT) in SetKeyPropertyPart1()
1548 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, isPressed, &altKeyValue)); in SetKeyPropertyPart1()
1552 isPressed = HasKeyCode(pressedKeys, OHOS::MMI::KeyEvent::KEYCODE_SHIFT_LEFT) in SetKeyPropertyPart1()
1555 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, isPressed, &shiftKeyValue)); in SetKeyPropertyPart1()
1559 isPressed = HasKeyCode(pressedKeys, OHOS::MMI::KeyEvent::KEYCODE_META_LEFT) in SetKeyPropertyPart1()
1562 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, isPressed, &logoKeyValue)); in SetKeyPropertyPart1()
1566 isPressed = HasKeyCode(pressedKeys, OHOS::MMI::KeyEvent::KEYCODE_FN); in SetKeyPropertyPart1()
1568 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, isPressed, in SetKeyPropertyPart1()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/
H A Drender_xcomponent.cpp169 ohTouchPoint.isPressed = (touchType == TouchType::DOWN); in SetTouchPoint()
189 ohTouchPoint.isPressed = false; in SetTouchPoint()

Completed in 18 milliseconds

123