summaryrefslogtreecommitdiff
path: root/qmpsettingswindow.hpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2016-01-01 23:54:06 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2016-01-01 23:54:06 +0800
commitd418712c981d9854fa6429d65773368ca63b8dac (patch)
tree48eb1f25753a1734a3d7cf5d8303e7936c4844f3 /qmpsettingswindow.hpp
parent3db127ce64eadb54568e218124744a1de713667e (diff)
downloadQMidiPlayer-d418712c981d9854fa6429d65773368ca63b8dac.tar.xz
Strawberry Crisis. (WTF)
Diffstat (limited to 'qmpsettingswindow.hpp')
-rw-r--r--qmpsettingswindow.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/qmpsettingswindow.hpp b/qmpsettingswindow.hpp
new file mode 100644
index 0000000..0b5f886
--- /dev/null
+++ b/qmpsettingswindow.hpp
@@ -0,0 +1,31 @@
+#ifndef QMPSETTINGSWINDOW_H
+#define QMPSETTINGSWINDOW_H
+
+#include <QDialog>
+#include <QCloseEvent>
+
+namespace Ui {
+ class qmpSettingsWindow;
+}
+
+class qmpSettingsWindow:public QDialog
+{
+ Q_OBJECT
+
+ public:
+ explicit qmpSettingsWindow(QWidget *parent=0);
+ ~qmpSettingsWindow();
+ void closeEvent(QCloseEvent *event);
+ signals:
+ void dialogClosing();
+
+ private slots:
+ void on_buttonBox_accepted();
+
+ void on_buttonBox_rejected();
+
+ private:
+ Ui::qmpSettingsWindow *ui;
+};
+
+#endif // QMPSETTINGSWINDOW_H