diff options
Diffstat (limited to 'gui/wizard.h')
| -rw-r--r-- | gui/wizard.h | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/gui/wizard.h b/gui/wizard.h new file mode 100644 index 00000000..9d359172 --- /dev/null +++ b/gui/wizard.h @@ -0,0 +1,21 @@ +#pragma once + +#include "opentrack-compat/options.hpp" +#include "opentrack/main-settings.hpp" +#include "opentrack/mappings.hpp" +#include "ui_trackhat-wizard.h" +#include <QObject> +#include <QWizard> + +class Wizard : public QWizard +{ +    Q_OBJECT +    Ui_wizard ui; +public: +    Wizard(); + +    enum Model { Cap = 0, ClipRight = 1, ClipLeft = 2 }; +    enum { ClipRightX = 135, ClipLeftX = -135 }; +private slots: +    void set_data(); +}; | 
