/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef OHOS_ROSEN_STARTING_WINDOW_H #define OHOS_ROSEN_STARTING_WINDOW_H #include #include "pixel_map.h" #include "animation_config.h" #include "surface_draw.h" #include "wm_common.h" #include "window_node.h" #include "window_root.h" #include "window_transition_info.h" namespace OHOS { namespace Rosen { class StartingWindow : public RefBase { public: StartingWindow() = delete; ~StartingWindow() = default; static sptr CreateWindowNode(const sptr& info, uint32_t winId); static void HandleClientWindowCreate(sptr& node, sptr& window, uint32_t& windowId, const std::shared_ptr& surfaceNode, sptr& property, int32_t pid, int32_t uid); static WMError DrawStartingWindow(sptr& node, std::shared_ptr pixelMap, uint32_t bkgColor, bool isColdStart); static void AddNodeOnRSTree(sptr& node, bool isMultiDisplay); static void ReleaseStartWinSurfaceNode(sptr& node); static void SetDefaultWindowMode(WindowMode defaultMode); static void SetAnimationConfig(AnimationConfig config); static bool transAnimateEnable_; static std::string uiType_; private: static WMError CreateLeashAndStartingSurfaceNode(sptr& node); static WMError SetStartingWindowAnimation(wptr weak); static void ChangePropertyByApiVersion(const sptr& info, const Orientation orientation, sptr& property); static std::recursive_mutex mutex_; static WindowMode defaultMode_; static AnimationConfig animationConfig_; static bool IsWindowFollowParent(WindowType type); static sptr InitializeWindowProperty(const sptr& info, uint32_t winId); static void UpdateRSTree(sptr& node, bool isMultiDisplay); }; } // Rosen } // OHOS #endif // OHOS_ROSEN_STARTING_WINDOW_H