mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

之前wayland下主屏数据的错误已经在dwayland中进行了修复。这部分需要改回来 Log: 任务栏主屏改变信号由qt接口获取,保持数据源统一 Influence: 任务栏跟随主屏显示的功能 Bug: https://pms.uniontech.com/bug-view-146451.html Change-Id: I0b9217a476ef814ca4d793e16e2c31a1b54d11cb Co-authored-by: 范朋程 <fanpengcheng@uniontech.com>
81 lines
2.8 KiB
C++
81 lines
2.8 KiB
C++
/*
|
||
* Copyright (C) 2018 ~ 2020 Uniontech Technology Co., Ltd.
|
||
*
|
||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||
*
|
||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||
*
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
*/
|
||
|
||
#ifndef DISPLAYMANAGER_H
|
||
#define DISPLAYMANAGER_H
|
||
|
||
#include <QObject>
|
||
|
||
#include "singleton.h"
|
||
#include "constants.h"
|
||
|
||
using namespace Dock;
|
||
|
||
class QScreen;
|
||
class QTimer;
|
||
class QGSettings;
|
||
/**
|
||
* @brief The DisplayManager class
|
||
* @note 1、对QScreen信息的获取和监听进行了封装,不应该在此程序的其他处再出现类似的代码,而是从当前实例中进行提供
|
||
* @note 2、对显示相关数据的读写尽可能通过Qt库进行,而不是通过一些DBus服务,
|
||
* @note 目的一是为了解耦
|
||
* @note 二是DBus服务的稳定性较低,有部分问题存在
|
||
* @note 三是DBus服务(特指Display相关)刚开始的目的是为了做一些架构和特殊机器的兼容适配工作,因为qt适配开展较慢,所以才有了DBus服务的存在,目前qt已足够稳定,我们不应该再大量使用后端提供的Display服务
|
||
*/
|
||
class DisplayManager: public QObject, public Singleton<DisplayManager>
|
||
{
|
||
Q_OBJECT
|
||
friend class Singleton<DisplayManager>;
|
||
|
||
public:
|
||
explicit DisplayManager(QObject *parent = Q_NULLPTR);
|
||
|
||
QList<QScreen *> screens() const;
|
||
QScreen *screen(const QString &screenName) const;
|
||
QString primary() const;
|
||
int screenRawWidth() const;
|
||
int screenRawHeight() const;
|
||
bool canDock(QScreen *s, Position pos) const;
|
||
bool isCopyMode();
|
||
|
||
private:
|
||
void updateScreenDockInfo();
|
||
|
||
private Q_SLOTS:
|
||
void screenCountChanged();
|
||
void dockInfoChanged();
|
||
void onGSettingsChanged(const QString &key);
|
||
|
||
Q_SIGNALS:
|
||
void primaryScreenChanged(QScreen *s);
|
||
void screenInfoChanged(); // 屏幕信息发生变化,需要调整任务栏显示,只需要这一个信号,其他的都不要,简化流程
|
||
void screenAdded(QScreen *s);
|
||
void screenRemoved(QScreen *s);
|
||
|
||
private:
|
||
QList<QScreen *> m_screens;
|
||
QMap<QScreen *, QMap<Position, bool>> m_screenPositionMap;
|
||
const QGSettings *m_gsettings; // 多屏配置控制
|
||
bool m_onlyInPrimary;
|
||
};
|
||
|
||
#endif // DISPLAYMANAGER_H
|