2015-03-19 07:29:34 +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_X11WINDOWED_BACKEND_H
|
|
|
|
#define KWIN_X11WINDOWED_BACKEND_H
|
2015-03-20 13:41:03 +00:00
|
|
|
#include "abstract_backend.h"
|
2015-03-19 07:29:34 +00:00
|
|
|
|
|
|
|
#include <kwin_export.h>
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSize>
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
2015-03-19 10:07:49 +00:00
|
|
|
struct _XDisplay;
|
|
|
|
typedef struct _XDisplay Display;
|
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2015-03-20 13:41:03 +00:00
|
|
|
class KWIN_EXPORT X11WindowedBackend : public AbstractBackend
|
2015-03-19 07:29:34 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2015-05-05 15:58:09 +00:00
|
|
|
Q_INTERFACES(KWin::AbstractBackend)
|
|
|
|
Q_PLUGIN_METADATA(IID "org.kde.kwin.AbstractBackend" FILE "x11.json")
|
2015-03-19 07:29:34 +00:00
|
|
|
Q_PROPERTY(QSize size READ size NOTIFY sizeChanged)
|
|
|
|
public:
|
2015-05-05 15:58:09 +00:00
|
|
|
X11WindowedBackend(QObject *parent = nullptr);
|
2015-03-19 07:29:34 +00:00
|
|
|
virtual ~X11WindowedBackend();
|
2015-05-06 06:32:39 +00:00
|
|
|
void init() override;
|
2015-03-19 07:29:34 +00:00
|
|
|
|
|
|
|
xcb_connection_t *connection() const {
|
|
|
|
return m_connection;
|
|
|
|
}
|
|
|
|
int screenNumer() const {
|
|
|
|
return m_screenNumber;
|
|
|
|
}
|
|
|
|
xcb_window_t window() const {
|
|
|
|
return m_window;
|
|
|
|
}
|
2015-03-19 10:07:49 +00:00
|
|
|
Display *display() const {
|
|
|
|
return m_display;
|
|
|
|
}
|
2015-03-19 10:26:53 +00:00
|
|
|
xcb_window_t rootWindow() const;
|
2015-03-19 07:29:34 +00:00
|
|
|
|
|
|
|
QSize size() const {
|
|
|
|
return m_size;
|
|
|
|
}
|
|
|
|
|
2015-03-20 13:41:03 +00:00
|
|
|
void installCursorFromServer() override;
|
2015-06-04 20:05:54 +00:00
|
|
|
void installCursorImage(Qt::CursorShape shape) override;
|
2015-03-19 07:29:34 +00:00
|
|
|
|
2015-03-27 06:52:59 +00:00
|
|
|
Screens *createScreens(QObject *parent = nullptr) override;
|
2015-03-27 07:51:56 +00:00
|
|
|
OpenGLBackend *createOpenGLBackend() override;
|
2015-03-27 08:05:03 +00:00
|
|
|
QPainterBackend* createQPainterBackend() override;
|
2015-06-05 17:34:03 +00:00
|
|
|
void warpPointer(const QPointF &globalPos) override;
|
2015-03-27 06:52:59 +00:00
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void sizeChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createWindow();
|
|
|
|
void startEventReading();
|
|
|
|
void handleEvent(xcb_generic_event_t *event);
|
|
|
|
void handleClientMessage(xcb_client_message_event_t *event);
|
|
|
|
void handleButtonPress(xcb_button_press_event_t *event);
|
|
|
|
void handleExpose(xcb_expose_event_t *event);
|
|
|
|
void updateSize(xcb_configure_notify_event_t *event);
|
2015-06-04 20:05:54 +00:00
|
|
|
void createCursor(const QImage &img, const QPoint &hotspot);
|
2015-03-19 07:29:34 +00:00
|
|
|
|
|
|
|
xcb_connection_t *m_connection = nullptr;
|
|
|
|
xcb_screen_t *m_screen = nullptr;
|
|
|
|
int m_screenNumber = 0;
|
|
|
|
xcb_window_t m_window = XCB_WINDOW_NONE;
|
|
|
|
QSize m_size;
|
|
|
|
xcb_atom_t m_protocols = XCB_ATOM_NONE;
|
|
|
|
xcb_atom_t m_deleteWindowProtocol = XCB_ATOM_NONE;
|
|
|
|
xcb_cursor_t m_cursor = XCB_CURSOR_NONE;
|
2015-03-19 10:07:49 +00:00
|
|
|
Display *m_display = nullptr;
|
2015-03-19 07:29:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|