Home
last modified time | relevance | path

Searched refs:ActionType (Results 1 – 25 of 70) sorted by relevance

123

/ohos5.0/docs/zh-cn/application-dev/reference/apis-input-kit/
H A Djs-apis-multimodalinput-gestureevent.md12 import { Rotate, Pinch, ThreeFingersSwipe, FourFingersSwipe, ActionType } from '@kit.InputKit';
23 | type | [ActionType](#actiontype) | 是 | 否 | 捏合事件类型 …
34 | type | [ActionType](#actiontype) | 是 | 否 | 旋转事件类型 |
45 | type | [ActionType](#actiontype) | 是 | 否 | 三指滑动事件类型 …
57 | type | [ActionType](#actiontype) | 是 | 否 | 四指滑动事件类型 …
69 | type | [ActionType](#actiontype) | 是 | 否 | 三指轻点事件类型 |
71 ## ActionType section
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/event/
H A Devent_convertor.cpp20 void SetTouchEventType(AceActionData::ActionType actionType, TouchEvent& point, std::vector<TouchEv… in SetTouchEventType()
23 case AceActionData::ActionType::CANCEL: in SetTouchEventType()
27 case AceActionData::ActionType::ADD: in SetTouchEventType()
28 case AceActionData::ActionType::REMOVE: in SetTouchEventType()
29 case AceActionData::ActionType::HOVER: in SetTouchEventType()
31 case AceActionData::ActionType::DOWN: in SetTouchEventType()
35 case AceActionData::ActionType::MOVE: in SetTouchEventType()
39 case AceActionData::ActionType::UP: in SetTouchEventType()
43 case AceActionData::ActionType::UNKNOWN: in SetTouchEventType()
H A Devent_convertor.h29 enum class ActionType : int64_t { enum
41 ActionType actionType = ActionType::UNKNOWN;
89 void SetTouchEventType(AceActionData::ActionType actionType, TouchEvent& point, std::vector<TouchEv…
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/
H A Djs-apis-multimodalinput-gestureevent.md12 import { Rotate, Pinch, ThreeFingersSwipe, FourFingersSwipe, ActionType } from '@kit.InputKit';
23 | type | [ActionType](#actiontype) | Yes | No | Pinch event type. …
34 | type | [ActionType](#actiontype) | Yes | No | Rotate event type. …
45 | type | [ActionType](#actiontype) | Yes | No | Three-finger swipe event type. …
57 | type | [ActionType](#actiontype) | Yes | No | Four-finger swipe event type. …
69 | type | [ActionType](#actiontype) | Yes | No | Three-finger tap event type.|
71 ## ActionType section
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/gesture_event/src/
H A Djs_gesture_event.cpp27 enum class ActionType : int32_t { enum
57 …DECLARE_NAPI_STATIC_PROPERTY("CANCEL", GetNapiInt32(env, static_cast<int32_t>(ActionType::CANCEL))… in Export()
58 … DECLARE_NAPI_STATIC_PROPERTY("BEGIN", GetNapiInt32(env, static_cast<int32_t>(ActionType::BEGIN))), in Export()
59 …DECLARE_NAPI_STATIC_PROPERTY("UPDATE", GetNapiInt32(env, static_cast<int32_t>(ActionType::UPDATE))… in Export()
60 … DECLARE_NAPI_STATIC_PROPERTY("END", GetNapiInt32(env, static_cast<int32_t>(ActionType::END))), in Export()
/ohos5.0/foundation/barrierfree/accessibility/interfaces/kits/napi/src/
H A Dnapi_accessibility_utils.cpp635 std::string ConvertOperationTypeToString(ActionType type) in ConvertOperationTypeToString()
638 {ActionType::ACCESSIBILITY_ACTION_FOCUS, "focus"}, in ConvertOperationTypeToString()
648 {ActionType::ACCESSIBILITY_ACTION_COPY, "copy"}, in ConvertOperationTypeToString()
650 {ActionType::ACCESSIBILITY_ACTION_CUT, "cut"}, in ConvertOperationTypeToString()
746 {"copy", ActionType::ACCESSIBILITY_ACTION_COPY}, in ConvertStringToAccessibleOperationType()
748 {"cut", ActionType::ACCESSIBILITY_ACTION_CUT}, in ConvertStringToAccessibleOperationType()
754 {"home", ActionType::ACCESSIBILITY_ACTION_HOME}, in ConvertStringToAccessibleOperationType()
755 {"back", ActionType::ACCESSIBILITY_ACTION_BACK}, in ConvertStringToAccessibleOperationType()
904 case ActionType::ACCESSIBILITY_ACTION_NEXT_TEXT: in ConvertActionArgsJSToNAPI()
937 case ActionType::ACCESSIBILITY_ACTION_SET_TEXT: in ConvertActionArgsJSToNAPI()
[all …]
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-performancemonitor-sys.md19 ## ActionType
34 begin(scene: string, startInputType: ActionType, note?: string): void
46 | startInputType | [ActionType](#actiontype)| 是 | 用户场景触发模式。 |
51 performanceMonitor.begin("LAUNCHER_APP_LAUNCH_FROM_ICON", performanceMonitor.ActionType.LAST_UP, "A…
/ohos5.0/base/update/packaging_tools/
H A Dtransfers_manager.py34 class ActionType(Enum): class
106 ActionType.ZERO, tgt_file_name, FILE_MAP_ZERO_KEY,
113 ActionInfo(ActionType.NEW, tgt_file_name,
119 ActionType.DIFFERENT, tgt_file_name, tgt_file_name,
131 ActionType.DIFFERENT, tgt_file_name, src_file_name,
139 ActionInfo(ActionType.NEW, tgt_file_name,
H A Dpatch_package_process.py24 from transfers_manager import ActionType
77 if each_action.type_str == ActionType.ZERO:
81 elif each_action.type_str == ActionType.NEW:
86 elif each_action.type_str == ActionType.DIFFERENT:
143 each_action.type_str = ActionType.MOVE
156 each_action.type_str = ActionType.NEW
196 transfer_content, ActionType.ZERO,
464 if type_str not in (ActionType.NEW, ActionType.ZERO):
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_accessibility_manager.cpp87 { ActionType::ACCESSIBILITY_ACTION_SET_TEXT,
96 { ActionType::ACCESSIBILITY_ACTION_COPY,
98 { ActionType::ACCESSIBILITY_ACTION_CUT,
100 { ActionType::ACCESSIBILITY_ACTION_PASTE,
102 { ActionType::ACCESSIBILITY_ACTION_CLICK,
104 { ActionType::ACCESSIBILITY_ACTION_LONG_CLICK,
106 { ActionType::ACCESSIBILITY_ACTION_SELECT,
110 { ActionType::ACCESSIBILITY_ACTION_NEXT_TEXT,
122 { ActionType::ACCESSIBILITY_ACTION_SPAN_CLICK,
220 ActionType ConvertAceAction(AceAction aceAction) in ConvertAceAction()
[all …]
H A Djs_accessibility_manager.h57 ActionType action;
61 ActionType action;
84 Accessibility::ActionType action;
171 void SendActionEvent(const Accessibility::ActionType& action, int64_t nodeId);
208 bool ExecuteWebActionNG(int64_t elementId, Accessibility::ActionType action,
379 bool AccessibilityActionEvent(const Accessibility::ActionType& action,
398 … Accessibility::ActionType action, const RefPtr<PipelineBase>& context, int64_t uiExtensionOffset);
399 … bool ConvertActionTypeToBoolen(Accessibility::ActionType action, RefPtr<NG::FrameNode>& frameNode,
432 Accessibility::ActionType& action, int64_t uiExtensionOffset);
442 void ProcessParameters(Accessibility::ActionType op, const std::vector<std::string>& params,
/ohos5.0/docs/en/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-performancemonitor-sys.md19 ## ActionType section
34 begin(scene: string, startInputType: ActionType, note?: string): void
46 | startInputType | [ActionType](#actiontype)| Yes | Type of action that triggers the user scene. |
51 performanceMonitor.begin("LAUNCHER_APP_LAUNCH_FROM_ICON", performanceMonitor.ActionType.LAST_UP, "A…
/ohos5.0/foundation/window/window_manager/utils/include/
H A Ddisplay_change_info.h25 enum class ActionType : uint32_t { enum
40 ActionType action_;
/ohos5.0/base/update/packaging_tools/test/
H A Dtest_inc.py19 from transfers_manager import ActionType
51 ActionType.NEW, "test.txt", "test.txt", bm1, bm2)
H A Dtest_utils.py33 from transfers_manager import ActionType
168 ActionType.ZERO, "tgt_file_name", "__ZERO",
/ohos5.0/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/
H A Daccessibility_element_info.h49 AccessibleAction(ActionType actionType, const std::string &description);
55 ActionType GetActionType() const;
64 ActionType actionType_ = ACCESSIBILITY_ACTION_INVALID;
656 bool DeleteAction(ActionType &actionType);
1434 void SetTriggerAction(const ActionType action);
1441 ActionType GetTriggerAction() const;
1814 ActionType triggerAction_ = ACCESSIBILITY_ACTION_INVALID;
H A Daccessibility_event_info.h392 void SetTriggerAction(const ActionType action);
400 ActionType GetTriggerAction() const;
519 ActionType triggerAction_ = ACCESSIBILITY_ACTION_INVALID;
H A Daccessibility_utils.h81 …pi_value object, std::map<std::string, std::string>& args, OHOS::Accessibility::ActionType action);
117 OHOS::Accessibility::ActionType ConvertStringToAccessibleOperationType(const std::string &type);
123 std::string ConvertOperationTypeToString(OHOS::Accessibility::ActionType type);
/ohos5.0/foundation/resourceschedule/soc_perf/test/unittest/
H A Dsocperf_sub_test.cpp65 EXPECT_EQ(OHOS::SOCPERF::ActionType::ACTION_TYPE_PERF, 0);
76 EXPECT_EQ(OHOS::SOCPERF::ActionType::ACTION_TYPE_POWER, 1);
87 EXPECT_EQ(OHOS::SOCPERF::ActionType::ACTION_TYPE_THERMAL, 2);
98 EXPECT_EQ(OHOS::SOCPERF::ActionType::ACTION_TYPE_MAX, 4);
H A Dsocperf_server_test.cpp85 socPerfServer_->socPerf.LimitRequest(ActionType::ACTION_TYPE_POWER, {1001}, {999000}, msg);
86 socPerfServer_->socPerf.LimitRequest(ActionType::ACTION_TYPE_THERMAL, {1001}, {999000}, msg);
87 socPerfServer_->socPerf.LimitRequest(ActionType::ACTION_TYPE_POWER, {1001}, {1325000}, msg);
88 socPerfServer_->socPerf.LimitRequest(ActionType::ACTION_TYPE_THERMAL, {1001}, {1325000}, msg);
119 socPerfServer_->LimitRequest(ActionType::ACTION_TYPE_POWER, {1001}, {1364000}, msg);
120 socPerfServer_->LimitRequest(ActionType::ACTION_TYPE_POWER, {11001}, {2}, msg);
121 socPerfServer_->LimitRequest(ActionType::ACTION_TYPE_MAX, {11001}, {2}, msg);
123 socPerfServer_->LimitRequest(ActionType::ACTION_TYPE_THERMAL, {1001}, {1364000}, msg);
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta2/
H A Djs-apidiff-multi-modal-input.md3 |新增|NA|类名:Pinch;<br>方法or属性:type: ActionType;|@ohos.multimodalInput.gestureEvent.d.ts|
4 |新增|NA|类名:ThreeFingersSwipe;<br>方法or属性:type: ActionType;|@ohos.multimodalInput.gestureEvent.d.ts|
5 |新增|NA|类名:FourFingersSwipe;<br>方法or属性:type: ActionType;|@ohos.multimodalInput.gestureEvent.d.ts|
11 |新增|NA|类名:ActionType;<br>方法or属性:CANCEL = 0|@ohos.multimodalInput.gestureEvent.d.ts|
12 |新增|NA|类名:ActionType;<br>方法or属性:BEGIN = 1|@ohos.multimodalInput.gestureEvent.d.ts|
13 |新增|NA|类名:ActionType;<br>方法or属性:UPDATE = 2|@ohos.multimodalInput.gestureEvent.d.ts|
14 |新增|NA|类名:ActionType;<br>方法or属性:END = 3|@ohos.multimodalInput.gestureEvent.d.ts|
/ohos5.0/foundation/barrierfree/accessibility/frameworks/aafwk/src/
H A Daccessible_ability_channel_client.cpp164 if (action == ActionType::ACCESSIBILITY_ACTION_ACCESSIBILITY_FOCUS && in ExecuteAction()
167 ActionType::ACCESSIBILITY_ACTION_CLEAR_ACCESSIBILITY_FOCUS, actionArguments); in ExecuteAction()
195 case ActionType::ACCESSIBILITY_ACTION_ACCESSIBILITY_FOCUS: in ExecuteAction()
200 case ActionType::ACCESSIBILITY_ACTION_CLEAR_ACCESSIBILITY_FOCUS: in ExecuteAction()
/ohos5.0/foundation/resourceschedule/soc_perf/interfaces/inner_api/socperf_client/include/
H A Dsocperf_action_type.h21 enum ActionType : uint32_t { enum
/ohos5.0/foundation/barrierfree/accessibility/services/aams/src/
H A Daccessible_ability_channel.cpp32 {ActionType::ACCESSIBILITY_ACTION_HOME,
34 {ActionType::ACCESSIBILITY_ACTION_RECENTTASK,
36 {ActionType::ACCESSIBILITY_ACTION_BACK,
38 {ActionType::ACCESSIBILITY_ACTION_NOTIFICATIONCENTER,
40 {ActionType::ACCESSIBILITY_ACTION_CONTROLCENTER,
384 if ((action == ActionType::ACCESSIBILITY_ACTION_ACCESSIBILITY_FOCUS)) { in SetFocusWindowIdAndElementId()
387 } else if (action == ActionType::ACCESSIBILITY_ACTION_CLEAR_ACCESSIBILITY_FOCUS) { in SetFocusWindowIdAndElementId()
/ohos5.0/foundation/barrierfree/accessibility/frameworks/common/src/
H A Daccessibility_element_info.cpp92 bool AccessibilityElementInfo::DeleteAction(ActionType &actionType) in DeleteAction()
605 AccessibleAction::AccessibleAction(ActionType actionType, const std::string &description) in AccessibleAction()
611 ActionType AccessibleAction::GetActionType() const in GetActionType()
786 void AccessibilityElementInfo::SetTriggerAction(const ActionType action) in SetTriggerAction()
791 ActionType AccessibilityElementInfo::GetTriggerAction() const in GetTriggerAction()

123