aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/mainwindow.h
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-13 18:37:51 +0100
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-13 18:37:51 +0100
commit93c5ade08250e419b7dbc3177db6fba93163fd34 (patch)
treeb28d4f1bb4c36edbd60bf634d0d71a6d880b592d /qtmips_gui/mainwindow.h
parent9f1ddc2b38469d5028aec5ba7b68131d711f2622 (diff)
downloadqtmips-93c5ade08250e419b7dbc3177db6fba93163fd34.tar.gz
qtmips-93c5ade08250e419b7dbc3177db6fba93163fd34.tar.bz2
qtmips-93c5ade08250e419b7dbc3177db6fba93163fd34.zip
Include simple serial port terminal and prepare empty peripheral dock.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_gui/mainwindow.h')
-rw-r--r--qtmips_gui/mainwindow.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/qtmips_gui/mainwindow.h b/qtmips_gui/mainwindow.h
index 48883e5..61e6896 100644
--- a/qtmips_gui/mainwindow.h
+++ b/qtmips_gui/mainwindow.h
@@ -45,6 +45,8 @@
#include "programdock.h"
#include "memorydock.h"
#include "cachedock.h"
+#include "peripheralsdock.h"
+#include "terminaldock.h"
#include "qtmipsmachine.h"
#include "machineconfig.h"
@@ -70,6 +72,8 @@ public slots:
void show_memory();
void show_cache_data();
void show_cache_program();
+ void show_peripherals();
+ void show_terminal();
// Actions - help menu
void about_qtmips();
void about_qt();
@@ -95,6 +99,8 @@ private:
ProgramDock *program;
MemoryDock *memory;
CacheDock *cache_program, *cache_data;
+ PeripheralsDock *peripherals;
+ TerminalDock *terminal;
QActionGroup *speed_group;