diff options
Diffstat (limited to 'VMProtect/remotecontrol.h')
-rw-r--r-- | VMProtect/remotecontrol.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/VMProtect/remotecontrol.h b/VMProtect/remotecontrol.h new file mode 100644 index 0000000..633a6cd --- /dev/null +++ b/VMProtect/remotecontrol.h @@ -0,0 +1,29 @@ +#ifndef REMOTECONTROL_H +#define REMOTECONTROL_H + +#include <QtCore/QObject> +#include <QtCore/QString> +#include <QtCore/QUrl> + +class HelpEngineWrapper; +class MainWindow; + +class RemoteControl : public QObject +{ + Q_OBJECT + +public: + RemoteControl(QMainWindow *mainWindow); + +signals: + void handleNavigateToKeywordCommand(const QString &arg); + +private slots: + void receivedData(); + void handleCommandString(const QString &cmdString); + +private: + void splitInputString(const QString &input, QString &cmd, QString &arg); +}; + +#endif |