/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/ |
H A D | attribute.h | 72 bool touchable = true; member
|
/foundation/window/window_manager/test/fuzztest/wms/windowscene_fuzzer/ |
H A D | windowscene_fuzzer.cpp | 90 bool touchable; in InitWindowOption1() local 91 startPos += GetObject<bool>(touchable, data + startPos, size - startPos); in InitWindowOption1() 92 windowOption.SetTouchable(touchable); in InitWindowOption1()
|
/foundation/arkui/ui_lite/test/uitest/test_input_event/ |
H A D | ui_test_input_event.cpp | 263 void UITestInputEvent::InnerTest(const char* title, bool touchable, bool draggable, bool dragParent) in InnerTest() argument 277 testView->SetTouchable(touchable); in InnerTest() 290 bool touchable, in InnerBubbleTest() 315 testView->SetTouchable(touchable); in InnerBubbleTest() 289 InnerBubbleTest(const char* title, bool touchable, bool draggable, bool hasListener, bool isBubble) InnerBubbleTest() argument
|
H A D | ui_test_input_event.h | 362 * @brief Test if dispatch press\release\longpress\cancel event act normal when target is touchable 370 * @brief Test if dispatch drag event act normal when target is touchable and draggable and drag parent instead. 374 * @brief Test if dispatch drag event act normal when target is touchable and draggable and not drag parent instead. 433 void InnerTest(const char* title, bool touchable, bool draggable, bool dragParent); 434 void InnerBubbleTest(const char* title, bool touchable, bool draggable, bool hasListener, bool isBubble);
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | component.h | 128 void SetTouchable(bool touchable) in SetTouchable() argument 130 touchable_ = touchable; in SetTouchable()
|
/foundation/arkui/ui_lite/test/uitest/test_event_injector/ |
H A D | ui_test_event_injector.h | 89 void InnerTest(const char* title, bool touchable, bool draggable, bool dragParent,
|
H A D | ui_test_event_injector.cpp | 280 bool touchable, in InnerTest() 300 testView->SetTouchable(touchable); in InnerTest() 279 InnerTest(const char* title, bool touchable, bool draggable, bool dragParent, const char* btnTitle, UILabelButton* btn, TestEventInjectorView*& testView) InnerTest() argument
|
/foundation/arkui/ui_lite/test/unittest/events/ |
H A D | event_bubble_unit_test.cpp | 89 static void SetUpTestview(TestEventBubbleView* testView, bool touchable, bool draggable); 204 void EventBubbleTest::SetUpTestview(TestEventBubbleView* testView, bool touchable, bool draggable) in SetUpTestview() argument 208 testView->SetTouchable(touchable); in SetUpTestview() 270 /* test for touchable view */ in HWTEST_F() 306 /* test for touchable view */ in HWTEST_F()
|
/foundation/arkui/ui_lite/test/unittest/dfx/ |
H A D | event_injector_unit_test.cpp | 90 static void SetUpTestview(TestEventInjectorView* testView, bool touchable, bool draggable); 177 void EventInjectorTest::SetUpTestview(TestEventInjectorView* testView, bool touchable, bool draggable) in SetUpTestview() argument 181 testView->SetTouchable(touchable); in SetUpTestview()
|
/foundation/window/window_manager/wmserver/src/ |
H A D | window_node.cpp | 91 void WindowNode::SetTouchable(bool touchable) in SetTouchable() argument 93 property_->SetTouchable(touchable); in SetTouchable()
|
/foundation/window/window_manager/window_scene/session/host/include/ |
H A D | session.h | 62 using NotifySessionTouchableChangeFunc = std::function<void(const bool touchable)>; 305 void NotifySessionTouchableChange(bool touchable); 321 WSError SetTouchable(bool touchable); 325 void SetForceTouchable(bool touchable); 326 virtual void SetSystemTouchable(bool touchable); 520 void UpdateSessionTouchable(bool touchable);
|
/foundation/window/window_manager/interfaces/kits/cj/window_runtime/ |
H A D | window_utils.h | 58 bool touchable; member
|
H A D | window_impl.h | 67 int32_t SetWindowTouchable(bool touchable);
|
H A D | window_ffi.h | 49 FFI_EXPORT int32_t FfiOHOSWindowSetWindowTouchable(int64_t id, bool touchable);
|
H A D | window_ffi.cpp | 269 int32_t FfiOHOSWindowSetWindowTouchable(int64_t id, bool touchable) in FfiOHOSWindowSetWindowTouchable() argument 277 int32_t res = instance->SetWindowTouchable(touchable); in FfiOHOSWindowSetWindowTouchable()
|
H A D | window_impl.cpp | 271 wp.touchable = windowToken_->GetTouchable(); in GetWindowProperties() 438 int32_t CJWindowImpl::SetWindowTouchable(bool touchable) in SetWindowTouchable() argument 445 WmErrorCode ret = WM_JS_TO_ERROR_CODE_MAP.at(weakWindow->SetTouchable(touchable)); in SetWindowTouchable() 446 TLOGI(WmsLogTag::WMS_DIALOG, "Window [%{public}u, %{public}s] set touchable end", in SetWindowTouchable()
|
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | session.cpp | 504 void Session::UpdateSessionTouchable(bool touchable) in UpdateSessionTouchable() argument 511 property->SetTouchable(touchable); in UpdateSessionTouchable() 512 NotifySessionTouchableChange(touchable); in UpdateSessionTouchable() 615 WSError Session::SetTouchable(bool touchable) in SetTouchable() argument 617 SetSystemTouchable(touchable); in SetTouchable() 623 if (touchable != GetSessionProperty()->GetTouchable()) { in SetTouchable() 624 TLOGI(WmsLogTag::WMS_EVENT, "id:%{public}d touchable:%{public}d", GetPersistentId(), in SetTouchable() 625 static_cast<int>(touchable)); in SetTouchable() 627 UpdateSessionTouchable(touchable); in SetTouchable() 650 void Session::SetSystemTouchable(bool touchable) in SetSystemTouchable() argument 2266 NotifySessionTouchableChange(bool touchable) NotifySessionTouchableChange() argument [all...] |
/foundation/window/window_manager/wmserver/include/ |
H A D | window_node.h | 72 void SetTouchable(bool touchable);
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_node.cpp | 1856 if (touchableAttr.IsValid() && !touchableAttr.touchable) { in UpdateTouchEventComponent() 1860 touchEventComponent_->SetTouchable(touchableAttr.touchable); in UpdateTouchEventComponent() 2132 bool touchable = true; in CompositeSpecializedComponent() local 2137 touchable = touchableAttr.touchable; in CompositeSpecializedComponent() 2140 specializedComponent->SetTouchable(touchable); in CompositeSpecializedComponent()
|
/foundation/arkui/ui_lite/test/uitest/test_button/ |
H A D | ui_test_button.cpp | 498 TestBtnOnClickTouchableListener(UIView* uiView, bool touchable) : uiView_(uiView), touchable_(touchable) {} in TestBtnOnClickTouchableListener() argument
|
/foundation/window/window_manager/window_scene/test/unittest/ |
H A D | session_test2.cpp | 616 NotifySessionTouchableChangeFunc func = [](const bool touchable) in HWTEST_F() 1158 bool touchable = false; in HWTEST_F() local 1159 session_->SetSystemTouchable(touchable); in HWTEST_F() 1160 ASSERT_EQ(session_->systemTouchable_, touchable); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | gesture_event_hub.h | 211 void SetTouchable(bool touchable);
|
H A D | gesture_event_hub.cpp | 1190 void GestureEventHub::SetTouchable(bool touchable) in SetTouchable() argument 1192 touchable_ = touchable; in SetTouchable()
|
/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/ |
H A D | js_scene_session.h | 275 void OnSessionTouchableChange(bool touchable);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract.h | 301 static void SetTouchable(bool touchable); 545 static void SetTouchable(FrameNode* frameNode, bool touchable);
|