2015-03-20 13:41:03 +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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_ABSTRACT_BACKEND_H
|
|
|
|
#define KWIN_ABSTRACT_BACKEND_H
|
2015-03-23 13:29:07 +00:00
|
|
|
#include <kwin_export.h>
|
2015-04-01 13:36:40 +00:00
|
|
|
#include <QImage>
|
2015-03-20 13:41:03 +00:00
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2015-03-27 07:51:56 +00:00
|
|
|
class OpenGLBackend;
|
2015-03-27 08:05:03 +00:00
|
|
|
class QPainterBackend;
|
2015-03-27 06:52:59 +00:00
|
|
|
class Screens;
|
2015-04-02 12:37:23 +00:00
|
|
|
class WaylandCursorTheme;
|
|
|
|
|
2015-03-23 13:29:07 +00:00
|
|
|
class KWIN_EXPORT AbstractBackend : public QObject
|
2015-03-20 13:41:03 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
virtual ~AbstractBackend();
|
|
|
|
|
2015-05-06 06:32:39 +00:00
|
|
|
virtual void init() = 0;
|
2015-03-20 13:41:03 +00:00
|
|
|
virtual void installCursorFromServer();
|
|
|
|
virtual void installCursorImage(Qt::CursorShape shape);
|
2015-03-27 06:52:59 +00:00
|
|
|
virtual Screens *createScreens(QObject *parent = nullptr);
|
2015-03-27 07:51:56 +00:00
|
|
|
virtual OpenGLBackend *createOpenGLBackend();
|
2015-03-27 08:05:03 +00:00
|
|
|
virtual QPainterBackend *createQPainterBackend();
|
2015-03-20 13:41:03 +00:00
|
|
|
|
2015-04-01 13:36:40 +00:00
|
|
|
bool usesSoftwareCursor() const {
|
|
|
|
return m_softWareCursor;
|
|
|
|
}
|
|
|
|
QImage softwareCursor() const {
|
|
|
|
return m_cursor.image;
|
|
|
|
}
|
|
|
|
QPoint softwareCursorHotspot() const {
|
|
|
|
return m_cursor.hotspot;
|
|
|
|
}
|
|
|
|
void markCursorAsRendered();
|
|
|
|
|
2015-04-24 10:00:19 +00:00
|
|
|
bool handlesOutputs() const {
|
|
|
|
return m_handlesOutputs;
|
|
|
|
}
|
2015-05-05 17:02:52 +00:00
|
|
|
bool isReady() const {
|
|
|
|
return m_ready;
|
|
|
|
}
|
2015-05-06 07:26:08 +00:00
|
|
|
void setInitialWindowSize(const QSize &size) {
|
|
|
|
m_initialWindowSize = size;
|
|
|
|
}
|
2015-05-06 07:37:25 +00:00
|
|
|
void setDeviceIdentifier(const QByteArray &identifier) {
|
|
|
|
m_deviceIdentifier = identifier;
|
|
|
|
}
|
2015-04-24 10:00:19 +00:00
|
|
|
|
2015-05-11 13:43:30 +00:00
|
|
|
public Q_SLOTS:
|
2015-05-05 08:44:46 +00:00
|
|
|
void pointerMotion(const QPointF &position, quint32 time);
|
|
|
|
void pointerButtonPressed(quint32 button, quint32 time);
|
|
|
|
void pointerButtonReleased(quint32 button, quint32 time);
|
|
|
|
void pointerAxisHorizontal(qreal delta, quint32 time);
|
|
|
|
void pointerAxisVertical(qreal delta, quint32 time);
|
|
|
|
void keyboardKeyPressed(quint32 key, quint32 time);
|
|
|
|
void keyboardKeyReleased(quint32 key, quint32 time);
|
|
|
|
void keyboardModifiers(uint32_t modsDepressed, uint32_t modsLatched, uint32_t modsLocked, uint32_t group);
|
|
|
|
void keymapChange(int fd, uint32_t size);
|
|
|
|
void touchDown(qint32 id, const QPointF &pos, quint32 time);
|
|
|
|
void touchUp(qint32 id, quint32 time);
|
|
|
|
void touchMotion(qint32 id, const QPointF &pos, quint32 time);
|
|
|
|
void touchCancel();
|
|
|
|
void touchFrame();
|
|
|
|
|
2015-04-13 14:25:34 +00:00
|
|
|
Q_SIGNALS:
|
2015-05-06 07:03:54 +00:00
|
|
|
void screensQueried();
|
2015-05-06 07:16:36 +00:00
|
|
|
void initFailed();
|
2015-04-13 14:25:34 +00:00
|
|
|
void cursorChanged();
|
2015-05-05 17:02:52 +00:00
|
|
|
void readyChanged(bool);
|
2015-04-13 14:25:34 +00:00
|
|
|
|
2015-03-20 13:41:03 +00:00
|
|
|
protected:
|
|
|
|
explicit AbstractBackend(QObject *parent = nullptr);
|
2015-04-01 13:36:40 +00:00
|
|
|
void setSoftWareCursor(bool set);
|
2015-04-13 14:25:34 +00:00
|
|
|
void updateCursorFromServer();
|
|
|
|
void updateCursorImage(Qt::CursorShape shape);
|
2015-04-24 10:00:19 +00:00
|
|
|
void handleOutputs() {
|
|
|
|
m_handlesOutputs = true;
|
|
|
|
}
|
2015-05-05 08:54:13 +00:00
|
|
|
void repaint(const QRect &rect);
|
2015-05-05 17:02:52 +00:00
|
|
|
void setReady(bool ready);
|
2015-05-06 07:26:08 +00:00
|
|
|
QSize initialWindowSize() const {
|
|
|
|
return m_initialWindowSize;
|
|
|
|
}
|
2015-05-06 07:37:25 +00:00
|
|
|
QByteArray deviceIdentifier() const {
|
|
|
|
return m_deviceIdentifier;
|
|
|
|
}
|
2015-04-01 13:36:40 +00:00
|
|
|
|
2015-04-02 12:37:23 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void installThemeCursor(quint32 id, const QPoint &hotspot);
|
|
|
|
|
2015-04-01 13:36:40 +00:00
|
|
|
private:
|
|
|
|
void triggerCursorRepaint();
|
|
|
|
bool m_softWareCursor = false;
|
|
|
|
struct {
|
|
|
|
QPoint hotspot;
|
|
|
|
QImage image;
|
|
|
|
QPoint lastRenderedPosition;
|
|
|
|
} m_cursor;
|
2015-05-05 11:02:16 +00:00
|
|
|
WaylandCursorTheme *m_cursorTheme = nullptr;
|
2015-04-24 10:00:19 +00:00
|
|
|
bool m_handlesOutputs = false;
|
2015-05-05 17:02:52 +00:00
|
|
|
bool m_ready = false;
|
2015-05-06 07:26:08 +00:00
|
|
|
QSize m_initialWindowSize;
|
2015-05-06 07:37:25 +00:00
|
|
|
QByteArray m_deviceIdentifier;
|
2015-03-20 13:41:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-05-05 15:58:09 +00:00
|
|
|
Q_DECLARE_INTERFACE(KWin::AbstractBackend, "org.kde.kwin.AbstractBackend")
|
|
|
|
|
2015-03-20 13:41:03 +00:00
|
|
|
#endif
|