diff options
author | Chris Xiong <chirs241097@gmail.com> | 2015-12-28 22:02:45 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2015-12-28 22:02:45 +0800 |
commit | 40ea6580aaf3d19aa77f43551185a55013d216d9 (patch) | |
tree | 3ac49b1fbe75e22664b57e796ba47a2b55e35b59 /qmpchannelswindow.hpp | |
parent | a17d580f623dfc3a6eb33c540203798d6200a5fc (diff) | |
download | QMidiPlayer-40ea6580aaf3d19aa77f43551185a55013d216d9.tar.xz |
Last Remote.(WTF)
Diffstat (limited to 'qmpchannelswindow.hpp')
-rw-r--r-- | qmpchannelswindow.hpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/qmpchannelswindow.hpp b/qmpchannelswindow.hpp new file mode 100644 index 0000000..4bf3ad2 --- /dev/null +++ b/qmpchannelswindow.hpp @@ -0,0 +1,33 @@ +#ifndef QMPCHANNELSWINDOW_H +#define QMPCHANNELSWINDOW_H + +#include <QDialog> +#include <QCloseEvent> + +namespace Ui { + class qmpchannelswindow; +} + +class qmpchannelswindow : public QDialog +{ + Q_OBJECT + + public: + explicit qmpchannelswindow(QWidget *parent = 0); + ~qmpchannelswindow(); + void closeEvent(QCloseEvent *event); + signals: + void dialogClosing(); + public slots: + void channelWindowsUpdate(); + void channelMSChanged(); + private slots: + void on_pbUnmute_clicked(); + + void on_pbUnsolo_clicked(); + + private: + Ui::qmpchannelswindow *ui; +}; + +#endif // QMPCHANNELSWINDOW_H |