Home
last modified time | relevance | path

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

/test/xts/acts/arkui/ace_ets_component_seven/ace_ets_component_common_seven_attrs_touchable/entry/src/main/ets/MainAbility/pages/touchable/
DTouchablePage.ets23 instance.touchable(this.mTouchable)
31 instance.touchable(this.mTouchable)
39 instance.touchable(this.mTouchable)
47 instance.touchable(this.mTouchable)
55 instance.touchable(this.mTouchable)
63 instance.touchable(this.mTouchable)
71 instance.touchable(this.mTouchable)
79 instance.touchable(this.mTouchable)
87 instance.touchable(this.mTouchable)
95 instance.touchable(this.mTouchable)
[all …]
/test/xts/acts/arkui/ace_ets_component_seven/ace_ets_component_common_seven_attrs_touchable/entry/src/main/ets/test/touchable/
DTouchableTest.test.ets21 * Test of common attribute: touchable
39 pageUrl: 'MainAbility/pages/touchable/TouchablePage',
54 touchable: true
57 touchable: true
66 console.info('[' + data.caseTag + ']' + 'touchable is:' + data.viewObj.$attrs.touchable);
67 expect(data.viewObj.$attrs.touchable)
68 .assertEqual(data.testValue.expectValue.touchable);
/test/xts/acts/arkui/ace_ets_component_common_attrss/ace_ets_component_common_attrss_touchable/entry/src/ohosTest/ets/test/touchable/
DTouchableTest.test.ets32 * Test of common attribute: touchable
35 //A list of components that support the touchable attribute, which is required.
113 pageUrl: 'MainAbility/pages/touchable/TouchablePage',
133 console.info('[' + data.caseTag + ']' + 'touchable is:' + data.viewObj.$attrs.touchable);
134 expect(data.viewObj.$attrs.touchable)
/test/xts/acts/arkui/ace_ets_component_common_attrss/ace_ets_component_common_attrss_default/entry/src/ohosTest/ets/test/default/
DDefaultTest.test.ets44 touchable?: boolean
197 touchable: true
258 // Test touchable defaults
259 …onsole.info('[' + data.caseTag + ']data.viewObj.$attrs.touchable:' + data.viewObj.$attrs.touchable
260 expect(data.viewObj.$attrs.touchable).assertEqual(data.testValue.expectValue.touchable);
/test/xts/acts/arkui/ace_ets_component_three/entry/src/main/ets/MainAbility/pages/
DResponseRegion.ets36 if (eventData.data?.touchable != null) {
37 this._touchable = eventData.data.touchable;
56 .touchable(this._touchable)
DPanGesture.ets29 if (eventData.data?.touchable != null) {
30 this._touchable = eventData.data.touchable;
54 .touchable(this._touchable)
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_dialog/ace_ets_module_dialog_api11/entry/src/main/ets/MainAbility/pages/Menu/
DResponseRegion.ets36 if (eventData.data?.touchable != null) {
37 this.touchableValue = eventData.data?.touchable;
56 .touchable(this.touchableValue)
/test/xts/acts/graphic/acts_windowCompatibilityTest/entry/src/ohosTest/ets/test/
DwindowEvent.test.ets580 * @tc.desc : Sets whether the window is touchable
594 console.info(msgStr + 'Succeeded in setting the window to be touchable.');
597 expect(properties.touchable).assertEqual(isTouchable);
600 …console.error(msgStr + `Failed to set the window to be touchable. Cause code: ${err.code}, message…
605 …console.error(msgStr + `Failed to set the window to be touchable. Cause code: ${exception.code}, m…
613 * @tc.desc : Sets whether the window is touchable
629 …console.error(msgStr + `Failed to set the window to be touchable. Cause code: ${err.code}, message…
634 console.info(msgStr + 'Succeeded in setting the window to be touchable.');
637 expect(properties.touchable).assertEqual(isTouchable);
641 …console.error(msgStr + `Failed to set the window to be touchable. Cause code: ${exception.code}, m…
[all …]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_commonEvents/ace_ets_module_commonEvents_api11/entry/src/main/ets/MainAbility/pages/PanGesture/
DPanGesture.ets29 if (eventData.data?.touchable != null) {
30 this.touchableValue = eventData.data?.touchable;
54 .touchable(this.touchableValue)
/test/xts/acts/arkui/ace_ets_component_common_attrss/ace_ets_component_common_attrss_touchable/entry/src/ohosTest/ets/test/
DList.test.ets16 import touchableTest from './touchable/TouchableTest.test';
/test/xts/acts/arkui/ace_ets_component_seven/ace_ets_component_common_seven_attrs_touchable/entry/src/main/ets/test/
DList.test.ets15 import touchableTest from './touchable/TouchableTest.test';
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_commonAttrsEvents/ace_ets_module_commonAttrsEvents_api11/entry/src/main/ets/MainAbility/pages/touchable/
DtouchAble.ets42 .touchable(this.touchableValue)
/test/xts/acts/arkui/ace_ets_component/entry/src/main/ets/MainAbility/pages/
DtouchAble.ets42 .touchable(this.touchableValue)
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_commonAttrsEvents/ace_ets_module_commonAttrsEvents_api11/entry/src/main/ets/test/touchableTest/
DTouchAbleJsunit.test.ets26 url: 'MainAbility/pages/touchable/touchAble'
/test/xts/acts/graphic/windowstandard/entry/src/ohosTest/js/test/
Dwindow.test.js107 expect(data.touchable).assertTrue();
152 expect(data.touchable).assertTrue();
2066 touchable: false, property
2086 expect(!windowP.touchable).assertTrue();
2163 expect(!data.touchable).assertTrue();
2210 expect(data.touchable).assertTrue();
2257 expect(!data.touchable).assertTrue();
2304 expect(data.touchable).assertTrue();
2345 expect(data.touchable).assertTrue();
2349 expect(!data.touchable).assertTrue();
[all …]
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_dialog/ace_ets_module_dialog_api11/entry/src/main/ets/test/MenuTest/
DResponseRegionJsunit.test.ets56 "touchable": true,
/test/xts/acts/arkui/ace_ets_component_three/entry/src/main/ets/test/
DResponseRegionJsunit.test.ets56 "touchable": true,
DPanGestureJsunit.test.ets56 "touchable": true,
/test/xts/acts/arkui/ace_ets_module_ui/ace_ets_module_commonEvents/ace_ets_module_commonEvents_api11/entry/src/main/ets/test/PanGestureTest/
DPanGestureJsunit.test.ets56 "touchable": true,
/test/xts/acts/graphic/windowStage/entry/src/ohosTest/ets/test/
DwindowRichScene.test.ets1082 * @tc.desc : Sets whether the window is touchable
1101 console.info(msgStr + 'Succeeded in setting the window to be touchable.');
1103 … console.error(msgStr + 'Failed to set the window to be touchable. Cause: ' + JSON.stringify(err));
1108 …console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(excepti…
1115 … console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(err));
1125 console.info(msgStr + 'Succeeded in setting the window to be touchable.');
1129 …console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(excepti…
1137 * @tc.desc : Sets whether the window is touchable
1157 console.info(msgStr + 'Succeeded in setting the window to be touchable.');
1161 … console.error(msgStr + 'Failed to set the window to be touchable. Cause: ' + JSON.stringify(err));
[all …]
DwindowRefactorInterface.test.ets1177 expect(data.touchable).assertTrue();
1181 expect(!data2.touchable).assertTrue();
1190 expect(data3.touchable).assertTrue();
1234 expect(!data.touchable).assertTrue();
1237 console.error('Failed to set the window to be touchable. Cause:' + JSON.stringify(err));
1247 expect(data2.touchable).assertTrue();
DwindowAbnormalScenario.test.ets2203 * @tc.desc : Sets whether the window is touchable
2225 … console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(err));
2230 console.info(msgStr + 'Succeeded in setting the window to be touchable');
2235 …console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(excepti…
2276 …console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(excepti…
2311 …console.error(msgStr + 'Failed to set the window to be touchable. Cause:' + JSON.stringify(excepti…
3960 console.info(msgStr + 'Succeeded in setting the area to be touchable.');
3963 … console.error(msgStr + 'Failed to set the area to be touchable. Cause: ' + JSON.stringify(err));
3967 …console.error(msgStr + 'Failed to set the area to be touchable. Cause: ' + JSON.stringify(exceptio…
3996 … console.error(msgStr + 'Failed to set the area to be touchable Cause: ' + JSON.stringify(err));
[all …]
DdisplayAndWindowRefactorInterface.test.ets460 expect(data.touchable != null).assertTrue();
/test/xts/acts/arkui/ace_ets_component_common_attrss/ace_ets_component_common_attrss_touchable/entry/src/ohosTest/ets/MainAbility/pages/touchable/
DTouchablePage.ets33 .touchable(this._touchable)
319 .id('touchable')
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/Dialog/
Darkoala_api.h1522 void (*setTouchable)(ArkUINodeHandle node, ArkUI_Bool touchable);