1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#include "mainwindow.h"
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) {
settings = new QSettings("CTU", "QtMips");
coreview = nullptr;
ui = new Ui::MainWindow();
ui->setupUi(this);
setWindowTitle("QtMips");
// Create/prepare other widgets
ndialog = new NewDialog(this, settings);
cache_content = new CacheContentDock(this);
cache_content->hide();
cache_statictics = new CacheStatisticsDock(this);
cache_statictics->hide();
registers = new RegistersDock(this);
registers->hide();
// Connect signals from menu
QObject::connect(ui->actionExit, SIGNAL(triggered(bool)), this, SLOT(close()));
QObject::connect(ui->actionNew, SIGNAL(triggered(bool)), this, SLOT(new_machine()));
QObject::connect(ui->actionCache, SIGNAL(triggered(bool)), this, SLOT(show_cache_content()));
QObject::connect(ui->actionCache_statistics, SIGNAL(triggered(bool)), this, SLOT(show_cache_statictics()));
QObject::connect(ui->actionRegisters, SIGNAL(triggered(bool)), this, SLOT(show_registers()));
// Restore application state from settings
restoreState(settings->value("windowState").toByteArray());
restoreGeometry(settings->value("windowGeometry").toByteArray());
}
MainWindow::~MainWindow() {
settings->sync();
delete settings;
if (coreview != nullptr)
delete coreview;
delete ndialog;
delete cache_content;
delete cache_statictics;
delete registers;
delete ui;
}
void MainWindow::start() {
this->show();
ndialog->show();
}
void MainWindow::create_core(MachineConfig *config) {
// Create machine
machine = new QtMipsMachine(config);
// Create machine view
coreview = new CoreView(this);
this->setCentralWidget(coreview);
// TODO connect signals
}
void MainWindow::new_machine() {
ndialog->show();
}
void MainWindow::show_cache_content() {
show_dockwidget(cache_content);
}
void MainWindow::show_cache_statictics() {
show_dockwidget(cache_statictics);
}
void MainWindow::show_registers() {
show_dockwidget(registers);
}
bool MainWindow::configured() {
return (machine != nullptr);
}
void MainWindow::closeEvent(QCloseEvent *event) {
settings->setValue("windowGeometry", saveGeometry());
settings->setValue("windowState", saveState());
settings->sync();
QMainWindow::closeEvent(event);
}
void MainWindow::show_dockwidget(QDockWidget *dw) {
if (dw->isHidden()) {
dw->show();
addDockWidget(Qt::RightDockWidgetArea, dw);
} else {
dw->raise();
dw->setFocus();
}
}
|