/* * Copyright (c) 2022-2023 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_WINDOW_LAYOUT_POLICY_TILE_H #define OHOS_ROSEN_WINDOW_LAYOUT_POLICY_TILE_H #include #include #include #include #include "window_layout_policy.h" #include "window_node.h" #include "wm_common.h" namespace OHOS { namespace Rosen { class WindowLayoutPolicyTile : public WindowLayoutPolicy { public: WindowLayoutPolicyTile() = delete; WindowLayoutPolicyTile(DisplayGroupWindowTree& displayGroupWindowTree); ~WindowLayoutPolicyTile() = default; void Launch() override; bool IsTileRectSatisfiedWithSizeLimits(const sptr& node) override; void PerformWindowLayout(const sptr& node, WindowUpdateType type) override; private: /* * methods for calculate maxTileNum and preset tileRects */ void InitTileRects(DisplayId displayId); uint32_t GetMaxTileWinNum(DisplayId displayId) const; /* * methods for update tile queue */ void InitTileQueue(DisplayId displayId); void LayoutTileQueue(DisplayId displayId); void RefreshTileQueue(DisplayId displayId, std::vector>& needMinimizeNodes, std::vector>& needRecoverNodes); void PushBackNodeInTileQueue(const sptr& node, DisplayId displayId); void RemoveNodeFromTileQueue(const sptr& node); /* * methods for calculate tile window rect */ void ApplyPresetRectForTileWindows(DisplayId displayId); void UpdateLayoutRect(const sptr& node) override; bool IsWindowAlreadyInTileQueue(const sptr& node); bool IsValidTileQueueAndPresetRects(DisplayId displayId); std::map maxTileWinNumMap_; std::map>> presetRectsMap_; std::map>> foregroundNodesMap_; }; } } #endif // OHOS_ROSEN_WINDOW_LAYOUT_POLICY_TILE_H