mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-23 13:35:31 -04:00
89d7e0d33b
Signed-off-by: xingyanan <xingyanan2@huawei.com> Change-Id: Ie9cfd7a22c35c1efecb88b136e70de6816d89527 Signed-off-by: xingyanan <xingyanan2@huawei.com>
49 lines
1.8 KiB
C++
49 lines
1.8 KiB
C++
/*
|
|
* 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 <refbase.h>
|
|
#include "pixel_map.h"
|
|
#include "surface_draw.h"
|
|
#include "wm_common.h"
|
|
#include "window_node.h"
|
|
#include "window_transition_info.h"
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class StartingWindow : public RefBase {
|
|
public:
|
|
StartingWindow() = delete;
|
|
~StartingWindow() = default;
|
|
|
|
static sptr<WindowNode> CreateWindowNode(sptr<WindowTransitionInfo> info, uint32_t winId);
|
|
static void HandleClientWindowCreate(sptr<WindowNode>& node, sptr<IWindow>& window,
|
|
uint32_t& windowId, const std::shared_ptr<RSSurfaceNode>& surfaceNode, sptr<WindowProperty>& property,
|
|
int32_t pid, int32_t uid);
|
|
static void DrawStartingWindow(sptr<WindowNode>& node, sptr<Media::PixelMap> pixelMap, uint32_t bkgColor,
|
|
bool isColdStart);
|
|
static void UpdateRSTree(sptr<WindowNode>& node);
|
|
static void ReleaseStartWinSurfaceNode(sptr<WindowNode>& node);
|
|
private:
|
|
static SurfaceDraw surfaceDraw_;
|
|
static WMError CreateLeashAndStartingSurfaceNode(sptr<WindowNode>& node);
|
|
static std::recursive_mutex mutex_;
|
|
};
|
|
} // Rosen
|
|
} // OHOS
|
|
#endif // OHOS_ROSEN_STARTING_WINDOW_H
|