-
Notifications
You must be signed in to change notification settings - Fork 7
/
SC_viewELexptpanelhandler.h
214 lines (185 loc) · 6.29 KB
/
SC_viewELexptpanelhandler.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
/***************************************************************************
** **
** This file is part of SpineCreator, an easy to use GUI for **
** describing spiking neural network models. **
** Copyright (C) 2013-2014 Alex Cope, Paul Richmond, Seb James **
** **
** 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 VIEWVISEXPTPANELHANDLER_H
#define VIEWVISEXPTPANELHANDLER_H
#include "globalHeader.h"
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
#include <QTemporaryDir>
#endif
struct viewELstruct;
class viewELExptPanelHandler : public QObject
{
Q_OBJECT
public:
explicit viewELExptPanelHandler(QObject *parent = 0);
explicit viewELExptPanelHandler(viewELstruct * viewEL, nl_rootdata * data, QObject *parent = 0);
nl_rootdata * data;
//void redraw();
/*!
* pointer to the parent window.
*/
MainWindow* main;
private:
viewELstruct * viewEL;
void redrawExpt();
void redrawPanel();
/*!
* A temporary directory into which the model is copied if the
* simulation is in an unsaved state.
*/
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
QTemporaryDir tdir;
#else
QDir tdir;
#endif
QVBoxLayout * exptSetup;
QVBoxLayout * exptInputs;
QVBoxLayout * exptOutputs;
QVBoxLayout * exptChanges;
QString simulatorStdOutText;
QString simulatorStdErrText;
QStringList errorStrings;
QStringList errorMessages;
QVector <QWidget * > forDeleting;
void recursiveDeleteLoop(QLayout * parentLayout);
void recursiveDelete(QLayout * parentLayout);
void recursiveDeleteExpt(QLayout * parentLayout);
void reorderParams (QVector<float> ¶ms);
/*!
* \brief Redraw the simulator parameters - this is called if there is no current systemObject selected
* \param currentExperiment
*/
void redrawSimulatorParams(experiment *currentExperiment);
QPointF cursor;
QSharedPointer<systemObject> currSystemObject;
GLWidget * gl;
QTimer simTimeChecker;
QString simTimeFileName;
QString simCancelFileName;
#ifdef Q_OS_WIN
QString logpath;
#endif
float simTimeMax;
experiment * runExpt;
void cleanUpPostRun(QString, QString);
signals:
void enableRun(bool);
void simulationDone();
void deleteWidgets();
public slots:
void addExperiment();
void delExperiment();
void moveExperiment();
void editExperiment();
void doneEditExperiment();
void cancelEditExperiment();
void changeSelection();
void changedEngine(QString);
void changedDt();
void changedDuration();
void changedSolver(int);
void changedSolverOrder(int);
void addInput();
void setInputName();
void setInputComponent();
void setInputPort(int);
void setInputType(int);
void setInputRateDistributionType(int);
void setInputRateSeed(int);
void editingFinishedRateSeed(void);
void acceptInput();
void editInput();
void setInputTypeData(double);
void setInputExternalData();
void setInputParams(int, int);
void fillInputParams();
void changeInputIndex(int);
void setInputAddTVRow();
void setInputDelTVRow();
void delInput();
void addOutput();
void setOutputName();
void setOutputComponent();
void setOutputPort(int);
void setOutputType();
void setOutputIndices();
void setOutputStartT(double);
void setOutputEndT(double);
void acceptOutput();
void editOutput();
void delOutput();
void toggleExternalOutput(bool);
void setOutputExternalData();
void addLesion();
void addGILesion();
void setGILesion();
void setLesionProjection();
void acceptLesion();
void editLesion();
void delLesion();
void acceptGILesion();
void editGILesion();
void delGILesion();
void setChangeParComponent();
void setChangeParName();
void setChangeProp(QString name);
void addChangedProp();
void acceptChangedProp();
void editChangedProp();
void delChangedProp();
void redraw();
void redraw(int);
void redraw(double);
void run();
void cancelRun();
void simulatorFinished(int, QProcess::ExitStatus);
void simulatorStandardOutput();
void simulatorStandardError();
void checkForSimTime();
/*!
* \brief Called when the mouse moves on the model view
* \param xGL
* \param yGL
*/
void mouseMove(float xGL, float yGL);
/*!
* \brief Redraw the model
* \param painter
* \param GLscale
* \param viewX
* \param viewY
* \param width
* \param height
* \param style
*/
void reDrawModel(QPainter* painter,float GLscale, float viewX, float viewY, int width, int height, drawStyle style);
/*!
* \brief selectByMouseDown
* \param xGL
* \param yGL
* \param GLScale
*/
void selectByMouseDown(float xGL, float yGL, float GLScale);
};
#endif // VIEWVISEXPTPANELHANDLER_H