Home
last modified time | relevance | path

Searched refs:SystemBarProperty (Results 1 – 25 of 61) sorted by relevance

123

/ohos5.0/foundation/window/window_manager/previewer/include/
H A Dwindow_option.h140 void SetSystemBarProperty(WindowType type, const SystemBarProperty& property);
330 const std::unordered_map<WindowType, SystemBarProperty>& GetSystemBarProperty() const;
433 std::unordered_map<WindowType, SystemBarProperty> sysBarPropMap_ {
434 { WindowType::WINDOW_TYPE_STATUS_BAR, SystemBarProperty() },
435 { WindowType::WINDOW_TYPE_NAVIGATION_BAR, SystemBarProperty() },
H A Dwindow_impl.h79 virtual SystemBarProperty GetSystemBarPropertyByType(WindowType type) const override;
89 … virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) override;
90 …virtual WMError SetSpecificBarProperty(WindowType type, const SystemBarProperty& property) overrid…
91 … virtual WMError SetSystemBarProperties(const std::map<WindowType, SystemBarProperty>& properties,
93 …virtual WMError GetSystemBarProperties(std::map<WindowType, SystemBarProperty>& properties) overri…
285 void NotifySystemBarChange(WindowType type, const SystemBarProperty& property);
313 std::unordered_map<WindowType, SystemBarProperty> sysBarPropMap_ {
314 … { WindowType::WINDOW_TYPE_STATUS_BAR, SystemBarProperty(true, 0x00FFFFFF, 0xFF000000) },
315 … { WindowType::WINDOW_TYPE_NAVIGATION_BAR, SystemBarProperty(true, 0x00FFFFFF, 0xFF000000) },
316 … { WindowType::WINDOW_TYPE_NAVIGATION_INDICATOR, SystemBarProperty(true, 0x00FFFFFF, 0xFF000000) },
H A Dwm_common.h511 struct SystemBarProperty { struct
517SystemBarProperty() : enable_(true), backgroundColor_(SYSTEM_COLOR_BLACK), contentColor_(SYSTEM_CO… in SystemBarProperty() argument
519 SystemBarProperty(bool enable, uint32_t background, uint32_t content, bool enableAnimation) in SystemBarProperty() function
522 SystemBarProperty(bool enable, uint32_t background, uint32_t content) in SystemBarProperty() function
525 SystemBarProperty(bool enable, uint32_t background, uint32_t content, in SystemBarProperty() function
530 bool operator == (const SystemBarProperty& a) const
H A Dwindow.h69 … virtual WMError OnSetSpecificBarProperty(WindowType type, const SystemBarProperty& property) = 0;
147 virtual SystemBarProperty GetSystemBarPropertyByType(WindowType type) const = 0;
161 virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) = 0;
162 virtual WMError SetSpecificBarProperty(WindowType type, const SystemBarProperty& property) = 0;
163 … virtual WMError SetSystemBarProperties(const std::map<WindowType, SystemBarProperty>& properties,
165 virtual WMError GetSystemBarProperties(std::map<WindowType, SystemBarProperty>& properties) = 0;
/ohos5.0/foundation/window/window_manager/previewer/mock/
H A Dwindow_manager.h28 SystemBarProperty prop_;
30 SystemBarRegionTint() : prop_(SystemBarProperty()) {} in SystemBarRegionTint()
31 SystemBarRegionTint(WindowType type, SystemBarProperty prop, Rect region) in SystemBarRegionTint()
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_option.h133 void SetSystemBarProperty(WindowType type, const SystemBarProperty& property);
357 const std::unordered_map<WindowType, SystemBarProperty>& GetSystemBarProperty() const;
510 std::unordered_map<WindowType, SystemBarProperty> sysBarPropMap_ {
511 { WindowType::WINDOW_TYPE_STATUS_BAR, SystemBarProperty() },
512 { WindowType::WINDOW_TYPE_NAVIGATION_BAR, SystemBarProperty() },
H A Dwm_common.h689 struct SystemBarProperty { struct
695SystemBarProperty() : enable_(true), backgroundColor_(SYSTEM_COLOR_BLACK), contentColor_(SYSTEM_CO… in SystemBarProperty() argument
697 SystemBarProperty(bool enable, uint32_t background, uint32_t content) in SystemBarProperty() function
700 SystemBarProperty(bool enable, uint32_t background, uint32_t content, bool enableAnimation) in SystemBarProperty() function
703 SystemBarProperty(bool enable, uint32_t background, uint32_t content, in SystemBarProperty() argument
707 bool operator == (const SystemBarProperty& a) const
H A Dwindow_scene.h147 WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) const;
/ohos5.0/foundation/window/window_manager/test/fuzztest/wms/windowscene_fuzzer/
H A Dwindowscene_fuzzer.cpp138 SystemBarProperty statusBarProperty; in InitWindowOption2()
139 SystemBarProperty navigationBarProperty; in InitWindowOption2()
140 startPos += GetObject<SystemBarProperty>(statusBarProperty, data + startPos, size - startPos); in InitWindowOption2()
141 … startPos += GetObject<SystemBarProperty>(navigationBarProperty, data + startPos, size - startPos); in InitWindowOption2()
185 SystemBarProperty systemBarProperty; in DoSomethingInterestingWithMyAPI()
187 startPos += GetObject<SystemBarProperty>(systemBarProperty, data + startPos, size - startPos); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/window/window_manager/utils/include/
H A Dwindow_property.h67 void SetSystemBarProperty(WindowType type, const SystemBarProperty& state);
121 const std::unordered_map<WindowType, SystemBarProperty>& GetSystemBarProperty() const;
198 std::unordered_map<WindowType, SystemBarProperty> sysBarPropMap_ {
199 { WindowType::WINDOW_TYPE_STATUS_BAR, SystemBarProperty() },
200 { WindowType::WINDOW_TYPE_NAVIGATION_BAR, SystemBarProperty() },
/ohos5.0/foundation/window/window_manager/wm/include/
H A Dwindow_scene_session_impl.h65 SystemBarProperty GetSystemBarPropertyByType(WindowType type) const override;
66 WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) override;
132 WMError SetSystemBarProperties(const std::map<WindowType, SystemBarProperty>& properties,
134 WMError GetSystemBarProperties(std::map<WindowType, SystemBarProperty>& properties) override;
135 WMError SetSpecificBarProperty(WindowType type, const SystemBarProperty& property) override;
200 WMError NotifySpecificWindowSessionProperty(WindowType type, const SystemBarProperty& property);
H A Dwindow_impl.h142 virtual SystemBarProperty GetSystemBarPropertyByType(WindowType type) const override;
152 … virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) override;
316 … virtual WMError SetSystemBarProperties(const std::map<WindowType, SystemBarProperty>& properties,
318 …virtual WMError GetSystemBarProperties(std::map<WindowType, SystemBarProperty>& properties) overri…
319 …virtual WMError SetSpecificBarProperty(WindowType type, const SystemBarProperty& property) overrid…
/ohos5.0/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_option_test.cpp25 const SystemBarProperty SYS_BAR_PROP_DEFAULT;
26 const SystemBarProperty SYS_BAR_PROP_1(true, 0xE5111111, 0xE5222222);
27 const SystemBarProperty SYS_BAR_PROP_2(false, 0xE5222222, 0xE5333333);
28 const std::unordered_map<WindowType, SystemBarProperty>& SYS_BAR_PROPS_TEST = {
32 const std::unordered_map<WindowType, SystemBarProperty>& SYS_BAR_PROPS_DEFAULT = {
H A Dwindow_scene_session_impl_test.cpp1032 SystemBarProperty property = SystemBarProperty();
1057 SystemBarProperty property;
1086 SystemBarProperty property;
1106 SystemBarProperty property;
1131 SystemBarProperty property;
1160 SystemBarProperty property;
1187 SystemBarProperty property;
1230 std::map<WindowType, SystemBarProperty> properties;
1233 SystemBarProperty property;
1275 SystemBarProperty property = SystemBarProperty();
[all …]
/ohos5.0/foundation/window/window_manager/previewer/src/
H A Dwindow_impl.cpp229 SystemBarProperty WindowImpl::GetSystemBarPropertyByType(WindowType type) const in GetSystemBarPropertyByType()
234 return SystemBarProperty(false, 0x0, 0x0); in GetSystemBarPropertyByType()
370 WMError WindowImpl::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty()
375 WMError WindowImpl::SetSpecificBarProperty(WindowType type, const SystemBarProperty& property) in SetSpecificBarProperty()
396SystemBarProperty statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in UpdateSystemBarProperty()
402SystemBarProperty naviProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_NAVIGATION_BAR… in UpdateSystemBarProperty()
408SystemBarProperty naviIndicatorProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_NAVIG… in UpdateSystemBarProperty()
417 WMError WindowImpl::SetSystemBarProperties(const std::map<WindowType, SystemBarProperty>& propertie… in SetSystemBarProperties()
423 WMError WindowImpl::GetSystemBarProperties(std::map<WindowType, SystemBarProperty>& properties) in GetSystemBarProperties()
879 void WindowImpl::NotifySystemBarChange(WindowType type, const SystemBarProperty& property) in NotifySystemBarChange()
H A Dwindow_option.cpp86 void WindowOption::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty()
229 const std::unordered_map<WindowType, SystemBarProperty>& WindowOption::GetSystemBarProperty() const in GetSystemBarProperty()
/ohos5.0/foundation/window/window_manager/window_scene/common/include/
H A Dwindow_session_property.h75 void SetSystemBarProperty(WindowType type, const SystemBarProperty& property);
140 std::unordered_map<WindowType, SystemBarProperty> GetSystemBarProperty() const;
314 std::unordered_map<WindowType, SystemBarProperty> sysBarPropMap_ {
315 … { WindowType::WINDOW_TYPE_STATUS_BAR, SystemBarProperty(true, 0x00FFFFFF, 0xFF000000) },
316 … { WindowType::WINDOW_TYPE_NAVIGATION_BAR, SystemBarProperty(true, 0x00FFFFFF, 0xFF000000) },
317 … { WindowType::WINDOW_TYPE_NAVIGATION_INDICATOR, SystemBarProperty(true, 0x00FFFFFF, 0xFF000000) },
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dsystem_bar_style_ohos.cpp25 …std::map<WindowType, SystemBarProperty>& properties, std::map<WindowType, SystemBarPropertyFlag>& …
30 const std::map<OHOS::Rosen::WindowType, OHOS::Rosen::SystemBarProperty>& properties) in GetStatusBarContentColor()
H A Dsystem_bar_style_ohos.h39 std::map<Rosen::WindowType, Rosen::SystemBarProperty> properties_;
/ohos5.0/foundation/window/window_manager/test/systemtest/wms/
H A Dwindow_immersive_test.cpp30 const SystemBarProperty SYS_BAR_PROP_DEFAULT;
31 const SystemBarProperty SYS_BAR_PROP_1(true, 0xE5111111, 0xE5222222);
32 const SystemBarProperty SYS_BAR_PROP_2(false, 0xE5222222, 0xE5333333);
33 const SystemBarProperty SYS_BAR_PROP_3(false, 0xE5333333, 0xE5444444);
34 const SystemBarProperty SYS_BAR_PROP_4(true, 0xE5444444, 0x66555555);
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/
H A Djs_window_utils.h292 std::map<WindowType, SystemBarProperty>& properties,
295 std::map<WindowType, SystemBarProperty>& properties,
298 std::map<WindowType, SystemBarProperty>& properties,
301 std::map<WindowType, SystemBarProperty>& systemBarProperties,
334 std::map<WindowType, SystemBarProperty>& properties,
/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_option.cpp84 void WindowOption::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty()
177 const std::unordered_map<WindowType, SystemBarProperty>& WindowOption::GetSystemBarProperty() const in GetSystemBarProperty()
/ohos5.0/foundation/window/window_manager/wmserver/include/
H A Dwindow_node.h68 void SetSystemBarProperty(WindowType type, const SystemBarProperty& property);
121 const std::unordered_map<WindowType, SystemBarProperty>& GetSystemBarProperty() const;
/ohos5.0/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_window.h33 SystemBarProperty g_SystemBarProperty;
58 …virtual SystemBarProperty GetSystemBarPropertyByType(WindowType type) const {return g_SystemBarPro… in GetSystemBarPropertyByType()
69 …virtual WMError SetSystemBarProperty(WindowType type, const SystemBarProperty& property) {return W… in SetSystemBarProperty()
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_node.cpp71 void WindowNode::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty()
349 const std::unordered_map<WindowType, SystemBarProperty>& WindowNode::GetSystemBarProperty() const in GetSystemBarProperty()

123