Home
last modified time | relevance | path

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

/foundation/windowmanager/interfaces/kits/napi/window_runtime/api/
D@ohos.window.d.ts448 touchable: boolean property
859 setOutsideTouchable(touchable: boolean): Promise<void>;
867 setOutsideTouchable(touchable: boolean, callback: AsyncCallback<void>): void;
/foundation/ace/ace_engine/frameworks/core/pipeline/base/
Dcomponent.h126 void SetTouchable(bool touchable) in SetTouchable() argument
128 touchable_ = touchable; in SetTouchable()
/foundation/windowmanager/wmserver/src/
Dwindow_node.cpp110 void WindowNode::SetTouchable(bool touchable) in SetTouchable() argument
112 property_->SetTouchable(touchable); in SetTouchable()
/foundation/ace/ace_engine/frameworks/core/components/declaration/common/
Dattribute.h72 bool touchable = true; member
Ddeclaration.cpp636 touchableAttr.touchable = StringToBool(value); in SetAttr()
/foundation/graphic/ui/test/uitest/test_input_event/
Dui_test_input_event.h263 void InnerTest(const char* title, bool touchable, bool draggable, bool dragParent);
264 …void InnerBubbleTest(const char* title, bool touchable, bool draggable, bool hasListener, bool isB…
Dui_test_input_event.cpp433 void UITestInputEvent::InnerTest(const char* title, bool touchable, bool draggable, bool dragParent) in InnerTest() argument
447 testView->SetTouchable(touchable); in InnerTest()
460 bool touchable, in InnerBubbleTest() argument
485 testView->SetTouchable(touchable); in InnerBubbleTest()
/foundation/graphic/ui/test/unittest/events/
Devent_bubble_unit_test.cpp89 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()
/foundation/graphic/ui/test/uitest/test_event_injector/
Dui_test_event_injector.h78 void InnerTest(const char* title, bool touchable, bool draggable, bool dragParent,
Dui_test_event_injector.cpp280 bool touchable, in InnerTest() argument
300 testView->SetTouchable(touchable); in InnerTest()
/foundation/graphic/ui/test/unittest/dfx/
Devent_injector_unit_test.cpp90 static void SetUpTestview(TestEventInjectorView* testView, bool touchable, bool draggable);
177 void EventInjectorTest::SetUpTestview(TestEventInjectorView* testView, bool touchable, bool draggab… in SetUpTestview() argument
181 testView->SetTouchable(touchable); in SetUpTestview()
/foundation/windowmanager/wmserver/include/
Dwindow_node.h55 void SetTouchable(bool touchable);
/foundation/ace/ace_engine/frameworks/bridge/common/dom/
Ddom_node.cpp1785 if (touchableAttr.IsValid() && !touchableAttr.touchable) { in UpdateTouchEventComponent()
1789 touchEventComponent_->SetTouchable(touchableAttr.touchable); in UpdateTouchEventComponent()
2057 bool touchable = true; in CompositeSpecializedComponent() local
2062 touchable = touchableAttr.touchable; in CompositeSpecializedComponent()
2065 specializedComponent->SetTouchable(touchable); in CompositeSpecializedComponent()
/foundation/graphic/ui/test/uitest/test_button/
Dui_test_button.cpp473 …stBtnOnClickTouchableListener(UIView* uiView, bool touchable) : uiView_(uiView), touchable_(toucha… in TestBtnOnClickTouchableListener() argument
/foundation/ace/ace_engine/frameworks/core/components/test/unittest/transition/
Dtransition_element_test.cpp839 static void CheckTouchable(bool touchable, const TransitionGroup& transition) in CheckTouchable() argument
841 EXPECT_EQ(touchable, transition.transformRenderContent_.Upgrade()->GetTouchable()); in CheckTouchable()
842 EXPECT_EQ(touchable, transition.transformRenderBackground_.Upgrade()->GetTouchable()); in CheckTouchable()
/foundation/windowmanager/interfaces/kits/napi/window_runtime/window_napi/
Djs_window.cpp1241 bool touchable = true; in OnSetTouchable() local
1248 touchable = static_cast<bool>(*nativeVal); in OnSetTouchable()
1258 WMError ret = windowToken_->SetTouchable(touchable); in OnSetTouchable()