2019-07-21 23:49:07 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2019 Weixuan XIAO <veyx.shaw@gmail.com>
|
2019-07-21 23:49:07 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2019-07-21 23:49:07 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MACOSREMOTEINPUT_H
|
|
|
|
#define MACOSREMOTEINPUT_H
|
|
|
|
|
|
|
|
#include "abstractremoteinput.h"
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class MacOSRemoteInput : public AbstractRemoteInput
|
2019-07-21 23:49:07 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit MacOSRemoteInput(QObject *parent);
|
2019-07-21 23:49:07 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool handlePacket(const NetworkPacket &np) override;
|
2019-07-21 23:49:07 +01:00
|
|
|
bool hasKeyboardSupport() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|