summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2013-09-14 18:12:56 +0200
committerStanislaw Halik <sthalik@misaki.pl>2013-09-14 18:12:56 +0200
commitfc83b218cb5297071ce154f60c815588bbbeb769 (patch)
tree0577be165cdad92d553c519efd20a9e19ed8e15c /facetracknoir
parent3ae661f563d916ba779e26880f470d50a94ed83b (diff)
Remove unused functions
Diffstat (limited to 'facetracknoir')
-rw-r--r--facetracknoir/facetracknoir.cpp32
-rw-r--r--facetracknoir/facetracknoir.h7
2 files changed, 0 insertions, 39 deletions
diff --git a/facetracknoir/facetracknoir.cpp b/facetracknoir/facetracknoir.cpp
index 087de81c..16691c5d 100644
--- a/facetracknoir/facetracknoir.cpp
+++ b/facetracknoir/facetracknoir.cpp
@@ -139,14 +139,10 @@ void FaceTrackNoIR::setupFaceTrackNoIR() {
//Load the tracker-settings, from the INI-file
loadSettings();
- connect(ui.iconcomboProtocol, SIGNAL(currentIndexChanged(int)), this, SLOT(protocolSelected(int)));
connect(ui.iconcomboProfile, SIGNAL(currentIndexChanged(int)), this, SLOT(profileSelected(int)));
- connect(ui.iconcomboTrackerSource, SIGNAL(currentIndexChanged(int)), this, SLOT(trackingSourceSelected(int)));
- connect(ui.iconcomboFilter, SIGNAL(currentIndexChanged(int)), this, SLOT(filterSelected(int)));
//Setup the timer for showing the headpose.
connect(&timUpdateHeadPose, SIGNAL(timeout()), this, SLOT(showHeadPose()));
- settingsDirty = false;
}
/** destructor stops the engine and quits the faceapi **/
@@ -309,8 +305,6 @@ void FaceTrackNoIR::save() {
iniFile.setValue ( "DLL", filter == NULL ? "" : filter->filename);
}
iniFile.endGroup ();
-
- settingsDirty = false;
}
//
@@ -486,7 +480,6 @@ void FaceTrackNoIR::loadSettings() {
((CurveConfigurationDialog*)_curve_config)->loadSettings();
- settingsDirty = false;
looping = false;
}
@@ -713,7 +706,6 @@ void FaceTrackNoIR::stopTracker( ) {
void FaceTrackNoIR::setInvertAxis(Axis axis, int invert ) {
if (tracker)
tracker->setInvertAxis (axis, (invert != 0)?true:false );
- settingsDirty = true;
}
/** Show the headpose in the widget (triggered by timer) **/
@@ -960,22 +952,6 @@ void FaceTrackNoIR::createIconGroupBox()
}
//
-// Handle changes of the Protocol selection
-//
-void FaceTrackNoIR::protocolSelected(int index)
-{
- settingsDirty = true;
-}
-
-//
-// Handle changes of the Tracking Source selection
-//
-void FaceTrackNoIR::trackingSourceSelected(int index)
-{
- settingsDirty = true;
-}
-
-//
// Handle changes of the Profile selection
//
void FaceTrackNoIR::profileSelected(int index)
@@ -996,14 +972,6 @@ void FaceTrackNoIR::profileSelected(int index)
loadSettings();
}
-//
-// Handle changes of the Filter selection
-//
-void FaceTrackNoIR::filterSelected(int index)
-{
- settingsDirty = true;
-}
-
void FaceTrackNoIR::bindKeyboardShortcuts()
{
QSettings settings("opentrack"); // Registry settings (in HK_USER)
diff --git a/facetracknoir/facetracknoir.h b/facetracknoir/facetracknoir.h
index b1a1cb42..ba9538f6 100644
--- a/facetracknoir/facetracknoir.h
+++ b/facetracknoir/facetracknoir.h
@@ -122,10 +122,6 @@ private:
QWidget *_curve_config;
void createIconGroupBox();
-// void createMessageGroupBox();
-
- /** helper **/
- bool settingsDirty;
void GetCameraNameDX();
void loadSettings();
@@ -145,9 +141,6 @@ private slots:
void exit();
// void setIcon(int index);
void profileSelected(int index);
- void protocolSelected(int index);
- void filterSelected(int index);
- void trackingSourceSelected(int index);
void showVideoWidget();
void showHeadPoseWidget();