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 #include "window_drawing_content_info.h" 25 26 namespace OHOS { 27 namespace Rosen { 28 class SessionManagerAgentController { 29 WM_DECLARE_SINGLE_INSTANCE_BASE(SessionManagerAgentController) 30 public: 31 WMError RegisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 32 WindowManagerAgentType type); 33 WMError UnregisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent, 34 WindowManagerAgentType type); 35 36 void UpdateCameraFloatWindowStatus(uint32_t accessTokenId, bool isShowing); 37 void UpdateFocusChangeInfo(const sptr<FocusChangeInfo>& focusChangeInfo, bool focused); 38 void NotifyAccessibilityWindowInfo(const std::vector<sptr<AccessibilityWindowInfo>>& infos, 39 WindowUpdateType type); 40 void NotifyWaterMarkFlagChangedResult(bool hasWaterMark); 41 void UpdateWindowVisibilityInfo(const std::vector<sptr<WindowVisibilityInfo>>& windowVisibilityInfos); 42 void UpdateWindowDrawingContentInfo(const std::vector<sptr<WindowDrawingContentInfo>>& windowDrawingContentInfos); 43 private: SessionManagerAgentController()44 SessionManagerAgentController() {} 45 virtual ~SessionManagerAgentController() = default; 46 47 ClientAgentContainer<IWindowManagerAgent, WindowManagerAgentType> smAgentContainer_; 48 }; 49 } 50 } 51 #endif // OHOS_ROSEN_WINDOW_MANAGER_AGENT_CONTROLLER_H 52