1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include "ftnoir_tracker_rift.h"
#include "facetracknoir/global-settings.h"
TrackerControls::TrackerControls() :
QWidget()
{
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()));
tie_setting(s.bEnableYaw, ui.chkEnableYaw);
tie_setting(s.bEnablePitch, ui.chkEnablePitch);
tie_setting(s.bEnableRoll, ui.chkEnableRoll);
tie_setting(s.constant_drift, ui.constantDrift);
tie_setting(s.deadzone, ui.deadzone);
tie_setting(s.persistence, ui.persistence);
tie_setting(s.useYawSpring, ui.yawSpring);
}
void TrackerControls::Initialize(QWidget *parent) {
QPoint offsetpos(100, 100);
if (parent) {
this->move(parent->pos() + offsetpos);
}
show();
}
void TrackerControls::doOK() {
s.b->save();
this->close();
}
void TrackerControls::doCancel() {
//
// Ask if changed Settings should be saved
//
if (s.b->modifiedp()) {
int ret = QMessageBox::question ( this, "Settings have changed", "Do you want to save the settings?", QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
switch (ret) {
case QMessageBox::Save:
s.b->save();
this->close();
break;
case QMessageBox::Discard:
s.b->revert();
this->close();
break;
case QMessageBox::Cancel:
default:
break;
}
}
else {
this->close();
}
}
extern "C" FTNOIR_TRACKER_BASE_EXPORT ITrackerDialog* CALLING_CONVENTION GetDialog( )
{
return new TrackerControls;
}
|