2020-07-22 17:29:23 +00:00
|
|
|
/*
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2018-2020 Red Hat Inc
|
|
|
|
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
SPDX-FileContributor: Jan Grulich <jgrulich@redhat.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2020-07-22 17:29:23 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <KWaylandServer/screencast_interface.h>
|
|
|
|
|
2020-07-28 13:37:04 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2020-07-22 17:29:23 +00:00
|
|
|
class PipeWireStream;
|
|
|
|
|
2020-07-27 11:07:57 +00:00
|
|
|
class ScreencastManager : public QObject
|
2020-07-22 17:29:23 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-07-27 11:07:57 +00:00
|
|
|
|
2020-07-22 17:29:23 +00:00
|
|
|
public:
|
2020-07-27 11:07:57 +00:00
|
|
|
explicit ScreencastManager(QObject *parent = nullptr);
|
2020-07-22 17:29:23 +00:00
|
|
|
|
|
|
|
void streamWindow(KWaylandServer::ScreencastStreamInterface *stream, const QString &winid);
|
|
|
|
void streamOutput(KWaylandServer::ScreencastStreamInterface *stream,
|
2020-07-27 11:07:57 +00:00
|
|
|
::wl_resource *outputResource,
|
|
|
|
KWaylandServer::ScreencastInterface::CursorMode mode);
|
2020-07-22 17:29:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void integrateStreams(KWaylandServer::ScreencastStreamInterface *waylandStream, PipeWireStream *pipewireStream);
|
2020-07-27 11:05:52 +00:00
|
|
|
|
|
|
|
KWaylandServer::ScreencastInterface *m_screencast;
|
2020-07-22 17:29:23 +00:00
|
|
|
};
|
|
|
|
|
2020-07-28 13:37:04 +00:00
|
|
|
} // namespace KWin
|