1/* 2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16#ifndef OHOS_ROSEN_WINDOW_MANAGER_AGENT_CONTROLLER_H 17#define OHOS_ROSEN_WINDOW_MANAGER_AGENT_CONTROLLER_H 18 19#include <mutex> 20#include "client_agent_container.h" 21#include "wm_single_instance.h" 22#include "zidl/window_manager_agent_interface.h" 23 24namespace OHOS { 25namespace Rosen { 26class WindowManagerAgentController { 27WM_DECLARE_SINGLE_INSTANCE_BASE(WindowManagerAgentController) 28public: 29 WMError RegisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 30 WindowManagerAgentType type); 31 WMError UnregisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 32 WindowManagerAgentType type); 33 34 void UpdateFocusChangeInfo(const sptr<FocusChangeInfo>& focusChangeInfo, bool focused); 35 void UpdateWindowModeTypeInfo(WindowModeType type); 36 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints); 37 void NotifyAccessibilityWindowInfo(const std::vector<sptr<AccessibilityWindowInfo>>& infos, WindowUpdateType type); 38 void UpdateWindowVisibilityInfo(const std::vector<sptr<WindowVisibilityInfo>>& windowVisibilityInfos); 39 void UpdateCameraFloatWindowStatus(uint32_t accessTokenId, bool isShowing); 40 void NotifyWaterMarkFlagChangedResult(bool showWaterMark); 41 void NotifyGestureNavigationEnabledResult(bool enable); 42 void UpdatePiPWindowStateChanged(const std::string& bundleName, bool isForeground); 43 44private: 45 WindowManagerAgentController() {} 46 virtual ~WindowManagerAgentController() = default; 47 48 ClientAgentContainer<IWindowManagerAgent, WindowManagerAgentType> wmAgentContainer_; 49}; 50} 51} 52#endif // OHOS_ROSEN_WINDOW_MANAGER_AGENT_CONTROLLER_H 53