1d36164230
This automatizes the generation of logging categories so a kdeconnect-kde.categories is generated and installed to /usr/share/qlogging-categories5/ so kdebugsettings can use it. Also, sets the default logging level to Warning. So now the logs of users won't be filled with debug messages but they can modify the configuration easily with kdebugsettings.
70 lines
2.6 KiB
C++
70 lines
2.6 KiB
C++
/**
|
|
* Copyright 2017 Holger Kaelberer <holger.k@elberer.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License or (at your option) version 3 or any later version
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
* defined in Section 14 of version 3 of the license.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef REMOTEKEYBOARDPLUGIN_H
|
|
#define REMOTEKEYBOARDPLUGIN_H
|
|
|
|
#include <core/kdeconnectplugin.h>
|
|
#include <QDBusInterface>
|
|
#include <QVariantMap>
|
|
|
|
struct FakeKey;
|
|
|
|
#define PACKET_TYPE_MOUSEPAD_REQUEST QLatin1String("kdeconnect.mousepad.request")
|
|
#define PACKET_TYPE_MOUSEPAD_ECHO QLatin1String("kdeconnect.mousepad.echo")
|
|
#define PACKET_TYPE_MOUSEPAD_KEYBOARDSTATE QLatin1String("kdeconnect.mousepad.keyboardstate")
|
|
|
|
class RemoteKeyboardPlugin
|
|
: public KdeConnectPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.remotekeyboard")
|
|
Q_PROPERTY(bool remoteState READ remoteState NOTIFY remoteStateChanged)
|
|
|
|
private:
|
|
bool m_remoteState;
|
|
|
|
public:
|
|
explicit RemoteKeyboardPlugin(QObject* parent, const QVariantList& args);
|
|
~RemoteKeyboardPlugin() override;
|
|
|
|
bool receivePacket(const NetworkPacket& np) override;
|
|
QString dbusPath() const override;
|
|
void connected() override;
|
|
|
|
bool remoteState() const {
|
|
return m_remoteState;
|
|
}
|
|
|
|
Q_SCRIPTABLE void sendKeyPress(const QString& key, int specialKey = 0,
|
|
bool shift = false, bool ctrl = false,
|
|
bool alt = false, bool sendAck = true) const;
|
|
Q_SCRIPTABLE void sendQKeyEvent(const QVariantMap& keyEvent,
|
|
bool sendAck = true) const;
|
|
Q_SCRIPTABLE int translateQtKey(int qtKey) const;
|
|
|
|
Q_SIGNALS:
|
|
Q_SCRIPTABLE void keyPressReceived(const QString& key, int specialKey = 0,
|
|
bool shift = false, bool ctrl = false,
|
|
bool alt = false);
|
|
Q_SCRIPTABLE void remoteStateChanged(bool state);
|
|
};
|
|
|
|
#endif
|