/* * Copyright (c) 2021-2022 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 FOUNDATION_DMSERVER_DISPLAY_MANAGER_PROXY_H #define FOUNDATION_DMSERVER_DISPLAY_MANAGER_PROXY_H #include "display_manager_interface.h" #include "dm_common.h" #include "screen.h" #include namespace OHOS::Rosen { class DisplayManagerProxy : public IRemoteProxy { public: explicit DisplayManagerProxy(const sptr &impl) : IRemoteProxy(impl) {}; ~DisplayManagerProxy() {}; sptr GetDefaultDisplayInfo() override; sptr GetDisplayInfoById(DisplayId displayId) override; sptr GetDisplayInfoByScreen(ScreenId screenId) override; DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow) override; ScreenId CreateVirtualScreen(VirtualScreenOption option, const sptr& displayManagerAgent) override; DMError DestroyVirtualScreen(ScreenId screenId) override; DMError SetVirtualScreenSurface(ScreenId screenId, sptr surface) override; DMError SetOrientation(ScreenId screenId, Orientation orientation) override; std::shared_ptr GetDisplaySnapshot(DisplayId displayId, DmErrorCode* errorCode = nullptr, bool isUseDma = false) override; DMError IsScreenRotationLocked(bool& isLocked) override; DMError SetScreenRotationLocked(bool isLocked) override; DMError SetScreenRotationLockedFromJs(bool isLocked) override; // colorspace, gamut DMError GetScreenSupportedColorGamuts(ScreenId screenId, std::vector& colorGamuts) override; DMError GetScreenColorGamut(ScreenId screenId, ScreenColorGamut& colorGamut) override; DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) override; DMError GetScreenGamutMap(ScreenId screenId, ScreenGamutMap& gamutMap) override; DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap) override; DMError SetScreenColorTransform(ScreenId screenId) override; DMError GetPixelFormat(ScreenId screenId, GraphicPixelFormat& pixelFormat) override; DMError SetPixelFormat(ScreenId screenId, GraphicPixelFormat pixelFormat) override; DMError GetSupportedHDRFormats(ScreenId screenId, std::vector& hdrFormats) override; DMError GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat) override; DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx) override; DMError GetSupportedColorSpaces(ScreenId screenId, std::vector& colorSpaces) override; DMError GetScreenColorSpace(ScreenId screenId, GraphicCM_ColorSpaceType& colorSpace) override; DMError SetScreenColorSpace(ScreenId screenId, GraphicCM_ColorSpaceType colorSpace) override; DMError RegisterDisplayManagerAgent(const sptr& displayManagerAgent, DisplayManagerAgentType type) override; DMError UnregisterDisplayManagerAgent(const sptr& displayManagerAgent, DisplayManagerAgentType type) override; bool WakeUpBegin(PowerStateChangeReason reason) override; bool WakeUpEnd() override; bool SuspendBegin(PowerStateChangeReason reason) override; bool SuspendEnd() override; bool SetSpecifiedScreenPower(ScreenId screenId, ScreenPowerState state, PowerStateChangeReason reason) override; bool SetScreenPowerForAll(ScreenPowerState state, PowerStateChangeReason reason) override; ScreenPowerState GetScreenPower(ScreenId dmsScreenId) override; bool SetDisplayState(DisplayState state) override; bool TryToCancelScreenOff() override; std::vector GetAllDisplayIds() override; DisplayState GetDisplayState(DisplayId displayId) override; sptr GetCutoutInfo(DisplayId displayId) override; void NotifyDisplayEvent(DisplayEvent event) override; bool SetFreeze(std::vector displayIds, bool isFreeze) override; DMError MakeMirror(ScreenId mainScreenId, std::vector mirrorScreenId, ScreenId& screenGroupId) override; DMError StopMirror(const std::vector& mirrorScreenIds) override; sptr GetScreenInfoById(ScreenId screenId) override; sptr GetScreenGroupInfoById(ScreenId screenId) override; DMError GetAllScreenInfos(std::vector>& screens) override; DMError MakeExpand(std::vector screenId, std::vector startPoint, ScreenId& screenGroupId) override; DMError StopExpand(const std::vector& expandScreenIds) override; void RemoveVirtualScreenFromGroup(std::vector screens) override; DMError SetScreenActiveMode(ScreenId screenId, uint32_t modeId) override; DMError SetVirtualPixelRatio(ScreenId screenId, float virtualPixelRatio) override; DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio) override; DMError GetDensityInCurResolution(ScreenId screenId, float& virtualPixelRatio) override; DMError AddSurfaceNodeToDisplay(DisplayId displayId, std::shared_ptr& surfaceNode, bool onTop = true) override; DMError RemoveSurfaceNodeFromDisplay(DisplayId displayId, std::shared_ptr& surfaceNode) override; DMError ResizeVirtualScreen(ScreenId screenId, uint32_t width, uint32_t height) override; DMError MakeUniqueScreen(const std::vector& screenIds) override; std::vector GetAllDisplayPhysicalResolution() override; private: static inline BrokerDelegator delegator_; }; } // namespace OHOS::Rosen #endif // FOUNDATION_DMSERVER_DISPLAY_MANAGER_PROXY_H