4dd9b0f15b
The main reason to drop multi-head support is that it has been simply unmaintained for many many years. When implementing a feature, we don't even bother checking if multi-head is broken, KCMs don't handle multihead, window management features are written for Xinerama. KWin is optimized for Xinerama-like operation mode in general, which is provided out of the box. If you use multihead for esoteric gpu stuff, consider using kwin_wayland!
580 lines
18 KiB
C++
580 lines
18 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
SPDX-FileCopyrightText: 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#include "main.h"
|
|
|
|
#include <config-kwin.h>
|
|
|
|
#include "atoms.h"
|
|
#include "colormanager.h"
|
|
#include "composite.h"
|
|
#include "cursor.h"
|
|
#include "input.h"
|
|
#include "inputmethod.h"
|
|
#include "options.h"
|
|
#include "platform.h"
|
|
#include "pluginmanager.h"
|
|
#if KWIN_BUILD_SCREENLOCKER
|
|
#include "screenlockerwatcher.h"
|
|
#endif
|
|
#include "sm.h"
|
|
#include "utils/xcbutils.h"
|
|
#include "wayland/surface_interface.h"
|
|
#include "workspace.h"
|
|
#include "x11eventfilter.h"
|
|
|
|
#include <kwineffects.h>
|
|
|
|
// KDE
|
|
#include <KAboutData>
|
|
#include <KLocalizedString>
|
|
#include <KPluginMetaData>
|
|
// Qt
|
|
#include <QCommandLineParser>
|
|
#include <QLibraryInfo>
|
|
#include <QQuickWindow>
|
|
#include <QStandardPaths>
|
|
#include <QTranslator>
|
|
#include <qplatformdefs.h>
|
|
|
|
#if __has_include(<malloc.h>)
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
|
|
// xcb
|
|
#include <xcb/damage.h>
|
|
#ifndef XCB_GE_GENERIC
|
|
#define XCB_GE_GENERIC 35
|
|
#endif
|
|
|
|
Q_DECLARE_METATYPE(KSharedConfigPtr)
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
Options *options;
|
|
|
|
Atoms *atoms;
|
|
|
|
int screen_number = -1;
|
|
|
|
int Application::crashes = 0;
|
|
|
|
void Application::setX11ScreenNumber(int screenNumber)
|
|
{
|
|
screen_number = screenNumber;
|
|
}
|
|
|
|
int Application::x11ScreenNumber()
|
|
{
|
|
return screen_number;
|
|
}
|
|
|
|
Application::Application(Application::OperationMode mode, int &argc, char **argv)
|
|
: QApplication(argc, argv)
|
|
, m_eventFilter(new XcbEventFilter())
|
|
, m_configLock(false)
|
|
, m_config(KSharedConfig::openConfig(QStringLiteral("kwinrc")))
|
|
, m_kxkbConfig()
|
|
, m_operationMode(mode)
|
|
{
|
|
qRegisterMetaType<Options::WindowOperation>("Options::WindowOperation");
|
|
qRegisterMetaType<KWin::EffectWindow *>();
|
|
qRegisterMetaType<KWaylandServer::SurfaceInterface *>("KWaylandServer::SurfaceInterface *");
|
|
qRegisterMetaType<KSharedConfigPtr>();
|
|
qRegisterMetaType<std::chrono::nanoseconds>();
|
|
}
|
|
|
|
void Application::setConfigLock(bool lock)
|
|
{
|
|
m_configLock = lock;
|
|
}
|
|
|
|
Application::OperationMode Application::operationMode() const
|
|
{
|
|
return m_operationMode;
|
|
}
|
|
|
|
void Application::setOperationMode(OperationMode mode)
|
|
{
|
|
m_operationMode = mode;
|
|
}
|
|
|
|
bool Application::shouldUseWaylandForCompositing() const
|
|
{
|
|
return m_operationMode == OperationModeWaylandOnly || m_operationMode == OperationModeXwayland;
|
|
}
|
|
|
|
void Application::start()
|
|
{
|
|
// Prevent KWin from synchronously autostarting kactivitymanagerd
|
|
// Indeed, kactivitymanagerd being a QApplication it will depend
|
|
// on KWin startup... this is unsatisfactory dependency wise,
|
|
// and it turns out that it leads to a deadlock in the Wayland case
|
|
setProperty("org.kde.KActivities.core.disableAutostart", true);
|
|
|
|
setQuitOnLastWindowClosed(false);
|
|
|
|
if (!m_config->isImmutable() && m_configLock) {
|
|
// TODO: This shouldn't be necessary
|
|
// config->setReadOnly( true );
|
|
m_config->reparseConfiguration();
|
|
}
|
|
if (!m_kxkbConfig) {
|
|
m_kxkbConfig = KSharedConfig::openConfig(QStringLiteral("kxkbrc"), KConfig::NoGlobals);
|
|
}
|
|
|
|
performStartup();
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
delete options;
|
|
destroyPlugins();
|
|
destroyColorManager();
|
|
destroyAtoms();
|
|
destroyPlatform();
|
|
}
|
|
|
|
void Application::notifyStarted()
|
|
{
|
|
Q_EMIT started();
|
|
}
|
|
|
|
void Application::destroyAtoms()
|
|
{
|
|
delete atoms;
|
|
atoms = nullptr;
|
|
}
|
|
|
|
void Application::destroyPlatform()
|
|
{
|
|
delete m_platform;
|
|
m_platform = nullptr;
|
|
}
|
|
|
|
void Application::resetCrashesCount()
|
|
{
|
|
crashes = 0;
|
|
}
|
|
|
|
void Application::setCrashCount(int count)
|
|
{
|
|
crashes = count;
|
|
}
|
|
|
|
bool Application::wasCrash()
|
|
{
|
|
return crashes > 0;
|
|
}
|
|
|
|
void Application::createAboutData()
|
|
{
|
|
KAboutData aboutData(QStringLiteral(KWIN_NAME), // The program name used internally
|
|
i18n("KWin"), // A displayable program name string
|
|
QStringLiteral(KWIN_VERSION_STRING), // The program version string
|
|
i18n("KDE window manager"), // Short description of what the app does
|
|
KAboutLicense::GPL, // The license this code is released under
|
|
i18n("(c) 1999-2019, The KDE Developers")); // Copyright Statement
|
|
|
|
aboutData.addAuthor(i18n("Matthias Ettrich"), QString(), QStringLiteral("ettrich@kde.org"));
|
|
aboutData.addAuthor(i18n("Cristian Tibirna"), QString(), QStringLiteral("tibirna@kde.org"));
|
|
aboutData.addAuthor(i18n("Daniel M. Duley"), QString(), QStringLiteral("mosfet@kde.org"));
|
|
aboutData.addAuthor(i18n("Luboš Luňák"), QString(), QStringLiteral("l.lunak@kde.org"));
|
|
aboutData.addAuthor(i18n("Martin Flöser"), QString(), QStringLiteral("mgraesslin@kde.org"));
|
|
aboutData.addAuthor(i18n("David Edmundson"), QStringLiteral("Maintainer"), QStringLiteral("davidedmundson@kde.org"));
|
|
aboutData.addAuthor(i18n("Roman Gilg"), QStringLiteral("Maintainer"), QStringLiteral("subdiff@gmail.com"));
|
|
aboutData.addAuthor(i18n("Vlad Zahorodnii"), QStringLiteral("Maintainer"), QStringLiteral("vlad.zahorodnii@kde.org"));
|
|
KAboutData::setApplicationData(aboutData);
|
|
}
|
|
|
|
static const QString s_lockOption = QStringLiteral("lock");
|
|
static const QString s_crashesOption = QStringLiteral("crashes");
|
|
|
|
void Application::setupCommandLine(QCommandLineParser *parser)
|
|
{
|
|
QCommandLineOption lockOption(s_lockOption, i18n("Disable configuration options"));
|
|
QCommandLineOption crashesOption(s_crashesOption, i18n("Indicate that KWin has recently crashed n times"), QStringLiteral("n"));
|
|
|
|
parser->setApplicationDescription(i18n("KDE window manager"));
|
|
parser->addOption(lockOption);
|
|
parser->addOption(crashesOption);
|
|
KAboutData::applicationData().setupCommandLine(parser);
|
|
}
|
|
|
|
void Application::processCommandLine(QCommandLineParser *parser)
|
|
{
|
|
KAboutData aboutData = KAboutData::applicationData();
|
|
aboutData.processCommandLine(parser);
|
|
setConfigLock(parser->isSet(s_lockOption));
|
|
Application::setCrashCount(parser->value(s_crashesOption).toInt());
|
|
}
|
|
|
|
void Application::setupTranslator()
|
|
{
|
|
QTranslator *qtTranslator = new QTranslator(qApp);
|
|
qtTranslator->load("qt_" + QLocale::system().name(),
|
|
QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
|
installTranslator(qtTranslator);
|
|
}
|
|
|
|
void Application::setupMalloc()
|
|
{
|
|
#ifdef M_TRIM_THRESHOLD
|
|
// Prevent fragmentation of the heap by malloc (glibc).
|
|
//
|
|
// The default threshold is 128*1024, which can result in a large memory usage
|
|
// due to fragmentation especially if we use the raster graphicssystem. On the
|
|
// otherside if the threshold is too low, free() starts to permanently ask the kernel
|
|
// about shrinking the heap.
|
|
const int pagesize = sysconf(_SC_PAGESIZE);
|
|
mallopt(M_TRIM_THRESHOLD, 5 * pagesize);
|
|
#endif // M_TRIM_THRESHOLD
|
|
}
|
|
|
|
void Application::setupLocalizedString()
|
|
{
|
|
KLocalizedString::setApplicationDomain("kwin");
|
|
}
|
|
|
|
void Application::createWorkspace()
|
|
{
|
|
// we want all QQuickWindows with an alpha buffer, do here as Workspace might create QQuickWindows
|
|
QQuickWindow::setDefaultAlphaBuffer(true);
|
|
|
|
// This tries to detect compositing options and can use GLX. GLX problems
|
|
// (X errors) shouldn't cause kwin to abort, so this is out of the
|
|
// critical startup section where x errors cause kwin to abort.
|
|
|
|
// create workspace.
|
|
(void)new Workspace();
|
|
Q_EMIT workspaceCreated();
|
|
}
|
|
|
|
void Application::createInput()
|
|
{
|
|
#if KWIN_BUILD_SCREENLOCKER
|
|
ScreenLockerWatcher::create(this);
|
|
#endif
|
|
auto input = InputRedirection::create(this);
|
|
input->init();
|
|
m_platform->createPlatformCursor(this);
|
|
}
|
|
|
|
void Application::createAtoms()
|
|
{
|
|
atoms = new Atoms;
|
|
}
|
|
|
|
void Application::createOptions()
|
|
{
|
|
options = new Options;
|
|
}
|
|
|
|
void Application::createPlugins()
|
|
{
|
|
PluginManager::create(this);
|
|
}
|
|
|
|
void Application::createColorManager()
|
|
{
|
|
ColorManager::create(this);
|
|
}
|
|
|
|
void Application::createInputMethod()
|
|
{
|
|
InputMethod::create(this);
|
|
}
|
|
|
|
void Application::installNativeX11EventFilter()
|
|
{
|
|
installNativeEventFilter(m_eventFilter.data());
|
|
}
|
|
|
|
void Application::removeNativeX11EventFilter()
|
|
{
|
|
removeNativeEventFilter(m_eventFilter.data());
|
|
}
|
|
|
|
void Application::destroyInput()
|
|
{
|
|
delete InputRedirection::self();
|
|
}
|
|
|
|
void Application::destroyWorkspace()
|
|
{
|
|
delete Workspace::self();
|
|
}
|
|
|
|
void Application::destroyCompositor()
|
|
{
|
|
delete Compositor::self();
|
|
}
|
|
|
|
void Application::destroyPlugins()
|
|
{
|
|
delete PluginManager::self();
|
|
}
|
|
|
|
void Application::destroyColorManager()
|
|
{
|
|
delete ColorManager::self();
|
|
}
|
|
|
|
void Application::destroyInputMethod()
|
|
{
|
|
delete InputMethod::self();
|
|
}
|
|
|
|
void Application::registerEventFilter(X11EventFilter *filter)
|
|
{
|
|
if (filter->isGenericEvent()) {
|
|
m_genericEventFilters.append(new X11EventFilterContainer(filter));
|
|
} else {
|
|
m_eventFilters.append(new X11EventFilterContainer(filter));
|
|
}
|
|
}
|
|
|
|
static X11EventFilterContainer *takeEventFilter(X11EventFilter *eventFilter,
|
|
QList<QPointer<X11EventFilterContainer>> &list)
|
|
{
|
|
for (int i = 0; i < list.count(); ++i) {
|
|
X11EventFilterContainer *container = list.at(i);
|
|
if (container->filter() == eventFilter) {
|
|
return list.takeAt(i);
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void Application::setXwaylandScale(qreal scale)
|
|
{
|
|
if (scale != m_xwaylandScale) {
|
|
m_xwaylandScale = scale;
|
|
Q_EMIT xwaylandScaleChanged();
|
|
}
|
|
}
|
|
|
|
void Application::unregisterEventFilter(X11EventFilter *filter)
|
|
{
|
|
X11EventFilterContainer *container = nullptr;
|
|
if (filter->isGenericEvent()) {
|
|
container = takeEventFilter(filter, m_genericEventFilters);
|
|
} else {
|
|
container = takeEventFilter(filter, m_eventFilters);
|
|
}
|
|
delete container;
|
|
}
|
|
|
|
bool Application::dispatchEvent(xcb_generic_event_t *event)
|
|
{
|
|
static const QVector<QByteArray> s_xcbEerrors({QByteArrayLiteral("Success"),
|
|
QByteArrayLiteral("BadRequest"),
|
|
QByteArrayLiteral("BadValue"),
|
|
QByteArrayLiteral("BadWindow"),
|
|
QByteArrayLiteral("BadPixmap"),
|
|
QByteArrayLiteral("BadAtom"),
|
|
QByteArrayLiteral("BadCursor"),
|
|
QByteArrayLiteral("BadFont"),
|
|
QByteArrayLiteral("BadMatch"),
|
|
QByteArrayLiteral("BadDrawable"),
|
|
QByteArrayLiteral("BadAccess"),
|
|
QByteArrayLiteral("BadAlloc"),
|
|
QByteArrayLiteral("BadColor"),
|
|
QByteArrayLiteral("BadGC"),
|
|
QByteArrayLiteral("BadIDChoice"),
|
|
QByteArrayLiteral("BadName"),
|
|
QByteArrayLiteral("BadLength"),
|
|
QByteArrayLiteral("BadImplementation"),
|
|
QByteArrayLiteral("Unknown")});
|
|
|
|
kwinApp()->updateX11Time(event);
|
|
|
|
const uint8_t x11EventType = event->response_type & ~0x80;
|
|
if (!x11EventType) {
|
|
// let's check whether it's an error from one of the extensions KWin uses
|
|
xcb_generic_error_t *error = reinterpret_cast<xcb_generic_error_t *>(event);
|
|
const QVector<Xcb::ExtensionData> extensions = Xcb::Extensions::self()->extensions();
|
|
for (const auto &extension : extensions) {
|
|
if (error->major_code == extension.majorOpcode) {
|
|
QByteArray errorName;
|
|
if (error->error_code < s_xcbEerrors.size()) {
|
|
errorName = s_xcbEerrors.at(error->error_code);
|
|
} else if (error->error_code >= extension.errorBase) {
|
|
const int index = error->error_code - extension.errorBase;
|
|
if (index >= 0 && index < extension.errorCodes.size()) {
|
|
errorName = extension.errorCodes.at(index);
|
|
}
|
|
}
|
|
if (errorName.isEmpty()) {
|
|
errorName = QByteArrayLiteral("Unknown");
|
|
}
|
|
qCWarning(KWIN_CORE, "XCB error: %d (%s), sequence: %d, resource id: %d, major code: %d (%s), minor code: %d (%s)",
|
|
int(error->error_code), errorName.constData(),
|
|
int(error->sequence), int(error->resource_id),
|
|
int(error->major_code), extension.name.constData(),
|
|
int(error->minor_code),
|
|
extension.opCodes.size() > error->minor_code ? extension.opCodes.at(error->minor_code).constData() : "Unknown");
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (x11EventType == XCB_GE_GENERIC) {
|
|
xcb_ge_generic_event_t *ge = reinterpret_cast<xcb_ge_generic_event_t *>(event);
|
|
|
|
// We need to make a shadow copy of the event filter list because an activated event
|
|
// filter may mutate it by removing or installing another event filter.
|
|
const auto eventFilters = m_genericEventFilters;
|
|
|
|
for (X11EventFilterContainer *container : eventFilters) {
|
|
if (!container) {
|
|
continue;
|
|
}
|
|
X11EventFilter *filter = container->filter();
|
|
if (filter->extension() == ge->extension && filter->genericEventTypes().contains(ge->event_type) && filter->event(event)) {
|
|
return true;
|
|
}
|
|
}
|
|
} else {
|
|
// We need to make a shadow copy of the event filter list because an activated event
|
|
// filter may mutate it by removing or installing another event filter.
|
|
const auto eventFilters = m_eventFilters;
|
|
|
|
for (X11EventFilterContainer *container : eventFilters) {
|
|
if (!container) {
|
|
continue;
|
|
}
|
|
X11EventFilter *filter = container->filter();
|
|
if (filter->eventTypes().contains(x11EventType) && filter->event(event)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (workspace()) {
|
|
return workspace()->workspaceEvent(event);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void Application::updateX11Time(xcb_generic_event_t *event)
|
|
{
|
|
xcb_timestamp_t time = XCB_TIME_CURRENT_TIME;
|
|
const uint8_t eventType = event->response_type & ~0x80;
|
|
switch (eventType) {
|
|
case XCB_KEY_PRESS:
|
|
case XCB_KEY_RELEASE:
|
|
time = reinterpret_cast<xcb_key_press_event_t *>(event)->time;
|
|
break;
|
|
case XCB_BUTTON_PRESS:
|
|
case XCB_BUTTON_RELEASE:
|
|
time = reinterpret_cast<xcb_button_press_event_t *>(event)->time;
|
|
break;
|
|
case XCB_MOTION_NOTIFY:
|
|
time = reinterpret_cast<xcb_motion_notify_event_t *>(event)->time;
|
|
break;
|
|
case XCB_ENTER_NOTIFY:
|
|
case XCB_LEAVE_NOTIFY:
|
|
time = reinterpret_cast<xcb_enter_notify_event_t *>(event)->time;
|
|
break;
|
|
case XCB_FOCUS_IN:
|
|
case XCB_FOCUS_OUT:
|
|
case XCB_KEYMAP_NOTIFY:
|
|
case XCB_EXPOSE:
|
|
case XCB_GRAPHICS_EXPOSURE:
|
|
case XCB_NO_EXPOSURE:
|
|
case XCB_VISIBILITY_NOTIFY:
|
|
case XCB_CREATE_NOTIFY:
|
|
case XCB_DESTROY_NOTIFY:
|
|
case XCB_UNMAP_NOTIFY:
|
|
case XCB_MAP_NOTIFY:
|
|
case XCB_MAP_REQUEST:
|
|
case XCB_REPARENT_NOTIFY:
|
|
case XCB_CONFIGURE_NOTIFY:
|
|
case XCB_CONFIGURE_REQUEST:
|
|
case XCB_GRAVITY_NOTIFY:
|
|
case XCB_RESIZE_REQUEST:
|
|
case XCB_CIRCULATE_NOTIFY:
|
|
case XCB_CIRCULATE_REQUEST:
|
|
// no timestamp
|
|
return;
|
|
case XCB_PROPERTY_NOTIFY:
|
|
time = reinterpret_cast<xcb_property_notify_event_t *>(event)->time;
|
|
break;
|
|
case XCB_SELECTION_CLEAR:
|
|
time = reinterpret_cast<xcb_selection_clear_event_t *>(event)->time;
|
|
break;
|
|
case XCB_SELECTION_REQUEST:
|
|
time = reinterpret_cast<xcb_selection_request_event_t *>(event)->time;
|
|
break;
|
|
case XCB_SELECTION_NOTIFY:
|
|
time = reinterpret_cast<xcb_selection_notify_event_t *>(event)->time;
|
|
break;
|
|
case XCB_COLORMAP_NOTIFY:
|
|
case XCB_CLIENT_MESSAGE:
|
|
case XCB_MAPPING_NOTIFY:
|
|
case XCB_GE_GENERIC:
|
|
// no timestamp
|
|
return;
|
|
default:
|
|
// extension handling
|
|
if (Xcb::Extensions::self()) {
|
|
if (eventType == Xcb::Extensions::self()->shapeNotifyEvent()) {
|
|
time = reinterpret_cast<xcb_shape_notify_event_t *>(event)->server_time;
|
|
}
|
|
if (eventType == Xcb::Extensions::self()->damageNotifyEvent()) {
|
|
time = reinterpret_cast<xcb_damage_notify_event_t *>(event)->timestamp;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
setX11Time(time);
|
|
}
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
bool XcbEventFilter::nativeEventFilter(const QByteArray &eventType, void *message, long int *result)
|
|
#else
|
|
bool XcbEventFilter::nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result)
|
|
#endif
|
|
{
|
|
Q_UNUSED(result)
|
|
if (eventType == "xcb_generic_event_t") {
|
|
return kwinApp()->dispatchEvent(static_cast<xcb_generic_event_t *>(message));
|
|
}
|
|
return false;
|
|
}
|
|
|
|
QProcessEnvironment Application::processStartupEnvironment() const
|
|
{
|
|
return m_processEnvironment;
|
|
}
|
|
|
|
void Application::setProcessStartupEnvironment(const QProcessEnvironment &environment)
|
|
{
|
|
m_processEnvironment = environment;
|
|
}
|
|
|
|
void Application::initPlatform(const KPluginMetaData &plugin)
|
|
{
|
|
Q_ASSERT(!m_platform);
|
|
QPluginLoader loader(plugin.fileName());
|
|
m_platform = qobject_cast<Platform *>(loader.instance());
|
|
if (m_platform) {
|
|
m_platform->setParent(this);
|
|
Q_EMIT platformCreated();
|
|
} else {
|
|
qCWarning(KWIN_CORE) << "Could not create plugin" << plugin.name() << "error:" << loader.errorString();
|
|
}
|
|
}
|
|
|
|
} // namespace
|