diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2012-10-18 16:25:18 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2012-10-18 16:25:18 +0000 |
commit | 5c5c710d03016618a971d7ff20477a90893fbc48 (patch) | |
tree | 6e743999b526591111dd05be390e23be3ab5ecc2 /FaceTrackNoIR/FaceTrackNoIR.h | |
parent | 288cf615db9efd5307d0ecee3e3380431d6c2faf (diff) |
Started work on incorporating two headtracker at once.
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@189 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FaceTrackNoIR/FaceTrackNoIR.h')
-rw-r--r-- | FaceTrackNoIR/FaceTrackNoIR.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/FaceTrackNoIR/FaceTrackNoIR.h b/FaceTrackNoIR/FaceTrackNoIR.h index a7992bbb..52ea8418 100644 --- a/FaceTrackNoIR/FaceTrackNoIR.h +++ b/FaceTrackNoIR/FaceTrackNoIR.h @@ -72,6 +72,7 @@ public: 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
+ QString getSecondTrackerName(); // Get the name of the second face-tracker ("None" if no selection)
private:
Ui::FaceTrackNoIRClass ui;
@@ -84,6 +85,7 @@ private: QStringList trackerFileList; // List of Tracker-DLL-files, that are present in the program-folder
ITrackerDialogPtr pTrackerDialog; // Pointer to Tracker dialog instance (in DLL)
+ ITrackerDialogPtr pSecondTrackerDialog; // Pointer to the second Tracker dialog instance (in DLL)
IProtocolDialogPtr pProtocolDialog; // Pointer to Protocol dialog instance (in DLL)
IFilterDialogPtr pFilterDialog; // Pointer to Filter dialog instance (in DLL)
@@ -139,7 +141,9 @@ private: void showVideoWidget();
void showHeadPoseWidget();
- void showEngineControls();
+ void showTrackerSettings();
+ void showSecondTrackerSettings();
+
void showServerControls();
void showFilterControls();
void showPreferences();
|