blob: bb9ffceaa67db7a83bc11ab91f8c625a718aaae4 (
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
|
#include "tobii-eyex.hpp"
tobii_eyex_dialog::tobii_eyex_dialog()
{
ui.setupUi(this);
connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &tobii_eyex_dialog::do_ok);
connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &tobii_eyex_dialog::do_cancel);
ui.tracking_mode->addItem("Relative", tobii_relative);
ui.tracking_mode->addItem("Absolute", tobii_absolute);
tie_setting(s.mode, ui.tracking_mode);
}
void tobii_eyex_dialog::do_ok()
{
s.b->save();
rs.b->save();
close();
}
void tobii_eyex_dialog::do_cancel()
{
close();
}
|