2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef MAIN_H
|
|
|
|
#define MAIN_H
|
|
|
|
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KSelectionWatcher>
|
2014-03-18 13:37:01 +00:00
|
|
|
#include <KSelectionOwner>
|
2013-07-26 05:52:56 +00:00
|
|
|
// Qt
|
2013-08-28 12:10:51 +00:00
|
|
|
#include <QApplication>
|
2013-07-26 05:52:56 +00:00
|
|
|
#include <QAbstractNativeEventFilter>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2013-07-26 05:52:56 +00:00
|
|
|
class XcbEventFilter : public QAbstractNativeEventFilter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool nativeEventFilter(const QByteArray &eventType, void *message, long int *result) override;
|
|
|
|
};
|
|
|
|
|
2013-04-30 07:15:29 +00:00
|
|
|
class KWinSelectionOwner
|
|
|
|
: public KSelectionOwner
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit KWinSelectionOwner(int screen);
|
|
|
|
protected:
|
2013-07-23 04:43:09 +00:00
|
|
|
virtual bool genericReply(xcb_atom_t target, xcb_atom_t property, xcb_window_t requestor);
|
|
|
|
virtual void replyTargets(xcb_atom_t property, xcb_window_t requestor);
|
2013-04-30 07:15:29 +00:00
|
|
|
virtual void getAtoms();
|
|
|
|
private:
|
2013-08-28 11:52:21 +00:00
|
|
|
xcb_atom_t make_selection_atom(int screen);
|
|
|
|
static xcb_atom_t xa_version;
|
2013-04-30 07:15:29 +00:00
|
|
|
};
|
|
|
|
|
2013-08-28 12:10:51 +00:00
|
|
|
class Application : public QApplication
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
2013-06-25 06:52:08 +00:00
|
|
|
/**
|
|
|
|
* @brief This enum provides the various operation modes of KWin depending on the available
|
|
|
|
* Windowing Systems at startup. For example whether KWin only talks to X11 or also to a Wayland
|
|
|
|
* Compositor.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
enum OperationMode {
|
|
|
|
/**
|
|
|
|
* @brief KWin uses only X11 for managing windows and compositing
|
|
|
|
*/
|
|
|
|
OperationModeX11,
|
|
|
|
/**
|
|
|
|
* @brief KWin uses X11 for managing windows, but renders to a Wayland compositor.
|
|
|
|
* Input is received from the Wayland compositor.
|
|
|
|
*/
|
|
|
|
OperationModeWaylandAndX11
|
|
|
|
};
|
2013-08-28 12:10:51 +00:00
|
|
|
Application(int &argc, char **argv);
|
2011-01-30 14:34:42 +00:00
|
|
|
~Application();
|
|
|
|
|
2013-08-28 12:10:51 +00:00
|
|
|
void setReplace(bool replace);
|
|
|
|
void setConfigLock(bool lock);
|
|
|
|
|
|
|
|
void start();
|
2013-06-25 06:52:08 +00:00
|
|
|
/**
|
|
|
|
* @brief The operation mode used by KWin.
|
|
|
|
*
|
|
|
|
* @return OperationMode
|
|
|
|
*/
|
|
|
|
OperationMode operationMode() const;
|
|
|
|
void setOperationMode(OperationMode mode);
|
2013-06-25 07:53:45 +00:00
|
|
|
bool shouldUseWaylandForCompositing() const;
|
2013-06-25 08:39:13 +00:00
|
|
|
bool requiresCompositing() const;
|
2013-08-28 12:10:51 +00:00
|
|
|
|
|
|
|
static void setCrashCount(int count);
|
|
|
|
static bool wasCrash();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
protected:
|
|
|
|
bool notify(QObject* o, QEvent* e);
|
|
|
|
static void crashHandler(int signal);
|
|
|
|
|
2013-07-22 14:07:39 +00:00
|
|
|
private Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void lostSelection();
|
|
|
|
void resetCrashesCount();
|
|
|
|
|
|
|
|
private:
|
2013-09-10 10:26:18 +00:00
|
|
|
void crashChecking();
|
2014-03-09 11:37:21 +00:00
|
|
|
QScopedPointer<KWinSelectionOwner> owner;
|
2013-07-26 05:52:56 +00:00
|
|
|
QScopedPointer<XcbEventFilter> m_eventFilter;
|
2013-08-28 12:10:51 +00:00
|
|
|
bool m_replace;
|
|
|
|
bool m_configLock;
|
2013-06-25 06:52:08 +00:00
|
|
|
OperationMode m_operationMode;
|
2011-01-30 14:34:42 +00:00
|
|
|
static int crashes;
|
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2014-01-09 13:47:57 +00:00
|
|
|
inline static Application *kwinApp()
|
|
|
|
{
|
|
|
|
return static_cast<Application*>(QCoreApplication::instance());
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|