Lines Matching defs:mode

428 WMError WindowImpl::SetWindowMode(WindowMode mode)
430 WLOGI("Window %{public}u mode %{public}u", property_->GetWindowId(), static_cast<uint32_t>(mode));
434 if (!WindowHelper::IsWindowModeSupported(GetModeSupportInfo(), mode)) {
435 WLOGE("window %{public}u do not support mode: %{public}u",
436 property_->GetWindowId(), static_cast<uint32_t>(mode));
440 UpdateMode(mode);
443 property_->SetWindowMode(mode);
450 // set client window mode if success.
451 UpdateMode(mode);
453 if (property_->GetWindowMode() != mode) {
454 WLOGFE("set window mode filed! id: %{public}u.", property_->GetWindowId());
956 WLOGFE("invalid window or fullscreen mode is not be supported, winId:%{public}u", property_->GetWindowId());
1003 WLOGFE("invalid window or fullscreen mode is not be supported, winId:%{public}u", property_->GetWindowId());
1024 WLOGFE("invalid window or maximize mode is not be supported, winId:%{public}u", property_->GetWindowId());
1149 WLOGFD("mode config param is 0, all modes is supported");
1189 // not support fullscreen in split and floating mode, or not support float in fullscreen mode
1230 // if window mode is undefined, set it from configuration
1232 WLOGFD("get default window mode:%{public}u", windowSystemConfig_.defaultWindowMode_);
1585 // show failed when current mode is not support or window only supports split mode and can show when locked
1589 WLOGFE("current mode is not supported, windowId: %{public}u, modeSupportInfo: %{public}u, winMode: %{public}u",
1664 WLOGFD("Window Show [name:%{public}s, id:%{public}u, mode: %{public}u], reason:%{public}u, "
1893 WLOGFE("FA mode could not set bg color: %{public}u", GetWindowId());
1902 WLOGD("uiContent is nullptr, windowId: %{public}u, use FA mode", GetWindowId());
1906 WLOGFE("FA mode does not get bg color: %{public}u", GetWindowId());
2161 WMError WindowImpl::SetGlobalMaximizeMode(MaximizeMode mode)
2164 static_cast<uint32_t>(mode));
2169 SingletonContainer::Get<WindowAdapter>().SetMaximizeMode(mode);
2188 TLOGE(WmsLogTag::WMS_IMMS, "invalid window or fullscreen mode is not be supported, winId:%{public}u",
2198 const WindowMode mode = GetMode();
2199 if (mode == WindowMode::WINDOW_MODE_FULLSCREEN) {
2779 void WindowImpl::UpdateMode(WindowMode mode)
2781 WLOGI("UpdateMode %{public}u", mode);
2782 property_->SetWindowMode(mode);
3458 WLOGFD("Notify uiContent window mode change end");
3627 void WindowImpl::RestoreSplitWindowMode(uint32_t mode)
3632 auto windowMode = static_cast<WindowMode>(mode);
3918 void WindowImpl::NotifyModeChange(WindowMode mode, bool hasDeco)
3923 listener->OnModeChange(mode, hasDeco);
4046 auto mode = GetMode();
4047 return (mode == WindowMode::WINDOW_MODE_FULLSCREEN && isIgnoreSafeArea_);