blob: 0b4dd74e1993a0a21f37d370a38c50efe60cfd46 (
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
|
#include "ftnoir_tracker_udp.h"
#include "facetracknoir/plugin-support.h"
TrackerControls::TrackerControls()
{
ui.setupUi( this );
connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
tie_setting(s.port, ui.spinPortNumber);
}
void TrackerControls::doOK() {
s.b->save();
this->close();
}
void TrackerControls::doCancel() {
s.b->reload();
this->close();
}
extern "C" OPENTRACK_EXPORT ITrackerDialog* GetDialog( )
{
return new TrackerControls;
}
|