From 8dc90ae27c24aec1851215f2cc28ee24eff01ea5 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Tue, 29 Dec 2015 23:54:24 +0800 Subject: Master Spark. (WTF) --- qmppresetselect.hpp | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 qmppresetselect.hpp (limited to 'qmppresetselect.hpp') diff --git a/qmppresetselect.hpp b/qmppresetselect.hpp new file mode 100644 index 0000000..51d0f21 --- /dev/null +++ b/qmppresetselect.hpp @@ -0,0 +1,36 @@ +#ifndef QMPPRESETSELECT_H +#define QMPPRESETSELECT_H + +#include +#include + +namespace Ui { + class qmppresetselect; +} + +class qmppresetselect:public QDialog +{ + Q_OBJECT + + public: + explicit qmppresetselect(QWidget *parent = 0); + ~qmppresetselect(); + void showEvent(QShowEvent* e); + void setupWindow(int chid); + + private slots: + void on_pbCancel_clicked(); + + void on_pbOk_clicked(); + + void on_lwBankSelect_currentRowChanged(); + + void on_lwPresetSelect_itemDoubleClicked(); + + private: + Ui::qmppresetselect *ui; + char presets[129][128][24]; + int ch; +}; + +#endif // QMPPRESETSELECT_H -- cgit v1.2.3