/foundation/arkui/ace_engine/frameworks/core/components/dialog_modal/ |
H A D | dialog_modal_element.h | 37 void UpdateSystemBarHeight(double statusBar, double navigationBar);
|
H A D | render_dialog_modal.h | 36 void UpdateSystemBarHeight(double statusBar, double navigationBar);
|
H A D | render_dialog_modal.cpp | 86 void RenderDialogModal::UpdateSystemBarHeight(double statusBar, double navigationBar) in UpdateSystemBarHeight() argument 88 statusBarHeight_ = statusBar; in UpdateSystemBarHeight()
|
H A D | dialog_modal_element.cpp | 111 void DialogModalElement::UpdateSystemBarHeight(double statusBar, double navigationBar) in UpdateSystemBarHeight() argument 117 renderNode->UpdateSystemBarHeight(statusBar, navigationBar); in UpdateSystemBarHeight()
|
/foundation/arkui/ace_engine/frameworks/core/components/semi_modal/ |
H A D | semi_modal_element.h | 37 void UpdateSystemBarHeight(double statusBar, double navigationBar);
|
H A D | semi_modal_element.cpp | 70 void SemiModalElement::UpdateSystemBarHeight(double statusBar, double navigationBar) in UpdateSystemBarHeight() argument 78 UpdateStatusBarHeight(column, statusBar); in UpdateSystemBarHeight()
|
/foundation/arkui/ace_engine/adapter/preview/entrance/ |
H A D | ace_view_preview.h | 131 void NotifySystemBarHeightChanged(double statusBar, double navigationBar) const in NotifySystemBarHeightChanged() argument 134 systemBarHeightChangeCallback_(statusBar, navigationBar); in NotifySystemBarHeightChanged()
|
H A D | ace_container.cpp | 438 auto&& systemBarHeightChangeCallback = [weak, id = instanceId_](double statusBar, double navigationBar) { in InitializeCallback() 444 ACE_SCOPED_TRACE("SystemBarHeightChangeCallback(%lf, %lf)", statusBar, navigationBar); in InitializeCallback() 446 [context, statusBar, navigationBar]() { context->OnSystemBarHeightChanged(statusBar, navigationBar); }, in InitializeCallback()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ace_view_ohos.h | 215 void NotifySystemBarHeightChanged(double statusBar, double navigationBar) const in NotifySystemBarHeightChanged() argument 218 systemBarHeightChangeCallback_(statusBar, navigationBar); in NotifySystemBarHeightChanged()
|
H A D | dialog_container.cpp | 168 double statusBar, double navigationBar) { in InitializeSystemBarHeightChangeCallback() 170 ACE_SCOPED_TRACE("SystemBarHeightChangeCallback(%lf, %lf)", statusBar, navigationBar); in InitializeSystemBarHeightChangeCallback() 172 [context, statusBar, navigationBar]() { context->OnSystemBarHeightChanged(statusBar, navigationBar); }, in InitializeSystemBarHeightChangeCallback()
|
H A D | ace_container.cpp | 1015 double statusBar, double navigationBar) { in InitializeCallback() 1017 ACE_SCOPED_TRACE("SystemBarHeightChangeCallback(%lf, %lf)", statusBar, navigationBar); in InitializeCallback() 1019 [context, statusBar, navigationBar]() { context->OnSystemBarHeightChanged(statusBar, navigationBar); }, in InitializeCallback()
|
/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | ace_view.h | 80 using SystemBarHeightChangeCallback = std::function<void(double statusBar, double navigationBar)>;
|
/foundation/window/window_manager/wmserver/test/unittest/ |
H A D | window_node_container_test.cpp | 714 sptr<WindowNode> statusBar = new WindowNode(property, nullptr, nullptr); in HWTEST_F() local 715 statusBar->SetWindowProperty(property); in HWTEST_F() 717 ASSERT_EQ(WMError::WM_OK, container->AddWindowNode(statusBar, parentNode)); in HWTEST_F() 736 sptr<WindowNode> statusBar = new WindowNode(property, nullptr, nullptr); in HWTEST_F() local 737 statusBar->SetWindowProperty(property); in HWTEST_F() 739 ASSERT_EQ(WMError::WM_OK, container->AddWindowNode(statusBar, parentNode)); in HWTEST_F()
|
H A D | remote_animation_test.cpp | 623 sptr<WindowNode> statusBar = new WindowNode(CreateWindowProperty(0)); in HWTEST_F() local 624 ASSERT_NE(nullptr, statusBar); in HWTEST_F() 625 statusBar->GetWindowProperty()->SetWindowType(WindowType::WINDOW_TYPE_STATUS_BAR); in HWTEST_F() 626 statusBar->SetWindowRect({0, 0, 100, 100}); in HWTEST_F() 627 windowRoot_->windowNodeMap_[0] = statusBar; in HWTEST_F()
|
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | scene_session.cpp | 1465 for (auto& statusBar : statusBarVector) { in GetSystemAvoidArea() 1466 WSRect statusBarRect = statusBar->GetSessionRect(); in GetSystemAvoidArea() 2480 for (auto& statusBar : statusBarVector) { in UpdateWinRectForSystemBar() 2481 if (!(statusBar->isVisible_)) { in UpdateWinRectForSystemBar() 2484 WSRect statusBarRect = statusBar->GetSessionRect(); in UpdateWinRectForSystemBar() 4781 for (auto& statusBar : statusBarVector) { in GetStatusBarHeight() 4782 if (statusBar != nullptr && statusBar->GetSessionRect().height_ > height) { in GetStatusBarHeight() 4783 height = statusBar->GetSessionRect().height_; in GetStatusBarHeight()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/ |
H A D | pipeline_context.h | 281 void OnSystemBarHeightChanged(double statusBar, double navigationBar) override;
|
H A D | pipeline_context.cpp | 2172 void PipelineContext::OnSystemBarHeightChanged(double statusBar, double navigationBar) in OnSystemBarHeightChanged() argument 2175 ACE_SCOPED_TRACE("OnSystemBarHeightChanged(%lf, %lf)", statusBar, navigationBar); in OnSystemBarHeightChanged() 2179 statusBarHeight = statusBar / viewScale_ / dipScale_; in OnSystemBarHeightChanged()
|
H A D | pipeline_base.h | 310 virtual void OnSystemBarHeightChanged(double statusBar, double navigationBar) = 0;
|
/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/ |
H A D | pipeline_context.h | 289 void OnSystemBarHeightChanged(double statusBar, double navigationBar) override {}
|