2014-08-26 14:07:39 +00:00
|
|
|
/********************************************************************
|
2014-09-17 13:57:56 +00:00
|
|
|
Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2014-08-26 14:07:39 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-09-17 13:57:56 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2014-08-26 14:07:39 +00:00
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_WAYLAND_SERVER_DISPLAY_H
|
|
|
|
#define KWIN_WAYLAND_SERVER_DISPLAY_H
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
#include <QObject>
|
|
|
|
|
2014-09-17 13:10:43 +00:00
|
|
|
#include <kwaylandserver_export.h>
|
|
|
|
|
2014-08-26 14:07:39 +00:00
|
|
|
struct wl_display;
|
|
|
|
struct wl_event_loop;
|
|
|
|
|
2014-09-17 14:10:38 +00:00
|
|
|
namespace KWayland
|
2014-08-26 14:07:39 +00:00
|
|
|
{
|
2014-09-17 14:10:38 +00:00
|
|
|
namespace Server
|
2014-08-26 14:07:39 +00:00
|
|
|
{
|
|
|
|
|
2014-08-28 07:52:35 +00:00
|
|
|
class CompositorInterface;
|
2014-08-26 14:07:39 +00:00
|
|
|
class OutputInterface;
|
2014-09-02 07:34:31 +00:00
|
|
|
class SeatInterface;
|
2014-08-29 09:42:57 +00:00
|
|
|
class ShellInterface;
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:10:43 +00:00
|
|
|
class KWAYLANDSERVER_EXPORT Display : public QObject
|
2014-08-26 14:07:39 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString socketName READ socketName WRITE setSocketName NOTIFY socketNameChanged)
|
|
|
|
Q_PROPERTY(bool running READ isRunning NOTIFY runningChanged)
|
|
|
|
public:
|
|
|
|
explicit Display(QObject *parent = nullptr);
|
|
|
|
virtual ~Display();
|
|
|
|
|
|
|
|
void setSocketName(const QString &name);
|
|
|
|
QString socketName() const;
|
|
|
|
|
2014-08-29 09:42:57 +00:00
|
|
|
quint32 serial();
|
|
|
|
quint32 nextSerial();
|
|
|
|
|
2014-08-26 14:07:39 +00:00
|
|
|
void start();
|
|
|
|
void terminate();
|
|
|
|
|
|
|
|
operator wl_display*() {
|
|
|
|
return m_display;
|
|
|
|
}
|
|
|
|
operator wl_display*() const {
|
|
|
|
return m_display;
|
|
|
|
}
|
|
|
|
bool isRunning() const {
|
|
|
|
return m_running;
|
|
|
|
}
|
|
|
|
|
|
|
|
OutputInterface *createOutput(QObject *parent = nullptr);
|
|
|
|
void removeOutput(OutputInterface *output);
|
2014-09-03 18:03:13 +00:00
|
|
|
const QList<OutputInterface*> &outputs() const {
|
2014-08-26 14:07:39 +00:00
|
|
|
return m_outputs;
|
|
|
|
}
|
|
|
|
|
2014-08-28 07:52:35 +00:00
|
|
|
CompositorInterface *createCompositor(QObject *parent = nullptr);
|
2014-08-28 12:22:53 +00:00
|
|
|
void createShm();
|
2014-08-29 09:42:57 +00:00
|
|
|
ShellInterface *createShell(QObject *parent = nullptr);
|
2014-09-02 07:34:31 +00:00
|
|
|
SeatInterface *createSeat(QObject *parent = nullptr);
|
2014-08-28 07:52:35 +00:00
|
|
|
|
2014-08-26 14:07:39 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void socketNameChanged(const QString&);
|
|
|
|
void runningChanged(bool);
|
|
|
|
void aboutToTerminate();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void flush();
|
|
|
|
void setRunning(bool running);
|
|
|
|
wl_display *m_display;
|
|
|
|
wl_event_loop *m_loop;
|
|
|
|
QString m_socketName;
|
|
|
|
bool m_running;
|
|
|
|
QList<OutputInterface*> m_outputs;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|