-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainwindow.h
246 lines (217 loc) · 7.24 KB
/
mainwindow.h
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/***************************************************************************
** **
** This file is part of SpineCreator, an easy to use, GUI for **
** describing spiking neural network models. **
** Copyright (C) 2013 Alex Cope, Paul Richmond **
** **
** This program is free software: you can redistribute it and/or modify **
** it under the terms of the GNU General Public License as published by **
** the Free Software Foundation, either version 3 of the License, or **
** (at your option) any later version. **
** **
** This program is distributed in the hope that it will be useful, **
** but WITHOUT ANY WARRANTY; without even the implied warranty of **
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the **
** GNU General Public License for more details. **
** **
** You should have received a copy of the GNU General Public License **
** along with this program. If not, see http://www.gnu.org/licenses/. **
** **
****************************************************************************
** Author: Alex Cope **
** Website/Contact: http://bimpa.group.shef.ac.uk/ **
****************************************************************************/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "globalHeader.h"
#include "nineML_classes.h"
#include "connectionmodel.h"
#include "glconnectionwidget.h"
#include "rootdata.h"
#include "rootlayout.h"
#include "layoutaliaseditdialog.h"
#include "layouteditpreviewdialog.h"
#include "viewELexptpanelhandler.h"
#include "viewVZlayoutedithandler.h"
#include "viewGVpropertieslayout.h"
#include "brahms_dialog.h"
#include "nineml_alview.h"
#include "versioncontrol.h"
namespace Ui {
class MainWindow;
}
struct viewGVstruct {
QMainWindow * subWin;
QMdiArea * mdiarea;
QDockWidget * dock;
QToolBar * toolbar;
MainWindow * mainwindow;
viewGVpropertieslayout * properties;
};
struct viewELstruct {
QFrame * view;
QWidget * selectionPanel;
QWidget * panel;
QWidget * expt;
};
struct viewNLstruct {
rootLayout * layout;
};
struct viewVZstruct {
QSplitter * view;
csv_connectionModel * connMod;
QTableView * connTable;
QWidget * panel;
glConnectionWidget * OpenGLWidget;
QTreeView * treeView;
QLabel * mathOut;
NineMLLayout * layout;
systemObject * currObject;
NineMLLayout * editLayout;
QLabel * errors;
systemmodel * sysModel;
QFrame * toolbar;
};
struct viewCLstruct {
RootComponentItem * root;
ALView * display;
QToolBar * toolBar;
QDockWidget * dock;
QFrame * frame;
QHBoxLayout * layout;
QWidget * propertiesContents;
QListWidget * fileList;
QVBoxLayout * fileListLayout;
QPushButton * toggleFileBox;
MainWindow * mainWindow;
QMainWindow * subWin;
};
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
rootData data;
QUndoGroup * undoStacks;
viewGVstruct viewGV;
viewELstruct viewEL;
viewNLstruct viewNL;
viewVZstruct viewVZ;
viewCLstruct viewCL;
viewELExptPanelHandler * viewELhandler;
viewVZLayoutEditHandler * viewVZhandler;
QShortcut * deleteShortcut;
void addComponentsToFileList();
QString toolbarStyleSheet;
void setProjectMenu();
private:
Ui::MainWindow *ui;
GLWidget *glWidget;
void createActions();
bool unsaved_changes;
#ifdef Q_OS_MAC
QTimer fix;
#endif
QAction *undoAction;
QAction *redoAction;
QDomDocument tempDoc;
void initViewEL();
void connectViewEL();
void initViewGV();
void connectViewGV();
void initViewCL();
void connectViewCL();
void initViewVZ();
void connectViewVZ();
void configureVCSMenu();
bool isChanged();
bool promptToSave();
void clearComponents();
public slots:
void import_project();
void export_project();
void export_project_as();
void close_project();
void import_network();
void export_network();
void import_component();
void export_component();
void duplicate_component();
void delete_component();
void import_layout();
void export_layout();
void import_csv();
void viewGVshow();
void viewELshow();
void viewNLshow();
void viewVZshow();
void viewCLshow();
void setCaption(QString);
void runInBRAHMS();
void new_project();
void saveImageAction();
void launchSimulatorEditor();
void initialiseModel(NineMLComponent *);
void updateNetworkButtons(rootData *);
void undoOrRedoPerformed(int);
// AL editor slots
void actionAs_Image_triggered();
void actionAs_Dotty_Graph_triggered();
void actionNew_triggered();
void actionSelectMode_triggered();
void actionShowHideParams_triggered(bool checked);
void actionShowHidePorts_triggered(bool checked);
void actionMove_Up_triggered();
void actionMove_Down_triggered();
void actionDeleteItems_triggered();
void actionZoomIn_triggered();
void actionZoomOut_triggered();
void actionAddParamater_triggered();
void actionAddRegime_triggered();
void actionAddOnCondition_triggered();
void actionAddTimeDerivative_triggered();
void actionAddAnalogePort_triggered();
void actionAddEventPort_triggered();
void actionAddImpulsePort_triggered();
void actionAddStateVariable_triggered();
void actionAddAlias_triggered();
void actionAddStateAssignment_triggered();
void actionAddEventOut_triggered();
void actionAddImpulseOut_triggered();
void actionAddOnEvent_triggered();
void actionAddOnImpulse_triggered();
void about();
// versioning
void actionCommitModel_triggered();
void actionUpdateModel_triggered();
void actionRevertModel_triggered();
void actionRepStatus_triggered();
void actionRepLog_triggered();
void actionRescanVCS_triggered();
//void storeNineMLComponent();
void updateTitle(bool);
void updateTitle();
void fileListToggle();
void fileListItemChanged(QListWidgetItem *current, QListWidgetItem *);
#ifdef Q_OS_MAC
// init gl for osx
void osxHack();
#endif
signals:
void import_component_xml(QStringList fileNames);
void import_layout_xml(QStringList fileNames);
void import_model_xml(QString fileName);
void export_component_xml(QString fileName, NineMLComponent * component);
void export_layout_xml(QString fileName, NineMLLayout * component);
void export_model_xml(QString fileName);
void import_csv_signal(QString fileName);
void launchComponentSorter();
void mathText(QString);
void statusBarUpdate(QString, int);
void updatePanel(rootData *);
void saveImage();
protected:
void closeEvent(QCloseEvent *event);
};
#endif // MAINWINDOW_H