summaryrefslogtreecommitdiffhomepage
path: root/tracker-hydra/ftnoir_tracker_hydra_dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-hydra/ftnoir_tracker_hydra_dialog.cpp')
-rw-r--r--tracker-hydra/ftnoir_tracker_hydra_dialog.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tracker-hydra/ftnoir_tracker_hydra_dialog.cpp b/tracker-hydra/ftnoir_tracker_hydra_dialog.cpp
new file mode 100644
index 00000000..2c23ee46
--- /dev/null
+++ b/tracker-hydra/ftnoir_tracker_hydra_dialog.cpp
@@ -0,0 +1,22 @@
+#include "ftnoir_tracker_hydra.h"
+#include "opentrack/plugin-api.hpp"
+
+TrackerControls::TrackerControls()
+{
+ ui.setupUi( this );
+
+ // Connect Qt signals to member-functions
+ connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
+ connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
+}
+
+void TrackerControls::doOK() {
+ s.b->save();
+ this->close();
+}
+
+void TrackerControls::doCancel() {
+ s.b->reload();
+ close();
+}
+