diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2012-04-27 09:50:19 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2012-04-27 09:50:19 +0000 |
commit | 289ee4f5352edab1fa31311ef6a800e7d9998acd (patch) | |
tree | b655579fbf7238ef1c9dda99d9b41298e54a2e75 /FaceTrackNoIR/FaceTrackNoIR.h | |
parent | 8c1c7aca57b2eb12cbc5766e62fcb1d18d5a7e6a (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 'FaceTrackNoIR/FaceTrackNoIR.h')
-rw-r--r-- | FaceTrackNoIR/FaceTrackNoIR.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/FaceTrackNoIR/FaceTrackNoIR.h b/FaceTrackNoIR/FaceTrackNoIR.h index 1bc2d7b7..ace9c666 100644 --- a/FaceTrackNoIR/FaceTrackNoIR.h +++ b/FaceTrackNoIR/FaceTrackNoIR.h @@ -78,6 +78,7 @@ public: void updateSettings(); // Update the settings (let Tracker read INI-file).
QFrame *getVideoWidget(); // Get a pointer to the video-widget, to use in the DLL
+ QString getCurrentProtocolName(); // Get the name of the selected protocol
QString getCurrentFilterName(); // Get the name of the selected filter
QString getCurrentTrackerName(); // Get the name of the selected face-tracker
@@ -87,6 +88,7 @@ private: QTimer *timMinimizeFTN; // Timer to Auto-minimize
QTimer *timUpdateHeadPose; // Timer to display headpose
QStringList iniFileList; // List of INI-files, that are present in the Settings folder
+ QStringList protocolFileList; // List of Protocol-DLL-files, that are present in the program-folder
QStringList filterFileList; // List of Filter-DLL-files, that are present in the program-folder
QStringList trackerFileList; // List of Tracker-DLL-files, that are present in the program-folder
@@ -137,11 +139,12 @@ private: void openurl_donation();
void about();
- void setIcon(int index);
+// void setIcon(int index);
void iconActivated(QSystemTrayIcon::ActivationReason reason);
- void trackingSourceSelected(int index);
void profileSelected(int index);
+ void protocolSelected(int index);
void filterSelected(int index);
+ void trackingSourceSelected(int index);
void showVideoWidget();
void showHeadPoseWidget();
|