diff options
author | deva <deva> | 2009-11-30 13:35:52 +0000 |
---|---|---|
committer | deva <deva> | 2009-11-30 13:35:52 +0000 |
commit | 68f1b54aace152707f2bb51e07f76ebd879becb1 (patch) | |
tree | d4a6e4798fb35d839641c2c7f43243b7251e04b7 /dgedit/mainwindow.h | |
parent | df80c1f82140e57965f38d0a50ad2a843cf60ff5 (diff) |
Samples sorter added.
Diffstat (limited to 'dgedit/mainwindow.h')
-rw-r--r-- | dgedit/mainwindow.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dgedit/mainwindow.h b/dgedit/mainwindow.h index 246a40f..42a9f18 100644 --- a/dgedit/mainwindow.h +++ b/dgedit/mainwindow.h @@ -33,6 +33,7 @@ #include "canvas.h" #include "audioextractor.h" +#include "samplesorter.h" class MainWindow : public QMainWindow { Q_OBJECT @@ -49,7 +50,14 @@ public slots: void doExport(); void loadFile(); +protected: + void closeEvent(QCloseEvent*); + private: + void loadSettings(); + void saveSettings(); + + SampleSorter *sorter; Canvas *canvas; AudioExtractor *extractor; QScrollBar *yoffset; |