Home
last modified time | relevance | path

Searched refs:winType (Results 1 - 16 of 16) sorted by relevance

/foundation/window/window_manager/utils/include/
H A Dwindow_visibility_info.h66 * @param winType Type of window.
69 WindowType winType) : windowId_(winId), pid_(pid), uid_(uid), visibilityState_(visibilityState), in WindowVisibilityInfo()
70 windowType_(winType) {}; in WindowVisibilityInfo()
73 WindowType winType, WindowStatus windowStatus, const Rect& rect, const std::string& bundleName, in WindowVisibilityInfo()
75 windowType_(winType), windowStatus_(windowStatus), rect_(rect), bundleName_(bundleName), in WindowVisibilityInfo()
68 WindowVisibilityInfo(uint32_t winId, int32_t pid, int32_t uid, WindowVisibilityState visibilityState, WindowType winType) WindowVisibilityInfo() argument
72 WindowVisibilityInfo(uint32_t winId, int32_t pid, int32_t uid, WindowVisibilityState visibilityState, WindowType winType, WindowStatus windowStatus, const Rect& rect, const std::string& bundleName, const std::string& abilityName) WindowVisibilityInfo() argument
H A Dwindow_drawing_content_info.h51 * @param winType Type of window.
54 WindowType winType) : windowId_(winId), pid_(pid), uid_(uid), in WindowDrawingContentInfo()
55 drawingContentState_(drawingContentState), windowType_(winType) {}; in WindowDrawingContentInfo()
53 WindowDrawingContentInfo(uint32_t winId, int32_t pid, int32_t uid, bool drawingContentState, WindowType winType) WindowDrawingContentInfo() argument
/foundation/barrierfree/accessibility/services/aams/test/mock/src/
H A Dmock_accessibility_window_manager.cpp78 AccessibilityWindowType winType = TYPE_WINDOW_INVALID; in ConvertWindowType() local
81 winType = TYPE_APPLICATION; in ConvertWindowType()
83 winType = TYPE_SYSTEM; in ConvertWindowType()
87 return winType; in ConvertWindowType()
/foundation/barrierfree/accessibility/services/test/moduletest/mock/src/
H A Dmock_mt_accessibility_window_manager.cpp78 AccessibilityWindowType winType = TYPE_WINDOW_INVALID; in ConvertWindowType() local
81 winType = TYPE_APPLICATION; in ConvertWindowType()
83 winType = TYPE_SYSTEM; in ConvertWindowType()
87 return winType; in ConvertWindowType()
/foundation/ability/ability_runtime/frameworks/native/ability/native/ui_service_extension_ability/
H A Dui_service_extension.cpp104 Rosen::WindowType winType; in GetWindowOption() local
106 extensionWindowConfig->systemWindowOptions.windowType, winType)) { in GetWindowOption()
107 option->SetWindowType(winType); in GetWindowOption()
/foundation/window/window_manager/interfaces/kits/cj/window_runtime/
H A Dwindow_manager_impl.cpp86 if (window.winType >= static_cast<uint32_t>(ApiWindowType::TYPE_BASE) && in CreateWindow()
87 window.winType < static_cast<uint32_t>(ApiWindowType::TYPE_END)) { in CreateWindow()
88 option.SetWindowType(CJ_TO_NATIVE_WINDOW_TYPE_MAP.at(static_cast<ApiWindowType>(window.winType))); in CreateWindow()
90 option.SetWindowType(static_cast<WindowType>(window.winType)); in CreateWindow()
H A Dwindow_manager_impl.h24 uint32_t winType; member
H A Dwindow_impl.cpp122 auto winType = windowToken_->GetType(); in HideWithAnimation() local
123 if (!WindowHelper::IsSystemWindow(winType)) { in HideWithAnimation()
124 TLOGE(WmsLogTag::WMS_DIALOG, "window Type %{public}u is not supported", static_cast<uint32_t>(winType)); in HideWithAnimation()
162 auto winType = windowToken_->GetType(); in ShowWithAnimation() local
163 if (!WindowHelper::IsSystemWindow(winType)) { in ShowWithAnimation()
164 TLOGE(WmsLogTag::WMS_DIALOG, "window Type %{public}u is not supported", static_cast<uint32_t>(winType)); in ShowWithAnimation()
H A Dwindow_ffi.cpp36 window.winType = windowType; in FfiOHOSCreateWindow()
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_manager_napi/
H A Djs_window_manager.cpp199 static bool GetWindowTypeAndParentId(napi_env env, uint32_t& parentId, WindowType& winType, in GetWindowTypeAndParentId() argument
211 winType = JS_TO_NATIVE_WINDOW_TYPE_MAP.at(static_cast<ApiWindowType>(resultValue)); in GetWindowTypeAndParentId()
220 if (ability == nullptr || !WindowHelper::IsSubWindow(winType)) { in GetWindowTypeAndParentId()
221 WLOGE("FA mode GetAPI7Ability failed or type %{public}u is not subWinodw", winType); in GetWindowTypeAndParentId()
231 if (!WindowHelper::IsSystemWindow(winType)) { in GetWindowTypeAndParentId()
232 WLOGFE("Only SystemWindow support create in stage mode, type is %{public}u", winType); in GetWindowTypeAndParentId()
278 static void CreateSystemWindowTask(void* contextPtr, std::string windowName, WindowType winType, in CreateSystemWindowTask() argument
288 if (winType == WindowType::WINDOW_TYPE_FLOAT || winType == WindowType::WINDOW_TYPE_FLOAT_CAMERA) { in CreateSystemWindowTask()
304 windowOption->SetWindowType(winType); in CreateSystemWindowTask()
345 CreateSubWindowTask(uint32_t parentWinId, std::string windowName, WindowType winType, napi_env env, NapiAsyncTask& task, bool newErrorCode = false) CreateSubWindowTask() argument
421 WindowType winType = WindowType::SYSTEM_WINDOW_BASE; OnCreate() local
459 uint32_t winType; ParseRequiredConfigOption() local
[all...]
/foundation/barrierfree/accessibility/services/aams/src/
H A Daccessibility_window_manager.cpp203 AccessibilityWindowType winType = TYPE_WINDOW_INVALID; in ConvertWindowType() local
206 winType = TYPE_APPLICATION; in ConvertWindowType()
208 winType = TYPE_SYSTEM; in ConvertWindowType()
212 return winType; in ConvertWindowType()
/foundation/window/window_manager/wm/src/
H A Dwindow_scene_session_impl.cpp1959 WindowType winType = property_->GetWindowType(); in SetTitleAndDockHoverShown() local
1960 if (!WindowHelper::IsMainWindow(winType)) { in SetTitleAndDockHoverShown()
1978 WindowType winType = property_->GetWindowType(); in IsLayoutFullScreen() local
1979 if (WindowHelper::IsMainWindow(winType)) { in IsLayoutFullScreen()
1982 if (WindowHelper::IsSubWindow(winType)) { in IsLayoutFullScreen()
3268 WindowType winType = property_->GetWindowType(); in AdjustWindowAnimationFlag() local
3269 bool isAppWindow = WindowHelper::IsAppWindow(winType); in AdjustWindowAnimationFlag()
H A Dwindow_session_impl.cpp1288 WindowType winType = GetType(); in SetUIContentInner() local
1289 bool isSubWindow = WindowHelper::IsSubWindow(winType); in SetUIContentInner()
1290 bool isDialogWindow = WindowHelper::IsDialogWindow(winType); in SetUIContentInner()
1300 if (WindowHelper::IsMainWindow(winType) && GetAppForceLandscapeConfig(config) == WMError::WM_OK && in SetUIContentInner()
H A Dwindow_impl.cpp1626 WindowType winType = property_->GetWindowType(); in AdjustWindowAnimationFlag() local
1627 bool isAppWindow = WindowHelper::IsAppWindow(winType); in AdjustWindowAnimationFlag()
1634 } else if (winType == WindowType::WINDOW_TYPE_INPUT_METHOD_FLOAT) { in AdjustWindowAnimationFlag()
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/
H A Djs_window.cpp1115 auto winType = windowToken_->GetType(); in OnShowWithAnimation() local
1116 if (!WindowHelper::IsSystemWindow(winType)) { in OnShowWithAnimation()
1118 "Window Type %{public}u is not supported", static_cast<uint32_t>(winType)); in OnShowWithAnimation()
1302 auto winType = windowToken_->GetType(); in OnHideWithAnimation() local
1303 if (!WindowHelper::IsSystemWindow(winType)) { in OnHideWithAnimation()
1305 "window Type %{public}u is not supported", static_cast<uint32_t>(winType)); in OnHideWithAnimation()
1797 WindowType winType = WindowType::SYSTEM_WINDOW_BASE; in OnSetWindowType() local
1805 winType = static_cast<WindowType>(resultValue); // adapt to the old version in OnSetWindowType()
1807 winType = JS_TO_NATIVE_WINDOW_TYPE_MAP.at(static_cast<ApiWindowType>(resultValue)); in OnSetWindowType()
1815 [weakToken, winType, errCod in OnSetWindowType()
[all...]
/foundation/window/window_manager/window_scene/session/host/src/
H A Dscene_session.cpp1583 WindowType winType = GetWindowType(); in CheckGetAvoidAreaAvailable() local
1584 if (WindowHelper::IsMainWindow(winType)) { in CheckGetAvoidAreaAvailable()
1593 if (WindowHelper::IsSubWindow(winType)) { in CheckGetAvoidAreaAvailable()
1601 GetPersistentId(), GetWindowName().c_str(), static_cast<uint32_t>(winType), in CheckGetAvoidAreaAvailable()

Completed in 43 milliseconds