You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.7 KiB
77 lines
1.7 KiB
/* |
|
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QVector> |
|
#include <QObject> |
|
#include <QSharedPointer> |
|
#include <optional> |
|
|
|
struct zkde_screencast_unstable_v1; |
|
|
|
namespace KWayland |
|
{ |
|
namespace Client |
|
{ |
|
class PlasmaWindow; |
|
class Registry; |
|
class Output; |
|
} |
|
} |
|
|
|
class ScreencastingPrivate; |
|
class ScreencastingSourcePrivate; |
|
class ScreencastingStreamPrivate; |
|
class ScreencastingStream : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
ScreencastingStream(QObject* parent); |
|
~ScreencastingStream() override; |
|
|
|
quint32 nodeId() const; |
|
|
|
Q_SIGNALS: |
|
void created(quint32 nodeid); |
|
void failed(const QString &error); |
|
void closed(); |
|
|
|
private: |
|
friend class Screencasting; |
|
QScopedPointer<ScreencastingStreamPrivate> d; |
|
}; |
|
|
|
class Screencasting : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit Screencasting(QObject *parent = nullptr); |
|
explicit Screencasting(KWayland::Client::Registry *registry, int id, int version, QObject *parent = nullptr); |
|
~Screencasting() override; |
|
|
|
enum CursorMode { |
|
Hidden = 1, |
|
Embedded = 2, |
|
Metadata = 4, |
|
}; |
|
Q_ENUM(CursorMode); |
|
|
|
ScreencastingStream *createOutputStream(KWayland::Client::Output *output, CursorMode mode); |
|
ScreencastingStream* createWindowStream(KWayland::Client::PlasmaWindow* window, CursorMode mode); |
|
ScreencastingStream* createWindowStream(const QString &uuid, CursorMode mode); |
|
|
|
void setup(zkde_screencast_unstable_v1* screencasting); |
|
void destroy(); |
|
|
|
Q_SIGNALS: |
|
void initialized(); |
|
void removed(); |
|
void sourcesChanged(); |
|
|
|
private: |
|
QScopedPointer<ScreencastingPrivate> d; |
|
};
|
|
|