2015-03-19 07:29:34 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-03-19 07:29:34 +00:00
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2015-03-19 07:29:34 +00:00
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_X11WINDOWED_BACKEND_H
|
|
|
|
#define KWIN_X11WINDOWED_BACKEND_H
|
2016-04-07 07:24:17 +00:00
|
|
|
#include "platform.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-09-17 07:47:45 +00:00
|
|
|
typedef struct _XCBKeySymbols xcb_key_symbols_t;
|
2015-09-16 11:51:44 +00:00
|
|
|
class NETWinInfo;
|
2015-03-19 10:07:49 +00:00
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
2019-06-13 09:27:01 +00:00
|
|
|
class X11WindowedOutput;
|
2015-03-19 07:29:34 +00:00
|
|
|
|
2016-04-07 07:18:10 +00:00
|
|
|
class KWIN_EXPORT X11WindowedBackend : public Platform
|
2015-03-19 07:29:34 +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 "x11.json")
|
2015-11-24 09:47:52 +00:00
|
|
|
Q_PROPERTY(QSize size READ screenSize NOTIFY sizeChanged)
|
2015-03-19 07:29:34 +00:00
|
|
|
public:
|
2015-05-05 15:58:09 +00:00
|
|
|
X11WindowedBackend(QObject *parent = nullptr);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~X11WindowedBackend() override;
|
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;
|
|
|
|
}
|
2019-06-13 09:27:01 +00:00
|
|
|
xcb_screen_t *screen() const {
|
|
|
|
return m_screen;
|
|
|
|
}
|
2015-03-19 07:29:34 +00:00
|
|
|
int screenNumer() const {
|
|
|
|
return m_screenNumber;
|
|
|
|
}
|
|
|
|
xcb_window_t window() const {
|
2015-11-24 09:47:52 +00:00
|
|
|
return windowForScreen(0);
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
2015-11-24 08:34:56 +00:00
|
|
|
xcb_window_t windowForScreen(int screen) const;
|
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;
|
2019-06-13 09:27:01 +00:00
|
|
|
bool hasXInput() const {
|
|
|
|
return m_hasXInput;
|
|
|
|
}
|
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
|
|
|
|
2017-10-15 20:24:49 +00:00
|
|
|
QVector<CompositingType> supportedCompositors() const override {
|
2019-02-16 19:50:46 +00:00
|
|
|
if (selectedCompositor() != NoCompositing) {
|
|
|
|
return {selectedCompositor()};
|
|
|
|
}
|
2017-10-15 20:24:49 +00:00
|
|
|
return QVector<CompositingType>{OpenGLCompositing, QPainterCompositing};
|
|
|
|
}
|
|
|
|
|
2019-06-13 09:27:01 +00:00
|
|
|
Outputs outputs() const override;
|
|
|
|
Outputs enabledOutputs() const override;
|
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void sizeChanged();
|
|
|
|
|
|
|
|
private:
|
2019-06-13 09:27:01 +00:00
|
|
|
void createOutputs();
|
2015-03-19 07:29:34 +00:00
|
|
|
void startEventReading();
|
2015-09-17 07:47:45 +00:00
|
|
|
void grabKeyboard(xcb_timestamp_t time);
|
|
|
|
void updateWindowTitle();
|
2015-03-19 07:29:34 +00:00
|
|
|
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);
|
2018-12-05 17:46:35 +00:00
|
|
|
void initXInput();
|
2019-09-14 18:19:20 +00:00
|
|
|
X11WindowedOutput *findOutput(xcb_window_t window) const;
|
2015-03-19 07:29:34 +00:00
|
|
|
|
|
|
|
xcb_connection_t *m_connection = nullptr;
|
|
|
|
xcb_screen_t *m_screen = nullptr;
|
2015-09-17 07:47:45 +00:00
|
|
|
xcb_key_symbols_t *m_keySymbols = nullptr;
|
2015-03-19 07:29:34 +00:00
|
|
|
int m_screenNumber = 0;
|
2019-06-13 09:27:01 +00:00
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
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-09-17 07:47:45 +00:00
|
|
|
bool m_keyboardGrabbed = false;
|
2018-12-05 17:46:35 +00:00
|
|
|
|
|
|
|
bool m_hasXInput = false;
|
|
|
|
int m_xiOpcode = 0;
|
|
|
|
int m_majorVersion = 0;
|
|
|
|
int m_minorVersion = 0;
|
2019-06-13 09:27:01 +00:00
|
|
|
|
|
|
|
QVector<X11WindowedOutput*> m_outputs;
|
2015-03-19 07:29:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|