forked from SpineML/SpineCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
3348 lines (2810 loc) · 118 KB
/
mainwindow.cpp
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************************
** **
** 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/. **
** **
****************************************************************************
** Authors: Alex Cope, Paul Richmond, Seb James **
** Website/Contact: http://bimpa.group.shef.ac.uk/ **
****************************************************************************/
#ifdef _DEBUG
#undef _DEBUG
#include <Python.h>
#define _DEBUG
#else
#include <Python.h>
#endif
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "SC_settings.h"
#include "SC_component_rootcomponentitem.h"
#include "SC_component_propertiesmanager.h"
#include "SC_component_scene.h"
#include "SC_export_component_image.h"
#include "SC_dotwriter.h"
#include "SC_systemmodel.h"
#include "SC_export_network_image.h"
#include "EL_experiment.h"
#include <QCryptographicHash>
#include "SC_undocommands.h"
#include "SC_versioncontrol.h"
#include "qcustomplot.h"
#include "SC_projectobject.h"
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
#include <QStandardPaths>
#endif
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
#define RETINA_SUPPORT 1.0
#else
#ifdef WIN_HIDPI_FIX
#define RETINA_SUPPORT WIN_DPI_SCALING
#else
#define RETINA_SUPPORT 1.0
#endif
#endif
#include "qdebug.h"
#include "SC_aboutdialog.h"
MainWindow::
MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
maxRecentFiles(12) // Number of files which show in the recent projects menu
{
data.main = this;
this->setWindowTitle("SpineCreator - Graphical SNN creation");
QCoreApplication::setOrganizationName("SpineML");
QCoreApplication::setOrganizationDomain("sheffield.ac.uk");
QCoreApplication::setApplicationName("SpineCreator");
// initialise GUI
ui->setupUi(this);
#define PYTHON_NO_DEBUG
#ifdef PYTHON_NO_DEBUG
// Initialise Python. To run numba cuda code, it's going to be
// necessary to set this up with a user-specifiable path to python
// and/or modules.
//
{
QSettings pysettings;
// Check the python/initialisation setting. If it's "true",
// then Py_Initialise() must have failed, in which case reset
// the python settings for programname and pythonhome to empty
// values.
QString python_init = pysettings.value ("python/initialisation", "false").toString();
if (python_init == "true") {
// then Py_Initialise failed
pysettings.setValue ("python/programname", "");
pysettings.setValue ("python/pythonhome", "");
DBG() << "Reset python path/home settings as Py_Initialise crashed.";
} else {
// Py_Initialise was ok last time
QString py_programname = pysettings.value("python/programname","").toString();
#if PY_MAJOR_VERSION == 2
// Python 2.x API requires chars when calling
// Py_SetProgramName() etc, Python 3.x requires wchars.
char* py_programname_ca;
py_programname_ca = new char[py_programname.length() + 1];
memcpy (py_programname_ca, py_programname.toStdString().c_str(), py_programname.length());
#elif PY_MAJOR_VERSION > 2
wchar_t* py_programname_ca;
py_programname_ca = new wchar_t[py_programname.length() + 1];
py_programname.toWCharArray (py_programname_ca);
#endif
py_programname_ca[py_programname.length()] = 0;
if (!py_programname.isEmpty()) {
// When using Anaconda, set to /home/seb/anaconda3/bin/python
Py_SetProgramName (py_programname_ca);
DBG() << "Setting user-specified path to the python binary. Warning: SpineCreator may crash if this setting causes Py_Initialise() to fail. In this case, when SpineCreator re-starts it will erase the content of python path and home.";
}
delete py_programname_ca;
QString py_pythonhome = pysettings.value("python/pythonhome","").toString();
#if PY_MAJOR_VERSION == 2
char* py_pythonhome_ca;
py_pythonhome_ca = new char[py_pythonhome.length() + 1];
memcpy (py_pythonhome_ca, py_pythonhome.toStdString().c_str(), py_pythonhome.length());
#elif PY_MAJOR_VERSION >= 3
wchar_t* py_pythonhome_ca;
py_pythonhome_ca = new wchar_t[py_pythonhome.length() + 1];
py_pythonhome.toWCharArray (py_pythonhome_ca);
#endif
py_pythonhome_ca[py_pythonhome.length()] = 0;
if (!py_pythonhome.isEmpty()) {
// Seb's value for pythonhome to use Anaconda in home
// directory with Numba CUDA:
// /home/seb/anaconda3:/home/seb/anaconda3/bin:/home/seb/anaconda3/lib:/home/seb/anaconda3/lib/python3.7:/home/seb/anaconda3/lib/python3.7/lib-dynload:/home/seb/anaconda3/lib/python3.7/site-packages:/home/seb/anaconda3/lib/python3.7/site-packages/numba:/home/seb/anaconda3/lib/python3.7/site-packages/numba/cuda
// NB: If python home is set to garbage, it will cause
// Py_Initialize() to abort the program. Hence the
// python_init scheme to check and see if we've
// initialised and crashed on a previous attempt.
Py_SetPythonHome(py_pythonhome_ca);
DBG() << "Setting user-specified PYTHONHOME. Warning: SpineCreator may crash if this setting causes Py_Initialise() to fail. In this case, when SpineCreator re-starts it will erase the content of python path and home.";
}
delete py_pythonhome_ca;
}
pysettings.setValue ("python/initialisation", "true");
} // ensure pysettings goes out of scope before Py_Initialize()
Py_Initialize();
{ // New scope to reset python/initialisation to "false"
QSettings pysettings2;
pysettings2.setValue ("python/initialisation", "false");
}
#endif
#ifdef DEBUG
DBG() << "Python interpreter: " << (wchar_t*)Py_GetProgramName();
DBG() << "Py_GetPrefix(): " << (wchar_t*)Py_GetPrefix();
DBG() << "Py_GetExecPrefix(): " << (wchar_t*)Py_GetExecPrefix();
DBG() << "Py_GetPath(): " << (wchar_t*)Py_GetPath();
DBG() << "Py_GetProgramFullPath(): " << (wchar_t*)Py_GetProgramFullPath();
#endif
QSettings settings;
#if 0
// clear all QSettings keys (for testing initial setup)
QStringList keys = settings.allKeys();
foreach (QString key, keys) {
qDebug() << key;
settings.remove(key);
}
exit(0);
#endif
#if QT_VERSION > QT_VERSION_CHECK(5, 0, 0)
#ifdef Q_OS_MAC2
settings.setValue("dpi",this->windowHandle()->devicePixelRatio());
#endif
#endif
this->emsg = (QErrorMessage*)0;
// Copy the main toolbar stylesheet, as set in the QT UI form:
this->toolbarStyleSheet = this->ui->toolbar_3->styleSheet();
resize(settings.value("mainwindow/size", QSize(1060, 622)).toSize());
move(settings.value("mainwindow/pos", QPoint(0, 0)).toPoint());
QString currFileName = settings.value("files/currentFileName", "").toString();
if (currFileName.size() != 0) {
DBG() << "oops - a previous instance of SpineCreator seems to have crashed (currFileName: " << currFileName << ")";
}
// This really means "is *SpineML_2_BRAHMS* present?".
if (!settings.value("simulators/BRAHMS/present", false).toBool()) {
#ifdef Q_OS_LINUX
// On Linux, search for an installed version of
// spineml-2-brahms and set corresponding defaults for
// working_dir and path.
// NB: These settings paths are case insensitive. Do CI
// searches in the code to find where they're used.
// See viewELexptpanelhandler.cpp for the use of these settings.
// I'm simply going to assume that SpineML_2_BRAHMS will be
// present, as for the Mac case, below.
settings.setValue("simulators/BRAHMS/present", true);
// spineml-2-brahms settings
//
// It may be that this directory will be used - the convert_script_s2b may create this in the home dir.
QFile convert_script_packaged("/usr/bin/convert_script_s2b");
QFile convert_script_home(QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS/convert_script_s2b"));
if (convert_script_packaged.exists()) {
// We have the _packaged_ version of the convert script
if (settings.value("simulators/BRAHMS/working_dir").toString().compare("") == 0) {
// Then there was no value set for working_dir; we can change it.
settings.setValue("simulators/BRAHMS/working_dir", QDir::toNativeSeparators(qgetenv("HOME") + "/spineml-2-brahms"));
}
if (settings.value("simulators/BRAHMS/path").toString().compare("") == 0) {
settings.setValue("simulators/BRAHMS/path", QDir::toNativeSeparators("/usr/bin/convert_script_s2b"));
}
} else if (convert_script_home.exists()) {
if (settings.value("simulators/BRAHMS/working_dir").toString().compare("") == 0) {
settings.setValue("simulators/BRAHMS/working_dir", QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS"));
}
if (settings.value("simulators/BRAHMS/path").toString().compare("") == 0) {
settings.setValue("simulators/BRAHMS/path", QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS/convert_script_s2b"));
}
} else {
// No SpineML to BRAHMS script in the usual locations. Set default values unless already set.
if (settings.value("simulators/BRAHMS/path").toString().compare("") == 0) {
settings.setValue("simulators/BRAHMS/path", QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS/convert_script_s2b"));
}
if (settings.value("simulators/BRAHMS/working_dir").toString().compare("") == 0) {
settings.setValue("simulators/BRAHMS/working_dir", QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS"));
}
}
// set to use binaries
settings.setValue("simulators/BRAHMS/binary", true);
// Check if we have the pre-compiled/packaged *SpineML* Namespace.
QFile spineml_2_brahms_precompiled_namespace("/usr/lib/spineml-2-brahms/dev/SpineML/tools/allToAll/brahms/0/component.so");
if (spineml_2_brahms_precompiled_namespace.exists()) {
settings.setValue("simulators/BRAHMS/envVar/BRAHMS_NS", "/usr/lib/spineml-2-brahms/");
} else {
// Set the BRAHMS Namespace to the one we just set in simulators/BRAHMS/path
settings.setValue("simulators/BRAHMS/envVar/BRAHMS_NS",
settings.value ("simulators/BRAHMS/working_dir").toString() + "/temp/Namespace/");
}
#else
// BRAHMS should be packaged with the app by default
// assume SpineML_2_BRAHMS is present
settings.setValue("simulators/BRAHMS/present", true);
// Is this used? Yes, in viewELexptpanelhandler.cpp
settings.setValue("simulators/BRAHMS/path", QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS/convert_script_s2b"));
QDir brahmspath = qApp->applicationDirPath();
brahmspath.cd("SystemML");
QDir S2Bpath = qApp->applicationDirPath();
S2Bpath.cd("SpineML_2_BRAHMS");
// Initial code to try and find SpineML_2_BRAHMS - looks in
// the HOME and one level of sub-directories, should be
// expanded to be recursive
QDir simdir(qgetenv("HOME"));
QStringList correct_dir = simdir.entryList(QStringList("SpineML_2_BRAHMS"), QDir::Dirs);
if (correct_dir.isEmpty()) {
QStringList dirs = simdir.entryList(QDir::Dirs);
for (int i = 0; i < dirs.size(); ++i) {
simdir.cd(dirs[i]);
correct_dir = simdir.entryList(QStringList("SpineML_2_BRAHMS"), QDir::Dirs);
if (!correct_dir.isEmpty()) {
break;
}
simdir.cdUp();
}
}
if (correct_dir.isEmpty()) {
correct_dir.push_back("SpineML_2_BRAHMS");
}
settings.setValue("simulators/BRAHMS/path", S2Bpath.absolutePath() + "/convert_script_s2b");
settings.setValue("simulators/BRAHMS/envVar/SYSTEMML_INSTALL_PATH", brahmspath.absolutePath());
settings.setValue("simulators/BRAHMS/envVar/PATH", QDir::toNativeSeparators(qgetenv("PATH") + ":" + brahmspath.absolutePath() + QDir::toNativeSeparators("/SystemML/BRAHMS/bin/")));
settings.setValue("simulators/BRAHMS/envVar/BRAHMS_NS", S2Bpath.absolutePath() + "/temp/Namespace/");
settings.setValue("simulators/BRAHMS/working_dir", QDir::toNativeSeparators(qgetenv("HOME") + "/SpineML_2_BRAHMS_out"));
#endif
settings.setValue("simulators/BRAHMS/envVar/REBUILD", "false");
}
// some default settings
if (settings.value("fileOptions/saveBinaryConnections", -30).toInt() == -30) {
settings.setValue("fileOptions/saveBinaryConnections", QString::number(float(true)));
}
if (settings.value("glOptions/detail", -30).toInt() == -30) {
settings.setValue("glOptions/detail", 5);
}
// setup undo / redo
undoStacks = new QUndoGroup(this);
undoAction = undoStacks->createUndoAction(this,tr("&Undo"));
undoAction->setShortcuts(QKeySequence::Undo);
redoAction = undoStacks->createRedoAction(this,tr("&Redo"));
redoAction->setShortcuts(QKeySequence::Redo);
// add undo redo to menu
ui->menuEdit->addAction(undoAction);
ui->menuEdit->addAction(redoAction);
projectObject * newProject = new projectObject();
data.currProject = newProject;
data.projects.push_back(newProject);
newProject->name = "Untitled Project";
undoStacks->addStack(newProject->undoStack);
undoStacks->setActiveStack(newProject->undoStack);
connect(undoStacks, SIGNAL(indexChanged(int)), this, SLOT(undoOrRedoPerformed(int)));
connect(undoStacks, SIGNAL(cleanChanged(bool)), this, SLOT(updateTitle()));
// Configure two QActions which will be presented in the Experiment menu.
this->data.dupExpAction = new QAction("Duplicate experiment", this);
connect(data.dupExpAction, SIGNAL(triggered()), this, SLOT(actionDuplicate_experiment_triggered()));
#if 0
this->data.runExpAction = new QAction("Run experiment", this);
#endif
// check for version control
configureVCSMenu();
// EXPERIMENT EDITOR initialisation
initViewEL();
// The empty graph view used when there is no open experiment for a project
this->initEmptyGV();
// NETWORK LAYER initialisation (there isn't much!)
ui->butB->setEnabled(false);
ui->butC->setEnabled(false);
// VISUALISATION VIEWER initialisation
this->viewVZ.OpenGLWidget = NULL;
// COMPONENT EDITOR initialisation
initViewCL();
connectViewCL();
// select first view button
this->ui->tab1->setStyleSheet("border: 0px; color:white; background:rgba(255,255,255,40%)");
// add viewNL properties panel
nl_rootlayout * layoutRoot = new nl_rootlayout(&data, ui->parsPanel);
this->viewNL.layout = layoutRoot;
#ifdef Q_OS_WIN
// apply additional HiDPI scaling to the main UI (as Windows has incomplete HiDPI support)
ui->viewSelector->setMinimumSize(ui->viewSelector->size()*RETINA_SUPPORT/2.0);
ui->viewSelector->move(ui->viewSelector->pos()*RETINA_SUPPORT);
ui->frame->setMinimumSize(ui->frame->size()*RETINA_SUPPORT);
ui->frame->move(ui->frame->pos()*RETINA_SUPPORT);
ui->frame_2->setMinimumSize(ui->frame_2->size()*RETINA_SUPPORT);
ui->frame_2->move(ui->frame_2->pos()*RETINA_SUPPORT);
ui->toolbar_3->setMinimumSize(ui->toolbar_3->size()*RETINA_SUPPORT);
ui->toolbar_3->move(ui->toolbar_3->pos()*RETINA_SUPPORT);
ui->topleft->setMinimumHeight(ui->topleft->height()*RETINA_SUPPORT);
ui->topleft->move(ui->topleft->pos()*RETINA_SUPPORT);
ui->butA->setMinimumWidth(ui->butA->width()*RETINA_SUPPORT);
ui->butA->setMinimumHeight(ui->butA->height()*RETINA_SUPPORT);
ui->butA->setIconSize(ui->butA->iconSize()*RETINA_SUPPORT);
ui->butB->setMinimumWidth(ui->butB->width()*RETINA_SUPPORT);
ui->butB->setMinimumHeight(ui->butB->height()*RETINA_SUPPORT);
ui->butB->move(ui->butB->pos()*RETINA_SUPPORT);
ui->butB->setIconSize(ui->butB->iconSize()*RETINA_SUPPORT);
ui->butSS->setMinimumWidth(ui->butSS->width()*RETINA_SUPPORT);
ui->butSS->setMinimumHeight(ui->butSS->height()*RETINA_SUPPORT);
ui->butSS->move(ui->butSS->pos()*RETINA_SUPPORT);
ui->butSS->setIconSize(ui->butSS->iconSize()*RETINA_SUPPORT);
ui->butC->setMinimumWidth(ui->butC->width()*RETINA_SUPPORT);
ui->butC->setMinimumHeight(ui->butC->height()*RETINA_SUPPORT);
ui->butC->move(ui->butC->pos()*RETINA_SUPPORT);
ui->butC->setIconSize(ui->butC->iconSize()*RETINA_SUPPORT);
ui->tab0->setMinimumWidth(ui->tab0->width()*RETINA_SUPPORT);
ui->tab0->setMinimumHeight(ui->tab0->height()*RETINA_SUPPORT);
ui->tab0->move(ui->tab0->pos()*RETINA_SUPPORT);
ui->tab0->setIconSize(ui->tab0->iconSize()*RETINA_SUPPORT);
ui->tab1->setMinimumWidth(ui->tab1->width()*RETINA_SUPPORT);
ui->tab1->setMinimumHeight(ui->tab1->height()*RETINA_SUPPORT);
ui->tab1->move(ui->tab1->pos()*RETINA_SUPPORT);
ui->tab1->setIconSize(ui->tab1->iconSize()*RETINA_SUPPORT);
ui->tab2->setMinimumWidth(ui->tab2->width()*RETINA_SUPPORT);
ui->tab2->setMinimumHeight(ui->tab2->height()*RETINA_SUPPORT);
ui->tab2->move(ui->tab2->pos()*RETINA_SUPPORT);
ui->tab2->setIconSize(ui->tab2->iconSize()*RETINA_SUPPORT);
ui->tab3->setMinimumWidth(ui->tab3->width()*RETINA_SUPPORT);
ui->tab3->setMinimumHeight(ui->tab3->height()*RETINA_SUPPORT);
ui->tab3->move(ui->tab3->pos()*RETINA_SUPPORT);
ui->tab3->setIconSize(ui->tab3->iconSize()*RETINA_SUPPORT);
ui->tab4->setMinimumWidth(ui->tab4->width()*RETINA_SUPPORT);
ui->tab4->setMinimumHeight(ui->tab4->height()*RETINA_SUPPORT);
ui->tab4->move(ui->tab4->pos()*RETINA_SUPPORT);
ui->tab4->setIconSize(ui->tab4->iconSize()*RETINA_SUPPORT);
ui->caption->setMinimumSize(ui->caption->size()*RETINA_SUPPORT);
ui->caption->move(ui->caption->pos()*RETINA_SUPPORT);
ui->info_area->setMinimumSize(ui->info_area->minimumSize()*RETINA_SUPPORT);
#endif
// join up the components of the program
QObject::connect(ui->viewport, SIGNAL(reDraw(QPainter*, float, float, float, int, int, drawStyle)), &(data), SLOT(reDrawAll(QPainter*, float, float, float, int, int, drawStyle)));
QObject::connect(ui->viewport, SIGNAL(onLeftMouseDown(float,float,float,bool)), &(data), SLOT(onLeftMouseDown(float,float,float,bool)));
#ifdef NEED_MOUSE_UP_LOGIC
QObject::connect(ui->viewport, SIGNAL(onLeftMouseUp(float,float,float)), &(data), SLOT(onLeftMouseUp(float,float,float)));
#endif
QObject::connect(ui->viewport, SIGNAL(itemWasMoved()), &(data), SLOT(itemWasMoved()));
QObject::connect(ui->viewport, SIGNAL(onRightMouseDown(float,float,float)), &(data), SLOT(onRightMouseDown(float,float,float)));
QObject::connect(ui->viewport, SIGNAL(mouseMove(float,float)), &(data), SLOT(mouseMoveGL(float,float)));
QObject::connect(ui->viewport, SIGNAL(drawSynapse(float,float)), &(data), SLOT(startAddBezier(float,float)));
QObject::connect(ui->viewport, SIGNAL(addBezierOrProjection(float,float)), &(data), SLOT(addBezierOrProjection(float,float)));
QObject::connect(ui->viewport, SIGNAL(abortProjection()), &(data), SLOT(abortProjection()));
// connect up drag selection for network layer view
QObject::connect(ui->viewport, SIGNAL(dragSelect(float,float)), &(data), SLOT(dragSelect(float,float)));
QObject::connect(ui->viewport, SIGNAL(endDragSelect()), &(data), SLOT(endDragSelection()));
QObject::connect(&(data), SIGNAL(finishDrawingSynapse()), ui->viewport, SLOT(finishConnect()));
QObject::connect(&(data), SIGNAL(redrawGLview()), ui->viewport, SLOT(redrawGLview()));
//QObject::connect(&(data), SIGNAL(redrawGLview()), viewVZ.OpenGLWidget, SLOT(redraw()));
QObject::connect(&(data), SIGNAL(setCaption(QString)), this, SLOT(setCaption(QString)));
QObject::connect(&(data), SIGNAL(setWindowTitle()), this, SLOT(updateTitle()));
QObject::connect(ui->butA, SIGNAL(clicked()), &(data), SLOT(addPopulation()));
QObject::connect(ui->butB, SIGNAL(clicked()), ui->viewport, SLOT(startConnect()));
QObject::connect(ui->butSS, SIGNAL(clicked()), &(data), SLOT(addSpikeSource()));
QObject::connect(ui->butC, SIGNAL(clicked()), &(data), SLOT(deleteCurrentSelection()));
QObject::connect(ui->tab0, SIGNAL(clicked()), this, SLOT(viewELshow()));
QObject::connect(ui->tab1, SIGNAL(clicked()), this, SLOT(viewNLshow()));
QObject::connect(ui->tab2, SIGNAL(clicked()), this, SLOT(viewVZshow()));
QObject::connect(ui->tab3, SIGNAL(clicked()), this, SLOT(viewCLshow()));
QObject::connect(ui->tab4, SIGNAL(clicked()), this, SLOT(viewGVshow()));
// for animation
QTimer *timer = new QTimer( this );
// this creates a Qt timer event
connect( timer, SIGNAL(timeout()), ui->viewport, SLOT(animate()) );
QObject::connect(&(data), SIGNAL(updatePanel(nl_rootdata*)), layoutRoot, SLOT(updatePanel(nl_rootdata*)));
QObject::connect(&(data), SIGNAL(updatePanel(nl_rootdata*)), this, SLOT(updateNetworkButtons(nl_rootdata*)));
QObject::connect(this, SIGNAL(updatePanel(nl_rootdata*)), layoutRoot, SLOT(updatePanel(nl_rootdata*)));
QObject::connect(layoutRoot, SIGNAL(setCaption(QString)), &(data), SLOT(setModelTitle(QString)));
QObject::connect(&(data), SIGNAL(statusBarUpdate(QString, int)), ui->statusBar, SLOT(showMessage(QString, int)));
QObject::connect(this, SIGNAL(statusBarUpdate(QString, int)), ui->statusBar, SLOT(showMessage(QString, int)));
// add the library to the component file list
addComponentsToFileList();
this->createActions();
timer->start(30);
// force nice startup
// Construct the menus
ui->menuBar->clear();
ui->menuBar->addMenu(ui->menuFile);
ui->menuBar->addMenu(ui->menuEdit);
ui->menuBar->addMenu(ui->menuProject);
ui->menuBar->addMenu(ui->menuModel); // actually version control
ui->menuBar->addMenu(ui->menuHelp);
// Recent projects
this->setupRecentProjectsMenu(&settings);
// default
ui->action_Close_project->setEnabled(false);
// setup projects
this->setProjectMenu();
this->setExperimentMenu(); // ?
// show current view
this->ui->view1->show();
// titlebar
updateTitle();
// redraw
this->ui->viewport->changed = 1;
QApplication::processEvents( QEventLoop::ExcludeUserInputEvents );
layoutRoot->updatePanel(&data);
data.setCaptionOut("Untitled Project");
updateTitle();
this->setWindowTitle("SpineCreator: Network Editor");
// update layout with libraries
viewNL.layout->updatePanel(&data);
// for now
ui->actionE_xport_network->setEnabled(false);
#ifdef Q_OS_MAC111
fix.setSingleShot(true);
connect(&fix, SIGNAL(timeout()), this, SLOT(osxHack()));
fix.start(200);
#endif
}
void
MainWindow::updateRecentProjects(const QString& filePath)
{
// Save the last-used directory so the dialog box can conveniently
// open with that location:
QDir lastDirectory (filePath);
lastDirectory.cdUp();
QSettings settings;
settings.setValue (MAINWINDOW_LASTPROJECTDIR, lastDirectory.absolutePath());
// To hold a list of the recent filePaths used.
QList <QString> recents;
// First we load existing recent files list:
int size = settings.beginReadArray("mainwindow/recentprojects");
int i = 0;
for (i = 0; i < size; ++i) {
settings.setArrayIndex(i);
recents.push_back(settings.value("filePath").toString());
}
settings.endArray();
// Now we modify the recents list to remove any existing entry for filePath
QList<QString>::iterator iter = recents.begin();
while (iter != recents.end()) {
if (*iter == filePath) {
recents.erase (iter);
break;
}
++iter;
}
// and then finally stick filePath in at the front of the list.
recents.push_front(filePath);
// Now write it back to QSettings.
settings.beginWriteArray("mainwindow/recentprojects");
// Hmm, QHash seems to be disordered, and not by "when inserted".
QList<QString>::const_iterator citer = recents.constBegin();
i = 0;
while (i < MainWindow::maxRecentFiles && citer != recents.constEnd()) {
settings.setArrayIndex(i);
settings.setValue("filePath", *citer);
++citer; ++i;
}
settings.endArray();
// Lastly update the recent projects menu:
this->setupRecentProjectsMenu (&settings);
}
void MainWindow::setupRecentProjectsMenu(QSettings* settings)
{
QMenu* recents = ui->menuFile->findChild<QMenu*>("menuRecent_projects");
if (recents != NULL) {
// Clear the contents set up in the UI editor.
recents->clear();
// For each member of the recent files list:
int size = settings->beginReadArray("mainwindow/recentprojects");
for (int i = 0; i < size; ++i) {
settings->setArrayIndex(i);
QAction* actionTest;
actionTest = new QAction(settings->value("filePath").toString(), this);
recents->addAction(actionTest);
// connect this action to the slot someslot():
connect(actionTest, SIGNAL(triggered()), this, SLOT(import_recent_project()));
}
settings->endArray();
// Finally add separator and the Clear list action
recents->addSeparator();
QAction* actionClear;
actionClear = new QAction("&Clear list", this);
//actionClear->setShortcut(Qt::Key_C); // shortcuts not used within this app
recents->addAction(actionClear);
connect(actionClear, SIGNAL(triggered()), this, SLOT(clear_recent_projects()));
}
}
#ifdef Q_OS_MAC111
void MainWindow::osxHack()
{
// make sure gl context is initialised correctly
viewVZshow();
viewNLshow();
}
#endif
bool MainWindow::isChanged()
{
for (int i = 0; i < data.projects.size(); ++i) {
if (data.projects[i]->isChanged(&data))
return true;
}
return false;
}
void MainWindow::setProjectMenu()
{
// clear existing
ui->menuProject->clear();
// if we have the action group
if (data.projectActions != NULL) {
delete data.projectActions;
}
// create a new action group
data.projectActions = new QActionGroup(this);
// add actions to select projects to the action group
for (int i = 0; i < data.projects.size(); ++i) {
data.projectActions->addAction(data.projects[i]->action(i));
}
// select the current project
data.currProject->menuAction->setChecked(true);
// add the action group to the menu
ui->menuProject->addActions(data.projectActions->actions());
connect(data.projectActions, SIGNAL(triggered(QAction*)), &data, SLOT(selectProject(QAction*)));
}
void MainWindow::setExperimentMenu()
{
ui->menuExperiment->clear(); // existing menu actions.
// Add entries for each experiment to the menu and connect up a
// suitable function to switch between experiments.
if (this->data.experimentActions != NULL) {
delete this->data.experimentActions;
}
// Add Duplicate experiment and Run experiment actions.
this->ui->menuExperiment->addAction (this->data.dupExpAction);
#if 0
this->ui->menuExperiment->addAction (this->data.runExpAction);
#endif
// Add a list of available experiments
this->data.experimentActions = new QActionGroup(this);
// Each experiment is going to have a QAction stored for it.
for (int i = 0; i < this->data.experiments.size(); ++i) {
QAction* a = this->data.experiments[i]->action(i);
a->setChecked (this->data.experiments[i]->selected);
this->data.experimentActions->addAction (a);
}
this->ui->menuExperiment->addActions (this->data.experimentActions->actions());
connect (data.experimentActions, SIGNAL(triggered(QAction*)), &data, SLOT(selectExperiment(QAction*)));
}
void MainWindow::selectExperiment (int exptNum)
{
DBG() << "MainWindow::selectExperiment called; experiments.size: " << data.experiments.size();
for (int i = 0; i < data.experiments.size(); ++i) {
data.experiments[i]->selected = ((i == exptNum) ? true : false);
DBG() << "experiment " << i << " is selected?: " << data.experiments[i]->selected;
if (data.experiments[i]->selected == true) {
// Then make sure there's a viewGV for the experiment.
if (!this->existsViewGV(data.experiments[i])) {
if (data.experiments[i] == (experiment*)0) {
DBG() << "Error: null experiment*! continuing...";
continue;
}
this->initViewGV (data.experiments[i]);
} else {
this->viewGVreshow();
}
}
}
}
int MainWindow::getCurrentExptNum (void)
{
int currentExptNum = -1;
for (int i = 0; i < data.experiments.size(); ++i) {
if (data.experiments[i]->selected) {
currentExptNum = i;
break;
}
}
return currentExptNum;
}
experiment* MainWindow::getCurrentExpt (void)
{
experiment* currentExperiment = (experiment*)0;
for (int i = 0; i < data.experiments.size(); ++i) {
if (data.experiments[i]->selected) {
currentExperiment = data.experiments[i];
break;
}
}
return currentExperiment;
}
void MainWindow::updateDatas (void)
{
// fetch current experiment sim engine
int currentExptNum = this->getCurrentExptNum();
experiment* currentExperiment = this->getCurrentExpt();
DBG() << "Current expt num is " << currentExptNum;
// Build up the correct log path (compare with code in
// SC_viewELexptpanelhander.cpp)
if (currentExptNum != -1) {
QSettings settings;
QString simName = currentExperiment->setup.simType;
settings.beginGroup("simulators/" + simName);
QString wk_dir_string = settings.value("working_dir").toString();
settings.endGroup();
wk_dir_string = QDir::toNativeSeparators(wk_dir_string);
QDir wk_dir(wk_dir_string);
QString out_dir_name = wk_dir.absolutePath() + QDir::separator() + "temp"
+ QDir::separator() + data.currProject->getFilenameFriendlyName()
+ "_e" + QString::number(currentExptNum);
QString perexpt_logpath = out_dir_name + QDir::separator() + "log";
QDir logs(perexpt_logpath);
QStringList filter;
filter << "*.xml";
logs.setNameFilters(filter);
if (this->viewGV[currentExperiment]->properties->currentLogDataDir != perexpt_logpath) {
DBG() << "Log dir changed. CurrentDatasDir:" << this->viewGV[currentExperiment]->properties->currentLogDataDir;
DBG() << "perexpt_logpath for currentExptNum "<< currentExptNum << ": " << perexpt_logpath;
this->viewGV[currentExperiment]->properties->currentLogDataDir = perexpt_logpath;
// Clear plots and add an empty one.
this->viewGV[currentExperiment]->properties->clearPlots();
this->viewGV[currentExperiment]->properties->addEmptyPlot();
// Clear out vLogData as we'll re-read from the new expt log directory
this->viewGV[currentExperiment]->properties->clearVLogData();
this->viewGV[currentExperiment]->properties->populateVLogData (logs.entryList(), &logs);
// and insert logs into visualiser
if (this->viewVZ.OpenGLWidget != NULL) {
this->viewVZ.OpenGLWidget->addLogs(&this->viewGV[currentExperiment]->properties->vLogData);
}
}
} else {
DBG() << "Current expt num is -1, no current experiment exists, nothing to do.";
}
}
bool MainWindow::promptToSave()
{
// check what the user wants to do
QMessageBox msgBox(this);
msgBox.setIcon(QMessageBox::Warning);
msgBox.setText("<b>Unsaved changes! </b>");
msgBox.setInformativeText("There are unsaved changes in project '" + data.currProject->name + "'. Do you want to save your changes?");
msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
msgBox.setDefaultButton(QMessageBox::Save);
msgBox.setModal(true);
switch (msgBox.exec()) {
case QMessageBox::Save:
export_project();
break;
case QMessageBox::Discard:
break;
case QMessageBox::Cancel:
return false;
default:
// should never be reached
break;
}
return true;
}
void MainWindow::closeEvent(QCloseEvent * event)
{
// if there are changes
for (int i = 0; i < data.projects.size(); ++i) {
if (data.projects[i]->isChanged(&data)) {
data.currProject->deselect_project(&data);
data.projects[i]->select_project(&data);
if (!promptToSave()) {
// abort closing program
event->ignore();
return;
}
}
}
// clear some pointers
if (this->viewVZ.OpenGLWidget != NULL) {
this->viewVZ.OpenGLWidget->clear();
}
// disconnect the undo signal
undoStacks->disconnect();
//data.undoStack->clear();
event->accept();
}
void MainWindow::clearComponents()
{
// delete catalog components
for (int i = 0; i < this->data.catalogLayout.size(); ++i) {
this->data.catalogLayout[i].clear();
}
for (int i = 0; i < this->data.catalogNrn.size(); ++i) {
this->data.catalogNrn[i].clear();
}
for (int i = 0; i < this->data.catalogPS.size(); ++i) {
this->data.catalogPS[i].clear();
}
for (int i = 0; i < this->data.catalogWU.size(); ++i) {
this->data.catalogWU[i].clear();
}
for (int i = 0; i < this->data.catalogUnsorted.size(); ++i) {
this->data.catalogUnsorted[i].clear();
}
// clear catalog vectors
data.catalogLayout.clear();
data.catalogNrn.clear();
data.catalogPS.clear();
data.catalogWU.clear();
data.catalogUnsorted.clear();
}
MainWindow::~MainWindow()
{
QSettings settings;
settings.setValue("mainwindow/size", size());
settings.setValue("mainwindow/pos", pos());
settings.remove("files/currentFileName");
// start investigating the library
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
QDir lib_dir = QDir(QDesktopServices::storageLocation(QDesktopServices::DataLocation));
#else
QDir lib_dir = QDir(QStandardPaths::writableLocation(QStandardPaths::DataLocation));
#endif
#else
QDir lib_dir = QDir(QStandardPaths::writableLocation(QStandardPaths::DataLocation));
#endif
if (!lib_dir.exists()) {
if (!lib_dir.mkpath(lib_dir.absolutePath()))
qDebug() << "error creating library";
}
// remove any stale temporary connection list files once at program start.
lib_dir.setFilter(QDir::Files);
foreach(QString dirFile, lib_dir.entryList()) {
lib_dir.remove(dirFile);
}
if (this->emsg != (QErrorMessage*)0) {
delete this->emsg;
}
if (viewCL.root != NULL)
delete viewCL.root;
// delete catalogs:
clearComponents();
if (viewVZ.OpenGLWidget != NULL) {
//delete this->viewVZ.errors;
this->viewVZ.layout.clear();
}
// clear up python
Py_Finalize();
// Ensure viewELhandler's destructor is called to clean up temporary model directory
delete this->viewELhandler;
// FIXME - there's probably more cleanup to do here.
delete ui;
}
void MainWindow::initEmptyGV (void)
{
this->setupViewGV (&this->emptyGV);
this->emptyGV.properties->clearPlots();
this->emptyGV.properties->addEmptyPlot();
}
void MainWindow::setupViewGV (viewGVstruct* vgv)
{
// add ref to this
vgv->mainwindow = this;
// add a sub-window. This should be the only thing we need to explicitly delete. With luck...
vgv->subWin = new QMainWindow(this);
vgv->subWin->setWindowFlags(Qt::Widget);
// add toolbar
vgv->toolbar = new QToolBar("Graphing Toolbar");
vgv->toolbar->setAllowedAreas(Qt::TopToolBarArea);
#ifdef Q_OS_MAC
// Don't set toolbar stylesheet for Mac, current QT implementation ignores it.
#else
vgv->toolbar->setStyleSheet(this->toolbarStyleSheet);
#endif
vgv->subWin->addToolBar(Qt::TopToolBarArea,vgv->toolbar);
// make a central widget
vgv->subWin->setCentralWidget(new QFrame);
// assign a layout to the central widget
vgv->subWin->centralWidget()->setLayout(new QHBoxLayout);
// setup the spacing
vgv->subWin->centralWidget()->layout()->setSpacing(0);
vgv->subWin->centralWidget()->layout()->setContentsMargins(0,0,0,0);
// create a new mdi area to hold the graph windows
vgv->mdiarea = new QMdiArea(vgv->subWin);
vgv->subWin->centralWidget()->layout()->addWidget(vgv->mdiarea); // mdiarea owned by subWin.
// add a dock widget
vgv->dock = new QDockWidget("Log data");
vgv->dock->setFeatures(QDockWidget::DockWidgetMovable);
// The dock becomes owned by the subWin, so shouldn't need to
// explicitly delete the subWin:
vgv->subWin->addDockWidget(Qt::RightDockWidgetArea,vgv->dock);
// add the properties editor
vgv->properties = new viewGVpropertieslayout(vgv);
vgv->dock->setWidget(vgv->properties); // the properties should be
// parented to the dock, so
// when the QDockWidget is
// deallocated, then the
// properties should be
// automatically.
// add sub window area to layout
((QGridLayout*)this->ui->centralWidget->layout())->addWidget(vgv->subWin, 0,
((QGridLayout*)this->ui->centralWidget->layout())->columnCount(), 4, 1);
// hide to start with
vgv->subWin->hide();
}
void MainWindow::cleanupViewGV (viewGVstruct* vgv)
{
vgv->subWin->hide();
delete vgv->subWin;
}
bool MainWindow::existsViewGV (experiment* e)
{
bool rtn(false);
if (e == (experiment*)0) {
return rtn;
}
if (this->viewGV.find(e) != this->viewGV.end()) {
rtn = true;