blob: 633a6cd6e61ba89f15b46338bfcf57c14540b353 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|