/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/hyperlink/ |
H A D | hyperlink_model_ng.cpp | 35 auto draggable = pipeline->GetDraggable<HyperlinkTheme>(); in Create() local 36 SetDraggable(draggable); in Create() 69 void HyperlinkModelNG::SetDraggable(bool draggable) in SetDraggable() argument 73 if (draggable && !frameNode->IsDraggable()) { in SetDraggable() 78 frameNode->SetDraggable(draggable); in SetDraggable() 88 void HyperlinkModelNG::SetDraggable(FrameNode* frameNode, bool draggable) in SetDraggable() argument 91 if (draggable && !frameNode->IsDraggable()) { in SetDraggable() 96 frameNode->SetDraggable(draggable); in SetDraggable()
|
H A D | hyperlink_model_ng.h | 28 void SetDraggable(bool draggable) override; 31 static void SetDraggable(FrameNode* frameNode, bool draggable);
|
H A D | hyperlink_model.h | 34 virtual void SetDraggable(bool draggable) = 0;
|
/foundation/arkui/ace_engine/frameworks/core/components/image/ |
H A D | image_theme.h | 61 auto draggable = pattern->GetAttr<std::string>("draggable", "0"); in ParsePattern() local 62 theme->draggable_ = StringUtils::StringToInt(draggable); in ParsePattern()
|
/foundation/arkui/ace_engine/frameworks/core/components/hyperlink/ |
H A D | hyperlink_theme.h | 67 auto draggable = pattern->GetAttr<std::string>("draggable", "0"); in ParsePattern() local 68 theme->draggable_ = StringUtils::StringToInt(draggable); in ParsePattern()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_hyperlink.h | 33 static void JsSetDraggable(bool draggable);
|
H A D | js_hyperlink.cpp | 70 JSClass<JSHyperlink>::StaticMethod("draggable", &JSHyperlink::JsSetDraggable); in JSBind() 113 void JSHyperlink::JsSetDraggable(bool draggable) in JsSetDraggable() argument 115 HyperlinkModel::GetInstance()->SetDraggable(draggable); in JsSetDraggable()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | hyperlink_model_impl.h | 28 void SetDraggable(bool draggable) override {}
|
H A D | image_model_impl.h | 58 void SetDraggable(bool draggable) override {}
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/image/ |
H A D | image_model_ng.cpp | 80 // set draggable for framenode in Create() 84 auto draggable = pipeline->GetDraggable<ImageTheme>(); in Create() local 85 if (draggable && !frameNode->IsDraggable()) { in Create() 204 // set draggable for framenode in CreateAnimation() 207 auto draggable = pipeline->GetDraggable<ImageTheme>(); in CreateAnimation() local 208 if (draggable && !frameNode->IsDraggable()) { in CreateAnimation() 213 frameNode->SetDraggable(draggable); in CreateAnimation() 229 // set draggable for framenode in CreateFrameNode() 232 auto draggable = pipeline->GetDraggable<ImageTheme>(); in CreateFrameNode() local 233 if (draggable in CreateFrameNode() 502 SetDraggable(bool draggable) SetDraggable() argument 778 SetDraggable(FrameNode *frameNode, bool draggable) SetDraggable() argument [all...] |
H A D | image_model_ng.h | 59 void SetDraggable(bool draggable) override; 101 static void SetDraggable(FrameNode *frameNode, bool draggable);
|
H A D | image_model.h | 93 virtual void SetDraggable(bool draggable) = 0;
|
/foundation/arkui/ace_engine/frameworks/core/components/text/ |
H A D | text_theme.h | 69 auto draggable = pattern->GetAttr<std::string>("draggable", "0"); in ParsePattern() local 70 theme->draggable_ = StringUtils::StringToInt(draggable); in ParsePattern()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | hyperlink_modifier.cpp | 50 void SetHyperlinkDraggable(ArkUINodeHandle node, ArkUI_Bool draggable) in SetHyperlinkDraggable() argument 54 HyperlinkModelNG::SetDraggable(frameNode, draggable); in SetHyperlinkDraggable()
|
/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 278 testView->SetDraggable(draggable); in InnerTest() 291 bool draggable, in InnerBubbleTest() 316 testView->SetDraggable(draggable); 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 | 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. 378 * @brief Test if dispatch drag event act normal when target is untouchable but draggable. 382 * @brief Test if dispatch drag event act normal when target is untouchable but draggable. 386 * @brief Test if dispatch drag event act normal when target is untouchable but draggable. 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/components_ng/pattern/rich_editor/ |
H A D | rich_editor_theme.h | 69 auto draggable = pattern->GetAttr<std::string>("draggable", "0"); in ParsePattern() local 70 theme->draggable_ = StringUtils::StringToInt(draggable); in ParsePattern()
|
H A D | rich_editor_model_ng.cpp | 54 auto draggable = pipelineContext->GetDraggable<RichEditorTheme>(); in Create() local 55 SetDraggable(draggable); in Create() 62 void RichEditorModelNG::SetDraggable(bool draggable) in SetDraggable() argument 66 frameNode->SetDraggable(draggable); in SetDraggable()
|
/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 | 281 bool draggable, in InnerTest() 301 testView->SetDraggable(draggable); in InnerTest() 279 InnerTest(const char* title, bool touchable, bool draggable, bool dragParent, const char* btnTitle, UILabelButton* btn, TestEventInjectorView*& testView) InnerTest() argument
|
/foundation/arkui/ace_engine/advanced_ui_component/composelistitem/interfaces/ |
H A D | composelistitem.js | 303 Image.draggable(false); 322 Image.draggable(false); 357 Text.draggable(false); 371 Text.draggable(false); 393 Text.draggable(false); 858 Image.draggable(false); 867 Image.draggable(false); 877 Text.draggable(false); 920 Image.draggable(false); 1072 Text.draggable(fals [all...] |
/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 209 testView->SetDraggable(draggable); in SetUpTestview()
|
/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 182 testView->SetDraggable(draggable); in SetUpTestview()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/interfaces/ |
H A D | customtitle.js | 137 Image.draggable(false);
|
/foundation/arkui/ace_engine/advanced_ui_component/gridobjectsortcomponent/interfaces/ |
H A D | gridobjectsortcomponent.js | 1207 Image.draggable(false); 1224 Image.draggable(false); 1265 Image.draggable(false); 1372 Image.draggable(false); 1393 Image.draggable(false); 1440 Image.draggable(false); 1508 Image.draggable(false); 1532 Image.draggable(false); 1596 Image.draggable(false); 1621 Image.draggable(fals [all...] |