Home
last modified time | relevance | path

Searched refs:statusProperty (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/window/window_manager/previewer/src/
H A Dwindow_impl.cpp396 … SystemBarProperty statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in UpdateSystemBarProperty() local
397 if (statusProperty.enable_ != enable) { in UpdateSystemBarProperty()
398 statusProperty.enable_ = enable; in UpdateSystemBarProperty()
399 SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, statusProperty); in UpdateSystemBarProperty()
929 auto statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in IsFullScreen() local
931 return (IsLayoutFullScreen() && !statusProperty.enable_ && !naviProperty.enable_); in IsFullScreen()
/ohos5.0/foundation/window/window_manager/interfaces/kits/cj/window_runtime/
H A Dwindow_impl.cpp1001 …auto statusProperty = nativeWindow->GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in SetBarPropertyMap() local
1003 properties[WindowType::WINDOW_TYPE_STATUS_BAR] = statusProperty; in SetBarPropertyMap()
1008statusProperty.backgroundColor_, propertyFlags[WindowType::WINDOW_TYPE_STATUS_BAR].backgroundColor… in SetBarPropertyMap()
1014 GetColorFromJs(cProperties.statusBarContentColor, statusProperty.contentColor_, in SetBarPropertyMap()
1067 …auto statusProperty = windowToken_->GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in SetWindowSystemBarEnable() local
1069 statusProperty.enable_ = false; in SetWindowSystemBarEnable()
1071 systemBarProperties[WindowType::WINDOW_TYPE_STATUS_BAR] = statusProperty; in SetWindowSystemBarEnable()
/ohos5.0/docs/zh-cn/application-dev/napi/
H A Duse-jsvm-about-property.md586 JSVM_Status statusProperty;
587statusProperty = OH_JSVM_DefineProperties(env, *argv, sizeof(descriptor) / sizeof(descriptor[0]), …
588 if (statusProperty != JSVM_OK) {
/ohos5.0/docs/en/application-dev/napi/
H A Duse-jsvm-about-property.md586 JSVM_Status statusProperty;
587statusProperty = OH_JSVM_DefineProperties(env, *argv, sizeof(descriptor) / sizeof(descriptor[0]), …
588 if (statusProperty != JSVM_OK) {
/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_impl.cpp952 … SystemBarProperty statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in UpdateSystemBarProperty() local
955 statusProperty.enable_ = false; in UpdateSystemBarProperty()
958 statusProperty.enable_ = true; in UpdateSystemBarProperty()
962 if ((GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR) == statusProperty) && in UpdateSystemBarProperty()
966 if (!(GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR) == statusProperty)) { in UpdateSystemBarProperty()
967 property_->SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, statusProperty); in UpdateSystemBarProperty()
4097 auto statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in IsFullScreen() local
4099 return (IsLayoutFullScreen() && !statusProperty.enable_ && !naviProperty.enable_); in IsFullScreen()
H A Dwindow_scene_session_impl.cpp2193 … SystemBarProperty statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in SetFullScreen() local
2194 statusProperty.enable_ = !status; in SetFullScreen()
2195 ret = SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, statusProperty); in SetFullScreen()
2206 … SystemBarProperty statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in IsFullScreen() local
2207 return (IsLayoutFullScreen() && !statusProperty.enable_); in IsFullScreen()
3613 … SystemBarProperty statusProperty = GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in UpdateWindowMode() local
3614 statusProperty.enable_ = false; in UpdateWindowMode()
3615 ret = SetSystemBarProperty(WindowType::WINDOW_TYPE_STATUS_BAR, statusProperty); in UpdateWindowMode()
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/
H A Djs_window_utils.cpp777 auto statusProperty = properties[WindowType::WINDOW_TYPE_STATUS_BAR]; in SetWindowStatusBarContentColor() local
784 jsObject, "statusBarContentColor", statusProperty.contentColor_, in SetWindowStatusBarContentColor()