blob: 267101bef54868cd317a3dcb8b299933360bb654 (
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
36
37
38
39
40
41
|
#include "ftnoir_tracker_libevdev.h"
#include "facetracknoir/plugin-support.h"
#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-joystick"});
for (QString dev : devices)
{
dev.replace(QRegularExpression("^usb-"), "");
dev.replace(QRegularExpression("-event-.[^-]*"), "");
dev.replace("_", " ");
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;
}
|