From 1edb87b13a58cbb87cbf99ee30cc5ee7eb15003a Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 27 Apr 2013 12:48:22 +0200 Subject: Implement game name in the UI, lost previously due to refactoring. --- ftnoir_protocol_mouse/ftnoir_protocol_mouse.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'ftnoir_protocol_mouse') diff --git a/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h b/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h index d4ad94d5..c33865ef 100644 --- a/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h +++ b/ftnoir_protocol_mouse/ftnoir_protocol_mouse.h @@ -93,7 +93,9 @@ private: long scale2AnalogLimits( float x, float min_x, float max_x ); void loadSettings(); - + QString getGameName() { + return "Mouse tracker"; + } }; // Widget that has controls for FTNoIR protocol client-settings. @@ -110,10 +112,10 @@ public: void Initialize(QWidget *parent); void registerProtocol(IProtocol *protocol) { theProtocol = (FTNoIR_Protocol *) protocol; // Accept the pointer to the Protocol - }; + } void unRegisterProtocol() { theProtocol = NULL; // Reset the pointer - }; + } private: Ui::UICMOUSEControls ui; @@ -127,7 +129,7 @@ private: private slots: void doOK(); void doCancel(); - void settingChanged( int setting ) { settingsDirty = true; }; + void settingChanged( int setting ) { settingsDirty = true; } }; //******************************************************************************************************* @@ -139,11 +141,11 @@ public: FTNoIR_ProtocolDll(); ~FTNoIR_ProtocolDll(); - 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 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"); }; + void getIcon(QIcon *icon) { *icon = QIcon(":/images/mouse.png"); } }; -- cgit v1.2.3