2019-05-20 08:10:30 +02:00
|
|
|
/*
|
|
|
|
|
This file is part of the KDE project
|
|
|
|
|
|
2024-08-08 01:08:31 +02:00
|
|
|
SPDX-FileCopyrightText: 2018-2019 Jan Grulich <jgrulich@redhat.com>
|
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2019-05-20 08:10:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef KRFB_EVENTS_XDP_XDPEVENTSPLUGIN_H
|
|
|
|
|
#define KRFB_EVENTS_XDP_XDPEVENTSPLUGIN_H
|
|
|
|
|
|
|
|
|
|
#include "eventsplugin.h"
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
class EventHandler;
|
|
|
|
|
|
|
|
|
|
class XdpEventsPlugin : public EventsPlugin
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
XdpEventsPlugin(QObject *parent, const QVariantList &args);
|
|
|
|
|
|
|
|
|
|
EventHandler *eventHandler() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Q_DISABLE_COPY(XdpEventsPlugin)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Header guard
|
|
|
|
|
|