2015-10-02 08:44:29 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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 2 of the License, or
|
|
|
|
(at your option) 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/>.
|
|
|
|
*********************************************************************/
|
2015-12-10 14:19:19 +00:00
|
|
|
#ifndef KWIN_VIRTUAL_BACKEND_H
|
|
|
|
#define KWIN_VIRTUAL_BACKEND_H
|
2016-04-07 07:24:17 +00:00
|
|
|
#include "platform.h"
|
2015-10-02 08:44:29 +00:00
|
|
|
|
|
|
|
#include <kwin_export.h>
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSize>
|
|
|
|
|
2015-10-08 13:53:03 +00:00
|
|
|
class QTemporaryDir;
|
|
|
|
|
2016-08-19 13:40:39 +00:00
|
|
|
struct gbm_device;
|
|
|
|
|
2015-10-02 08:44:29 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2016-04-07 07:18:10 +00:00
|
|
|
class KWIN_EXPORT VirtualBackend : public Platform
|
2015-10-02 08:44:29 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2016-04-07 07:18:10 +00:00
|
|
|
Q_INTERFACES(KWin::Platform)
|
|
|
|
Q_PLUGIN_METADATA(IID "org.kde.kwin.Platform" FILE "virtual.json")
|
2015-10-02 08:44:29 +00:00
|
|
|
Q_PROPERTY(QSize size READ size NOTIFY sizeChanged)
|
|
|
|
public:
|
|
|
|
VirtualBackend(QObject *parent = nullptr);
|
|
|
|
virtual ~VirtualBackend();
|
|
|
|
void init() override;
|
|
|
|
|
|
|
|
QSize size() const {
|
|
|
|
return m_size;
|
|
|
|
}
|
2015-10-14 14:32:43 +00:00
|
|
|
int outputCount() const {
|
|
|
|
return m_outputCount;
|
|
|
|
}
|
2016-11-07 23:46:50 +00:00
|
|
|
qreal outputScale() const {
|
|
|
|
return m_outputScale;
|
|
|
|
}
|
2015-10-02 08:44:29 +00:00
|
|
|
|
2015-10-08 13:53:03 +00:00
|
|
|
bool saveFrames() const {
|
|
|
|
return !m_screenshotDir.isNull();
|
|
|
|
}
|
|
|
|
QString screenshotDirPath() const;
|
|
|
|
|
2015-10-02 08:44:29 +00:00
|
|
|
Screens *createScreens(QObject *parent = nullptr) override;
|
|
|
|
QPainterBackend* createQPainterBackend() override;
|
2015-10-08 14:12:09 +00:00
|
|
|
OpenGLBackend *createOpenGLBackend() override;
|
2015-10-02 08:44:29 +00:00
|
|
|
|
2015-10-14 14:32:43 +00:00
|
|
|
Q_INVOKABLE void setOutputCount(int count) {
|
|
|
|
m_outputCount = count;
|
|
|
|
}
|
|
|
|
|
2016-11-07 23:46:50 +00:00
|
|
|
Q_INVOKABLE void setOutputScale(qreal scale) {
|
|
|
|
m_outputScale = scale;
|
|
|
|
}
|
|
|
|
|
2016-08-19 13:40:39 +00:00
|
|
|
int drmFd() const {
|
|
|
|
return m_drmFd;
|
|
|
|
}
|
|
|
|
void setDrmFd(int fd) {
|
|
|
|
m_drmFd = fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
gbm_device *gbmDevice() const {
|
|
|
|
return m_gbmDevice;
|
|
|
|
}
|
|
|
|
void setGbmDevice(gbm_device *device) {
|
|
|
|
m_gbmDevice = device;
|
|
|
|
}
|
|
|
|
|
2015-10-02 08:44:29 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void sizeChanged();
|
2016-06-02 07:28:02 +00:00
|
|
|
void outputGeometriesChanged(const QVector<QRect> &geometries);
|
2015-10-02 08:44:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QSize m_size;
|
2015-10-14 14:32:43 +00:00
|
|
|
int m_outputCount = 1;
|
2016-11-07 23:46:50 +00:00
|
|
|
qreal m_outputScale = 1;
|
2015-10-08 13:53:03 +00:00
|
|
|
QScopedPointer<QTemporaryDir> m_screenshotDir;
|
2016-08-19 13:40:39 +00:00
|
|
|
int m_drmFd = -1;
|
|
|
|
gbm_device *m_gbmDevice = nullptr;
|
2015-10-02 08:44:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|