Initial commit

This commit is contained in:
Alukym
2023-05-12 20:16:10 +08:00
commit a8433f06ee
1167 changed files with 1036549 additions and 0 deletions

29
VMProtect/remotecontrol.h Normal file
View File

@ -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