diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2012-09-13 17:06:22 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2012-09-13 17:06:22 +0000 |
commit | c26901009a23c3b7df5197b3b326cb14d12e0d7f (patch) | |
tree | 34646ae48ad4e287de8109efcc57d1389f6d6fed /FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp | |
parent | 4b27a934f41d5d978b51ba6e94f2440ca403cb9c (diff) |
Class TrackerDll added, to get info about the Tracker
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@128 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp')
-rw-r--r-- | FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp b/FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp index a29f5c28..3c080898 100644 --- a/FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp +++ b/FTNoIR_Tracker_FD/ftnoir_tracker_facedetect_dialog.cpp @@ -72,12 +72,6 @@ QWidget() QObject::connect(ui.redetect_ms, SIGNAL(valueChanged(int)), this, SLOT(doSetRedetectMs(int)));
QObject::connect(ui.cameraId, SIGNAL(valueChanged(int)), this, SLOT(doSetCameraId(int)));
QObject::connect(ui.videoWidget, SIGNAL(toggled(bool)), this, SLOT(doSetVideoWidget(bool)));
-
- //populate the description strings
- trackerFullName = "faceDetect V1.0.0";
- trackerShortName = "faceDetect";
- trackerDescription = "Stans' faceDetect V1.0.0";
-
}
void TrackerControls::save() {
@@ -171,28 +165,6 @@ void TrackerControls::doCancel() { }
}
-void TrackerControls::getFullName(QString *strToBeFilled)
-{
- *strToBeFilled = trackerFullName;
-};
-
-
-void TrackerControls::getShortName(QString *strToBeFilled)
-{
- *strToBeFilled = trackerShortName;
-};
-
-
-void TrackerControls::getDescription(QString *strToBeFilled)
-{
- *strToBeFilled = trackerDescription;
-};
-
-void TrackerControls::getIcon(QIcon *icon)
-{
- *icon = QIcon(":/images/FaceDetect.ico");
-};
-
////////////////////////////////////////////////////////////////////////////////
// Factory function that creates instances if the Tracker-settings dialog object.
|