summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-10-19 13:39:50 +0200
committerStanislaw Halik <sthalik@misaki.pl>2014-10-19 13:39:50 +0200
commita8ffbb76f3e3bbca547fccf5135323e06cae9d2a (patch)
treecd77a5302cb4ead5995a2a86d5b5b6324ebf43ff /ftnoir_protocol_mouse/ftnoir_protocol_mouse.h
parent0f0d663c6263a59e2cb14f555a00b39b19c134e7 (diff)
update modules to refactored API
Diffstat (limited to 'ftnoir_protocol_mouse/ftnoir_protocol_mouse.h')
-rw-r--r--ftnoir_protocol_mouse/ftnoir_protocol_mouse.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h b/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h
index 8f1f3ff1..55a37e12 100644
--- a/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h
+++ b/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h
@@ -60,9 +60,9 @@ class FTNoIR_Protocol : public IProtocol
{
public:
FTNoIR_Protocol() {}
- bool checkServerInstallationOK();
- void sendHeadposeToGame( const double *headpose);
- QString getGameName() {
+ bool correct();
+ void pose( const double *headpose);
+ QString game_name() {
return "Mouse tracker";
}
void reload();
@@ -70,15 +70,15 @@ private:
struct settings s;
};
-class MOUSEControls: public QWidget, public IProtocolDialog
+class MOUSEControls: public IProtocolDialog
{
Q_OBJECT
public:
MOUSEControls();
- void registerProtocol(IProtocol *protocol) {
+ void register_protocol(IProtocol *protocol) {
_proto = (FTNoIR_Protocol *) protocol;
}
- void unRegisterProtocol() {
+ void unregister_protocol() {
_proto = NULL;
}
private:
@@ -93,10 +93,8 @@ private slots:
class FTNoIR_ProtocolDll : public Metadata
{
public:
- void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("Mouse Look"); }
- void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("Mouse Look"); }
- void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("Mouse Look protocol"); }
- void getIcon(QIcon *icon) { *icon = QIcon(":/images/mouse.png"); }
+ QString name() { return QString("mouse emulation"); }
+ QIcon icon() { return QIcon(":/images/mouse.png"); }
};