summaryrefslogtreecommitdiffhomepage
path: root/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp
blob: f02dac0695e59649b8b97a3af9f342c63464ebfd (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();
	close();
}

void VJoyControls::doCancel() {
    close();
}

void VJoyControls::save() {
}