Home
last modified time | relevance | path

Searched refs:SetSystemBarProperty (Results 1 – 18 of 18) sorted by relevance

/foundation/windowmanager/wm/test/unittest/
Dwindow_option_test.cpp261 option->SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, SYS_BAR_PROP_1);
262 option->SetSystemBarProperty(WindowType::WINDOW_TYPE_NAVIGATION_BAR, SYS_BAR_PROP_2);
274 option->SetSystemBarProperty(WindowType::WINDOW_TYPE_APP_MAIN_WINDOW, SYS_BAR_PROP_1);
275 option->SetSystemBarProperty(WindowType::WINDOW_TYPE_MEDIA, SYS_BAR_PROP_2);
Dwindow_impl_test.cpp444 ASSERT_EQ(WMError::WM_OK, window_->SetSystemBarProperty(type, prop));
460 ASSERT_EQ(WMError::WM_ERROR_SAMGR, window_->SetSystemBarProperty(type, SYS_BAR_PROP));
477 ASSERT_EQ(WMError::WM_ERROR_INVALID_WINDOW, window->SetSystemBarProperty(type, prop));
493 ASSERT_EQ(WMError::WM_OK, window_->SetSystemBarProperty(type, SYS_BAR_PROP));
512 …ASSERT_EQ(WMError::WM_OK, window_->SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, SYS_BA…
531 …ASSERT_EQ(WMError::WM_OK, window_->SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, SYS_BA…
/foundation/windowmanager/wm/src/
Dwindow_scene.cpp135 WMError WindowScene::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) const in SetSystemBarProperty() function in OHOS::Rosen::WindowScene
140 return mainWindow_->SetSystemBarProperty(type, property); in SetSystemBarProperty()
Dwindow_option.cpp98 void WindowOption::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() function in OHOS::Rosen::WindowOption
Dwindow_impl.cpp71 property_->SetSystemBarProperty(it.first, it.second); in WindowImpl()
481 WMError WindowImpl::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() function in OHOS::Rosen::WindowImpl
493 property_->SetSystemBarProperty(type, property); in SetSystemBarProperty()
555 ret = SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, statusProperty); in SetFullScreen()
561 ret = SetSystemBarProperty(WindowType::WINDOW_TYPE_NAVIGATION_BAR, naviProperty); in SetFullScreen()
/foundation/windowmanager/wmserver/src/
Dwindow_node.cpp51 void WindowNode::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() function in OHOS::Rosen::WindowNode
53 property_->SetSystemBarProperty(type, property); in SetSystemBarProperty()
Dwindow_controller.cpp442 WMError WindowController::SetSystemBarProperty(uint32_t windowId, WindowType type, const SystemBarP… in SetSystemBarProperty() function in OHOS::Rosen::WindowController
449 node->SetSystemBarProperty(type, property); in SetSystemBarProperty()
608 SetSystemBarProperty(windowId, iter.first, iter.second); in UpdateProperty()
Dwindow_node_container.cpp656 node->SetSystemBarProperty(it.first, it.second); in NotifySystemBarDismiss()
/foundation/windowmanager/interfaces/innerkits/wm/
Dwindow_scene.h52 WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) const;
Dwindow_option.h45 void SetSystemBarProperty(WindowType type, const SystemBarProperty& property);
Dwindow.h139 virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) = 0;
/foundation/windowmanager/wmserver/include/
Dwindow_node.h49 void SetSystemBarProperty(WindowType type, const SystemBarProperty& property);
Dwindow_controller.h62 …WMError SetSystemBarProperty(uint32_t windowId, WindowType type, const SystemBarProperty& property…
/foundation/windowmanager/utils/include/
Dwindow_property.h60 void SetSystemBarProperty(WindowType type, const SystemBarProperty& state);
/foundation/windowmanager/utils/src/
Dwindow_property.cpp126 void WindowProperty::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() function in OHOS::Rosen::WindowProperty
320 property->SetSystemBarProperty(type, prop); in MapUnmarshalling()
/foundation/windowmanager/wm/include/
Dwindow_impl.h109 … virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) override;
/foundation/windowmanager/interfaces/kits/napi/window_runtime/window_napi/
Djs_window.cpp817 WMError ret = windowToken_->SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, in OnSetSystemBarEnable()
819 ret = windowToken_->SetSystemBarProperty(WindowType::WINDOW_TYPE_NAVIGATION_BAR, in OnSetSystemBarEnable()
869 WMError ret = windowToken_->SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, in OnSetSystemBarProperties()
871 ret = windowToken_->SetSystemBarProperty(WindowType::WINDOW_TYPE_NAVIGATION_BAR, in OnSetSystemBarProperties()
/foundation/windowmanager/wm/test/systemtest/
Dwindow_immersive_test.cpp98 window->SetSystemBarProperty(tint.type_, tint.prop_); in SetWindowSystemProps()