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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#include "x11windowed_backend.h"
|
2015-05-05 13:23:53 +00:00
|
|
|
#include "scene_qpainter_x11_backend.h"
|
2015-03-27 06:52:59 +00:00
|
|
|
#include "screens_x11windowed.h"
|
2015-05-05 15:27:03 +00:00
|
|
|
#include "logging.h"
|
2015-03-19 07:29:34 +00:00
|
|
|
#include "wayland_server.h"
|
|
|
|
#include "xcbutils.h"
|
2015-03-27 07:51:56 +00:00
|
|
|
#ifdef KWIN_HAVE_EGL
|
|
|
|
#if HAVE_X11_XCB
|
|
|
|
#include "eglonxbackend.h"
|
|
|
|
#endif
|
|
|
|
#endif
|
2015-03-19 07:29:34 +00:00
|
|
|
#include <kwinxrenderutils.h>
|
|
|
|
#include <QAbstractEventDispatcher>
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QSocketNotifier>
|
|
|
|
// kwayland
|
|
|
|
#include <KWayland/Server/buffer_interface.h>
|
|
|
|
#include <KWayland/Server/seat_interface.h>
|
|
|
|
#include <KWayland/Server/surface_interface.h>
|
|
|
|
// system
|
|
|
|
#include <linux/input.h>
|
2015-03-19 10:07:49 +00:00
|
|
|
#if HAVE_X11_XCB
|
|
|
|
#include <X11/Xlib-xcb.h>
|
|
|
|
#endif
|
2015-03-19 07:29:34 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2015-05-06 07:37:25 +00:00
|
|
|
X11WindowedBackend::X11WindowedBackend(QObject *parent)
|
2015-03-20 13:41:03 +00:00
|
|
|
: AbstractBackend(parent)
|
2015-05-06 06:32:39 +00:00
|
|
|
{
|
2015-06-05 17:34:03 +00:00
|
|
|
setSupportsPointerWarping(true);
|
2015-05-06 06:32:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
X11WindowedBackend::~X11WindowedBackend()
|
|
|
|
{
|
|
|
|
if (m_connection) {
|
|
|
|
if (m_window) {
|
|
|
|
xcb_unmap_window(m_connection, m_window);
|
|
|
|
xcb_destroy_window(m_connection, m_window);
|
|
|
|
}
|
|
|
|
if (m_cursor) {
|
|
|
|
xcb_free_cursor(m_connection, m_cursor);
|
|
|
|
}
|
|
|
|
xcb_disconnect(m_connection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::init()
|
2015-03-19 07:29:34 +00:00
|
|
|
{
|
|
|
|
int screen = 0;
|
2015-03-19 10:07:49 +00:00
|
|
|
xcb_connection_t *c = nullptr;
|
|
|
|
#if HAVE_X11_XCB
|
2015-05-06 07:37:25 +00:00
|
|
|
Display *xDisplay = XOpenDisplay(deviceIdentifier().constData());
|
2015-03-19 10:07:49 +00:00
|
|
|
if (xDisplay) {
|
|
|
|
c = XGetXCBConnection(xDisplay);
|
|
|
|
XSetEventQueueOwner(xDisplay, XCBOwnsEventQueue);
|
|
|
|
screen = XDefaultScreen(xDisplay);
|
|
|
|
}
|
|
|
|
#else
|
2015-05-06 07:37:25 +00:00
|
|
|
c = xcb_connect(deviceIdentifier().constData(), &screen);
|
2015-03-19 10:07:49 +00:00
|
|
|
#endif
|
|
|
|
if (c && !xcb_connection_has_error(c)) {
|
2015-03-19 07:29:34 +00:00
|
|
|
m_connection = c;
|
|
|
|
m_screenNumber = screen;
|
2015-03-19 10:07:49 +00:00
|
|
|
#if HAVE_X11_XCB
|
|
|
|
m_display = xDisplay;
|
|
|
|
#endif
|
2015-03-19 07:29:34 +00:00
|
|
|
for (xcb_screen_iterator_t it = xcb_setup_roots_iterator(xcb_get_setup(m_connection));
|
|
|
|
it.rem;
|
|
|
|
--screen, xcb_screen_next(&it)) {
|
|
|
|
if (screen == m_screenNumber) {
|
|
|
|
m_screen = it.data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XRenderUtils::init(m_connection, m_screen->root);
|
|
|
|
createWindow();
|
|
|
|
startEventReading();
|
2015-05-05 17:02:52 +00:00
|
|
|
setReady(true);
|
2015-05-06 06:52:59 +00:00
|
|
|
waylandServer()->seat()->setHasPointer(true);
|
|
|
|
waylandServer()->seat()->setHasKeyboard(true);
|
2015-05-06 07:03:54 +00:00
|
|
|
emit screensQueried();
|
2015-05-06 07:16:36 +00:00
|
|
|
} else {
|
|
|
|
emit initFailed();
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::createWindow()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_window == XCB_WINDOW_NONE);
|
|
|
|
Xcb::Atom protocolsAtom(QByteArrayLiteral("WM_PROTOCOLS"), false, m_connection);
|
|
|
|
Xcb::Atom deleteWindowAtom(QByteArrayLiteral("WM_DELETE_WINDOW"), false, m_connection);
|
|
|
|
m_window = xcb_generate_id(m_connection);
|
|
|
|
uint32_t mask = XCB_CW_EVENT_MASK;
|
|
|
|
const uint32_t values[] = {
|
|
|
|
XCB_EVENT_MASK_KEY_PRESS |
|
|
|
|
XCB_EVENT_MASK_KEY_RELEASE |
|
|
|
|
XCB_EVENT_MASK_BUTTON_PRESS |
|
|
|
|
XCB_EVENT_MASK_BUTTON_RELEASE |
|
|
|
|
XCB_EVENT_MASK_POINTER_MOTION |
|
|
|
|
XCB_EVENT_MASK_ENTER_WINDOW |
|
|
|
|
XCB_EVENT_MASK_LEAVE_WINDOW |
|
|
|
|
XCB_EVENT_MASK_STRUCTURE_NOTIFY |
|
|
|
|
XCB_EVENT_MASK_EXPOSURE
|
|
|
|
};
|
2015-05-06 07:26:08 +00:00
|
|
|
m_size = initialWindowSize();
|
2015-03-19 07:29:34 +00:00
|
|
|
xcb_create_window(m_connection, XCB_COPY_FROM_PARENT, m_window, m_screen->root,
|
|
|
|
0, 0, m_size.width(), m_size.height(),
|
|
|
|
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, mask, values);
|
|
|
|
xcb_map_window(m_connection, m_window);
|
|
|
|
|
|
|
|
m_protocols = protocolsAtom;
|
|
|
|
m_deleteWindowProtocol = deleteWindowAtom;
|
|
|
|
xcb_change_property(m_connection, XCB_PROP_MODE_REPLACE, m_window, m_protocols, XCB_ATOM_ATOM, 32, 1, &m_deleteWindowProtocol);
|
|
|
|
|
|
|
|
xcb_flush(m_connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::startEventReading()
|
|
|
|
{
|
|
|
|
QSocketNotifier *notifier = new QSocketNotifier(xcb_get_file_descriptor(m_connection), QSocketNotifier::Read, this);
|
|
|
|
auto processXcbEvents = [this] {
|
|
|
|
while (auto event = xcb_poll_for_event(m_connection)) {
|
|
|
|
handleEvent(event);
|
|
|
|
free(event);
|
|
|
|
}
|
|
|
|
xcb_flush(m_connection);
|
|
|
|
};
|
|
|
|
connect(notifier, &QSocketNotifier::activated, this, processXcbEvents);
|
|
|
|
connect(QCoreApplication::eventDispatcher(), &QAbstractEventDispatcher::aboutToBlock, this, processXcbEvents);
|
|
|
|
connect(QCoreApplication::eventDispatcher(), &QAbstractEventDispatcher::awake, this, processXcbEvents);
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::handleEvent(xcb_generic_event_t *e)
|
|
|
|
{
|
|
|
|
const uint8_t eventType = e->response_type & ~0x80;
|
|
|
|
switch (eventType) {
|
|
|
|
case XCB_BUTTON_PRESS:
|
|
|
|
case XCB_BUTTON_RELEASE:
|
|
|
|
handleButtonPress(reinterpret_cast<xcb_button_press_event_t*>(e));
|
|
|
|
break;
|
2015-05-05 08:44:46 +00:00
|
|
|
case XCB_MOTION_NOTIFY: {
|
2015-03-19 07:29:34 +00:00
|
|
|
auto event = reinterpret_cast<xcb_motion_notify_event_t*>(e);
|
2015-05-05 08:44:46 +00:00
|
|
|
pointerMotion(QPointF(event->event_x, event->event_y), event->time);
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XCB_KEY_PRESS:
|
2015-05-05 08:44:46 +00:00
|
|
|
case XCB_KEY_RELEASE: {
|
2015-03-19 07:29:34 +00:00
|
|
|
auto event = reinterpret_cast<xcb_key_press_event_t*>(e);
|
2015-05-05 08:44:46 +00:00
|
|
|
if (eventType == XCB_KEY_PRESS) {
|
|
|
|
keyboardKeyPressed(event->detail - 8, event->time);
|
|
|
|
} else {
|
|
|
|
keyboardKeyReleased(event->detail - 8, event->time);
|
|
|
|
}
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XCB_CONFIGURE_NOTIFY:
|
|
|
|
updateSize(reinterpret_cast<xcb_configure_notify_event_t*>(e));
|
|
|
|
break;
|
2015-05-05 08:44:46 +00:00
|
|
|
case XCB_ENTER_NOTIFY: {
|
2015-03-19 07:29:34 +00:00
|
|
|
auto event = reinterpret_cast<xcb_enter_notify_event_t*>(e);
|
2015-05-05 08:44:46 +00:00
|
|
|
pointerMotion(QPointF(event->event_x, event->event_y), event->time);
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XCB_CLIENT_MESSAGE:
|
|
|
|
handleClientMessage(reinterpret_cast<xcb_client_message_event_t*>(e));
|
|
|
|
break;
|
|
|
|
case XCB_EXPOSE:
|
|
|
|
handleExpose(reinterpret_cast<xcb_expose_event_t*>(e));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::handleClientMessage(xcb_client_message_event_t *event)
|
|
|
|
{
|
|
|
|
if (event->window != m_window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (event->type == m_protocols && m_protocols != XCB_ATOM_NONE) {
|
|
|
|
if (event->data.data32[0] == m_deleteWindowProtocol && m_deleteWindowProtocol != XCB_ATOM_NONE) {
|
2015-05-05 15:27:03 +00:00
|
|
|
qCDebug(KWIN_X11WINDOWED) << "Backend window is going to be closed, shutting down.";
|
2015-03-19 07:29:34 +00:00
|
|
|
QCoreApplication::quit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::handleButtonPress(xcb_button_press_event_t *event)
|
|
|
|
{
|
|
|
|
bool const pressed = (event->response_type & ~0x80) == XCB_BUTTON_PRESS;
|
|
|
|
if (event->detail >= XCB_BUTTON_INDEX_4 && event->detail <= 7) {
|
|
|
|
// wheel
|
|
|
|
if (!pressed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const int delta = (event->detail == XCB_BUTTON_INDEX_4 || event->detail == 6) ? -1 : 1;
|
|
|
|
static const qreal s_defaultAxisStepDistance = 10.0;
|
2015-05-05 08:44:46 +00:00
|
|
|
if (event->detail > 5) {
|
|
|
|
pointerAxisHorizontal(delta * s_defaultAxisStepDistance, event->time);
|
|
|
|
} else {
|
|
|
|
pointerAxisVertical(delta * s_defaultAxisStepDistance, event->time);
|
|
|
|
}
|
2015-03-19 07:29:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
uint32_t button = 0;
|
|
|
|
switch (event->detail) {
|
|
|
|
case XCB_BUTTON_INDEX_1:
|
|
|
|
button = BTN_LEFT;
|
|
|
|
break;
|
|
|
|
case XCB_BUTTON_INDEX_2:
|
|
|
|
button = BTN_MIDDLE;
|
|
|
|
break;
|
|
|
|
case XCB_BUTTON_INDEX_3:
|
|
|
|
button = BTN_RIGHT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
button = event->detail + BTN_LEFT - 1;
|
|
|
|
return;
|
|
|
|
}
|
2015-05-05 08:44:46 +00:00
|
|
|
pointerMotion(QPointF(event->event_x, event->event_y), event->time);
|
|
|
|
if (pressed) {
|
|
|
|
pointerButtonPressed(button, event->time);
|
|
|
|
} else {
|
|
|
|
pointerButtonReleased(button, event->time);
|
|
|
|
}
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::handleExpose(xcb_expose_event_t *event)
|
|
|
|
{
|
2015-05-05 08:54:13 +00:00
|
|
|
repaint(QRect(event->x, event->y, event->width, event->height));
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::updateSize(xcb_configure_notify_event_t *event)
|
|
|
|
{
|
|
|
|
if (event->window != m_window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QSize s = QSize(event->width, event->height);
|
|
|
|
if (s != m_size) {
|
|
|
|
m_size = s;
|
|
|
|
emit sizeChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::installCursorFromServer()
|
|
|
|
{
|
|
|
|
if (!waylandServer() || !waylandServer()->seat()->focusedPointer()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto c = waylandServer()->seat()->focusedPointer()->cursor();
|
|
|
|
if (c) {
|
|
|
|
auto cursorSurface = c->surface();
|
|
|
|
if (!cursorSurface.isNull()) {
|
|
|
|
auto buffer = cursorSurface.data()->buffer();
|
|
|
|
if (buffer) {
|
2015-06-04 20:05:54 +00:00
|
|
|
createCursor(buffer->data(), c->hotspot());
|
2015-03-19 07:29:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: unset cursor
|
|
|
|
}
|
|
|
|
|
2015-06-04 20:05:54 +00:00
|
|
|
void X11WindowedBackend::createCursor(const QImage &img, const QPoint &hotspot)
|
|
|
|
{
|
|
|
|
const xcb_pixmap_t pix = xcb_generate_id(m_connection);
|
|
|
|
const xcb_gcontext_t gc = xcb_generate_id(m_connection);
|
|
|
|
const xcb_cursor_t cid = xcb_generate_id(m_connection);
|
|
|
|
|
|
|
|
xcb_create_pixmap(m_connection, 32, pix, m_screen->root, img.width(), img.height());
|
|
|
|
xcb_create_gc(m_connection, gc, pix, 0, nullptr);
|
|
|
|
|
|
|
|
xcb_put_image(m_connection, XCB_IMAGE_FORMAT_Z_PIXMAP, pix, gc, img.width(), img.height(), 0, 0, 0, 32, img.byteCount(), img.constBits());
|
|
|
|
|
|
|
|
XRenderPicture pic(pix, 32);
|
|
|
|
xcb_render_create_cursor(m_connection, cid, pic, hotspot.x(), hotspot.y());
|
|
|
|
xcb_change_window_attributes(m_connection, m_window, XCB_CW_CURSOR, &cid);
|
|
|
|
|
|
|
|
xcb_free_pixmap(m_connection, pix);
|
|
|
|
xcb_free_gc(m_connection, gc);
|
|
|
|
if (m_cursor) {
|
|
|
|
xcb_free_cursor(m_connection, m_cursor);
|
|
|
|
}
|
|
|
|
m_cursor = cid;
|
|
|
|
xcb_flush(m_connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
void X11WindowedBackend::installCursorImage(Qt::CursorShape shape)
|
|
|
|
{
|
2015-06-04 20:35:40 +00:00
|
|
|
// TODO: only update if shape changed
|
2015-06-04 20:05:54 +00:00
|
|
|
updateCursorImage(shape);
|
2015-06-04 20:35:40 +00:00
|
|
|
createCursor(softwareCursor(), softwareCursorHotspot());
|
2015-06-04 20:05:54 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 10:26:53 +00:00
|
|
|
xcb_window_t X11WindowedBackend::rootWindow() const
|
|
|
|
{
|
|
|
|
if (!m_screen) {
|
|
|
|
return XCB_WINDOW_NONE;
|
|
|
|
}
|
|
|
|
return m_screen->root;
|
|
|
|
}
|
|
|
|
|
2015-03-27 06:52:59 +00:00
|
|
|
Screens *X11WindowedBackend::createScreens(QObject *parent)
|
|
|
|
{
|
|
|
|
return new X11WindowedScreens(this, parent);
|
|
|
|
}
|
|
|
|
|
2015-03-27 07:51:56 +00:00
|
|
|
OpenGLBackend *X11WindowedBackend::createOpenGLBackend()
|
|
|
|
{
|
|
|
|
#ifdef KWIN_HAVE_EGL
|
|
|
|
#if HAVE_X11_XCB
|
2015-05-05 13:35:12 +00:00
|
|
|
return new EglOnXBackend(connection(), display(), rootWindow(), screenNumer(), window());
|
2015-03-27 07:51:56 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-03-27 08:05:03 +00:00
|
|
|
QPainterBackend *X11WindowedBackend::createQPainterBackend()
|
|
|
|
{
|
|
|
|
return new X11WindowedQPainterBackend(this);
|
|
|
|
}
|
|
|
|
|
2015-06-05 17:34:03 +00:00
|
|
|
void X11WindowedBackend::warpPointer(const QPointF &globalPos)
|
|
|
|
{
|
|
|
|
xcb_warp_pointer(m_connection, m_window, m_window, 0, 0, 0, 0, globalPos.x(), globalPos.y());
|
|
|
|
xcb_flush(m_connection);
|
|
|
|
}
|
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|