summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-05-13 11:30:43 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-05-13 11:30:43 +0200
commit5ecfc48d057a78b193b0f4f9c67e18240ad4e42c (patch)
treed6a04ed4f52ae2a7bbb00f71a53052afa5a8f3f1 /src/mainwindow.h
parentf92d78241228f6a9c0b649c8addcc7ae82071167 (diff)
New MainWindow layout mockup.
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 7671494..49ff13f 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -28,10 +28,10 @@
#include <QMainWindow>
#include <QCloseEvent>
+#include <QDockWidget>
#include <QTabWidget>
#include "project.h"
-#include "instrumentwindow.h"
class Settings;
@@ -63,5 +63,7 @@ private:
Project project;
bool project_dirty{false};
- InstrumentWindow instrument_window;
+ QDockWidget* instruments_dock;
+ QDockWidget* channels_dock;
+ QTabWidget* tab_widget;
};