blob: 02f48639f5b92befa0b6db303d7fc2d8ba89b389 (
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
31
32
33
34
35
|
#include "ftnoir_tracker_libevdev.h"
#include "opentrack/plugin-api.hpp"
#include <QDir>
TrackerControls::TrackerControls()
{
ui.setupUi(this);
connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
ui.comboBox->clear();
QDir dir("/dev/input/by-id");
auto devices = dir.entryList(QStringList { "usb-?*-event-?*"});
for (QString dev : devices)
ui.comboBox->addItem(dev);
tie_setting(s.device_name, ui.comboBox);
}
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;
}
|