summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h
diff options
context:
space:
mode:
authorWim Vriend <facetracknoir@gmail.com>2012-04-27 09:50:19 +0000
committerWim Vriend <facetracknoir@gmail.com>2012-04-27 09:50:19 +0000
commit289ee4f5352edab1fa31311ef6a800e7d9998acd (patch)
treeb655579fbf7238ef1c9dda99d9b41298e54a2e75 /FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h
parent8c1c7aca57b2eb12cbc5766e62fcb1d18d5a7e6a (diff)
Changed filling protocol Listbox to match the Filter and Tracker.
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@109 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h')
-rw-r--r--FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h b/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h
index 90518394..29b16e4b 100644
--- a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h
+++ b/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h
@@ -59,6 +59,10 @@ public:
void sendHeadposeToGame( T6DOF *headpose );
void getNameFromGame( char *dest ); // Take care dest can handle up to 100 chars...
+ void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("fake TrackIR"); };
+ void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("FTIR"); };
+ void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("TrackIR V4 protocol"); };
+
private:
bool FTIRCreateMapping(HANDLE handle);
void FTIRDestroyMapping();
@@ -98,6 +102,11 @@ public:
void Release(); // Member functions which are accessible from outside the DLL
void Initialize(QWidget *parent);
+ void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("fake TrackIR"); };
+ void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("FTIR"); };
+ void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("TrackIR V4 protocol"); };
+ void getIcon(QIcon *icon) { *icon = QIcon(":/images/TrackIR.ico"); };
+
private:
Ui::UICFTIRControls ui;
void loadSettings();