79 lines
2 KiB
C++
79 lines
2 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef KWIN_MAIN_WAYLAND_H
|
|
#define KWIN_MAIN_WAYLAND_H
|
|
#include "main.h"
|
|
#include <KConfigWatcher>
|
|
#include <QProcessEnvironment>
|
|
#include <QTimer>
|
|
|
|
namespace KWin
|
|
{
|
|
namespace Xwl
|
|
{
|
|
class Xwayland;
|
|
}
|
|
|
|
class ApplicationWayland : public ApplicationWaylandAbstract
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ApplicationWayland(int &argc, char **argv);
|
|
~ApplicationWayland() override;
|
|
|
|
void setStartXwayland(bool start) {
|
|
m_startXWayland = start;
|
|
}
|
|
void setApplicationsToStart(const QStringList &applications) {
|
|
m_applicationsToStart = applications;
|
|
}
|
|
void setInputMethodServerToStart(const QString &inputMethodServer) {
|
|
m_inputMethodServerToStart = inputMethodServer;
|
|
}
|
|
void setProcessStartupEnvironment(const QProcessEnvironment &environment) override {
|
|
m_environment = environment;
|
|
}
|
|
void setSessionArgument(const QString &session) {
|
|
m_sessionArgument = session;
|
|
}
|
|
|
|
QProcessEnvironment processStartupEnvironment() const override {
|
|
return m_environment;
|
|
}
|
|
|
|
protected:
|
|
void performStartup() override;
|
|
|
|
private:
|
|
void createBackend();
|
|
void continueStartupWithScreens();
|
|
void continueStartupWithScene();
|
|
void finalizeStartup();
|
|
void startSession() override;
|
|
void startInputMethod(const QString &executable);
|
|
void refreshSettings(const KConfigGroup &group, const QByteArrayList &names);
|
|
void stopInputMethod();
|
|
|
|
bool m_startXWayland = false;
|
|
QStringList m_applicationsToStart;
|
|
QString m_inputMethodServerToStart;
|
|
QProcessEnvironment m_environment;
|
|
QString m_sessionArgument;
|
|
|
|
QProcess *m_inputMethodProcess = nullptr;
|
|
QTimer m_inputMethodCrashTimer;
|
|
uint m_inputMethodCrashes = 0;
|
|
|
|
Xwl::Xwayland *m_xwayland = nullptr;
|
|
KConfigWatcher::Ptr m_settingsWatcher;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|