mirror of
https://github.com/openharmony/window_window_manager.git
synced 2026-08-25 13:10:03 -04:00
bab555f8ac
Signed-off-by: chenhao <haoe.chen@archermind.com> Change-Id: I2e1a7069d06ecb4b6e129dc8b854ef701aeb8dc9
83 lines
4.1 KiB
C++
83 lines
4.1 KiB
C++
/*
|
|
* 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_ABSTRACT_DISPLAY_CONTROLLER_H
|
|
#define FOUNDATION_DMSERVER_ABSTRACT_DISPLAY_CONTROLLER_H
|
|
|
|
#include "abstract_screen_controller.h"
|
|
|
|
#include <map>
|
|
#include <pixel_map.h>
|
|
#include <surface.h>
|
|
#include <transaction/rs_interfaces.h>
|
|
|
|
#include "screen.h"
|
|
#include "abstract_display.h"
|
|
#include "display_change_listener.h"
|
|
#include "future.h"
|
|
|
|
namespace OHOS::Rosen {
|
|
class AbstractDisplayController : public RefBase {
|
|
using DisplayStateChangeListener = std::function<void(DisplayId, sptr<DisplayInfo>,
|
|
const std::map<DisplayId, sptr<DisplayInfo>>&, DisplayStateChangeType)>;
|
|
public:
|
|
AbstractDisplayController(std::recursive_mutex& mutex, DisplayStateChangeListener);
|
|
~AbstractDisplayController();
|
|
WM_DISALLOW_COPY_AND_MOVE(AbstractDisplayController);
|
|
|
|
void Init(sptr<AbstractScreenController> abstractScreenController);
|
|
ScreenId GetDefaultScreenId();
|
|
RSScreenModeInfo GetScreenActiveMode(ScreenId id);
|
|
|
|
std::shared_ptr<Media::PixelMap> GetScreenSnapshot(DisplayId displayId);
|
|
sptr<AbstractDisplay> GetAbstractDisplay(DisplayId displayId) const;
|
|
sptr<AbstractDisplay> GetAbstractDisplayByScreen(ScreenId screenId) const;
|
|
std::vector<DisplayId> GetAllDisplayIds() const;
|
|
void SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze);
|
|
|
|
private:
|
|
void OnAbstractScreenConnect(sptr<AbstractScreen> absScreen);
|
|
void OnAbstractScreenDisconnect(sptr<AbstractScreen> absScreen);
|
|
void OnAbstractScreenChange(sptr<AbstractScreen> absScreen, DisplayChangeEvent event);
|
|
void ProcessDisplayUpdateOrientation(sptr<AbstractScreen> absScreen, DisplayStateChangeType type);
|
|
void ProcessDisplaySizeChange(sptr<AbstractScreen> absScreen);
|
|
void ProcessVirtualPixelRatioChange(sptr<AbstractScreen> absScreen);
|
|
void ProcessDisplayRotationChange(sptr<AbstractScreen> absScreen, DisplayStateChangeType type);
|
|
void ProcessDisplayCompression(sptr<AbstractScreen> absScreen);
|
|
sptr<AbstractDisplay> GetAbstractDisplayByAbsScreen(sptr<AbstractScreen> absScreen);
|
|
void BindAloneScreenLocked(sptr<AbstractScreen> absScreen);
|
|
void AddScreenToMirrorLocked(sptr<AbstractScreen> absScreen);
|
|
void AddScreenToExpandLocked(sptr<AbstractScreen> absScreen);
|
|
std::map<DisplayId, sptr<DisplayInfo>> GetAllDisplayInfoOfGroup(sptr<DisplayInfo> info);
|
|
DisplayId ProcessNormalScreenDisconnected(
|
|
sptr<AbstractScreen> absScreen, sptr<AbstractScreenGroup> screenGroup, sptr<AbstractDisplay>& absDisplay);
|
|
DisplayId ProcessExpandScreenDisconnected(
|
|
sptr<AbstractScreen> absScreen, sptr<AbstractScreenGroup> screenGroup, sptr<AbstractDisplay>& absDisplay);
|
|
bool UpdateDisplaySize(sptr<AbstractDisplay> absDisplay, sptr<SupportedScreenModes> info,
|
|
Point offset = Point(0, 0));
|
|
void SetDisplayStateChangeListener(sptr<AbstractDisplay> abstractDisplay, DisplayStateChangeType type);
|
|
DisplayId GetDefaultDisplayId();
|
|
|
|
std::recursive_mutex& mutex_;
|
|
std::atomic<DisplayId> displayCount_ { 0 };
|
|
sptr<AbstractDisplay> dummyDisplay_;
|
|
std::map<DisplayId, sptr<AbstractDisplay>> abstractDisplayMap_;
|
|
sptr<AbstractScreenController> abstractScreenController_;
|
|
sptr<AbstractScreenController::AbstractScreenCallback> abstractScreenCallback_;
|
|
OHOS::Rosen::RSInterfaces& rsInterface_;
|
|
DisplayStateChangeListener displayStateChangeListener_;
|
|
};
|
|
} // namespace OHOS::Rosen
|
|
#endif // FOUNDATION_DMSERVER_ABSTRACT_DISPLAY_CONTROLLER_H
|