summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-05-06 13:32:24 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-05-06 13:32:24 +0200
commit8daea9831c1710a4f009a1837d86a5ed78d1ccb1 (patch)
tree0f0fc8c5e778b525a61d8c7f6d5c289c717e4de4 /src/mainwindow.h
parenteeef75b159369a6441641c2c14c217c29b02a3ff (diff)
Created Project dialog and project skeleton class for storing project related data (which will be serialised/deserialised using XML soon).
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index b580101..b6c7e98 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -45,6 +45,7 @@
#include "player.h"
#include "zoomslider.h"
#include "canvaswidget.h"
+#include "project.h"
class Settings;
@@ -67,6 +68,8 @@ public:
~MainWindow();
public slots:
+ void newProject();
+ void projectChanged();
void doExport();
void loadFile(QString filename);
void playSamples();
@@ -114,4 +117,5 @@ private:
Player player;
Settings& settings;
+ Project project;
};