blob: 807542e1e5b4b67eb9c08b82943e63cdb5600137 (
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
|
#include "tobii-eyex-dialog.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("Snap", tobii_snap);
ui.tracking_mode->addItem("Accumulative", tobii_acc);
tie_setting(s.mode, ui.tracking_mode);
}
void tobii_eyex_dialog::do_ok()
{
s.b->save();
close();
}
void tobii_eyex_dialog::do_cancel()
{
close();
}
|