blob: 2439890be43b840a2ee5814c0f6a4505d540064e (
plain)
| 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
 | #include "ftnoir_tracker_rift.h"
#include "opentrack/plugin-api.hpp"
TrackerControls::TrackerControls()
{
    ui.setupUi( this );
    connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
    connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
    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::doOK() {
    s.b->save();
	this->close();
}
void TrackerControls::doCancel() {
    s.b->reload();
    close();
}
extern "C" OPENTRACK_EXPORT ITrackerDialog* GetDialog()
{
    return new TrackerControls;
}
 |