From 289ee4f5352edab1fa31311ef6a800e7d9998acd Mon Sep 17 00:00:00 2001 From: Wim Vriend Date: Fri, 27 Apr 2012 09:50:19 +0000 Subject: 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 --- FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.h | 9 ++++ FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.vcproj | 46 +++++++++++++++++++++ FTNoIR_Protocol_PPJOY/Protocol.qrc | 5 +++ FTNoIR_Protocol_PPJOY/images/PPJoy.ico | Bin 0 -> 5166 bytes 4 files changed, 60 insertions(+) create mode 100644 FTNoIR_Protocol_PPJOY/Protocol.qrc create mode 100644 FTNoIR_Protocol_PPJOY/images/PPJoy.ico (limited to 'FTNoIR_Protocol_PPJOY') diff --git a/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.h b/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.h index d1cfa05d..97f064db 100644 --- a/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.h +++ b/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.h @@ -72,6 +72,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("PPJoy Virtual Joystick"); }; + void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("PPJoy"); }; + void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("PPJoy virtual joystick protocol"); }; + private: HANDLE h; JOYSTICK_STATE JoyState; @@ -103,6 +107,11 @@ public: void Release(); // Member functions which are accessible from outside the DLL void Initialize(QWidget *parent); + void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("PPJoy Virtual Joystick"); }; + void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("PPJoy"); }; + void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("PPJoy virtual joystick protocol"); }; + void getIcon(QIcon *icon) { *icon = QIcon(":/images/PPJoy.ico"); }; + private: Ui::UICPPJOYControls ui; void loadSettings(); diff --git a/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.vcproj b/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.vcproj index 222cb2ab..e8332f65 100644 --- a/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.vcproj +++ b/FTNoIR_Protocol_PPJOY/FTNoIR_Protocol_PPJOY.vcproj @@ -254,6 +254,32 @@ UniqueIdentifier="{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}" ParseFiles="false" > + + + + + + + + + + + + + + + + diff --git a/FTNoIR_Protocol_PPJOY/Protocol.qrc b/FTNoIR_Protocol_PPJOY/Protocol.qrc new file mode 100644 index 00000000..bc9884e2 --- /dev/null +++ b/FTNoIR_Protocol_PPJOY/Protocol.qrc @@ -0,0 +1,5 @@ + + + images/PPJoy.ico + + diff --git a/FTNoIR_Protocol_PPJOY/images/PPJoy.ico b/FTNoIR_Protocol_PPJOY/images/PPJoy.ico new file mode 100644 index 00000000..f94f8d65 Binary files /dev/null and b/FTNoIR_Protocol_PPJOY/images/PPJoy.ico differ -- cgit v1.2.3