summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-05-20 10:40:23 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-05-20 10:43:21 +0200
commitaada18db0ae8611e8e0ae67e0096d1f9e1d44d48 (patch)
treed50d09a758b2194bd29fdf6bad237b41054938cd /src/mainwindow.h
parent4bb39eaad8dcff57c297aaf9542113d2eaed9067 (diff)
Add some placeholder icons for instrument and channel lists.
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index c5fcc9a..fcff476 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -45,7 +45,13 @@ public:
~MainWindow();
public slots:
+ void addInstrument();
+ void removeInstrument();
void itemDoubleClicked(QListWidgetItem *item);
+
+ void addChannel();
+ void removeChannel();
+
void updateWindowTitle();
void newProject();
@@ -70,5 +76,6 @@ private:
QDockWidget* instruments_dock;
QListWidget* instrument_list;
QDockWidget* channels_dock;
+ QListWidget* channel_list;
QTabWidget* tab_widget;
};