Searched refs:disableTouchEvent (Results 1 – 11 of 11) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stack/ |
H A D | stack_element.h | 62 void PushComponent(const RefPtr<Component>& newComponent, bool disableTouchEvent = true); 66 void PushPanel(const RefPtr<Component>& newComponent, bool disableTouchEvent = false); 68 bool PushDialog(const RefPtr<Component>& newComponent, bool disableTouchEvent = true); 77 void PushInstant(const RefPtr<Component>& newComponent, bool disableTouchEvent = true);
|
H A D | stack_element.cpp | 31 void StackElement::PushInstant(const RefPtr<Component>& newComponent, bool disableTouchEvent) in PushInstant() argument 35 disableTouchEvent_ = disableTouchEvent; in PushInstant() 39 void StackElement::PushComponent(const RefPtr<Component>& newComponent, bool disableTouchEvent) in PushComponent() argument 43 disableTouchEvent_ = disableTouchEvent; in PushComponent() 68 void StackElement::PushPanel(const RefPtr<Component>& newComponent, bool disableTouchEvent) in PushPanel() argument 72 disableTouchEvent_ = disableTouchEvent; in PushPanel() 94 bool StackElement::PushDialog(const RefPtr<Component>& newComponent, bool disableTouchEvent) in PushDialog() argument 106 disableTouchEvent_ = disableTouchEvent; in PushDialog()
|
/ohos5.0/foundation/arkui/ace_engine/test/mock/base/ |
H A D | mock_subwindow.h | 47 MOCK_METHOD2(ShowPopup, void(const RefPtr<Component>& newComponent, bool disableTouchEvent));
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_base_component.cpp | 115 void PickerBaseComponent::ShowDialog(const RefPtr<StackElement>& stack, bool disableTouchEvent) in ShowDialog() argument 132 if (!stack_->PushDialog(AceType::Claim(this), disableTouchEvent)) { in ShowDialog()
|
H A D | picker_base_component.h | 284 void ShowDialog(const RefPtr<StackElement>& stack, bool disableTouchEvent = true);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/subwindow/ |
H A D | subwindow.h | 63 … virtual void ShowPopup(const RefPtr<Component>& newComponent, bool disableTouchEvent = true) = 0;
|
H A D | subwindow_manager.h | 81 void ShowPopup(const RefPtr<Component>& newComponent, bool disableTouchEvent = true);
|
H A D | subwindow_manager.cpp | 436 void SubwindowManager::ShowPopup(const RefPtr<Component>& newComponent, bool disableTouchEvent) in ShowPopup() argument 443 [containerId, newComponentWeak = WeakPtr<Component>(newComponent), disableTouchEvent] { in ShowPopup() 455 subwindow->ShowPopup(newComponent, disableTouchEvent); in ShowPopup()
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/subwindow/ |
H A D | subwindow_ohos.h | 75 void ShowPopup(const RefPtr<Component>& newComponent, bool disableTouchEvent = true) override;
|
H A D | subwindow_ohos.cpp | 409 void SubwindowOhos::ShowPopup(const RefPtr<Component>& newComponent, bool disableTouchEvent) in ShowPopup() argument 419 stack->PushComponent(newComponent, disableTouchEvent); in ShowPopup()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | render_node.h | 615 void SetDisableTouchEvent(bool disableTouchEvent) in SetDisableTouchEvent() argument 617 disableTouchEvent_ = disableTouchEvent; in SetDisableTouchEvent()
|