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 24 namespace OHOS { 25 namespace Rosen { 26 class WindowManagerAgentController { 27 WM_DECLARE_SINGLE_INSTANCE_BASE(WindowManagerAgentController) 28 public: 29 void RegisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 30 WindowManagerAgentType type); 31 void UnregisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 32 WindowManagerAgentType type); 33 34 void UpdateFocusChangeInfo(const sptr<FocusChangeInfo>& focusChangeInfo, bool focused); 35 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints); 36 void NotifyAccessibilityWindowInfo(const sptr<AccessibilityWindowInfo>& windowInfo, WindowUpdateType type); 37 void UpdateWindowVisibilityInfo(const std::vector<sptr<WindowVisibilityInfo>>& windowVisibilityInfos); 38 39 private: WindowManagerAgentController()40 WindowManagerAgentController() {} 41 virtual ~WindowManagerAgentController() = default; 42 43 ClientAgentContainer<IWindowManagerAgent, WindowManagerAgentType> wmAgentContainer_; 44 }; 45 } 46 } 47 #endif // OHOS_ROSEN_WINDOW_MANAGER_AGENT_CONTROLLER_H 48