Files
windowmanager/wmserver/include/display_group_controller.h
T
l00574490 699d90035c move or drag on muti display
Signed-off-by: l00574490 <liuqi149@huawei.com>
Change-Id: Ia8058f2289623c03036c387104e20bacf2e0eb11
2022-05-16 17:10:13 +08:00

89 lines
4.1 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_DISPLAY_GROUP_CONTROLLER_H
#define OHOS_ROSEN_DISPLAY_GROUP_CONTROLLER_H
#include <refbase.h>
#include "avoid_area_controller.h"
#include "display_info.h"
#include "display_manager_service_inner.h"
#include "window_layout_policy.h"
#include "window_manager.h"
#include "window_node.h"
#include "window_pair.h"
#include "wm_common.h"
namespace OHOS {
namespace Rosen {
using SysBarNodeMap = std::unordered_map<WindowType, sptr<WindowNode>>;
using SysBarTintMap = std::unordered_map<WindowType, SystemBarRegionTint>;
class WindowNodeContainer;
class DisplayGroupController : public RefBase {
public:
DisplayGroupController(const sptr<WindowNodeContainer>& windowNodeContainer,
std::map<DisplayId, Rect>& displayRectMap, std::map<DisplayId, sptr<DisplayInfo>>& displayInfosMap)
: windowNodeContainer_(windowNodeContainer), displayRectMap_(displayRectMap),
displayInfosMap_(displayInfosMap) {}
~DisplayGroupController() = default;
void InitNewDisplay(DisplayId displayId);
void UpdateWindowNodeMaps();
void PreProcessWindowNode(const sptr<WindowNode>& node, WindowUpdateType type);
void ProcessDisplayCreate(DisplayId displayId,
const std::map<DisplayId, sptr<DisplayInfo>>& displayInfoMap);
void ProcessDisplayDestroy(DisplayId displayId,
const std::map<DisplayId, sptr<DisplayInfo>>& displayInfoMap,
std::vector<uint32_t>& windowIds);
void ProcessDisplayChange(DisplayId displayId,
const std::map<DisplayId, sptr<DisplayInfo>>& displayInfoMap,
DisplayStateChangeType type);
sptr<WindowPair> GetWindowPairByDisplayId(DisplayId displayId);
WindowNodeMaps windowNodeMaps_;
std::map<DisplayId, SysBarNodeMap> sysBarNodeMaps_;
std::map<DisplayId, SysBarTintMap> sysBarTintMaps_;
private:
std::vector<sptr<WindowNode>>* GetWindowNodesByDisplayIdAndRootType(DisplayId displayId, WindowRootNodeType type);
void AddWindowNodeOnWindowTree(sptr<WindowNode>& node, WindowRootNodeType rootType);
void ProcessNotCrossNodesOnDestroiedDisplay(DisplayId displayId, std::vector<uint32_t>& windowIds);
void ProcessDisplaySizeChangeOrRotation(DisplayId displayId,
const std::map<DisplayId, sptr<DisplayInfo>>& displayInfoMap, DisplayStateChangeType type);
void ProcessCrossNodes(DisplayStateChangeType type);
void MoveCrossNodeToTargetDisplay(const sptr<WindowNode>& node, DisplayId targetDisplayId);
void MoveNotCrossNodeToDefaultDisplay(const sptr<WindowNode>& node, DisplayId displayId);
void UpdateWindowShowingDisplays(const sptr<WindowNode>& node, const Rect& requestRect);
void UpdateWindowDisplayIdIfNeeded(const sptr<WindowNode>& node,
const std::vector<DisplayId>& curShowingDisplays);
void UpdateWindowDisplayId(const sptr<WindowNode>& node, DisplayId newDisplayId);
void ClearMapOfDestroiedDisplay(DisplayId displayId);
void ChangeToRectInDisplayGroup(const sptr<WindowNode>& node);
void FindMaxAndMinPosXDisplay();
sptr<WindowNodeContainer> windowNodeContainer_;
std::map<DisplayId, Rect>& displayRectMap_;
std::map<DisplayId, sptr<DisplayInfo>>& displayInfosMap_;
std::map<DisplayId, sptr<WindowPair>> windowPairMap_;
DisplayId defaultDisplayId_ { 0 };
DisplayId maxPosXDisplay_ { 0 };
DisplayId minPosXDisplay_ { 0 };
};
} // namespace Rosen
} // namespace OHOS
#endif // OHOS_ROSEN_DISPLAY_GROUP_CONTROLLER_H