blob: 08c655581ec5ef9869850dd6c1345690f19047ae (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | #include "ftnoir_protocol_vjoy.h"
#include "opentrack/plugin-api.hpp"
VJoyControls::VJoyControls()
{
	ui.setupUi( this );
	connect(ui.btnOK, SIGNAL(clicked()), this, SLOT(doOK()));
	connect(ui.btnCancel, SIGNAL(clicked()), this, SLOT(doCancel()));
}
void VJoyControls::doOK() {
	save();
	this->close();
}
void VJoyControls::doCancel() {
    this->close();
}
void VJoyControls::save() {
}
 |