1 /* 2 * Copyright (c) 2023 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_SESSION_MANAGER_AGENT_CONTROLLER_H 17 #define OHOS_ROSEN_SESSION_MANAGER_AGENT_CONTROLLER_H 18 19 #include "client_agent_container.h" 20 #include "window_manager.h" 21 #include "wm_single_instance.h" 22 #include "zidl/window_manager_agent_interface.h" 23 #include "window_visibility_info.h" 24 25 namespace OHOS { 26 namespace Rosen { 27 class SessionManagerAgentController { 28 WM_DECLARE_SINGLE_INSTANCE_BASE(SessionManagerAgentController) 29 public: 30 WMError RegisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 31 WindowManagerAgentType type); 32 WMError UnregisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 33 WindowManagerAgentType type); 34 35 void UpdateCameraFloatWindowStatus(uint32_t accessTokenId, bool isShowing); 36 void UpdateFocusChangeInfo(const sptr<FocusChangeInfo>& focusChangeInfo, bool focused); 37 void NotifyAccessibilityWindowInfo(const std::vector<sptr<AccessibilityWindowInfo>>& infos, 38 WindowUpdateType type); 39 void NotifyWaterMarkFlagChangedResult(bool hasWaterMark); 40 void UpdateWindowVisibilityInfo(const std::vector<sptr<WindowVisibilityInfo>>& windowVisibilityInfos); 41 private: SessionManagerAgentController()42 SessionManagerAgentController() {} 43 virtual ~SessionManagerAgentController() = default; 44 45 ClientAgentContainer<IWindowManagerAgent, WindowManagerAgentType> smAgentContainer_; 46 }; 47 } 48 } 49 #endif // OHOS_ROSEN_WINDOW_MANAGER_AGENT_CONTROLLER_H 50