diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-30 10:09:58 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-30 10:09:58 +0100 |
commit | 36273c6dfdd9a0a22e396b354213eb492886afaf (patch) | |
tree | 23152837b6f861d9e0ca667141e8b34cf90398a6 /proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp | |
parent | 3bdd6411060dce095528239acc1812d4e7180371 (diff) | |
parent | 48c30a3d75d18e87e39c18cb52961bb37ab6055e (diff) |
Merge branch 'unstable' into trackhat
Diffstat (limited to 'proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp')
-rw-r--r-- | proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp b/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp new file mode 100644 index 00000000..08c65558 --- /dev/null +++ b/proto-vjoy/ftnoir_protocol_vjoy_dialog.cpp @@ -0,0 +1,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() { +} + |