2017-06-15 23:20:48 +02:00
|
|
|
/* This file is part of the KDE project
|
2024-08-08 01:08:31 +02:00
|
|
|
SPDX-FileCopyrightText: Alexey Min <alexey.min@gmail.com>
|
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-15 23:20:48 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef KRFB_FRAMEBUFFER_XCB_XCBFRAMEBUFFERPLUGIN_H
|
|
|
|
|
#define KRFB_FRAMEBUFFER_XCB_XCBFRAMEBUFFERPLUGIN_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "framebufferplugin.h"
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FrameBuffer;
|
|
|
|
|
|
|
|
|
|
class XCBFrameBufferPlugin: public FrameBufferPlugin
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
XCBFrameBufferPlugin(QObject *parent, const QVariantList &args);
|
|
|
|
|
|
2022-08-03 22:00:16 +02:00
|
|
|
FrameBuffer *frameBuffer(const QVariantMap &args) override;
|
2017-06-15 23:20:48 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Q_DISABLE_COPY(XCBFrameBufferPlugin)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Header guard
|