-
Notifications
You must be signed in to change notification settings - Fork 7
/
SC_component_graphicsitems.h
668 lines (557 loc) · 17.1 KB
/
SC_component_graphicsitems.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
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
/***************************************************************************
** **
** 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: Paul Richmond **
** Website/Contact: http://bimpa.group.shef.ac.uk/ **
****************************************************************************/
#ifndef NINEML_GRAPHICSITEMS_H
#define NINEML_GRAPHICSITEMS_H
#include <QtGui>
#include "CL_classes.h"
#include "SC_component_gvitems.h"
class ArrowItem;
class NineMLNodeItem;
class NineMLTransitionItem;
class NineMLALScene;
class RootComponentItem;
class PropertiesManager;
class ParameterListGraphicsItem;
class PortListGraphicsItem;
class TimeDerivativeTextItem;
class ParameterTextItem;
class AnalogPortTextItem;
class EventPortTextItem;
class ImpulsePortTextItem;
class OnConditionTriggerTextItem;
class OnEventTriggerTextItem;
class OnImpulseTriggerTextItem;
/*!
* Abstract Items
*/
//@{
class ArrowItem : public QObject, public QGraphicsItem
{
Q_OBJECT
Q_INTERFACES(QGraphicsItem)
public:
ArrowItem();
void paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *);
QRectF boundingRect() const;
void setPath(QPainterPath path);
void setPenColour(QColor col);
void setLineWidth(int w);
private:
int width;
QColor colour;
QPainterPath path;
QPolygonF arrow_head;
};
// TextItemGroup derives from QGraphicsItem (amoung other things)
class NineMLNodeItem : public TextItemGroup, public GVNode
{
Q_OBJECT
public:
NineMLNodeItem(GVLayout *layout, QString name);
~NineMLNodeItem();
virtual void updateLayout();
void updateGVData();
void addMember(GroupedTextItem *item); //overwrite TextItemGroup addMember
void addMemberAtIndex(GroupedTextItem *item, int index);
void removeMember(GroupedTextItem* item); //overwrite TextItemGroup removeMember
/*!
* Reach into the RootComponentItem's underlying Component object
* and obtain the annotation text corresponding to the
* name/key/identifier of this text item, as supplied by @see
* getKey.
*/
QString getAnnotationText(void);
virtual QString getName(void) { return "__unknown_name"; }
public slots:
/*!
* Called to update the annotation
*/
void updateAnnotationText(void);
protected:
RootComponentItem *root;
};
typedef enum
{
TRANSITION_TYPE_ON_EVENT,
TRANSITION_TYPE_ON_CONDITION,
TRANSITION_TYPE_ON_IMPULSE
} NineMLTransitionItemType;
class NineMLTransitionItem: public TextItemGroup, public GVEdge
{
Q_OBJECT
public:
NineMLTransitionItem(GVLayout *layout, Agnode_t *src, Agnode_t *dst, QGraphicsScene *scene = 0);
~NineMLTransitionItem();
virtual void updateLayout();
void updateGVData();
void addMember(GroupedTextItem * item); //overwrite TextItemGroup addMember
void addMemberAtIndex(GroupedTextItem *item, int index);
void removeMember(GroupedTextItem* item); //overwrite TextItemGroup removeMember
virtual NineMLTransitionItemType transitionType() = 0;
/*!
* Reach into the RootComponentItem's underlying Component object
* and obtain the annotation text corresponding to the
* name/key/identifier of this text item, as supplied by @see
* getKey.
*/
QString getAnnotationText(void);
virtual QString getName(void) { return "__unknown_name"; }
public slots:
/*!
* Called to update the annotation
*/
void updateAnnotationText(void);
protected:
ArrowItem *arrow;
RootComponentItem *root;
};
class NineMLTextItem: public GroupedTextItem
{
Q_OBJECT
public:
NineMLTextItem(GVItem *gv_item, TextItemGroup *parent = 0);
~NineMLTextItem();
void setPlainText(const QString &text); //overwite GroupTextItem (to ensure Call of updatedims)
/*!
* Reach into the RootComponentItem's underlying Component object
* and obtain the annotation text corresponding to the
* name/key/identifier of this text item, as supplied by @see
* getKey.
*/
QString getAnnotationText(void);
virtual QString getName(void) { return "__unknown_name"; }
public slots:
/*!
* Called to update the annotation
*/
void updateAnnotationText(void);
protected:
RootComponentItem *root;
private:
GVItem *gv_item;
};
//@}
/*!
* Concrete items
*/
//@{
class RegimeGraphicsItem : public NineMLNodeItem
{
Q_OBJECT
public:
RegimeGraphicsItem(Regime *r, RootComponentItem *root);
void addTimeDerivativeItem(TimeDerivative* td);
QString getRegimeName();
virtual QString getName();
bool isRegime(Regime *r);
int type() const { return Type; }
public slots:
void setRegimeName(QString n);
void updateContent();
protected:
virtual void handleSelection();
public:
Regime *regime;
enum { Type = UserType + 1 };
static const int padding = 10;
};
class TimeDerivativeTextItem: public NineMLTextItem
{
Q_OBJECT
public:
TimeDerivativeTextItem(RegimeGraphicsItem *parent, TimeDerivative* time_derivative, RootComponentItem *root);
enum { Type = UserType + 2 };
int type() const { return Type; }
StateVariable* getVariable();
MathInLine* getMaths();
public slots:
virtual void updateContent();
void setVariable(QString p);
void setMaths(QString m);
protected:
virtual void handleSelection();
public:
TimeDerivative *time_derivative;
};
class OnConditionGraphicsItem : public NineMLTransitionItem
{
Q_OBJECT
public:
OnConditionGraphicsItem(Regime *src_regime, OnCondition *c, RootComponentItem *root);
enum { Type = UserType + 3 };
int type() const { return Type; }
void addStateAssignment(StateAssignment *sa);
void addEventOut(EventOut* eo);
void addImpulseOut(ImpulseOut* io);
MathInLine* getTriggerMaths();
Regime* getSynapseRegime();
Regime* getSourceRegime();
static const int padding = 4;
virtual NineMLTransitionItemType transitionType(){return TRANSITION_TYPE_ON_CONDITION;}
public slots:
void setTriggerMaths(QString m);
void setSynapseRegime(QString m);
protected:
virtual void handleSelection();
public:
OnCondition *on_condition;
Regime *src_regime;
private:
OnConditionTriggerTextItem *trigger_item;
};
class OnConditionTriggerTextItem: public NineMLTextItem
{
Q_OBJECT
public:
OnConditionTriggerTextItem(OnConditionGraphicsItem *parent, Trigger* trigger, RootComponentItem *root);
enum { Type = UserType + 4 };
int type() const { return Type; }
MathInLine* getMaths();
public slots:
void setMaths(QString m);
virtual void updateContent();
protected:
virtual void handleSelection();
public:
Trigger *trigger;
};
class StateAssignmentTextItem: public NineMLTextItem
{
Q_OBJECT
public:
StateAssignmentTextItem(NineMLTransitionItem *parent, StateAssignment* assigment, RootComponentItem *root);
enum { Type = UserType + 5 };
int type() const { return Type; }
StateVariable* getVariable();
MathInLine* getMaths();
public slots:
virtual void updateContent();
void setVariable(QString p);
void setMaths(QString m);
protected:
virtual void handleSelection();
public:
StateAssignment *assignment;
};
class EventOutTextItem: public NineMLTextItem
{
Q_OBJECT
public:
EventOutTextItem(NineMLTransitionItem *parent, EventOut* event_out, RootComponentItem *root);
enum { Type = UserType + 6 };
int type() const { return Type; }
EventPort* getEventPort();
public slots:
virtual void updateContent();
void setEventPort(QString m);
protected:
virtual void handleSelection();
public:
EventOut *event_out;
};
class ParameterListGraphicsItem : public NineMLNodeItem
{
Q_OBJECT
public:
ParameterListGraphicsItem(RootComponentItem *root);
void addParameterItem(Parameter* p);
void addStateVariableItem(StateVariable* p);
void addAliasItem(Alias* p);
public:
enum { Type = UserType + 7 };
int type() const { return Type; }
static const int padding = 5;
protected:
virtual void handleSelection();
};
class ParameterTextItem: public NineMLTextItem
{
Q_OBJECT
public:
ParameterTextItem(ParameterListGraphicsItem *parent, Parameter* param, RootComponentItem *root);
enum { Type = UserType + 8 };
int type() const { return Type; }
virtual QString getName();
public slots:
virtual void updateContent();
void setName(QString m);
void setDimsPrefix(QString p);
void setDimsUnit(QString u);
protected:
virtual void handleSelection();
public:
Parameter *parameter;
};
class StateVariableTextItem: public NineMLTextItem
{
Q_OBJECT
public:
StateVariableTextItem(ParameterListGraphicsItem *parent, StateVariable* state_var, RootComponentItem *root);
enum { Type = UserType + 9 };
int type() const { return Type; }
virtual QString getName();
public slots:
virtual void updateContent();
void setName(QString m);
void setDimsPrefix(QString p);
void setDimsUnit(QString u);
protected:
virtual void handleSelection();
public:
StateVariable *state_variable;
};
class AliasTextItem: public NineMLTextItem
{
Q_OBJECT
public:
AliasTextItem(ParameterListGraphicsItem *parent, Alias* alias, RootComponentItem *root);
enum { Type = UserType + 10 };
int type() const { return Type; }
virtual QString getName();
MathInLine* getMaths();
public slots:
virtual void updateContent();
void setName(QString m);
void setMaths(QString m);
protected:
virtual void handleSelection();
public:
Alias *alias;
};
class AnnotationListGraphicsItem : public NineMLNodeItem
{
Q_OBJECT
public:
AnnotationListGraphicsItem(RootComponentItem *root);
void addAnnotationTextItem(QString key, QString value);
public:
enum { Type = UserType + 20 };
int type() const { return Type; }
static const int padding = 5;
protected:
virtual void handleSelection();
};
class AnnotationTextItem: public NineMLTextItem
{
Q_OBJECT
public:
AnnotationTextItem(AnnotationListGraphicsItem *parent, QString ky, QString txt, RootComponentItem *root);
enum { Type = UserType + 21 };
int type() const { return Type; }
virtual QString getName() { return this->getKey(); }
QString getKey();
QString getText();
public slots:
virtual void updateContent();
protected:
virtual void handleSelection();
private :
QString key;
QString text;
};
class PortListGraphicsItem : public NineMLNodeItem
{
Q_OBJECT
public:
PortListGraphicsItem(RootComponentItem *root);
void addAnalogePortItem(AnalogPort *ap);
void addEventPortItem(EventPort *ep);
void addImpulsePortItem(ImpulsePort *ip);
public:
enum { Type = UserType + 11 };
int type() const { return Type; }
static const int padding = 5;
protected:
virtual void handleSelection();
};
class AnalogPortTextItem: public NineMLTextItem
{
Q_OBJECT
public:
AnalogPortTextItem(PortListGraphicsItem *parent, AnalogPort* p, RootComponentItem *root);
enum { Type = UserType + 12 };
int type() const { return Type; }
virtual QString getName();
StateVariable* getVariable();
AnalogPortMode getPortMode();
ReduceOperation getPortReduceOp();
public slots:
virtual void updateContent();
void setName(QString);
void setVariable(QString p);
void setPortMode(QString p);
void setPortReduceOp(QString p);
void setDimsPrefix(QString p);
void setDimsUnit(QString u);
void setIsPostState(bool b);
void setIsPerConnState(bool b);
protected:
virtual void handleSelection();
public:
AnalogPort *port;
};
class EventPortTextItem: public NineMLTextItem
{
Q_OBJECT
public:
EventPortTextItem(PortListGraphicsItem *parent, EventPort* p, RootComponentItem *root);
enum { Type = UserType + 13 };
int type() const { return Type; }
virtual QString getName();
EventPortMode getPortMode();
public slots:
virtual void updateContent();
void setName(QString n);
void setPortMode(QString p);
void setIsPostState(bool b);
protected:
virtual void handleSelection();
public:
EventPort *port;
};
class OnEventGraphicsItem : public NineMLTransitionItem
{
Q_OBJECT
public:
OnEventGraphicsItem(Regime *src_regime, OnEvent *e, RootComponentItem *root);
enum { Type = UserType + 14 };
int type() const { return Type; }
void addStateAssignment(StateAssignment *sa);
void addEventOut(EventOut* eo);
void addImpulseOut(ImpulseOut* io);
EventPort* getEventPort();
Regime* getSynapseRegime();
Regime* getSourceRegime();
virtual NineMLTransitionItemType transitionType(){return TRANSITION_TYPE_ON_EVENT;}
static const int padding = 4;
public slots:
void setEventPort(QString m);
void setSynapseRegime(QString m);
protected:
virtual void handleSelection();
public:
OnEvent *on_event;
Regime *src_regime;
private :
OnEventTriggerTextItem *trigger_item;
};
class OnEventTriggerTextItem: public NineMLTextItem
{
Q_OBJECT
public:
OnEventTriggerTextItem(OnEventGraphicsItem *parent, RootComponentItem *root);
enum { Type = UserType + 15 };
int type() const { return Type; }
EventPort* getEventPort();
virtual QString getName (void) { return QString("EventTriggerTxt"); }
public slots:
void setEventPort(QString m);
virtual void updateContent();
protected:
virtual void handleSelection();
public:
OnEvent *on_event;
};
class ImpulsePortTextItem: public NineMLTextItem
{
Q_OBJECT
public:
ImpulsePortTextItem(PortListGraphicsItem *parent, ImpulsePort* p, RootComponentItem *root);
enum { Type = UserType + 16 };
int type() const { return Type; }
virtual QString getName();
Parameter *getParameter();
ImpulsePortMode getPortMode();
public slots:
virtual void updateContent();
void setName(QString n);
void setParameter(QString n);
void setPortMode(QString p);
void setDimsPrefix(QString p);
void setDimsUnit(QString u);
protected:
virtual void handleSelection();
public:
ImpulsePort *port;
};
class ImpulseOutTextItem: public NineMLTextItem
{
Q_OBJECT
public:
ImpulseOutTextItem(NineMLTransitionItem *parent, ImpulseOut* i, RootComponentItem *root);
enum { Type = UserType + 17 };
int type() const { return Type; }
ImpulsePort* getImpulsePort();
public slots:
virtual void updateContent();
void setImpulsePort(QString m);
protected:
virtual void handleSelection();
public:
ImpulseOut *impulse_out;
};
class OnImpulseGraphicsItem : public NineMLTransitionItem
{
Q_OBJECT
public:
OnImpulseGraphicsItem(Regime *src_regime, OnImpulse *e, RootComponentItem *root);
enum { Type = UserType + 18 };
int type() const { return Type; }
void addStateAssignment(StateAssignment *sa);
void addEventOut(EventOut* eo);
void addImpulseOut(ImpulseOut* io);
ImpulsePort* getImpulsePort();
Regime* getSynapseRegime();
Regime* getSourceRegime();
virtual NineMLTransitionItemType transitionType(){return TRANSITION_TYPE_ON_IMPULSE;}
static const int padding = 4;
public slots:
void setImpulsePort(QString m);
void setSynapseRegime(QString m);
protected:
virtual void handleSelection();
public:
OnImpulse *on_impulse;
Regime *src_regime;
private :
OnImpulseTriggerTextItem *trigger_item;
};
class OnImpulseTriggerTextItem: public NineMLTextItem
{
Q_OBJECT
public:
OnImpulseTriggerTextItem(OnImpulseGraphicsItem *parent, RootComponentItem *root);
enum { Type = UserType + 19 };
int type() const { return Type; }
ImpulsePort* getImpulsePort();
public slots:
void setImpulsePort(QString m);
virtual void updateContent();
protected:
virtual void handleSelection();
public:
OnImpulse *on_impulse;//ImpulsePort *impulse_port; //stored in OnImpulse
};
//@}
#endif // NINEML_GRAPHICSITEMS_H