dde-dock/frame/display/displaymanager.h
yanghongwei f02d529942 chore: 修改代码版权声明中的日期
修改代码版权声明中的日期不超过当前日期

Log:
Change-Id: Ibefe837c59fc23e541b9c9cd7249144a1a674e43
2021-06-18 23:10:14 +08:00

73 lines
2.1 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"
#include <com_deepin_daemon_display.h>
using DisplayInter = com::deepin::daemon::Display;
using namespace Dock;
class QScreen;
class QTimer;
class QGSettings;
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;
private:
void updateScreenDockInfo();
private Q_SLOTS:
void screenCountChanged();
void dockInfoChanged();
void onGSettingsChanged(const QString &key);
Q_SIGNALS:
void primaryScreenChanged();
void screenInfoChanged(); // 屏幕信息发生变化,需要调整任务栏显示,只需要这一个信号,其他的都不要,简化流程
private:
QList <QScreen *> m_screens;
QMap <QScreen *, QMap <Position, bool>> m_screenPositionMap;
const QGSettings *m_gsettings; // 多屏配置控制
bool m_onlyInPrimary;
};
#endif // DISPLAYMANAGER_H