wxruby3-shapes 0.9.0.pre.beta.3 → 0.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/INSTALL.md +5 -7
  3. data/README.md +38 -6
  4. data/assets/logo.svg +339 -0
  5. data/assets/logo.xpm +60 -0
  6. data/assets/screenshot.png +0 -0
  7. data/assets/social.png +0 -0
  8. data/bin/wx-shapes +1 -1
  9. data/lib/wx/shapes/arrow_base.rb +4 -11
  10. data/lib/wx/shapes/arrows/circle_arrow.rb +22 -11
  11. data/lib/wx/shapes/arrows/circle_prong_arrow.rb +48 -0
  12. data/lib/wx/shapes/arrows/cross_bar_arrow.rb +57 -0
  13. data/lib/wx/shapes/arrows/cross_bar_circle_arrow.rb +56 -0
  14. data/lib/wx/shapes/arrows/cross_bar_prong_arrow.rb +49 -0
  15. data/lib/wx/shapes/arrows/crossed_circle.rb +46 -0
  16. data/lib/wx/shapes/arrows/cup_arrow.rb +65 -0
  17. data/lib/wx/shapes/arrows/diamond_arrow.rb +8 -13
  18. data/lib/wx/shapes/arrows/double_cross_bar_arrow.rb +27 -0
  19. data/lib/wx/shapes/arrows/filled_arrow.rb +60 -0
  20. data/lib/wx/shapes/arrows/line_arrow.rb +67 -0
  21. data/lib/wx/shapes/arrows/open_arrow.rb +22 -23
  22. data/lib/wx/shapes/arrows/prong_arrow.rb +42 -0
  23. data/lib/wx/shapes/arrows/solid_arrow.rb +21 -35
  24. data/lib/wx/shapes/arrows/square_arrow.rb +37 -0
  25. data/lib/wx/shapes/auto_layout.rb +2 -2
  26. data/lib/wx/shapes/base.rb +1 -1
  27. data/lib/wx/shapes/canvas_history.rb +20 -0
  28. data/lib/wx/shapes/connection_point.rb +10 -6
  29. data/lib/wx/shapes/diagram.rb +98 -78
  30. data/lib/wx/shapes/events.rb +8 -8
  31. data/lib/wx/shapes/printout.rb +3 -16
  32. data/lib/wx/shapes/serializable.rb +2 -436
  33. data/lib/wx/shapes/serialize/wx.rb +30 -18
  34. data/lib/wx/shapes/shape.rb +211 -168
  35. data/lib/wx/shapes/shape_canvas.rb +728 -267
  36. data/lib/wx/shapes/shape_data_object.rb +99 -18
  37. data/lib/wx/shapes/shape_handle.rb +18 -11
  38. data/lib/wx/shapes/shape_list.rb +34 -67
  39. data/lib/wx/shapes/shapes/bitmap_shape.rb +23 -24
  40. data/lib/wx/shapes/shapes/box_shape.rb +389 -0
  41. data/lib/wx/shapes/shapes/circle_shape.rb +19 -22
  42. data/lib/wx/shapes/shapes/control_shape.rb +77 -41
  43. data/lib/wx/shapes/shapes/curve_shape.rb +38 -31
  44. data/lib/wx/shapes/shapes/diamond_shape.rb +7 -17
  45. data/lib/wx/shapes/shapes/edit_text_shape.rb +6 -9
  46. data/lib/wx/shapes/shapes/ellipse_shape.rb +12 -15
  47. data/lib/wx/shapes/shapes/flex_grid_shape.rb +58 -33
  48. data/lib/wx/shapes/shapes/grid_shape.rb +259 -161
  49. data/lib/wx/shapes/shapes/line_shape.rb +155 -161
  50. data/lib/wx/shapes/shapes/manager_shape.rb +77 -0
  51. data/lib/wx/shapes/shapes/multi_sel_rect.rb +8 -8
  52. data/lib/wx/shapes/shapes/ortho_shape.rb +31 -36
  53. data/lib/wx/shapes/shapes/polygon_shape.rb +23 -29
  54. data/lib/wx/shapes/shapes/rect_shape.rb +95 -53
  55. data/lib/wx/shapes/shapes/round_ortho_shape.rb +6 -8
  56. data/lib/wx/shapes/shapes/round_rect_shape.rb +20 -24
  57. data/lib/wx/shapes/shapes/square_shape.rb +14 -17
  58. data/lib/wx/shapes/shapes/text_shape.rb +95 -53
  59. data/lib/wx/shapes/version.rb +1 -1
  60. data/lib/wx/shapes/wx.rb +16 -7
  61. data/lib/wx/wx-shapes/cmd/test.rb +1 -1
  62. data/samples/demo/arrows.json +1 -0
  63. data/samples/demo/arrows.yaml +793 -0
  64. data/samples/demo/art/HBox.xpm +22 -0
  65. data/samples/demo/art/VBox.xpm +22 -0
  66. data/samples/demo/art/logo.xpm +60 -0
  67. data/samples/demo/class.json +1 -0
  68. data/samples/demo/class.yaml +5631 -0
  69. data/samples/demo/demo.rb +301 -91
  70. data/samples/demo/dialogs.rb +1405 -0
  71. data/samples/demo/erd.json +1 -0
  72. data/samples/demo/erd.yaml +4072 -0
  73. data/samples/demo/frame_canvas.rb +409 -33
  74. data/samples/sample1/art/logo.xpm +60 -0
  75. data/samples/sample1/sample.rb +11 -11
  76. data/samples/sample2/art/logo.xpm +60 -0
  77. data/samples/sample2/sample.rb +2 -2
  78. data/samples/sample2/sample_shape.rb +15 -15
  79. data/samples/sample3/art/logo.xpm +60 -0
  80. data/samples/sample3/sample.rb +3 -3
  81. data/samples/sample4/art/logo.xpm +60 -0
  82. data/samples/sample4/sample.rb +2 -2
  83. data/tests/lib/wxapp_runner.rb +4 -0
  84. data/tests/serializer_tests.rb +8 -441
  85. data/tests/test_grid_shapes.rb +2 -2
  86. data/tests/test_serialize_xml.rb +17 -0
  87. data/tests/test_serialize_yaml.rb +2 -2
  88. metadata +78 -28
  89. data/lib/wx/shapes/serialize/core.rb +0 -40
  90. data/lib/wx/shapes/serialize/id.rb +0 -82
  91. data/lib/wx/shapes/serializer/json.rb +0 -258
  92. data/lib/wx/shapes/serializer/yaml.rb +0 -125
  93. data/samples/demo/art/sample.xpm +0 -251
  94. data/samples/sample1/art/sample.xpm +0 -251
  95. data/samples/sample2/art/sample.xpm +0 -251
  96. data/samples/sample3/art/sample.xpm +0 -251
  97. data/samples/sample4/art/sample.xpm +0 -251
@@ -0,0 +1,4072 @@
1
+ ---
2
+ - !ruby/object:Wx::SF::ShapeCanvas::Version
3
+ :version_info: !ruby/struct:Wx::SF::ShapeCanvas::Version::VersionInfo
4
+ major: 0
5
+ minor: 9
6
+ release: 0
7
+ - !ruby/object:Wx::SF::ShapeCanvas::Settings
8
+ :scale: 1.0
9
+ :min_scale: 0.1
10
+ :max_scale: 2.0
11
+ :background_color: !ruby/object:Wx::Colour
12
+ :colour:
13
+ - 240
14
+ - 240
15
+ - 240
16
+ - 255
17
+ :common_hover_color: !ruby/object:Wx::Colour
18
+ :colour:
19
+ - 120
20
+ - 120
21
+ - 255
22
+ - 255
23
+ :common_border_pen: &1 !ruby/object:Wx::Pen
24
+ :colour: !ruby/object:Wx::Colour
25
+ :colour:
26
+ - 0
27
+ - 0
28
+ - 0
29
+ - 255
30
+ :width: 1
31
+ :style: &5 !ruby/object:Wx::PenStyle
32
+ :value: 100
33
+ :common_fill_brush: &2 !ruby/object:Wx::Brush
34
+ :colour: !ruby/object:Wx::Colour
35
+ :colour:
36
+ - 255
37
+ - 255
38
+ - 255
39
+ - 255
40
+ :style: &6 !ruby/object:Wx::BrushStyle
41
+ :value: 100
42
+ :common_line_pen: *1
43
+ :common_arrow_fill: *2
44
+ :common_text_color: !ruby/object:Wx::Colour
45
+ :colour:
46
+ - 0
47
+ - 0
48
+ - 0
49
+ - 255
50
+ :common_text_fill: !ruby/object:Wx::Brush
51
+ :colour: !ruby/object:Wx::Colour
52
+ :colour:
53
+ - 0
54
+ - 0
55
+ - 0
56
+ - 255
57
+ :style: &3 !ruby/object:Wx::BrushStyle
58
+ :value: 106
59
+ :common_text_border: !ruby/object:Wx::Pen
60
+ :colour: !ruby/object:Wx::Colour
61
+ :colour:
62
+ - 0
63
+ - 0
64
+ - 0
65
+ - 255
66
+ :width: 1
67
+ :style: &4 !ruby/object:Wx::PenStyle
68
+ :value: 106
69
+ :common_text_font: !ruby/object:Wx::Font
70
+ :font_info: Sans 12
71
+ :common_control_fill: !ruby/object:Wx::Brush
72
+ :colour: !ruby/object:Wx::Colour
73
+ :colour:
74
+ - 0
75
+ - 0
76
+ - 0
77
+ - 255
78
+ :style: *3
79
+ :common_control_border: !ruby/object:Wx::Pen
80
+ :colour: !ruby/object:Wx::Colour
81
+ :colour:
82
+ - 0
83
+ - 0
84
+ - 0
85
+ - 255
86
+ :width: 1
87
+ :style: *4
88
+ :common_control_mod_fill: !ruby/object:Wx::Brush
89
+ :colour: !ruby/object:Wx::Colour
90
+ :colour:
91
+ - 0
92
+ - 0
93
+ - 255
94
+ - 255
95
+ :style: !ruby/object:Wx::BrushStyle
96
+ :value: 111
97
+ :common_control_mod_border: !ruby/object:Wx::Pen
98
+ :colour: !ruby/object:Wx::Colour
99
+ :colour:
100
+ - 0
101
+ - 0
102
+ - 255
103
+ - 255
104
+ :width: 1
105
+ :style: *5
106
+ :grid_line_mult: 10
107
+ :grid_color: !ruby/object:Wx::Colour
108
+ :colour:
109
+ - 200
110
+ - 200
111
+ - 200
112
+ - 255
113
+ :grid_style: !ruby/object:Wx::PenStyle
114
+ :value: 103
115
+ :gradient_from: !ruby/object:Wx::Colour
116
+ :colour:
117
+ - 240
118
+ - 240
119
+ - 240
120
+ - 255
121
+ :gradient_to: !ruby/object:Wx::Colour
122
+ :colour:
123
+ - 200
124
+ - 200
125
+ - 255
126
+ - 255
127
+ :style: !ruby/object:Wx::SF::ShapeCanvas::STYLE
128
+ :value: 3059
129
+ :shadow_offset: !ruby/object:Wx::RealPoint
130
+ :x: 4.0
131
+ :y: 4.0
132
+ :shadow_fill: !ruby/object:Wx::Brush
133
+ :colour: !ruby/object:Wx::Colour
134
+ :colour:
135
+ - 150
136
+ - 150
137
+ - 150
138
+ - 128
139
+ :style: *6
140
+ :print_h_align: !ruby/object:Wx::SF::ShapeCanvas::HALIGN
141
+ :value: 2
142
+ :print_v_align: !ruby/object:Wx::SF::ShapeCanvas::VALIGN
143
+ :value: 2
144
+ :print_mode: !ruby/object:Wx::SF::ShapeCanvas::PRINTMODE
145
+ :value: 2
146
+ :grid_size: 10
147
+ - !ruby/object:Wx::SF::Diagram
148
+ :shapes: !ruby/object:Wx::SF::ShapeList
149
+ :list: !ruby/object:Set
150
+ hash:
151
+ ? !ruby/object:Wx::SF::RoundRectShape
152
+ :radius: 20
153
+ :rect_size: !ruby/object:Wx::RealPoint
154
+ :x: 151.0
155
+ :y: 102.0
156
+ :fill: !ruby/object:Wx::Brush
157
+ :colour: !ruby/object:Wx::Colour
158
+ :colour:
159
+ - 255
160
+ - 255
161
+ - 255
162
+ - 255
163
+ :style: *6
164
+ :border: !ruby/object:Wx::Pen
165
+ :colour: !ruby/object:Wx::Colour
166
+ :colour:
167
+ - 0
168
+ - 0
169
+ - 0
170
+ - 255
171
+ :width: 1
172
+ :style: *5
173
+ :active: true
174
+ :visibility: true
175
+ :style: !ruby/object:Wx::SF::Shape::STYLE
176
+ :value: 319
177
+ :accepted_children: !ruby/object:Set
178
+ hash:
179
+ Wx::SF::TextShape: true
180
+ Wx::SF::EditTextShape: true
181
+ Wx::SF::RectShape: true
182
+ Wx::SF::VBoxShape: true
183
+ :accepted_connections: !ruby/object:Set
184
+ hash:
185
+ NilClass: true
186
+ :accepted_src_neighbours: !ruby/object:Set
187
+ hash:
188
+ NilClass: true
189
+ :accepted_trg_neighbours: !ruby/object:Set
190
+ hash:
191
+ NilClass: true
192
+ :relative_position: !ruby/object:Wx::RealPoint
193
+ :x: 130.0
194
+ :y: 455.0
195
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
196
+ :value: 0
197
+ :v_align: &7 !ruby/object:Wx::SF::Shape::VALIGN
198
+ :value: 0
199
+ :h_border: 0.0
200
+ :v_border: 0.0
201
+ :custom_dock_point: -3
202
+ :connection_points: []
203
+ :user_data:
204
+ :hover_colour: &8 !ruby/object:Wx::Colour
205
+ :colour:
206
+ - 120
207
+ - 120
208
+ - 255
209
+ - 255
210
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
211
+ :list: !ruby/object:Set
212
+ hash:
213
+ ? !ruby/object:Wx::SF::RectShape
214
+ :rect_size: !ruby/object:Wx::RealPoint
215
+ :x: 151.0
216
+ :y: 1.0
217
+ :fill: !ruby/object:Wx::Brush
218
+ :colour: !ruby/object:Wx::Colour
219
+ :colour:
220
+ - 255
221
+ - 255
222
+ - 255
223
+ - 255
224
+ :style: *6
225
+ :border: !ruby/object:Wx::Pen
226
+ :colour: !ruby/object:Wx::Colour
227
+ :colour:
228
+ - 0
229
+ - 0
230
+ - 0
231
+ - 255
232
+ :width: 1
233
+ :style: *5
234
+ :active: true
235
+ :visibility: true
236
+ :style: 317
237
+ :accepted_children: !ruby/object:Set
238
+ hash:
239
+ NilClass: true
240
+ :accepted_connections: !ruby/object:Set
241
+ hash:
242
+ NilClass: true
243
+ :accepted_src_neighbours: !ruby/object:Set
244
+ hash:
245
+ NilClass: true
246
+ :accepted_trg_neighbours: !ruby/object:Set
247
+ hash:
248
+ NilClass: true
249
+ :relative_position: !ruby/object:Wx::RealPoint
250
+ :x: 0.0
251
+ :y: 35.0
252
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
253
+ :value: 4
254
+ :v_align: *7
255
+ :h_border: 0.0
256
+ :v_border: 0.0
257
+ :custom_dock_point: -3
258
+ :connection_points: []
259
+ :user_data:
260
+ :hover_colour: *8
261
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
262
+ :list: !ruby/object:Set
263
+ hash: {}
264
+ : true
265
+ ? &23 !ruby/object:Wx::SF::RectShape
266
+ :rect_size: !ruby/object:Wx::RealPoint
267
+ :x: 151.0
268
+ :y: 21.0
269
+ :fill: !ruby/object:Wx::Brush
270
+ :colour: !ruby/object:Wx::Colour
271
+ :colour:
272
+ - 255
273
+ - 255
274
+ - 255
275
+ - 255
276
+ :style: *3
277
+ :border: !ruby/object:Wx::Pen
278
+ :colour: !ruby/object:Wx::Colour
279
+ :colour:
280
+ - 0
281
+ - 0
282
+ - 0
283
+ - 255
284
+ :width: 1
285
+ :style: &11 !ruby/object:Wx::PenStyle
286
+ :value: 101
287
+ :active: true
288
+ :visibility: true
289
+ :style: 262463
290
+ :accepted_children: !ruby/object:Set
291
+ hash:
292
+ NilClass: true
293
+ :accepted_connections: !ruby/object:Set
294
+ hash:
295
+ NilClass: true
296
+ :accepted_src_neighbours: !ruby/object:Set
297
+ hash:
298
+ NilClass: true
299
+ :accepted_trg_neighbours: !ruby/object:Set
300
+ hash:
301
+ NilClass: true
302
+ :relative_position: !ruby/object:Wx::RealPoint
303
+ :x: 0.0
304
+ :y: 44.0
305
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
306
+ :value: 4
307
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
308
+ :value: 0
309
+ :h_border: 0.0
310
+ :v_border: 0.0
311
+ :custom_dock_point: -3
312
+ :connection_points:
313
+ - !ruby/object:Wx::SF::ConnectionPoint
314
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
315
+ :value: 4
316
+ :ortho_direction: &9 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
317
+ :value: 2
318
+ :relative_position: &10 !ruby/object:Wx::RealPoint
319
+ :x: 0.0
320
+ :y: 0.0
321
+ - !ruby/object:Wx::SF::ConnectionPoint
322
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
323
+ :value: 6
324
+ :ortho_direction: *9
325
+ :relative_position: *10
326
+ :user_data:
327
+ :hover_colour: *8
328
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
329
+ :list: !ruby/object:Set
330
+ hash:
331
+ ? !ruby/object:Wx::SF::EditTextShape
332
+ :force_multiline: false
333
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
334
+ :value: 0
335
+ :text: 'group id : integer'
336
+ :text_colour: !ruby/object:Wx::Colour
337
+ :colour:
338
+ - 0
339
+ - 0
340
+ - 0
341
+ - 255
342
+ :font: !ruby/object:Wx::Font
343
+ :font_info: Sans 12
344
+ :rect_size: !ruby/object:Wx::RealPoint
345
+ :x: 122.0
346
+ :y: 19.0
347
+ :fill: !ruby/object:Wx::Brush
348
+ :colour: !ruby/object:Wx::Colour
349
+ :colour:
350
+ - 0
351
+ - 0
352
+ - 0
353
+ - 255
354
+ :style: *3
355
+ :border: !ruby/object:Wx::Pen
356
+ :colour: !ruby/object:Wx::Colour
357
+ :colour:
358
+ - 0
359
+ - 0
360
+ - 0
361
+ - 255
362
+ :width: 1
363
+ :style: *4
364
+ :active: true
365
+ :visibility: true
366
+ :style: 422200
367
+ :accepted_children: !ruby/object:Set
368
+ hash: {}
369
+ :accepted_connections: !ruby/object:Set
370
+ hash:
371
+ NilClass: true
372
+ :accepted_src_neighbours: !ruby/object:Set
373
+ hash:
374
+ NilClass: true
375
+ :accepted_trg_neighbours: !ruby/object:Set
376
+ hash:
377
+ Wx::SF::TextShape: true
378
+ Wx::SF::EditTextShape: true
379
+ :relative_position: !ruby/object:Wx::RealPoint
380
+ :x: 5.0
381
+ :y: 1.0
382
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
383
+ :value: 1
384
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
385
+ :value: 1
386
+ :h_border: 5.0
387
+ :v_border: 1.0
388
+ :custom_dock_point: -3
389
+ :connection_points: []
390
+ :user_data:
391
+ :hover_colour: *8
392
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
393
+ :list: !ruby/object:Set
394
+ hash: {}
395
+ : true
396
+ : true
397
+ ? !ruby/object:Wx::SF::RectShape
398
+ :rect_size: !ruby/object:Wx::RealPoint
399
+ :x: 151.0
400
+ :y: 21.0
401
+ :fill: !ruby/object:Wx::Brush
402
+ :colour: !ruby/object:Wx::Colour
403
+ :colour:
404
+ - 255
405
+ - 255
406
+ - 255
407
+ - 255
408
+ :style: *3
409
+ :border: !ruby/object:Wx::Pen
410
+ :colour: !ruby/object:Wx::Colour
411
+ :colour:
412
+ - 0
413
+ - 0
414
+ - 0
415
+ - 255
416
+ :width: 1
417
+ :style: *11
418
+ :active: true
419
+ :visibility: true
420
+ :style: 262463
421
+ :accepted_children: !ruby/object:Set
422
+ hash:
423
+ NilClass: true
424
+ :accepted_connections: !ruby/object:Set
425
+ hash:
426
+ NilClass: true
427
+ :accepted_src_neighbours: !ruby/object:Set
428
+ hash:
429
+ NilClass: true
430
+ :accepted_trg_neighbours: !ruby/object:Set
431
+ hash:
432
+ NilClass: true
433
+ :relative_position: !ruby/object:Wx::RealPoint
434
+ :x: 0.0
435
+ :y: 64.0
436
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
437
+ :value: 4
438
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
439
+ :value: 0
440
+ :h_border: 0.0
441
+ :v_border: 0.0
442
+ :custom_dock_point: -3
443
+ :connection_points:
444
+ - !ruby/object:Wx::SF::ConnectionPoint
445
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
446
+ :value: 4
447
+ :ortho_direction: &12 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
448
+ :value: 2
449
+ :relative_position: &13 !ruby/object:Wx::RealPoint
450
+ :x: 0.0
451
+ :y: 0.0
452
+ - !ruby/object:Wx::SF::ConnectionPoint
453
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
454
+ :value: 6
455
+ :ortho_direction: *12
456
+ :relative_position: *13
457
+ :user_data:
458
+ :hover_colour: *8
459
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
460
+ :list: !ruby/object:Set
461
+ hash:
462
+ ? !ruby/object:Wx::SF::EditTextShape
463
+ :force_multiline: false
464
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
465
+ :value: 0
466
+ :text: 'name : string'
467
+ :text_colour: !ruby/object:Wx::Colour
468
+ :colour:
469
+ - 0
470
+ - 0
471
+ - 0
472
+ - 255
473
+ :font: !ruby/object:Wx::Font
474
+ :font_info: Sans 12
475
+ :rect_size: !ruby/object:Wx::RealPoint
476
+ :x: 96.0
477
+ :y: 19.0
478
+ :fill: !ruby/object:Wx::Brush
479
+ :colour: !ruby/object:Wx::Colour
480
+ :colour:
481
+ - 0
482
+ - 0
483
+ - 0
484
+ - 255
485
+ :style: *3
486
+ :border: !ruby/object:Wx::Pen
487
+ :colour: !ruby/object:Wx::Colour
488
+ :colour:
489
+ - 0
490
+ - 0
491
+ - 0
492
+ - 255
493
+ :width: 1
494
+ :style: *4
495
+ :active: true
496
+ :visibility: true
497
+ :style: 422200
498
+ :accepted_children: !ruby/object:Set
499
+ hash: {}
500
+ :accepted_connections: !ruby/object:Set
501
+ hash:
502
+ NilClass: true
503
+ :accepted_src_neighbours: !ruby/object:Set
504
+ hash:
505
+ NilClass: true
506
+ :accepted_trg_neighbours: !ruby/object:Set
507
+ hash:
508
+ Wx::SF::TextShape: true
509
+ Wx::SF::EditTextShape: true
510
+ :relative_position: !ruby/object:Wx::RealPoint
511
+ :x: 5.0
512
+ :y: 1.0
513
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
514
+ :value: 1
515
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
516
+ :value: 1
517
+ :h_border: 5.0
518
+ :v_border: 1.0
519
+ :custom_dock_point: -3
520
+ :connection_points: []
521
+ :user_data:
522
+ :hover_colour: *8
523
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
524
+ :list: !ruby/object:Set
525
+ hash: {}
526
+ : true
527
+ : true
528
+ ? !ruby/object:Wx::SF::EditTextShape
529
+ :force_multiline: false
530
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
531
+ :value: 0
532
+ :text: Groups
533
+ :text_colour: !ruby/object:Wx::Colour
534
+ :colour:
535
+ - 0
536
+ - 0
537
+ - 0
538
+ - 255
539
+ :font: !ruby/object:Wx::Font
540
+ :font_info: Sans 12
541
+ :rect_size: !ruby/object:Wx::RealPoint
542
+ :x: 55.0
543
+ :y: 19.0
544
+ :fill: !ruby/object:Wx::Brush
545
+ :colour: !ruby/object:Wx::Colour
546
+ :colour:
547
+ - 0
548
+ - 0
549
+ - 0
550
+ - 255
551
+ :style: *3
552
+ :border: !ruby/object:Wx::Pen
553
+ :colour: !ruby/object:Wx::Colour
554
+ :colour:
555
+ - 0
556
+ - 0
557
+ - 0
558
+ - 255
559
+ :width: 1
560
+ :style: *4
561
+ :active: true
562
+ :visibility: true
563
+ :style: !ruby/object:Wx::SF::Shape::STYLE
564
+ :value: 319
565
+ :accepted_children: !ruby/object:Set
566
+ hash: {}
567
+ :accepted_connections: !ruby/object:Set
568
+ hash:
569
+ NilClass: true
570
+ :accepted_src_neighbours: !ruby/object:Set
571
+ hash:
572
+ NilClass: true
573
+ :accepted_trg_neighbours: !ruby/object:Set
574
+ hash:
575
+ Wx::SF::TextShape: true
576
+ Wx::SF::EditTextShape: true
577
+ :relative_position: !ruby/object:Wx::RealPoint
578
+ :x: 48.0
579
+ :y: 10.0
580
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
581
+ :value: 2
582
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
583
+ :value: 1
584
+ :h_border: 0.0
585
+ :v_border: 10.0
586
+ :custom_dock_point: -3
587
+ :connection_points: []
588
+ :user_data:
589
+ :hover_colour: *8
590
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
591
+ :list: !ruby/object:Set
592
+ hash: {}
593
+ : true
594
+ : true
595
+ ? !ruby/object:Wx::SF::RoundRectShape
596
+ :radius: 20
597
+ :rect_size: !ruby/object:Wx::RealPoint
598
+ :x: 151.0
599
+ :y: 145.0
600
+ :fill: !ruby/object:Wx::Brush
601
+ :colour: !ruby/object:Wx::Colour
602
+ :colour:
603
+ - 255
604
+ - 255
605
+ - 255
606
+ - 255
607
+ :style: *6
608
+ :border: !ruby/object:Wx::Pen
609
+ :colour: !ruby/object:Wx::Colour
610
+ :colour:
611
+ - 0
612
+ - 0
613
+ - 0
614
+ - 255
615
+ :width: 1
616
+ :style: *5
617
+ :active: true
618
+ :visibility: true
619
+ :style: !ruby/object:Wx::SF::Shape::STYLE
620
+ :value: 319
621
+ :accepted_children: !ruby/object:Set
622
+ hash:
623
+ Wx::SF::TextShape: true
624
+ Wx::SF::EditTextShape: true
625
+ Wx::SF::RectShape: true
626
+ Wx::SF::VBoxShape: true
627
+ :accepted_connections: !ruby/object:Set
628
+ hash:
629
+ NilClass: true
630
+ :accepted_src_neighbours: !ruby/object:Set
631
+ hash:
632
+ NilClass: true
633
+ :accepted_trg_neighbours: !ruby/object:Set
634
+ hash:
635
+ NilClass: true
636
+ :relative_position: !ruby/object:Wx::RealPoint
637
+ :x: 129.0
638
+ :y: 234.0
639
+ :h_align: &25 !ruby/object:Wx::SF::Shape::HALIGN
640
+ :value: 0
641
+ :v_align: &14 !ruby/object:Wx::SF::Shape::VALIGN
642
+ :value: 0
643
+ :h_border: 0.0
644
+ :v_border: 0.0
645
+ :custom_dock_point: -3
646
+ :connection_points: []
647
+ :user_data:
648
+ :hover_colour: *8
649
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
650
+ :list: !ruby/object:Set
651
+ hash:
652
+ ? !ruby/object:Wx::SF::EditTextShape
653
+ :force_multiline: false
654
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
655
+ :value: 0
656
+ :text: Students
657
+ :text_colour: !ruby/object:Wx::Colour
658
+ :colour:
659
+ - 0
660
+ - 0
661
+ - 0
662
+ - 255
663
+ :font: !ruby/object:Wx::Font
664
+ :font_info: Sans 12
665
+ :rect_size: !ruby/object:Wx::RealPoint
666
+ :x: 67.0
667
+ :y: 19.0
668
+ :fill: !ruby/object:Wx::Brush
669
+ :colour: !ruby/object:Wx::Colour
670
+ :colour:
671
+ - 0
672
+ - 0
673
+ - 0
674
+ - 255
675
+ :style: *3
676
+ :border: !ruby/object:Wx::Pen
677
+ :colour: !ruby/object:Wx::Colour
678
+ :colour:
679
+ - 0
680
+ - 0
681
+ - 0
682
+ - 255
683
+ :width: 1
684
+ :style: *4
685
+ :active: true
686
+ :visibility: true
687
+ :style: !ruby/object:Wx::SF::Shape::STYLE
688
+ :value: 319
689
+ :accepted_children: !ruby/object:Set
690
+ hash: {}
691
+ :accepted_connections: !ruby/object:Set
692
+ hash:
693
+ NilClass: true
694
+ :accepted_src_neighbours: !ruby/object:Set
695
+ hash:
696
+ NilClass: true
697
+ :accepted_trg_neighbours: !ruby/object:Set
698
+ hash:
699
+ Wx::SF::TextShape: true
700
+ Wx::SF::EditTextShape: true
701
+ :relative_position: !ruby/object:Wx::RealPoint
702
+ :x: 42.0
703
+ :y: 10.0
704
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
705
+ :value: 2
706
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
707
+ :value: 1
708
+ :h_border: 0.0
709
+ :v_border: 10.0
710
+ :custom_dock_point: -3
711
+ :connection_points: []
712
+ :user_data:
713
+ :hover_colour: *8
714
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
715
+ :list: !ruby/object:Set
716
+ hash: {}
717
+ : true
718
+ ? !ruby/object:Wx::SF::RectShape
719
+ :rect_size: !ruby/object:Wx::RealPoint
720
+ :x: 151.0
721
+ :y: 1.0
722
+ :fill: !ruby/object:Wx::Brush
723
+ :colour: !ruby/object:Wx::Colour
724
+ :colour:
725
+ - 255
726
+ - 255
727
+ - 255
728
+ - 255
729
+ :style: *6
730
+ :border: !ruby/object:Wx::Pen
731
+ :colour: !ruby/object:Wx::Colour
732
+ :colour:
733
+ - 0
734
+ - 0
735
+ - 0
736
+ - 255
737
+ :width: 1
738
+ :style: *5
739
+ :active: true
740
+ :visibility: true
741
+ :style: 317
742
+ :accepted_children: !ruby/object:Set
743
+ hash:
744
+ NilClass: true
745
+ :accepted_connections: !ruby/object:Set
746
+ hash:
747
+ NilClass: true
748
+ :accepted_src_neighbours: !ruby/object:Set
749
+ hash:
750
+ NilClass: true
751
+ :accepted_trg_neighbours: !ruby/object:Set
752
+ hash:
753
+ NilClass: true
754
+ :relative_position: !ruby/object:Wx::RealPoint
755
+ :x: 0.0
756
+ :y: 35.0
757
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
758
+ :value: 4
759
+ :v_align: *14
760
+ :h_border: 0.0
761
+ :v_border: 0.0
762
+ :custom_dock_point: -3
763
+ :connection_points: []
764
+ :user_data:
765
+ :hover_colour: *8
766
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
767
+ :list: !ruby/object:Set
768
+ hash: {}
769
+ : true
770
+ ? &26 !ruby/object:Wx::SF::RectShape
771
+ :rect_size: !ruby/object:Wx::RealPoint
772
+ :x: 151.0
773
+ :y: 21.0
774
+ :fill: !ruby/object:Wx::Brush
775
+ :colour: !ruby/object:Wx::Colour
776
+ :colour:
777
+ - 255
778
+ - 255
779
+ - 255
780
+ - 255
781
+ :style: *3
782
+ :border: !ruby/object:Wx::Pen
783
+ :colour: !ruby/object:Wx::Colour
784
+ :colour:
785
+ - 0
786
+ - 0
787
+ - 0
788
+ - 255
789
+ :width: 1
790
+ :style: *11
791
+ :active: true
792
+ :visibility: true
793
+ :style: 262463
794
+ :accepted_children: !ruby/object:Set
795
+ hash:
796
+ NilClass: true
797
+ :accepted_connections: !ruby/object:Set
798
+ hash:
799
+ NilClass: true
800
+ :accepted_src_neighbours: !ruby/object:Set
801
+ hash:
802
+ NilClass: true
803
+ :accepted_trg_neighbours: !ruby/object:Set
804
+ hash:
805
+ NilClass: true
806
+ :relative_position: !ruby/object:Wx::RealPoint
807
+ :x: 0.0
808
+ :y: 44.0
809
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
810
+ :value: 4
811
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
812
+ :value: 0
813
+ :h_border: 0.0
814
+ :v_border: 0.0
815
+ :custom_dock_point: -3
816
+ :connection_points:
817
+ - !ruby/object:Wx::SF::ConnectionPoint
818
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
819
+ :value: 4
820
+ :ortho_direction: &15 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
821
+ :value: 2
822
+ :relative_position: &16 !ruby/object:Wx::RealPoint
823
+ :x: 0.0
824
+ :y: 0.0
825
+ - !ruby/object:Wx::SF::ConnectionPoint
826
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
827
+ :value: 6
828
+ :ortho_direction: *15
829
+ :relative_position: *16
830
+ :user_data:
831
+ :hover_colour: *8
832
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
833
+ :list: !ruby/object:Set
834
+ hash:
835
+ ? !ruby/object:Wx::SF::EditTextShape
836
+ :force_multiline: false
837
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
838
+ :value: 0
839
+ :text: 'student id : integer'
840
+ :text_colour: !ruby/object:Wx::Colour
841
+ :colour:
842
+ - 0
843
+ - 0
844
+ - 0
845
+ - 255
846
+ :font: !ruby/object:Wx::Font
847
+ :font_info: Sans 12
848
+ :rect_size: !ruby/object:Wx::RealPoint
849
+ :x: 134.0
850
+ :y: 19.0
851
+ :fill: !ruby/object:Wx::Brush
852
+ :colour: !ruby/object:Wx::Colour
853
+ :colour:
854
+ - 0
855
+ - 0
856
+ - 0
857
+ - 255
858
+ :style: *3
859
+ :border: !ruby/object:Wx::Pen
860
+ :colour: !ruby/object:Wx::Colour
861
+ :colour:
862
+ - 0
863
+ - 0
864
+ - 0
865
+ - 255
866
+ :width: 1
867
+ :style: *4
868
+ :active: true
869
+ :visibility: true
870
+ :style: 422200
871
+ :accepted_children: !ruby/object:Set
872
+ hash: {}
873
+ :accepted_connections: !ruby/object:Set
874
+ hash:
875
+ NilClass: true
876
+ :accepted_src_neighbours: !ruby/object:Set
877
+ hash:
878
+ NilClass: true
879
+ :accepted_trg_neighbours: !ruby/object:Set
880
+ hash:
881
+ Wx::SF::TextShape: true
882
+ Wx::SF::EditTextShape: true
883
+ :relative_position: !ruby/object:Wx::RealPoint
884
+ :x: 5.0
885
+ :y: 1.0
886
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
887
+ :value: 1
888
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
889
+ :value: 1
890
+ :h_border: 5.0
891
+ :v_border: 1.0
892
+ :custom_dock_point: -3
893
+ :connection_points: []
894
+ :user_data:
895
+ :hover_colour: *8
896
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
897
+ :list: !ruby/object:Set
898
+ hash: {}
899
+ : true
900
+ : true
901
+ ? !ruby/object:Wx::SF::RectShape
902
+ :rect_size: !ruby/object:Wx::RealPoint
903
+ :x: 151.0
904
+ :y: 21.0
905
+ :fill: !ruby/object:Wx::Brush
906
+ :colour: !ruby/object:Wx::Colour
907
+ :colour:
908
+ - 255
909
+ - 255
910
+ - 255
911
+ - 255
912
+ :style: *3
913
+ :border: !ruby/object:Wx::Pen
914
+ :colour: !ruby/object:Wx::Colour
915
+ :colour:
916
+ - 0
917
+ - 0
918
+ - 0
919
+ - 255
920
+ :width: 1
921
+ :style: *11
922
+ :active: true
923
+ :visibility: true
924
+ :style: 262463
925
+ :accepted_children: !ruby/object:Set
926
+ hash:
927
+ NilClass: true
928
+ :accepted_connections: !ruby/object:Set
929
+ hash:
930
+ NilClass: true
931
+ :accepted_src_neighbours: !ruby/object:Set
932
+ hash:
933
+ NilClass: true
934
+ :accepted_trg_neighbours: !ruby/object:Set
935
+ hash:
936
+ NilClass: true
937
+ :relative_position: !ruby/object:Wx::RealPoint
938
+ :x: 0.0
939
+ :y: 64.0
940
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
941
+ :value: 4
942
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
943
+ :value: 0
944
+ :h_border: 0.0
945
+ :v_border: 0.0
946
+ :custom_dock_point: -3
947
+ :connection_points:
948
+ - !ruby/object:Wx::SF::ConnectionPoint
949
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
950
+ :value: 4
951
+ :ortho_direction: &17 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
952
+ :value: 2
953
+ :relative_position: &18 !ruby/object:Wx::RealPoint
954
+ :x: 0.0
955
+ :y: 0.0
956
+ - !ruby/object:Wx::SF::ConnectionPoint
957
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
958
+ :value: 6
959
+ :ortho_direction: *17
960
+ :relative_position: *18
961
+ :user_data:
962
+ :hover_colour: *8
963
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
964
+ :list: !ruby/object:Set
965
+ hash:
966
+ ? !ruby/object:Wx::SF::EditTextShape
967
+ :force_multiline: false
968
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
969
+ :value: 0
970
+ :text: 'first name : string'
971
+ :text_colour: !ruby/object:Wx::Colour
972
+ :colour:
973
+ - 0
974
+ - 0
975
+ - 0
976
+ - 255
977
+ :font: !ruby/object:Wx::Font
978
+ :font_info: Sans 12
979
+ :rect_size: !ruby/object:Wx::RealPoint
980
+ :x: 127.0
981
+ :y: 19.0
982
+ :fill: !ruby/object:Wx::Brush
983
+ :colour: !ruby/object:Wx::Colour
984
+ :colour:
985
+ - 0
986
+ - 0
987
+ - 0
988
+ - 255
989
+ :style: *3
990
+ :border: !ruby/object:Wx::Pen
991
+ :colour: !ruby/object:Wx::Colour
992
+ :colour:
993
+ - 0
994
+ - 0
995
+ - 0
996
+ - 255
997
+ :width: 1
998
+ :style: *4
999
+ :active: true
1000
+ :visibility: true
1001
+ :style: 422200
1002
+ :accepted_children: !ruby/object:Set
1003
+ hash: {}
1004
+ :accepted_connections: !ruby/object:Set
1005
+ hash:
1006
+ NilClass: true
1007
+ :accepted_src_neighbours: !ruby/object:Set
1008
+ hash:
1009
+ NilClass: true
1010
+ :accepted_trg_neighbours: !ruby/object:Set
1011
+ hash:
1012
+ Wx::SF::TextShape: true
1013
+ Wx::SF::EditTextShape: true
1014
+ :relative_position: !ruby/object:Wx::RealPoint
1015
+ :x: 5.0
1016
+ :y: 1.0
1017
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1018
+ :value: 1
1019
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1020
+ :value: 1
1021
+ :h_border: 5.0
1022
+ :v_border: 1.0
1023
+ :custom_dock_point: -3
1024
+ :connection_points: []
1025
+ :user_data:
1026
+ :hover_colour: *8
1027
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1028
+ :list: !ruby/object:Set
1029
+ hash: {}
1030
+ : true
1031
+ : true
1032
+ ? !ruby/object:Wx::SF::RectShape
1033
+ :rect_size: !ruby/object:Wx::RealPoint
1034
+ :x: 151.0
1035
+ :y: 21.0
1036
+ :fill: !ruby/object:Wx::Brush
1037
+ :colour: !ruby/object:Wx::Colour
1038
+ :colour:
1039
+ - 255
1040
+ - 255
1041
+ - 255
1042
+ - 255
1043
+ :style: *3
1044
+ :border: !ruby/object:Wx::Pen
1045
+ :colour: !ruby/object:Wx::Colour
1046
+ :colour:
1047
+ - 0
1048
+ - 0
1049
+ - 0
1050
+ - 255
1051
+ :width: 1
1052
+ :style: *11
1053
+ :active: true
1054
+ :visibility: true
1055
+ :style: 262463
1056
+ :accepted_children: !ruby/object:Set
1057
+ hash:
1058
+ NilClass: true
1059
+ :accepted_connections: !ruby/object:Set
1060
+ hash:
1061
+ NilClass: true
1062
+ :accepted_src_neighbours: !ruby/object:Set
1063
+ hash:
1064
+ NilClass: true
1065
+ :accepted_trg_neighbours: !ruby/object:Set
1066
+ hash:
1067
+ NilClass: true
1068
+ :relative_position: !ruby/object:Wx::RealPoint
1069
+ :x: 0.0
1070
+ :y: 84.0
1071
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1072
+ :value: 4
1073
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1074
+ :value: 0
1075
+ :h_border: 0.0
1076
+ :v_border: 0.0
1077
+ :custom_dock_point: -3
1078
+ :connection_points:
1079
+ - !ruby/object:Wx::SF::ConnectionPoint
1080
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1081
+ :value: 4
1082
+ :ortho_direction: &19 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
1083
+ :value: 2
1084
+ :relative_position: &20 !ruby/object:Wx::RealPoint
1085
+ :x: 0.0
1086
+ :y: 0.0
1087
+ - !ruby/object:Wx::SF::ConnectionPoint
1088
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1089
+ :value: 6
1090
+ :ortho_direction: *19
1091
+ :relative_position: *20
1092
+ :user_data:
1093
+ :hover_colour: *8
1094
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1095
+ :list: !ruby/object:Set
1096
+ hash:
1097
+ ? !ruby/object:Wx::SF::EditTextShape
1098
+ :force_multiline: false
1099
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
1100
+ :value: 0
1101
+ :text: 'last name : string'
1102
+ :text_colour: !ruby/object:Wx::Colour
1103
+ :colour:
1104
+ - 0
1105
+ - 0
1106
+ - 0
1107
+ - 255
1108
+ :font: !ruby/object:Wx::Font
1109
+ :font_info: Sans 12
1110
+ :rect_size: !ruby/object:Wx::RealPoint
1111
+ :x: 126.0
1112
+ :y: 19.0
1113
+ :fill: !ruby/object:Wx::Brush
1114
+ :colour: !ruby/object:Wx::Colour
1115
+ :colour:
1116
+ - 0
1117
+ - 0
1118
+ - 0
1119
+ - 255
1120
+ :style: *3
1121
+ :border: !ruby/object:Wx::Pen
1122
+ :colour: !ruby/object:Wx::Colour
1123
+ :colour:
1124
+ - 0
1125
+ - 0
1126
+ - 0
1127
+ - 255
1128
+ :width: 1
1129
+ :style: *4
1130
+ :active: true
1131
+ :visibility: true
1132
+ :style: 422200
1133
+ :accepted_children: !ruby/object:Set
1134
+ hash: {}
1135
+ :accepted_connections: !ruby/object:Set
1136
+ hash:
1137
+ NilClass: true
1138
+ :accepted_src_neighbours: !ruby/object:Set
1139
+ hash:
1140
+ NilClass: true
1141
+ :accepted_trg_neighbours: !ruby/object:Set
1142
+ hash:
1143
+ Wx::SF::TextShape: true
1144
+ Wx::SF::EditTextShape: true
1145
+ :relative_position: !ruby/object:Wx::RealPoint
1146
+ :x: 5.0
1147
+ :y: 1.0
1148
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1149
+ :value: 1
1150
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1151
+ :value: 1
1152
+ :h_border: 5.0
1153
+ :v_border: 1.0
1154
+ :custom_dock_point: -3
1155
+ :connection_points: []
1156
+ :user_data:
1157
+ :hover_colour: *8
1158
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1159
+ :list: !ruby/object:Set
1160
+ hash: {}
1161
+ : true
1162
+ : true
1163
+ ? &24 !ruby/object:Wx::SF::RectShape
1164
+ :rect_size: !ruby/object:Wx::RealPoint
1165
+ :x: 151.0
1166
+ :y: 21.0
1167
+ :fill: !ruby/object:Wx::Brush
1168
+ :colour: !ruby/object:Wx::Colour
1169
+ :colour:
1170
+ - 255
1171
+ - 255
1172
+ - 255
1173
+ - 255
1174
+ :style: *3
1175
+ :border: !ruby/object:Wx::Pen
1176
+ :colour: !ruby/object:Wx::Colour
1177
+ :colour:
1178
+ - 0
1179
+ - 0
1180
+ - 0
1181
+ - 255
1182
+ :width: 1
1183
+ :style: *11
1184
+ :active: true
1185
+ :visibility: true
1186
+ :style: 262463
1187
+ :accepted_children: !ruby/object:Set
1188
+ hash:
1189
+ NilClass: true
1190
+ :accepted_connections: !ruby/object:Set
1191
+ hash:
1192
+ NilClass: true
1193
+ :accepted_src_neighbours: !ruby/object:Set
1194
+ hash:
1195
+ NilClass: true
1196
+ :accepted_trg_neighbours: !ruby/object:Set
1197
+ hash:
1198
+ NilClass: true
1199
+ :relative_position: !ruby/object:Wx::RealPoint
1200
+ :x: 0.0
1201
+ :y: 104.0
1202
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1203
+ :value: 4
1204
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1205
+ :value: 0
1206
+ :h_border: 0.0
1207
+ :v_border: 0.0
1208
+ :custom_dock_point: -3
1209
+ :connection_points:
1210
+ - !ruby/object:Wx::SF::ConnectionPoint
1211
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1212
+ :value: 4
1213
+ :ortho_direction: &21 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
1214
+ :value: 2
1215
+ :relative_position: &22 !ruby/object:Wx::RealPoint
1216
+ :x: 0.0
1217
+ :y: 0.0
1218
+ - !ruby/object:Wx::SF::ConnectionPoint
1219
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1220
+ :value: 6
1221
+ :ortho_direction: *21
1222
+ :relative_position: *22
1223
+ :user_data:
1224
+ :hover_colour: *8
1225
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1226
+ :list: !ruby/object:Set
1227
+ hash:
1228
+ ? !ruby/object:Wx::SF::EditTextShape
1229
+ :force_multiline: false
1230
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
1231
+ :value: 0
1232
+ :text: 'group id : integer'
1233
+ :text_colour: !ruby/object:Wx::Colour
1234
+ :colour:
1235
+ - 0
1236
+ - 0
1237
+ - 0
1238
+ - 255
1239
+ :font: !ruby/object:Wx::Font
1240
+ :font_info: Sans 12
1241
+ :rect_size: !ruby/object:Wx::RealPoint
1242
+ :x: 122.0
1243
+ :y: 19.0
1244
+ :fill: !ruby/object:Wx::Brush
1245
+ :colour: !ruby/object:Wx::Colour
1246
+ :colour:
1247
+ - 0
1248
+ - 0
1249
+ - 0
1250
+ - 255
1251
+ :style: *3
1252
+ :border: !ruby/object:Wx::Pen
1253
+ :colour: !ruby/object:Wx::Colour
1254
+ :colour:
1255
+ - 0
1256
+ - 0
1257
+ - 0
1258
+ - 255
1259
+ :width: 1
1260
+ :style: *4
1261
+ :active: true
1262
+ :visibility: true
1263
+ :style: 422200
1264
+ :accepted_children: !ruby/object:Set
1265
+ hash: {}
1266
+ :accepted_connections: !ruby/object:Set
1267
+ hash:
1268
+ NilClass: true
1269
+ :accepted_src_neighbours: !ruby/object:Set
1270
+ hash:
1271
+ NilClass: true
1272
+ :accepted_trg_neighbours: !ruby/object:Set
1273
+ hash:
1274
+ Wx::SF::TextShape: true
1275
+ Wx::SF::EditTextShape: true
1276
+ :relative_position: !ruby/object:Wx::RealPoint
1277
+ :x: 5.0
1278
+ :y: 1.0
1279
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1280
+ :value: 1
1281
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1282
+ :value: 1
1283
+ :h_border: 5.0
1284
+ :v_border: 1.0
1285
+ :custom_dock_point: -3
1286
+ :connection_points: []
1287
+ :user_data:
1288
+ :hover_colour: *8
1289
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1290
+ :list: !ruby/object:Set
1291
+ hash: {}
1292
+ : true
1293
+ : true
1294
+ : true
1295
+ ? !ruby/object:Wx::SF::RoundOrthoLineShape
1296
+ :max_radius: 7
1297
+ :src_shape: *23
1298
+ :trg_shape: *24
1299
+ :stand_alone: false
1300
+ :src_arrow: !ruby/object:Wx::SF::DoubleCrossBarArrow
1301
+ :pen:
1302
+ :trg_arrow: !ruby/object:Wx::SF::CrossBarProngArrow
1303
+ :pen:
1304
+ :src_offset: !ruby/object:Wx::RealPoint
1305
+ :x: 0.0
1306
+ :y: 0.47619047619047616
1307
+ :trg_offset: !ruby/object:Wx::RealPoint
1308
+ :x: 0.0
1309
+ :y: 0.47619047619047616
1310
+ :dock_point: 18446744073709551616
1311
+ :control_points:
1312
+ - !ruby/object:Wx::RealPoint
1313
+ :x: 20.0
1314
+ :y: 476.0
1315
+ - !ruby/object:Wx::RealPoint
1316
+ :x: 23.0
1317
+ :y: 376.0
1318
+ :line_pen: !ruby/object:Wx::Pen
1319
+ :colour: !ruby/object:Wx::Colour
1320
+ :colour:
1321
+ - 0
1322
+ - 0
1323
+ - 0
1324
+ - 255
1325
+ :width: 1
1326
+ :style: *5
1327
+ :active: true
1328
+ :visibility: true
1329
+ :style: &29 !ruby/object:Wx::SF::Shape::STYLE
1330
+ :value: 319
1331
+ :accepted_children: !ruby/object:Set
1332
+ hash:
1333
+ Wx::SF::TextShape: true
1334
+ Wx::SF::EditTextShape: true
1335
+ :accepted_connections: !ruby/object:Set
1336
+ hash:
1337
+ NilClass: true
1338
+ :accepted_src_neighbours: !ruby/object:Set
1339
+ hash:
1340
+ NilClass: true
1341
+ :accepted_trg_neighbours: !ruby/object:Set
1342
+ hash:
1343
+ NilClass: true
1344
+ :relative_position: !ruby/object:Wx::RealPoint
1345
+ :x: 549.0
1346
+ :y: 291.0
1347
+ :h_align: *25
1348
+ :v_align: *14
1349
+ :h_border: 0.0
1350
+ :v_border: 0.0
1351
+ :custom_dock_point: -3
1352
+ :connection_points: []
1353
+ :user_data:
1354
+ :hover_colour: *8
1355
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1356
+ :list: !ruby/object:Set
1357
+ hash: {}
1358
+ : true
1359
+ ? !ruby/object:Wx::SF::RoundOrthoLineShape
1360
+ :max_radius: 7
1361
+ :src_shape: *26
1362
+ :trg_shape: &47 !ruby/object:Wx::SF::RectShape
1363
+ :rect_size: !ruby/object:Wx::RealPoint
1364
+ :x: 151.0
1365
+ :y: 21.0
1366
+ :fill: !ruby/object:Wx::Brush
1367
+ :colour: !ruby/object:Wx::Colour
1368
+ :colour:
1369
+ - 255
1370
+ - 255
1371
+ - 255
1372
+ - 255
1373
+ :style: *3
1374
+ :border: !ruby/object:Wx::Pen
1375
+ :colour: !ruby/object:Wx::Colour
1376
+ :colour:
1377
+ - 0
1378
+ - 0
1379
+ - 0
1380
+ - 255
1381
+ :width: 1
1382
+ :style: *11
1383
+ :active: true
1384
+ :visibility: true
1385
+ :style: 262463
1386
+ :accepted_children: !ruby/object:Set
1387
+ hash:
1388
+ NilClass: true
1389
+ :accepted_connections: !ruby/object:Set
1390
+ hash:
1391
+ NilClass: true
1392
+ :accepted_src_neighbours: !ruby/object:Set
1393
+ hash:
1394
+ NilClass: true
1395
+ :accepted_trg_neighbours: !ruby/object:Set
1396
+ hash:
1397
+ NilClass: true
1398
+ :relative_position: !ruby/object:Wx::RealPoint
1399
+ :x: 0.0
1400
+ :y: 44.0
1401
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1402
+ :value: 4
1403
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1404
+ :value: 0
1405
+ :h_border: 0.0
1406
+ :v_border: 0.0
1407
+ :custom_dock_point: -3
1408
+ :connection_points:
1409
+ - !ruby/object:Wx::SF::ConnectionPoint
1410
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1411
+ :value: 4
1412
+ :ortho_direction: &27 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
1413
+ :value: 2
1414
+ :relative_position: &28 !ruby/object:Wx::RealPoint
1415
+ :x: 0.0
1416
+ :y: 0.0
1417
+ - !ruby/object:Wx::SF::ConnectionPoint
1418
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1419
+ :value: 6
1420
+ :ortho_direction: *27
1421
+ :relative_position: *28
1422
+ :user_data:
1423
+ :hover_colour: *8
1424
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1425
+ :list: !ruby/object:Set
1426
+ hash:
1427
+ ? !ruby/object:Wx::SF::EditTextShape
1428
+ :force_multiline: false
1429
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
1430
+ :value: 0
1431
+ :text: 'mark id : integer'
1432
+ :text_colour: !ruby/object:Wx::Colour
1433
+ :colour:
1434
+ - 0
1435
+ - 0
1436
+ - 0
1437
+ - 255
1438
+ :font: !ruby/object:Wx::Font
1439
+ :font_info: Sans 12
1440
+ :rect_size: !ruby/object:Wx::RealPoint
1441
+ :x: 117.0
1442
+ :y: 19.0
1443
+ :fill: !ruby/object:Wx::Brush
1444
+ :colour: !ruby/object:Wx::Colour
1445
+ :colour:
1446
+ - 0
1447
+ - 0
1448
+ - 0
1449
+ - 255
1450
+ :style: *3
1451
+ :border: !ruby/object:Wx::Pen
1452
+ :colour: !ruby/object:Wx::Colour
1453
+ :colour:
1454
+ - 0
1455
+ - 0
1456
+ - 0
1457
+ - 255
1458
+ :width: 1
1459
+ :style: *4
1460
+ :active: true
1461
+ :visibility: true
1462
+ :style: 422200
1463
+ :accepted_children: !ruby/object:Set
1464
+ hash: {}
1465
+ :accepted_connections: !ruby/object:Set
1466
+ hash:
1467
+ NilClass: true
1468
+ :accepted_src_neighbours: !ruby/object:Set
1469
+ hash:
1470
+ NilClass: true
1471
+ :accepted_trg_neighbours: !ruby/object:Set
1472
+ hash:
1473
+ Wx::SF::TextShape: true
1474
+ Wx::SF::EditTextShape: true
1475
+ :relative_position: !ruby/object:Wx::RealPoint
1476
+ :x: 5.0
1477
+ :y: 1.0
1478
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1479
+ :value: 1
1480
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1481
+ :value: 1
1482
+ :h_border: 5.0
1483
+ :v_border: 1.0
1484
+ :custom_dock_point: -3
1485
+ :connection_points: []
1486
+ :user_data:
1487
+ :hover_colour: *8
1488
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1489
+ :list: !ruby/object:Set
1490
+ hash: {}
1491
+ : true
1492
+ :stand_alone: false
1493
+ :src_arrow: !ruby/object:Wx::SF::DoubleCrossBarArrow
1494
+ :pen:
1495
+ :trg_arrow: !ruby/object:Wx::SF::CrossBarProngArrow
1496
+ :pen:
1497
+ :src_offset: !ruby/object:Wx::RealPoint
1498
+ :x: 0.0
1499
+ :y: 0.47619047619047616
1500
+ :trg_offset: !ruby/object:Wx::RealPoint
1501
+ :x: 0.0
1502
+ :y: 0.47619047619047616
1503
+ :dock_point: 18446744073709551616
1504
+ :control_points:
1505
+ - !ruby/object:Wx::RealPoint
1506
+ :x: 20.0
1507
+ :y: 259.0
1508
+ - !ruby/object:Wx::RealPoint
1509
+ :x: 21.0
1510
+ :y: 109.0
1511
+ :line_pen: !ruby/object:Wx::Pen
1512
+ :colour: !ruby/object:Wx::Colour
1513
+ :colour:
1514
+ - 0
1515
+ - 0
1516
+ - 0
1517
+ - 255
1518
+ :width: 1
1519
+ :style: *5
1520
+ :active: true
1521
+ :visibility: true
1522
+ :style: *29
1523
+ :accepted_children: !ruby/object:Set
1524
+ hash:
1525
+ Wx::SF::TextShape: true
1526
+ Wx::SF::EditTextShape: true
1527
+ :accepted_connections: !ruby/object:Set
1528
+ hash:
1529
+ NilClass: true
1530
+ :accepted_src_neighbours: !ruby/object:Set
1531
+ hash:
1532
+ NilClass: true
1533
+ :accepted_trg_neighbours: !ruby/object:Set
1534
+ hash:
1535
+ NilClass: true
1536
+ :relative_position: !ruby/object:Wx::RealPoint
1537
+ :x: 549.0
1538
+ :y: 291.0
1539
+ :h_align: *25
1540
+ :v_align: *14
1541
+ :h_border: 0.0
1542
+ :v_border: 0.0
1543
+ :custom_dock_point: -3
1544
+ :connection_points: []
1545
+ :user_data:
1546
+ :hover_colour: *8
1547
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1548
+ :list: !ruby/object:Set
1549
+ hash: {}
1550
+ : true
1551
+ ? !ruby/object:Wx::SF::RoundRectShape
1552
+ :radius: 20
1553
+ :rect_size: !ruby/object:Wx::RealPoint
1554
+ :x: 151.0
1555
+ :y: 125.0
1556
+ :fill: !ruby/object:Wx::Brush
1557
+ :colour: !ruby/object:Wx::Colour
1558
+ :colour:
1559
+ - 255
1560
+ - 255
1561
+ - 255
1562
+ - 255
1563
+ :style: *6
1564
+ :border: !ruby/object:Wx::Pen
1565
+ :colour: !ruby/object:Wx::Colour
1566
+ :colour:
1567
+ - 0
1568
+ - 0
1569
+ - 0
1570
+ - 255
1571
+ :width: 1
1572
+ :style: *5
1573
+ :active: true
1574
+ :visibility: true
1575
+ :style: !ruby/object:Wx::SF::Shape::STYLE
1576
+ :value: 319
1577
+ :accepted_children: !ruby/object:Set
1578
+ hash:
1579
+ Wx::SF::TextShape: true
1580
+ Wx::SF::EditTextShape: true
1581
+ Wx::SF::RectShape: true
1582
+ Wx::SF::VBoxShape: true
1583
+ :accepted_connections: !ruby/object:Set
1584
+ hash:
1585
+ NilClass: true
1586
+ :accepted_src_neighbours: !ruby/object:Set
1587
+ hash:
1588
+ NilClass: true
1589
+ :accepted_trg_neighbours: !ruby/object:Set
1590
+ hash:
1591
+ NilClass: true
1592
+ :relative_position: !ruby/object:Wx::RealPoint
1593
+ :x: 388.0
1594
+ :y: 316.0
1595
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1596
+ :value: 0
1597
+ :v_align: &30 !ruby/object:Wx::SF::Shape::VALIGN
1598
+ :value: 0
1599
+ :h_border: 0.0
1600
+ :v_border: 0.0
1601
+ :custom_dock_point: -3
1602
+ :connection_points: []
1603
+ :user_data:
1604
+ :hover_colour: *8
1605
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1606
+ :list: !ruby/object:Set
1607
+ hash:
1608
+ ? !ruby/object:Wx::SF::RectShape
1609
+ :rect_size: !ruby/object:Wx::RealPoint
1610
+ :x: 151.0
1611
+ :y: 1.0
1612
+ :fill: !ruby/object:Wx::Brush
1613
+ :colour: !ruby/object:Wx::Colour
1614
+ :colour:
1615
+ - 255
1616
+ - 255
1617
+ - 255
1618
+ - 255
1619
+ :style: *6
1620
+ :border: !ruby/object:Wx::Pen
1621
+ :colour: !ruby/object:Wx::Colour
1622
+ :colour:
1623
+ - 0
1624
+ - 0
1625
+ - 0
1626
+ - 255
1627
+ :width: 1
1628
+ :style: *5
1629
+ :active: true
1630
+ :visibility: true
1631
+ :style: 317
1632
+ :accepted_children: !ruby/object:Set
1633
+ hash:
1634
+ NilClass: true
1635
+ :accepted_connections: !ruby/object:Set
1636
+ hash:
1637
+ NilClass: true
1638
+ :accepted_src_neighbours: !ruby/object:Set
1639
+ hash:
1640
+ NilClass: true
1641
+ :accepted_trg_neighbours: !ruby/object:Set
1642
+ hash:
1643
+ NilClass: true
1644
+ :relative_position: !ruby/object:Wx::RealPoint
1645
+ :x: 0.0
1646
+ :y: 35.0
1647
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1648
+ :value: 4
1649
+ :v_align: *30
1650
+ :h_border: 0.0
1651
+ :v_border: 0.0
1652
+ :custom_dock_point: -3
1653
+ :connection_points: []
1654
+ :user_data:
1655
+ :hover_colour: *8
1656
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1657
+ :list: !ruby/object:Set
1658
+ hash: {}
1659
+ : true
1660
+ ? &40 !ruby/object:Wx::SF::RectShape
1661
+ :rect_size: !ruby/object:Wx::RealPoint
1662
+ :x: 151.0
1663
+ :y: 21.0
1664
+ :fill: !ruby/object:Wx::Brush
1665
+ :colour: !ruby/object:Wx::Colour
1666
+ :colour:
1667
+ - 255
1668
+ - 255
1669
+ - 255
1670
+ - 255
1671
+ :style: *3
1672
+ :border: !ruby/object:Wx::Pen
1673
+ :colour: !ruby/object:Wx::Colour
1674
+ :colour:
1675
+ - 0
1676
+ - 0
1677
+ - 0
1678
+ - 255
1679
+ :width: 1
1680
+ :style: *11
1681
+ :active: true
1682
+ :visibility: true
1683
+ :style: 262463
1684
+ :accepted_children: !ruby/object:Set
1685
+ hash:
1686
+ NilClass: true
1687
+ :accepted_connections: !ruby/object:Set
1688
+ hash:
1689
+ NilClass: true
1690
+ :accepted_src_neighbours: !ruby/object:Set
1691
+ hash:
1692
+ NilClass: true
1693
+ :accepted_trg_neighbours: !ruby/object:Set
1694
+ hash:
1695
+ NilClass: true
1696
+ :relative_position: !ruby/object:Wx::RealPoint
1697
+ :x: 0.0
1698
+ :y: 44.0
1699
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1700
+ :value: 4
1701
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1702
+ :value: 0
1703
+ :h_border: 0.0
1704
+ :v_border: 0.0
1705
+ :custom_dock_point: -3
1706
+ :connection_points:
1707
+ - !ruby/object:Wx::SF::ConnectionPoint
1708
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1709
+ :value: 4
1710
+ :ortho_direction: &31 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
1711
+ :value: 2
1712
+ :relative_position: &32 !ruby/object:Wx::RealPoint
1713
+ :x: 0.0
1714
+ :y: 0.0
1715
+ - !ruby/object:Wx::SF::ConnectionPoint
1716
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1717
+ :value: 6
1718
+ :ortho_direction: *31
1719
+ :relative_position: *32
1720
+ :user_data:
1721
+ :hover_colour: *8
1722
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1723
+ :list: !ruby/object:Set
1724
+ hash:
1725
+ ? !ruby/object:Wx::SF::EditTextShape
1726
+ :force_multiline: false
1727
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
1728
+ :value: 0
1729
+ :text: 'subject id : integer'
1730
+ :text_colour: !ruby/object:Wx::Colour
1731
+ :colour:
1732
+ - 0
1733
+ - 0
1734
+ - 0
1735
+ - 255
1736
+ :font: !ruby/object:Wx::Font
1737
+ :font_info: Sans 12
1738
+ :rect_size: !ruby/object:Wx::RealPoint
1739
+ :x: 132.0
1740
+ :y: 19.0
1741
+ :fill: !ruby/object:Wx::Brush
1742
+ :colour: !ruby/object:Wx::Colour
1743
+ :colour:
1744
+ - 0
1745
+ - 0
1746
+ - 0
1747
+ - 255
1748
+ :style: *3
1749
+ :border: !ruby/object:Wx::Pen
1750
+ :colour: !ruby/object:Wx::Colour
1751
+ :colour:
1752
+ - 0
1753
+ - 0
1754
+ - 0
1755
+ - 255
1756
+ :width: 1
1757
+ :style: *4
1758
+ :active: true
1759
+ :visibility: true
1760
+ :style: 422200
1761
+ :accepted_children: !ruby/object:Set
1762
+ hash: {}
1763
+ :accepted_connections: !ruby/object:Set
1764
+ hash:
1765
+ NilClass: true
1766
+ :accepted_src_neighbours: !ruby/object:Set
1767
+ hash:
1768
+ NilClass: true
1769
+ :accepted_trg_neighbours: !ruby/object:Set
1770
+ hash:
1771
+ Wx::SF::TextShape: true
1772
+ Wx::SF::EditTextShape: true
1773
+ :relative_position: !ruby/object:Wx::RealPoint
1774
+ :x: 5.0
1775
+ :y: 1.0
1776
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1777
+ :value: 1
1778
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1779
+ :value: 1
1780
+ :h_border: 5.0
1781
+ :v_border: 1.0
1782
+ :custom_dock_point: -3
1783
+ :connection_points: []
1784
+ :user_data:
1785
+ :hover_colour: *8
1786
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1787
+ :list: !ruby/object:Set
1788
+ hash: {}
1789
+ : true
1790
+ : true
1791
+ ? &62 !ruby/object:Wx::SF::RectShape
1792
+ :rect_size: !ruby/object:Wx::RealPoint
1793
+ :x: 151.0
1794
+ :y: 21.0
1795
+ :fill: !ruby/object:Wx::Brush
1796
+ :colour: !ruby/object:Wx::Colour
1797
+ :colour:
1798
+ - 255
1799
+ - 255
1800
+ - 255
1801
+ - 255
1802
+ :style: *3
1803
+ :border: !ruby/object:Wx::Pen
1804
+ :colour: !ruby/object:Wx::Colour
1805
+ :colour:
1806
+ - 0
1807
+ - 0
1808
+ - 0
1809
+ - 255
1810
+ :width: 1
1811
+ :style: *11
1812
+ :active: true
1813
+ :visibility: true
1814
+ :style: 262463
1815
+ :accepted_children: !ruby/object:Set
1816
+ hash:
1817
+ NilClass: true
1818
+ :accepted_connections: !ruby/object:Set
1819
+ hash:
1820
+ NilClass: true
1821
+ :accepted_src_neighbours: !ruby/object:Set
1822
+ hash:
1823
+ NilClass: true
1824
+ :accepted_trg_neighbours: !ruby/object:Set
1825
+ hash:
1826
+ NilClass: true
1827
+ :relative_position: !ruby/object:Wx::RealPoint
1828
+ :x: 0.0
1829
+ :y: 64.0
1830
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1831
+ :value: 4
1832
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1833
+ :value: 0
1834
+ :h_border: 0.0
1835
+ :v_border: 0.0
1836
+ :custom_dock_point: -3
1837
+ :connection_points:
1838
+ - !ruby/object:Wx::SF::ConnectionPoint
1839
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1840
+ :value: 4
1841
+ :ortho_direction: &33 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
1842
+ :value: 2
1843
+ :relative_position: &34 !ruby/object:Wx::RealPoint
1844
+ :x: 0.0
1845
+ :y: 0.0
1846
+ - !ruby/object:Wx::SF::ConnectionPoint
1847
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1848
+ :value: 6
1849
+ :ortho_direction: *33
1850
+ :relative_position: *34
1851
+ :user_data:
1852
+ :hover_colour: *8
1853
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1854
+ :list: !ruby/object:Set
1855
+ hash:
1856
+ ? !ruby/object:Wx::SF::EditTextShape
1857
+ :force_multiline: false
1858
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
1859
+ :value: 0
1860
+ :text: 'teacher id : integer'
1861
+ :text_colour: !ruby/object:Wx::Colour
1862
+ :colour:
1863
+ - 0
1864
+ - 0
1865
+ - 0
1866
+ - 255
1867
+ :font: !ruby/object:Wx::Font
1868
+ :font_info: Sans 12
1869
+ :rect_size: !ruby/object:Wx::RealPoint
1870
+ :x: 133.0
1871
+ :y: 19.0
1872
+ :fill: !ruby/object:Wx::Brush
1873
+ :colour: !ruby/object:Wx::Colour
1874
+ :colour:
1875
+ - 0
1876
+ - 0
1877
+ - 0
1878
+ - 255
1879
+ :style: *3
1880
+ :border: !ruby/object:Wx::Pen
1881
+ :colour: !ruby/object:Wx::Colour
1882
+ :colour:
1883
+ - 0
1884
+ - 0
1885
+ - 0
1886
+ - 255
1887
+ :width: 1
1888
+ :style: *4
1889
+ :active: true
1890
+ :visibility: true
1891
+ :style: 422200
1892
+ :accepted_children: !ruby/object:Set
1893
+ hash: {}
1894
+ :accepted_connections: !ruby/object:Set
1895
+ hash:
1896
+ NilClass: true
1897
+ :accepted_src_neighbours: !ruby/object:Set
1898
+ hash:
1899
+ NilClass: true
1900
+ :accepted_trg_neighbours: !ruby/object:Set
1901
+ hash:
1902
+ Wx::SF::TextShape: true
1903
+ Wx::SF::EditTextShape: true
1904
+ :relative_position: !ruby/object:Wx::RealPoint
1905
+ :x: 5.0
1906
+ :y: 1.0
1907
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1908
+ :value: 1
1909
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1910
+ :value: 1
1911
+ :h_border: 5.0
1912
+ :v_border: 1.0
1913
+ :custom_dock_point: -3
1914
+ :connection_points: []
1915
+ :user_data:
1916
+ :hover_colour: *8
1917
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1918
+ :list: !ruby/object:Set
1919
+ hash: {}
1920
+ : true
1921
+ : true
1922
+ ? &37 !ruby/object:Wx::SF::RectShape
1923
+ :rect_size: !ruby/object:Wx::RealPoint
1924
+ :x: 151.0
1925
+ :y: 21.0
1926
+ :fill: !ruby/object:Wx::Brush
1927
+ :colour: !ruby/object:Wx::Colour
1928
+ :colour:
1929
+ - 255
1930
+ - 255
1931
+ - 255
1932
+ - 255
1933
+ :style: *3
1934
+ :border: !ruby/object:Wx::Pen
1935
+ :colour: !ruby/object:Wx::Colour
1936
+ :colour:
1937
+ - 0
1938
+ - 0
1939
+ - 0
1940
+ - 255
1941
+ :width: 1
1942
+ :style: *11
1943
+ :active: true
1944
+ :visibility: true
1945
+ :style: 262463
1946
+ :accepted_children: !ruby/object:Set
1947
+ hash:
1948
+ NilClass: true
1949
+ :accepted_connections: !ruby/object:Set
1950
+ hash:
1951
+ NilClass: true
1952
+ :accepted_src_neighbours: !ruby/object:Set
1953
+ hash:
1954
+ NilClass: true
1955
+ :accepted_trg_neighbours: !ruby/object:Set
1956
+ hash:
1957
+ NilClass: true
1958
+ :relative_position: !ruby/object:Wx::RealPoint
1959
+ :x: 0.0
1960
+ :y: 84.0
1961
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
1962
+ :value: 4
1963
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
1964
+ :value: 0
1965
+ :h_border: 0.0
1966
+ :v_border: 0.0
1967
+ :custom_dock_point: -3
1968
+ :connection_points:
1969
+ - !ruby/object:Wx::SF::ConnectionPoint
1970
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1971
+ :value: 4
1972
+ :ortho_direction: &35 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
1973
+ :value: 2
1974
+ :relative_position: &36 !ruby/object:Wx::RealPoint
1975
+ :x: 0.0
1976
+ :y: 0.0
1977
+ - !ruby/object:Wx::SF::ConnectionPoint
1978
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
1979
+ :value: 6
1980
+ :ortho_direction: *35
1981
+ :relative_position: *36
1982
+ :user_data:
1983
+ :hover_colour: *8
1984
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
1985
+ :list: !ruby/object:Set
1986
+ hash:
1987
+ ? !ruby/object:Wx::SF::EditTextShape
1988
+ :force_multiline: false
1989
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
1990
+ :value: 0
1991
+ :text: 'group id : integer'
1992
+ :text_colour: !ruby/object:Wx::Colour
1993
+ :colour:
1994
+ - 0
1995
+ - 0
1996
+ - 0
1997
+ - 255
1998
+ :font: !ruby/object:Wx::Font
1999
+ :font_info: Sans 12
2000
+ :rect_size: !ruby/object:Wx::RealPoint
2001
+ :x: 122.0
2002
+ :y: 19.0
2003
+ :fill: !ruby/object:Wx::Brush
2004
+ :colour: !ruby/object:Wx::Colour
2005
+ :colour:
2006
+ - 0
2007
+ - 0
2008
+ - 0
2009
+ - 255
2010
+ :style: *3
2011
+ :border: !ruby/object:Wx::Pen
2012
+ :colour: !ruby/object:Wx::Colour
2013
+ :colour:
2014
+ - 0
2015
+ - 0
2016
+ - 0
2017
+ - 255
2018
+ :width: 1
2019
+ :style: *4
2020
+ :active: true
2021
+ :visibility: true
2022
+ :style: 422200
2023
+ :accepted_children: !ruby/object:Set
2024
+ hash: {}
2025
+ :accepted_connections: !ruby/object:Set
2026
+ hash:
2027
+ NilClass: true
2028
+ :accepted_src_neighbours: !ruby/object:Set
2029
+ hash:
2030
+ NilClass: true
2031
+ :accepted_trg_neighbours: !ruby/object:Set
2032
+ hash:
2033
+ Wx::SF::TextShape: true
2034
+ Wx::SF::EditTextShape: true
2035
+ :relative_position: !ruby/object:Wx::RealPoint
2036
+ :x: 5.0
2037
+ :y: 1.0
2038
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2039
+ :value: 1
2040
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2041
+ :value: 1
2042
+ :h_border: 5.0
2043
+ :v_border: 1.0
2044
+ :custom_dock_point: -3
2045
+ :connection_points: []
2046
+ :user_data:
2047
+ :hover_colour: *8
2048
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2049
+ :list: !ruby/object:Set
2050
+ hash: {}
2051
+ : true
2052
+ : true
2053
+ ? !ruby/object:Wx::SF::EditTextShape
2054
+ :force_multiline: false
2055
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
2056
+ :value: 0
2057
+ :text: SubjectTeacher
2058
+ :text_colour: !ruby/object:Wx::Colour
2059
+ :colour:
2060
+ - 0
2061
+ - 0
2062
+ - 0
2063
+ - 255
2064
+ :font: !ruby/object:Wx::Font
2065
+ :font_info: Sans 12
2066
+ :rect_size: !ruby/object:Wx::RealPoint
2067
+ :x: 113.0
2068
+ :y: 19.0
2069
+ :fill: !ruby/object:Wx::Brush
2070
+ :colour: !ruby/object:Wx::Colour
2071
+ :colour:
2072
+ - 0
2073
+ - 0
2074
+ - 0
2075
+ - 255
2076
+ :style: *3
2077
+ :border: !ruby/object:Wx::Pen
2078
+ :colour: !ruby/object:Wx::Colour
2079
+ :colour:
2080
+ - 0
2081
+ - 0
2082
+ - 0
2083
+ - 255
2084
+ :width: 1
2085
+ :style: *4
2086
+ :active: true
2087
+ :visibility: true
2088
+ :style: !ruby/object:Wx::SF::Shape::STYLE
2089
+ :value: 319
2090
+ :accepted_children: !ruby/object:Set
2091
+ hash: {}
2092
+ :accepted_connections: !ruby/object:Set
2093
+ hash:
2094
+ NilClass: true
2095
+ :accepted_src_neighbours: !ruby/object:Set
2096
+ hash:
2097
+ NilClass: true
2098
+ :accepted_trg_neighbours: !ruby/object:Set
2099
+ hash:
2100
+ Wx::SF::TextShape: true
2101
+ Wx::SF::EditTextShape: true
2102
+ :relative_position: !ruby/object:Wx::RealPoint
2103
+ :x: 19.0
2104
+ :y: 10.0
2105
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2106
+ :value: 2
2107
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2108
+ :value: 1
2109
+ :h_border: 0.0
2110
+ :v_border: 10.0
2111
+ :custom_dock_point: -3
2112
+ :connection_points: []
2113
+ :user_data:
2114
+ :hover_colour: *8
2115
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2116
+ :list: !ruby/object:Set
2117
+ hash: {}
2118
+ : true
2119
+ : true
2120
+ ? !ruby/object:Wx::SF::RoundOrthoLineShape
2121
+ :max_radius: 7
2122
+ :src_shape: *23
2123
+ :trg_shape: *37
2124
+ :stand_alone: false
2125
+ :src_arrow: !ruby/object:Wx::SF::DoubleCrossBarArrow
2126
+ :pen:
2127
+ :trg_arrow: !ruby/object:Wx::SF::CrossBarProngArrow
2128
+ :pen:
2129
+ :src_offset: !ruby/object:Wx::RealPoint
2130
+ :x: 0.9933774834437086
2131
+ :y: 0.47619047619047616
2132
+ :trg_offset: !ruby/object:Wx::RealPoint
2133
+ :x: 0.0
2134
+ :y: 0.47619047619047616
2135
+ :dock_point: 18446744073709551616
2136
+ :control_points:
2137
+ - !ruby/object:Wx::RealPoint
2138
+ :x: 326.0
2139
+ :y: 509.0
2140
+ - !ruby/object:Wx::RealPoint
2141
+ :x: 326.0
2142
+ :y: 410.0
2143
+ :line_pen: !ruby/object:Wx::Pen
2144
+ :colour: !ruby/object:Wx::Colour
2145
+ :colour:
2146
+ - 0
2147
+ - 0
2148
+ - 0
2149
+ - 255
2150
+ :width: 1
2151
+ :style: *5
2152
+ :active: true
2153
+ :visibility: true
2154
+ :style: *29
2155
+ :accepted_children: !ruby/object:Set
2156
+ hash:
2157
+ Wx::SF::TextShape: true
2158
+ Wx::SF::EditTextShape: true
2159
+ :accepted_connections: !ruby/object:Set
2160
+ hash:
2161
+ NilClass: true
2162
+ :accepted_src_neighbours: !ruby/object:Set
2163
+ hash:
2164
+ NilClass: true
2165
+ :accepted_trg_neighbours: !ruby/object:Set
2166
+ hash:
2167
+ NilClass: true
2168
+ :relative_position: !ruby/object:Wx::RealPoint
2169
+ :x: 549.0
2170
+ :y: 291.0
2171
+ :h_align: *25
2172
+ :v_align: *14
2173
+ :h_border: 0.0
2174
+ :v_border: 0.0
2175
+ :custom_dock_point: -3
2176
+ :connection_points: []
2177
+ :user_data:
2178
+ :hover_colour: *8
2179
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2180
+ :list: !ruby/object:Set
2181
+ hash: {}
2182
+ : true
2183
+ ? !ruby/object:Wx::SF::RoundOrthoLineShape
2184
+ :max_radius: 7
2185
+ :src_shape: &41 !ruby/object:Wx::SF::RectShape
2186
+ :rect_size: !ruby/object:Wx::RealPoint
2187
+ :x: 151.0
2188
+ :y: 21.0
2189
+ :fill: !ruby/object:Wx::Brush
2190
+ :colour: !ruby/object:Wx::Colour
2191
+ :colour:
2192
+ - 255
2193
+ - 255
2194
+ - 255
2195
+ - 255
2196
+ :style: *3
2197
+ :border: !ruby/object:Wx::Pen
2198
+ :colour: !ruby/object:Wx::Colour
2199
+ :colour:
2200
+ - 0
2201
+ - 0
2202
+ - 0
2203
+ - 255
2204
+ :width: 1
2205
+ :style: *11
2206
+ :active: true
2207
+ :visibility: true
2208
+ :style: 262463
2209
+ :accepted_children: !ruby/object:Set
2210
+ hash:
2211
+ NilClass: true
2212
+ :accepted_connections: !ruby/object:Set
2213
+ hash:
2214
+ NilClass: true
2215
+ :accepted_src_neighbours: !ruby/object:Set
2216
+ hash:
2217
+ NilClass: true
2218
+ :accepted_trg_neighbours: !ruby/object:Set
2219
+ hash:
2220
+ NilClass: true
2221
+ :relative_position: !ruby/object:Wx::RealPoint
2222
+ :x: 0.0
2223
+ :y: 44.0
2224
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2225
+ :value: 4
2226
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2227
+ :value: 0
2228
+ :h_border: 0.0
2229
+ :v_border: 0.0
2230
+ :custom_dock_point: -3
2231
+ :connection_points:
2232
+ - !ruby/object:Wx::SF::ConnectionPoint
2233
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
2234
+ :value: 4
2235
+ :ortho_direction: &38 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
2236
+ :value: 2
2237
+ :relative_position: &39 !ruby/object:Wx::RealPoint
2238
+ :x: 0.0
2239
+ :y: 0.0
2240
+ - !ruby/object:Wx::SF::ConnectionPoint
2241
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
2242
+ :value: 6
2243
+ :ortho_direction: *38
2244
+ :relative_position: *39
2245
+ :user_data:
2246
+ :hover_colour: *8
2247
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2248
+ :list: !ruby/object:Set
2249
+ hash:
2250
+ ? !ruby/object:Wx::SF::EditTextShape
2251
+ :force_multiline: false
2252
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
2253
+ :value: 0
2254
+ :text: 'subject id : integer'
2255
+ :text_colour: !ruby/object:Wx::Colour
2256
+ :colour:
2257
+ - 0
2258
+ - 0
2259
+ - 0
2260
+ - 255
2261
+ :font: !ruby/object:Wx::Font
2262
+ :font_info: Sans 12
2263
+ :rect_size: !ruby/object:Wx::RealPoint
2264
+ :x: 132.0
2265
+ :y: 19.0
2266
+ :fill: !ruby/object:Wx::Brush
2267
+ :colour: !ruby/object:Wx::Colour
2268
+ :colour:
2269
+ - 0
2270
+ - 0
2271
+ - 0
2272
+ - 255
2273
+ :style: *3
2274
+ :border: !ruby/object:Wx::Pen
2275
+ :colour: !ruby/object:Wx::Colour
2276
+ :colour:
2277
+ - 0
2278
+ - 0
2279
+ - 0
2280
+ - 255
2281
+ :width: 1
2282
+ :style: *4
2283
+ :active: true
2284
+ :visibility: true
2285
+ :style: 422200
2286
+ :accepted_children: !ruby/object:Set
2287
+ hash: {}
2288
+ :accepted_connections: !ruby/object:Set
2289
+ hash:
2290
+ NilClass: true
2291
+ :accepted_src_neighbours: !ruby/object:Set
2292
+ hash:
2293
+ NilClass: true
2294
+ :accepted_trg_neighbours: !ruby/object:Set
2295
+ hash:
2296
+ Wx::SF::TextShape: true
2297
+ Wx::SF::EditTextShape: true
2298
+ :relative_position: !ruby/object:Wx::RealPoint
2299
+ :x: 5.0
2300
+ :y: 1.0
2301
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2302
+ :value: 1
2303
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2304
+ :value: 1
2305
+ :h_border: 5.0
2306
+ :v_border: 1.0
2307
+ :custom_dock_point: -3
2308
+ :connection_points: []
2309
+ :user_data:
2310
+ :hover_colour: *8
2311
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2312
+ :list: !ruby/object:Set
2313
+ hash: {}
2314
+ : true
2315
+ :trg_shape: *40
2316
+ :stand_alone: false
2317
+ :src_arrow: !ruby/object:Wx::SF::DoubleCrossBarArrow
2318
+ :pen:
2319
+ :trg_arrow: !ruby/object:Wx::SF::CrossBarProngArrow
2320
+ :pen:
2321
+ :src_offset: !ruby/object:Wx::RealPoint
2322
+ :x: 0.0
2323
+ :y: 0.47619047619047616
2324
+ :trg_offset: !ruby/object:Wx::RealPoint
2325
+ :x: 0.0
2326
+ :y: 0.47619047619047616
2327
+ :dock_point: 18446744073709551616
2328
+ :control_points:
2329
+ - !ruby/object:Wx::RealPoint
2330
+ :x: 306.0
2331
+ :y: 172.0
2332
+ - !ruby/object:Wx::RealPoint
2333
+ :x: 306.0
2334
+ :y: 324.0
2335
+ :line_pen: !ruby/object:Wx::Pen
2336
+ :colour: !ruby/object:Wx::Colour
2337
+ :colour:
2338
+ - 0
2339
+ - 0
2340
+ - 0
2341
+ - 255
2342
+ :width: 1
2343
+ :style: *5
2344
+ :active: true
2345
+ :visibility: true
2346
+ :style: *29
2347
+ :accepted_children: !ruby/object:Set
2348
+ hash:
2349
+ Wx::SF::TextShape: true
2350
+ Wx::SF::EditTextShape: true
2351
+ :accepted_connections: !ruby/object:Set
2352
+ hash:
2353
+ NilClass: true
2354
+ :accepted_src_neighbours: !ruby/object:Set
2355
+ hash:
2356
+ NilClass: true
2357
+ :accepted_trg_neighbours: !ruby/object:Set
2358
+ hash:
2359
+ NilClass: true
2360
+ :relative_position: !ruby/object:Wx::RealPoint
2361
+ :x: 549.0
2362
+ :y: 291.0
2363
+ :h_align: *25
2364
+ :v_align: *14
2365
+ :h_border: 0.0
2366
+ :v_border: 0.0
2367
+ :custom_dock_point: -3
2368
+ :connection_points: []
2369
+ :user_data:
2370
+ :hover_colour: *8
2371
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2372
+ :list: !ruby/object:Set
2373
+ hash: {}
2374
+ : true
2375
+ ? !ruby/object:Wx::SF::RoundOrthoLineShape
2376
+ :max_radius: 7
2377
+ :src_shape: *41
2378
+ :trg_shape: &50 !ruby/object:Wx::SF::RectShape
2379
+ :rect_size: !ruby/object:Wx::RealPoint
2380
+ :x: 151.0
2381
+ :y: 21.0
2382
+ :fill: !ruby/object:Wx::Brush
2383
+ :colour: !ruby/object:Wx::Colour
2384
+ :colour:
2385
+ - 255
2386
+ - 255
2387
+ - 255
2388
+ - 255
2389
+ :style: *3
2390
+ :border: !ruby/object:Wx::Pen
2391
+ :colour: !ruby/object:Wx::Colour
2392
+ :colour:
2393
+ - 0
2394
+ - 0
2395
+ - 0
2396
+ - 255
2397
+ :width: 1
2398
+ :style: *11
2399
+ :active: true
2400
+ :visibility: true
2401
+ :style: 317
2402
+ :accepted_children: !ruby/object:Set
2403
+ hash:
2404
+ NilClass: true
2405
+ :accepted_connections: !ruby/object:Set
2406
+ hash:
2407
+ NilClass: true
2408
+ :accepted_src_neighbours: !ruby/object:Set
2409
+ hash:
2410
+ NilClass: true
2411
+ :accepted_trg_neighbours: !ruby/object:Set
2412
+ hash:
2413
+ NilClass: true
2414
+ :relative_position: !ruby/object:Wx::RealPoint
2415
+ :x: 0.0
2416
+ :y: 84.0
2417
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2418
+ :value: 4
2419
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2420
+ :value: 0
2421
+ :h_border: 0.0
2422
+ :v_border: 0.0
2423
+ :custom_dock_point: -3
2424
+ :connection_points:
2425
+ - !ruby/object:Wx::SF::ConnectionPoint
2426
+ :type: &51 !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
2427
+ :value: 4
2428
+ :ortho_direction: &42 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
2429
+ :value: 2
2430
+ :relative_position: !ruby/object:Wx::RealPoint
2431
+ :x: 0.0
2432
+ :y: 0.0
2433
+ - !ruby/object:Wx::SF::ConnectionPoint
2434
+ :type: &52 !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
2435
+ :value: 6
2436
+ :ortho_direction: *42
2437
+ :relative_position: !ruby/object:Wx::RealPoint
2438
+ :x: 0.0
2439
+ :y: 0.0
2440
+ :user_data:
2441
+ :hover_colour: *8
2442
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2443
+ :list: !ruby/object:Set
2444
+ hash:
2445
+ ? !ruby/object:Wx::SF::EditTextShape
2446
+ :force_multiline: false
2447
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
2448
+ :value: 0
2449
+ :text: 'subject id : integer'
2450
+ :text_colour: !ruby/object:Wx::Colour
2451
+ :colour:
2452
+ - 0
2453
+ - 0
2454
+ - 0
2455
+ - 255
2456
+ :font: !ruby/object:Wx::Font
2457
+ :font_info: Sans 12
2458
+ :rect_size: !ruby/object:Wx::RealPoint
2459
+ :x: 132.0
2460
+ :y: 19.0
2461
+ :fill: !ruby/object:Wx::Brush
2462
+ :colour: !ruby/object:Wx::Colour
2463
+ :colour:
2464
+ - 0
2465
+ - 0
2466
+ - 0
2467
+ - 255
2468
+ :style: *3
2469
+ :border: !ruby/object:Wx::Pen
2470
+ :colour: !ruby/object:Wx::Colour
2471
+ :colour:
2472
+ - 0
2473
+ - 0
2474
+ - 0
2475
+ - 255
2476
+ :width: 1
2477
+ :style: *4
2478
+ :active: true
2479
+ :visibility: true
2480
+ :style: 422200
2481
+ :accepted_children: !ruby/object:Set
2482
+ hash: {}
2483
+ :accepted_connections: !ruby/object:Set
2484
+ hash:
2485
+ NilClass: true
2486
+ :accepted_src_neighbours: !ruby/object:Set
2487
+ hash:
2488
+ NilClass: true
2489
+ :accepted_trg_neighbours: !ruby/object:Set
2490
+ hash:
2491
+ Wx::SF::TextShape: true
2492
+ Wx::SF::EditTextShape: true
2493
+ :relative_position: !ruby/object:Wx::RealPoint
2494
+ :x: 5.0
2495
+ :y: 1.0
2496
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2497
+ :value: 1
2498
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2499
+ :value: 1
2500
+ :h_border: 5.0
2501
+ :v_border: 1.0
2502
+ :custom_dock_point: -3
2503
+ :connection_points: []
2504
+ :user_data:
2505
+ :hover_colour: *8
2506
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2507
+ :list: !ruby/object:Set
2508
+ hash: {}
2509
+ : true
2510
+ :stand_alone: false
2511
+ :src_arrow: !ruby/object:Wx::SF::DoubleCrossBarArrow
2512
+ :pen:
2513
+ :trg_arrow: !ruby/object:Wx::SF::CrossBarProngArrow
2514
+ :pen:
2515
+ :src_offset: !ruby/object:Wx::RealPoint
2516
+ :x: 0.0
2517
+ :y: 0.47619047619047616
2518
+ :trg_offset: !ruby/object:Wx::RealPoint
2519
+ :x: 0.9933774834437086
2520
+ :y: 0.47619047619047616
2521
+ :dock_point: 18446744073709551616
2522
+ :control_points: []
2523
+ :line_pen: !ruby/object:Wx::Pen
2524
+ :colour: !ruby/object:Wx::Colour
2525
+ :colour:
2526
+ - 0
2527
+ - 0
2528
+ - 0
2529
+ - 255
2530
+ :width: 1
2531
+ :style: *5
2532
+ :active: true
2533
+ :visibility: true
2534
+ :style: 262463
2535
+ :accepted_children: !ruby/object:Set
2536
+ hash:
2537
+ Wx::SF::TextShape: true
2538
+ Wx::SF::EditTextShape: true
2539
+ :accepted_connections: !ruby/object:Set
2540
+ hash:
2541
+ NilClass: true
2542
+ :accepted_src_neighbours: !ruby/object:Set
2543
+ hash:
2544
+ NilClass: true
2545
+ :accepted_trg_neighbours: !ruby/object:Set
2546
+ hash:
2547
+ NilClass: true
2548
+ :relative_position: !ruby/object:Wx::RealPoint
2549
+ :x: 549.0
2550
+ :y: 291.0
2551
+ :h_align: *25
2552
+ :v_align: *14
2553
+ :h_border: 0.0
2554
+ :v_border: 0.0
2555
+ :custom_dock_point: -3
2556
+ :connection_points: []
2557
+ :user_data:
2558
+ :hover_colour: *8
2559
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2560
+ :list: !ruby/object:Set
2561
+ hash: {}
2562
+ : true
2563
+ ? !ruby/object:Wx::SF::RoundRectShape
2564
+ :radius: 20
2565
+ :rect_size: !ruby/object:Wx::RealPoint
2566
+ :x: 151.0
2567
+ :y: 102.0
2568
+ :fill: !ruby/object:Wx::Brush
2569
+ :colour: !ruby/object:Wx::Colour
2570
+ :colour:
2571
+ - 255
2572
+ - 255
2573
+ - 255
2574
+ - 255
2575
+ :style: *6
2576
+ :border: !ruby/object:Wx::Pen
2577
+ :colour: !ruby/object:Wx::Colour
2578
+ :colour:
2579
+ - 0
2580
+ - 0
2581
+ - 0
2582
+ - 255
2583
+ :width: 1
2584
+ :style: *5
2585
+ :active: true
2586
+ :visibility: true
2587
+ :style: !ruby/object:Wx::SF::Shape::STYLE
2588
+ :value: 319
2589
+ :accepted_children: !ruby/object:Set
2590
+ hash:
2591
+ Wx::SF::TextShape: true
2592
+ Wx::SF::EditTextShape: true
2593
+ Wx::SF::RectShape: true
2594
+ Wx::SF::VBoxShape: true
2595
+ :accepted_connections: !ruby/object:Set
2596
+ hash:
2597
+ NilClass: true
2598
+ :accepted_src_neighbours: !ruby/object:Set
2599
+ hash:
2600
+ NilClass: true
2601
+ :accepted_trg_neighbours: !ruby/object:Set
2602
+ hash:
2603
+ NilClass: true
2604
+ :relative_position: !ruby/object:Wx::RealPoint
2605
+ :x: 391.0
2606
+ :y: 106.0
2607
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2608
+ :value: 0
2609
+ :v_align: &43 !ruby/object:Wx::SF::Shape::VALIGN
2610
+ :value: 0
2611
+ :h_border: 0.0
2612
+ :v_border: 0.0
2613
+ :custom_dock_point: -3
2614
+ :connection_points: []
2615
+ :user_data:
2616
+ :hover_colour: *8
2617
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2618
+ :list: !ruby/object:Set
2619
+ hash:
2620
+ ? !ruby/object:Wx::SF::RectShape
2621
+ :rect_size: !ruby/object:Wx::RealPoint
2622
+ :x: 151.0
2623
+ :y: 1.0
2624
+ :fill: !ruby/object:Wx::Brush
2625
+ :colour: !ruby/object:Wx::Colour
2626
+ :colour:
2627
+ - 255
2628
+ - 255
2629
+ - 255
2630
+ - 255
2631
+ :style: *6
2632
+ :border: !ruby/object:Wx::Pen
2633
+ :colour: !ruby/object:Wx::Colour
2634
+ :colour:
2635
+ - 0
2636
+ - 0
2637
+ - 0
2638
+ - 255
2639
+ :width: 1
2640
+ :style: *5
2641
+ :active: true
2642
+ :visibility: true
2643
+ :style: 317
2644
+ :accepted_children: !ruby/object:Set
2645
+ hash:
2646
+ NilClass: true
2647
+ :accepted_connections: !ruby/object:Set
2648
+ hash:
2649
+ NilClass: true
2650
+ :accepted_src_neighbours: !ruby/object:Set
2651
+ hash:
2652
+ NilClass: true
2653
+ :accepted_trg_neighbours: !ruby/object:Set
2654
+ hash:
2655
+ NilClass: true
2656
+ :relative_position: !ruby/object:Wx::RealPoint
2657
+ :x: 0.0
2658
+ :y: 35.0
2659
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2660
+ :value: 4
2661
+ :v_align: *43
2662
+ :h_border: 0.0
2663
+ :v_border: 0.0
2664
+ :custom_dock_point: -3
2665
+ :connection_points: []
2666
+ :user_data:
2667
+ :hover_colour: *8
2668
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2669
+ :list: !ruby/object:Set
2670
+ hash: {}
2671
+ : true
2672
+ *41: true
2673
+ ? !ruby/object:Wx::SF::RectShape
2674
+ :rect_size: !ruby/object:Wx::RealPoint
2675
+ :x: 151.0
2676
+ :y: 21.0
2677
+ :fill: !ruby/object:Wx::Brush
2678
+ :colour: !ruby/object:Wx::Colour
2679
+ :colour:
2680
+ - 255
2681
+ - 255
2682
+ - 255
2683
+ - 255
2684
+ :style: *3
2685
+ :border: !ruby/object:Wx::Pen
2686
+ :colour: !ruby/object:Wx::Colour
2687
+ :colour:
2688
+ - 0
2689
+ - 0
2690
+ - 0
2691
+ - 255
2692
+ :width: 1
2693
+ :style: *11
2694
+ :active: true
2695
+ :visibility: true
2696
+ :style: 262463
2697
+ :accepted_children: !ruby/object:Set
2698
+ hash:
2699
+ NilClass: true
2700
+ :accepted_connections: !ruby/object:Set
2701
+ hash:
2702
+ NilClass: true
2703
+ :accepted_src_neighbours: !ruby/object:Set
2704
+ hash:
2705
+ NilClass: true
2706
+ :accepted_trg_neighbours: !ruby/object:Set
2707
+ hash:
2708
+ NilClass: true
2709
+ :relative_position: !ruby/object:Wx::RealPoint
2710
+ :x: 0.0
2711
+ :y: 64.0
2712
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2713
+ :value: 4
2714
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2715
+ :value: 0
2716
+ :h_border: 0.0
2717
+ :v_border: 0.0
2718
+ :custom_dock_point: -3
2719
+ :connection_points:
2720
+ - !ruby/object:Wx::SF::ConnectionPoint
2721
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
2722
+ :value: 4
2723
+ :ortho_direction: &44 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
2724
+ :value: 2
2725
+ :relative_position: &45 !ruby/object:Wx::RealPoint
2726
+ :x: 0.0
2727
+ :y: 0.0
2728
+ - !ruby/object:Wx::SF::ConnectionPoint
2729
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
2730
+ :value: 6
2731
+ :ortho_direction: *44
2732
+ :relative_position: *45
2733
+ :user_data:
2734
+ :hover_colour: *8
2735
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2736
+ :list: !ruby/object:Set
2737
+ hash:
2738
+ ? !ruby/object:Wx::SF::EditTextShape
2739
+ :force_multiline: false
2740
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
2741
+ :value: 0
2742
+ :text: 'title : string'
2743
+ :text_colour: !ruby/object:Wx::Colour
2744
+ :colour:
2745
+ - 0
2746
+ - 0
2747
+ - 0
2748
+ - 255
2749
+ :font: !ruby/object:Wx::Font
2750
+ :font_info: Sans 12
2751
+ :rect_size: !ruby/object:Wx::RealPoint
2752
+ :x: 82.0
2753
+ :y: 19.0
2754
+ :fill: !ruby/object:Wx::Brush
2755
+ :colour: !ruby/object:Wx::Colour
2756
+ :colour:
2757
+ - 0
2758
+ - 0
2759
+ - 0
2760
+ - 255
2761
+ :style: *3
2762
+ :border: !ruby/object:Wx::Pen
2763
+ :colour: !ruby/object:Wx::Colour
2764
+ :colour:
2765
+ - 0
2766
+ - 0
2767
+ - 0
2768
+ - 255
2769
+ :width: 1
2770
+ :style: *4
2771
+ :active: true
2772
+ :visibility: true
2773
+ :style: 422200
2774
+ :accepted_children: !ruby/object:Set
2775
+ hash: {}
2776
+ :accepted_connections: !ruby/object:Set
2777
+ hash:
2778
+ NilClass: true
2779
+ :accepted_src_neighbours: !ruby/object:Set
2780
+ hash:
2781
+ NilClass: true
2782
+ :accepted_trg_neighbours: !ruby/object:Set
2783
+ hash:
2784
+ Wx::SF::TextShape: true
2785
+ Wx::SF::EditTextShape: true
2786
+ :relative_position: !ruby/object:Wx::RealPoint
2787
+ :x: 5.0
2788
+ :y: 1.0
2789
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2790
+ :value: 1
2791
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2792
+ :value: 1
2793
+ :h_border: 5.0
2794
+ :v_border: 1.0
2795
+ :custom_dock_point: -3
2796
+ :connection_points: []
2797
+ :user_data:
2798
+ :hover_colour: *8
2799
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2800
+ :list: !ruby/object:Set
2801
+ hash: {}
2802
+ : true
2803
+ : true
2804
+ ? !ruby/object:Wx::SF::EditTextShape
2805
+ :force_multiline: false
2806
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
2807
+ :value: 0
2808
+ :text: Subjects
2809
+ :text_colour: !ruby/object:Wx::Colour
2810
+ :colour:
2811
+ - 0
2812
+ - 0
2813
+ - 0
2814
+ - 255
2815
+ :font: !ruby/object:Wx::Font
2816
+ :font_info: Sans 12
2817
+ :rect_size: !ruby/object:Wx::RealPoint
2818
+ :x: 65.0
2819
+ :y: 19.0
2820
+ :fill: !ruby/object:Wx::Brush
2821
+ :colour: !ruby/object:Wx::Colour
2822
+ :colour:
2823
+ - 0
2824
+ - 0
2825
+ - 0
2826
+ - 255
2827
+ :style: *3
2828
+ :border: !ruby/object:Wx::Pen
2829
+ :colour: !ruby/object:Wx::Colour
2830
+ :colour:
2831
+ - 0
2832
+ - 0
2833
+ - 0
2834
+ - 255
2835
+ :width: 1
2836
+ :style: *4
2837
+ :active: true
2838
+ :visibility: true
2839
+ :style: !ruby/object:Wx::SF::Shape::STYLE
2840
+ :value: 319
2841
+ :accepted_children: !ruby/object:Set
2842
+ hash: {}
2843
+ :accepted_connections: !ruby/object:Set
2844
+ hash:
2845
+ NilClass: true
2846
+ :accepted_src_neighbours: !ruby/object:Set
2847
+ hash:
2848
+ NilClass: true
2849
+ :accepted_trg_neighbours: !ruby/object:Set
2850
+ hash:
2851
+ Wx::SF::TextShape: true
2852
+ Wx::SF::EditTextShape: true
2853
+ :relative_position: !ruby/object:Wx::RealPoint
2854
+ :x: 43.0
2855
+ :y: 10.0
2856
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2857
+ :value: 2
2858
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
2859
+ :value: 1
2860
+ :h_border: 0.0
2861
+ :v_border: 10.0
2862
+ :custom_dock_point: -3
2863
+ :connection_points: []
2864
+ :user_data:
2865
+ :hover_colour: *8
2866
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2867
+ :list: !ruby/object:Set
2868
+ hash: {}
2869
+ : true
2870
+ : true
2871
+ ? !ruby/object:Wx::SF::RoundRectShape
2872
+ :radius: 20
2873
+ :rect_size: !ruby/object:Wx::RealPoint
2874
+ :x: 151.0
2875
+ :y: 163.0
2876
+ :fill: !ruby/object:Wx::Brush
2877
+ :colour: !ruby/object:Wx::Colour
2878
+ :colour:
2879
+ - 255
2880
+ - 255
2881
+ - 255
2882
+ - 255
2883
+ :style: *6
2884
+ :border: !ruby/object:Wx::Pen
2885
+ :colour: !ruby/object:Wx::Colour
2886
+ :colour:
2887
+ - 0
2888
+ - 0
2889
+ - 0
2890
+ - 255
2891
+ :width: 1
2892
+ :style: *5
2893
+ :active: true
2894
+ :visibility: true
2895
+ :style: !ruby/object:Wx::SF::Shape::STYLE
2896
+ :value: 319
2897
+ :accepted_children: !ruby/object:Set
2898
+ hash:
2899
+ Wx::SF::TextShape: true
2900
+ Wx::SF::EditTextShape: true
2901
+ Wx::SF::RectShape: true
2902
+ Wx::SF::VBoxShape: true
2903
+ :accepted_connections: !ruby/object:Set
2904
+ hash:
2905
+ NilClass: true
2906
+ :accepted_src_neighbours: !ruby/object:Set
2907
+ hash:
2908
+ NilClass: true
2909
+ :accepted_trg_neighbours: !ruby/object:Set
2910
+ hash:
2911
+ NilClass: true
2912
+ :relative_position: !ruby/object:Wx::RealPoint
2913
+ :x: 130.0
2914
+ :y: 10.0
2915
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2916
+ :value: 0
2917
+ :v_align: &46 !ruby/object:Wx::SF::Shape::VALIGN
2918
+ :value: 0
2919
+ :h_border: 0.0
2920
+ :v_border: 0.0
2921
+ :custom_dock_point: -3
2922
+ :connection_points: []
2923
+ :user_data:
2924
+ :hover_colour: *8
2925
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2926
+ :list: !ruby/object:Set
2927
+ hash:
2928
+ ? !ruby/object:Wx::SF::RectShape
2929
+ :rect_size: !ruby/object:Wx::RealPoint
2930
+ :x: 151.0
2931
+ :y: 1.0
2932
+ :fill: !ruby/object:Wx::Brush
2933
+ :colour: !ruby/object:Wx::Colour
2934
+ :colour:
2935
+ - 255
2936
+ - 255
2937
+ - 255
2938
+ - 255
2939
+ :style: *6
2940
+ :border: !ruby/object:Wx::Pen
2941
+ :colour: !ruby/object:Wx::Colour
2942
+ :colour:
2943
+ - 0
2944
+ - 0
2945
+ - 0
2946
+ - 255
2947
+ :width: 1
2948
+ :style: *5
2949
+ :active: true
2950
+ :visibility: true
2951
+ :style: 317
2952
+ :accepted_children: !ruby/object:Set
2953
+ hash:
2954
+ NilClass: true
2955
+ :accepted_connections: !ruby/object:Set
2956
+ hash:
2957
+ NilClass: true
2958
+ :accepted_src_neighbours: !ruby/object:Set
2959
+ hash:
2960
+ NilClass: true
2961
+ :accepted_trg_neighbours: !ruby/object:Set
2962
+ hash:
2963
+ NilClass: true
2964
+ :relative_position: !ruby/object:Wx::RealPoint
2965
+ :x: 0.0
2966
+ :y: 35.0
2967
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
2968
+ :value: 4
2969
+ :v_align: *46
2970
+ :h_border: 0.0
2971
+ :v_border: 0.0
2972
+ :custom_dock_point: -3
2973
+ :connection_points: []
2974
+ :user_data:
2975
+ :hover_colour: *8
2976
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
2977
+ :list: !ruby/object:Set
2978
+ hash: {}
2979
+ : true
2980
+ ? !ruby/object:Wx::SF::EditTextShape
2981
+ :force_multiline: false
2982
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
2983
+ :value: 0
2984
+ :text: Marks
2985
+ :text_colour: !ruby/object:Wx::Colour
2986
+ :colour:
2987
+ - 0
2988
+ - 0
2989
+ - 0
2990
+ - 255
2991
+ :font: !ruby/object:Wx::Font
2992
+ :font_info: Sans 12
2993
+ :rect_size: !ruby/object:Wx::RealPoint
2994
+ :x: 48.0
2995
+ :y: 19.0
2996
+ :fill: !ruby/object:Wx::Brush
2997
+ :colour: !ruby/object:Wx::Colour
2998
+ :colour:
2999
+ - 0
3000
+ - 0
3001
+ - 0
3002
+ - 255
3003
+ :style: *3
3004
+ :border: !ruby/object:Wx::Pen
3005
+ :colour: !ruby/object:Wx::Colour
3006
+ :colour:
3007
+ - 0
3008
+ - 0
3009
+ - 0
3010
+ - 255
3011
+ :width: 1
3012
+ :style: *4
3013
+ :active: true
3014
+ :visibility: true
3015
+ :style: !ruby/object:Wx::SF::Shape::STYLE
3016
+ :value: 319
3017
+ :accepted_children: !ruby/object:Set
3018
+ hash: {}
3019
+ :accepted_connections: !ruby/object:Set
3020
+ hash:
3021
+ NilClass: true
3022
+ :accepted_src_neighbours: !ruby/object:Set
3023
+ hash:
3024
+ NilClass: true
3025
+ :accepted_trg_neighbours: !ruby/object:Set
3026
+ hash:
3027
+ Wx::SF::TextShape: true
3028
+ Wx::SF::EditTextShape: true
3029
+ :relative_position: !ruby/object:Wx::RealPoint
3030
+ :x: 51.0
3031
+ :y: 10.0
3032
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3033
+ :value: 2
3034
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3035
+ :value: 1
3036
+ :h_border: 0.0
3037
+ :v_border: 10.0
3038
+ :custom_dock_point: -3
3039
+ :connection_points: []
3040
+ :user_data:
3041
+ :hover_colour: *8
3042
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3043
+ :list: !ruby/object:Set
3044
+ hash: {}
3045
+ : true
3046
+ *47: true
3047
+ ? !ruby/object:Wx::SF::RectShape
3048
+ :rect_size: !ruby/object:Wx::RealPoint
3049
+ :x: 151.0
3050
+ :y: 21.0
3051
+ :fill: !ruby/object:Wx::Brush
3052
+ :colour: !ruby/object:Wx::Colour
3053
+ :colour:
3054
+ - 255
3055
+ - 255
3056
+ - 255
3057
+ - 255
3058
+ :style: *3
3059
+ :border: !ruby/object:Wx::Pen
3060
+ :colour: !ruby/object:Wx::Colour
3061
+ :colour:
3062
+ - 0
3063
+ - 0
3064
+ - 0
3065
+ - 255
3066
+ :width: 1
3067
+ :style: *11
3068
+ :active: true
3069
+ :visibility: true
3070
+ :style: 262463
3071
+ :accepted_children: !ruby/object:Set
3072
+ hash:
3073
+ NilClass: true
3074
+ :accepted_connections: !ruby/object:Set
3075
+ hash:
3076
+ NilClass: true
3077
+ :accepted_src_neighbours: !ruby/object:Set
3078
+ hash:
3079
+ NilClass: true
3080
+ :accepted_trg_neighbours: !ruby/object:Set
3081
+ hash:
3082
+ NilClass: true
3083
+ :relative_position: !ruby/object:Wx::RealPoint
3084
+ :x: 0.0
3085
+ :y: 64.0
3086
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3087
+ :value: 4
3088
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3089
+ :value: 0
3090
+ :h_border: 0.0
3091
+ :v_border: 0.0
3092
+ :custom_dock_point: -3
3093
+ :connection_points:
3094
+ - !ruby/object:Wx::SF::ConnectionPoint
3095
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3096
+ :value: 4
3097
+ :ortho_direction: &48 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
3098
+ :value: 2
3099
+ :relative_position: &49 !ruby/object:Wx::RealPoint
3100
+ :x: 0.0
3101
+ :y: 0.0
3102
+ - !ruby/object:Wx::SF::ConnectionPoint
3103
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3104
+ :value: 6
3105
+ :ortho_direction: *48
3106
+ :relative_position: *49
3107
+ :user_data:
3108
+ :hover_colour: *8
3109
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3110
+ :list: !ruby/object:Set
3111
+ hash:
3112
+ ? !ruby/object:Wx::SF::EditTextShape
3113
+ :force_multiline: false
3114
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3115
+ :value: 0
3116
+ :text: 'student id : integer'
3117
+ :text_colour: !ruby/object:Wx::Colour
3118
+ :colour:
3119
+ - 0
3120
+ - 0
3121
+ - 0
3122
+ - 255
3123
+ :font: !ruby/object:Wx::Font
3124
+ :font_info: Sans 12
3125
+ :rect_size: !ruby/object:Wx::RealPoint
3126
+ :x: 134.0
3127
+ :y: 19.0
3128
+ :fill: !ruby/object:Wx::Brush
3129
+ :colour: !ruby/object:Wx::Colour
3130
+ :colour:
3131
+ - 0
3132
+ - 0
3133
+ - 0
3134
+ - 255
3135
+ :style: *3
3136
+ :border: !ruby/object:Wx::Pen
3137
+ :colour: !ruby/object:Wx::Colour
3138
+ :colour:
3139
+ - 0
3140
+ - 0
3141
+ - 0
3142
+ - 255
3143
+ :width: 1
3144
+ :style: *4
3145
+ :active: true
3146
+ :visibility: true
3147
+ :style: 422200
3148
+ :accepted_children: !ruby/object:Set
3149
+ hash: {}
3150
+ :accepted_connections: !ruby/object:Set
3151
+ hash:
3152
+ NilClass: true
3153
+ :accepted_src_neighbours: !ruby/object:Set
3154
+ hash:
3155
+ NilClass: true
3156
+ :accepted_trg_neighbours: !ruby/object:Set
3157
+ hash:
3158
+ Wx::SF::TextShape: true
3159
+ Wx::SF::EditTextShape: true
3160
+ :relative_position: !ruby/object:Wx::RealPoint
3161
+ :x: 5.0
3162
+ :y: 1.0
3163
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3164
+ :value: 1
3165
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3166
+ :value: 1
3167
+ :h_border: 5.0
3168
+ :v_border: 1.0
3169
+ :custom_dock_point: -3
3170
+ :connection_points: []
3171
+ :user_data:
3172
+ :hover_colour: *8
3173
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3174
+ :list: !ruby/object:Set
3175
+ hash: {}
3176
+ : true
3177
+ : true
3178
+ *50: true
3179
+ ? !ruby/object:Wx::SF::RectShape
3180
+ :rect_size: !ruby/object:Wx::RealPoint
3181
+ :x: 151.0
3182
+ :y: 21.0
3183
+ :fill: !ruby/object:Wx::Brush
3184
+ :colour: !ruby/object:Wx::Colour
3185
+ :colour:
3186
+ - 255
3187
+ - 255
3188
+ - 255
3189
+ - 255
3190
+ :style: *3
3191
+ :border: !ruby/object:Wx::Pen
3192
+ :colour: !ruby/object:Wx::Colour
3193
+ :colour:
3194
+ - 0
3195
+ - 0
3196
+ - 0
3197
+ - 255
3198
+ :width: 1
3199
+ :style: *11
3200
+ :active: true
3201
+ :visibility: true
3202
+ :style: 262463
3203
+ :accepted_children: !ruby/object:Set
3204
+ hash:
3205
+ NilClass: true
3206
+ :accepted_connections: !ruby/object:Set
3207
+ hash:
3208
+ NilClass: true
3209
+ :accepted_src_neighbours: !ruby/object:Set
3210
+ hash:
3211
+ NilClass: true
3212
+ :accepted_trg_neighbours: !ruby/object:Set
3213
+ hash:
3214
+ NilClass: true
3215
+ :relative_position: !ruby/object:Wx::RealPoint
3216
+ :x: 0.0
3217
+ :y: 104.0
3218
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3219
+ :value: 4
3220
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3221
+ :value: 0
3222
+ :h_border: 0.0
3223
+ :v_border: 0.0
3224
+ :custom_dock_point: -3
3225
+ :connection_points:
3226
+ - !ruby/object:Wx::SF::ConnectionPoint
3227
+ :type: *51
3228
+ :ortho_direction: *42
3229
+ :relative_position: !ruby/object:Wx::RealPoint
3230
+ :x: 0.0
3231
+ :y: 0.0
3232
+ - !ruby/object:Wx::SF::ConnectionPoint
3233
+ :type: *52
3234
+ :ortho_direction: *42
3235
+ :relative_position: !ruby/object:Wx::RealPoint
3236
+ :x: 0.0
3237
+ :y: 0.0
3238
+ :user_data:
3239
+ :hover_colour: *8
3240
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3241
+ :list: !ruby/object:Set
3242
+ hash:
3243
+ ? !ruby/object:Wx::SF::EditTextShape
3244
+ :force_multiline: false
3245
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3246
+ :value: 0
3247
+ :text: 'date : datetime'
3248
+ :text_colour: !ruby/object:Wx::Colour
3249
+ :colour:
3250
+ - 0
3251
+ - 0
3252
+ - 0
3253
+ - 255
3254
+ :font: !ruby/object:Wx::Font
3255
+ :font_info: Sans 12
3256
+ :rect_size: !ruby/object:Wx::RealPoint
3257
+ :x: 109.0
3258
+ :y: 19.0
3259
+ :fill: !ruby/object:Wx::Brush
3260
+ :colour: !ruby/object:Wx::Colour
3261
+ :colour:
3262
+ - 0
3263
+ - 0
3264
+ - 0
3265
+ - 255
3266
+ :style: *3
3267
+ :border: !ruby/object:Wx::Pen
3268
+ :colour: !ruby/object:Wx::Colour
3269
+ :colour:
3270
+ - 0
3271
+ - 0
3272
+ - 0
3273
+ - 255
3274
+ :width: 1
3275
+ :style: *4
3276
+ :active: true
3277
+ :visibility: true
3278
+ :style: 422202
3279
+ :accepted_children: !ruby/object:Set
3280
+ hash: {}
3281
+ :accepted_connections: !ruby/object:Set
3282
+ hash:
3283
+ NilClass: true
3284
+ :accepted_src_neighbours: !ruby/object:Set
3285
+ hash:
3286
+ NilClass: true
3287
+ :accepted_trg_neighbours: !ruby/object:Set
3288
+ hash:
3289
+ Wx::SF::TextShape: true
3290
+ Wx::SF::EditTextShape: true
3291
+ :relative_position: !ruby/object:Wx::RealPoint
3292
+ :x: 5.0
3293
+ :y: 1.0
3294
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3295
+ :value: 1
3296
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3297
+ :value: 1
3298
+ :h_border: 5.0
3299
+ :v_border: 1.0
3300
+ :custom_dock_point: -3
3301
+ :connection_points: []
3302
+ :user_data:
3303
+ :hover_colour: *8
3304
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3305
+ :list: !ruby/object:Set
3306
+ hash: {}
3307
+ : true
3308
+ : true
3309
+ ? !ruby/object:Wx::SF::RectShape
3310
+ :rect_size: !ruby/object:Wx::RealPoint
3311
+ :x: 151.0
3312
+ :y: 21.0
3313
+ :fill: !ruby/object:Wx::Brush
3314
+ :colour: !ruby/object:Wx::Colour
3315
+ :colour:
3316
+ - 255
3317
+ - 255
3318
+ - 255
3319
+ - 255
3320
+ :style: *3
3321
+ :border: !ruby/object:Wx::Pen
3322
+ :colour: !ruby/object:Wx::Colour
3323
+ :colour:
3324
+ - 0
3325
+ - 0
3326
+ - 0
3327
+ - 255
3328
+ :width: 1
3329
+ :style: *11
3330
+ :active: true
3331
+ :visibility: true
3332
+ :style: 262463
3333
+ :accepted_children: !ruby/object:Set
3334
+ hash:
3335
+ NilClass: true
3336
+ :accepted_connections: !ruby/object:Set
3337
+ hash:
3338
+ NilClass: true
3339
+ :accepted_src_neighbours: !ruby/object:Set
3340
+ hash:
3341
+ NilClass: true
3342
+ :accepted_trg_neighbours: !ruby/object:Set
3343
+ hash:
3344
+ NilClass: true
3345
+ :relative_position: !ruby/object:Wx::RealPoint
3346
+ :x: 0.0
3347
+ :y: 124.0
3348
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3349
+ :value: 4
3350
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3351
+ :value: 0
3352
+ :h_border: 0.0
3353
+ :v_border: 0.0
3354
+ :custom_dock_point: -3
3355
+ :connection_points:
3356
+ - !ruby/object:Wx::SF::ConnectionPoint
3357
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3358
+ :value: 4
3359
+ :ortho_direction: &53 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
3360
+ :value: 2
3361
+ :relative_position: &54 !ruby/object:Wx::RealPoint
3362
+ :x: 0.0
3363
+ :y: 0.0
3364
+ - !ruby/object:Wx::SF::ConnectionPoint
3365
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3366
+ :value: 6
3367
+ :ortho_direction: *53
3368
+ :relative_position: *54
3369
+ :user_data:
3370
+ :hover_colour: *8
3371
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3372
+ :list: !ruby/object:Set
3373
+ hash:
3374
+ ? !ruby/object:Wx::SF::EditTextShape
3375
+ :force_multiline: false
3376
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3377
+ :value: 0
3378
+ :text: 'mark : integer'
3379
+ :text_colour: !ruby/object:Wx::Colour
3380
+ :colour:
3381
+ - 0
3382
+ - 0
3383
+ - 0
3384
+ - 255
3385
+ :font: !ruby/object:Wx::Font
3386
+ :font_info: Sans 12
3387
+ :rect_size: !ruby/object:Wx::RealPoint
3388
+ :x: 100.0
3389
+ :y: 19.0
3390
+ :fill: !ruby/object:Wx::Brush
3391
+ :colour: !ruby/object:Wx::Colour
3392
+ :colour:
3393
+ - 0
3394
+ - 0
3395
+ - 0
3396
+ - 255
3397
+ :style: *3
3398
+ :border: !ruby/object:Wx::Pen
3399
+ :colour: !ruby/object:Wx::Colour
3400
+ :colour:
3401
+ - 0
3402
+ - 0
3403
+ - 0
3404
+ - 255
3405
+ :width: 1
3406
+ :style: *4
3407
+ :active: true
3408
+ :visibility: true
3409
+ :style: 422200
3410
+ :accepted_children: !ruby/object:Set
3411
+ hash: {}
3412
+ :accepted_connections: !ruby/object:Set
3413
+ hash:
3414
+ NilClass: true
3415
+ :accepted_src_neighbours: !ruby/object:Set
3416
+ hash:
3417
+ NilClass: true
3418
+ :accepted_trg_neighbours: !ruby/object:Set
3419
+ hash:
3420
+ Wx::SF::TextShape: true
3421
+ Wx::SF::EditTextShape: true
3422
+ :relative_position: !ruby/object:Wx::RealPoint
3423
+ :x: 5.0
3424
+ :y: 1.0
3425
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3426
+ :value: 1
3427
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3428
+ :value: 1
3429
+ :h_border: 5.0
3430
+ :v_border: 1.0
3431
+ :custom_dock_point: -3
3432
+ :connection_points: []
3433
+ :user_data:
3434
+ :hover_colour: *8
3435
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3436
+ :list: !ruby/object:Set
3437
+ hash: {}
3438
+ : true
3439
+ : true
3440
+ : true
3441
+ ? !ruby/object:Wx::SF::RoundRectShape
3442
+ :radius: 20
3443
+ :rect_size: !ruby/object:Wx::RealPoint
3444
+ :x: 151.0
3445
+ :y: 125.0
3446
+ :fill: !ruby/object:Wx::Brush
3447
+ :colour: !ruby/object:Wx::Colour
3448
+ :colour:
3449
+ - 255
3450
+ - 255
3451
+ - 255
3452
+ - 255
3453
+ :style: *6
3454
+ :border: !ruby/object:Wx::Pen
3455
+ :colour: !ruby/object:Wx::Colour
3456
+ :colour:
3457
+ - 0
3458
+ - 0
3459
+ - 0
3460
+ - 255
3461
+ :width: 1
3462
+ :style: *5
3463
+ :active: true
3464
+ :visibility: true
3465
+ :style: !ruby/object:Wx::SF::Shape::STYLE
3466
+ :value: 319
3467
+ :accepted_children: !ruby/object:Set
3468
+ hash:
3469
+ Wx::SF::TextShape: true
3470
+ Wx::SF::EditTextShape: true
3471
+ Wx::SF::RectShape: true
3472
+ Wx::SF::VBoxShape: true
3473
+ :accepted_connections: !ruby/object:Set
3474
+ hash:
3475
+ NilClass: true
3476
+ :accepted_src_neighbours: !ruby/object:Set
3477
+ hash:
3478
+ NilClass: true
3479
+ :accepted_trg_neighbours: !ruby/object:Set
3480
+ hash:
3481
+ NilClass: true
3482
+ :relative_position: !ruby/object:Wx::RealPoint
3483
+ :x: 657.0
3484
+ :y: 253.0
3485
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3486
+ :value: 0
3487
+ :v_align: &55 !ruby/object:Wx::SF::Shape::VALIGN
3488
+ :value: 0
3489
+ :h_border: 0.0
3490
+ :v_border: 0.0
3491
+ :custom_dock_point: -3
3492
+ :connection_points: []
3493
+ :user_data:
3494
+ :hover_colour: *8
3495
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3496
+ :list: !ruby/object:Set
3497
+ hash:
3498
+ ? !ruby/object:Wx::SF::RectShape
3499
+ :rect_size: !ruby/object:Wx::RealPoint
3500
+ :x: 151.0
3501
+ :y: 1.0
3502
+ :fill: !ruby/object:Wx::Brush
3503
+ :colour: !ruby/object:Wx::Colour
3504
+ :colour:
3505
+ - 255
3506
+ - 255
3507
+ - 255
3508
+ - 255
3509
+ :style: *6
3510
+ :border: !ruby/object:Wx::Pen
3511
+ :colour: !ruby/object:Wx::Colour
3512
+ :colour:
3513
+ - 0
3514
+ - 0
3515
+ - 0
3516
+ - 255
3517
+ :width: 1
3518
+ :style: *5
3519
+ :active: true
3520
+ :visibility: true
3521
+ :style: 317
3522
+ :accepted_children: !ruby/object:Set
3523
+ hash:
3524
+ NilClass: true
3525
+ :accepted_connections: !ruby/object:Set
3526
+ hash:
3527
+ NilClass: true
3528
+ :accepted_src_neighbours: !ruby/object:Set
3529
+ hash:
3530
+ NilClass: true
3531
+ :accepted_trg_neighbours: !ruby/object:Set
3532
+ hash:
3533
+ NilClass: true
3534
+ :relative_position: !ruby/object:Wx::RealPoint
3535
+ :x: 0.0
3536
+ :y: 35.0
3537
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3538
+ :value: 4
3539
+ :v_align: *55
3540
+ :h_border: 0.0
3541
+ :v_border: 0.0
3542
+ :custom_dock_point: -3
3543
+ :connection_points: []
3544
+ :user_data:
3545
+ :hover_colour: *8
3546
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3547
+ :list: !ruby/object:Set
3548
+ hash: {}
3549
+ : true
3550
+ ? !ruby/object:Wx::SF::RectShape
3551
+ :rect_size: !ruby/object:Wx::RealPoint
3552
+ :x: 151.0
3553
+ :y: 21.0
3554
+ :fill: !ruby/object:Wx::Brush
3555
+ :colour: !ruby/object:Wx::Colour
3556
+ :colour:
3557
+ - 255
3558
+ - 255
3559
+ - 255
3560
+ - 255
3561
+ :style: *3
3562
+ :border: !ruby/object:Wx::Pen
3563
+ :colour: !ruby/object:Wx::Colour
3564
+ :colour:
3565
+ - 0
3566
+ - 0
3567
+ - 0
3568
+ - 255
3569
+ :width: 1
3570
+ :style: *11
3571
+ :active: true
3572
+ :visibility: true
3573
+ :style: 262463
3574
+ :accepted_children: !ruby/object:Set
3575
+ hash:
3576
+ NilClass: true
3577
+ :accepted_connections: !ruby/object:Set
3578
+ hash:
3579
+ NilClass: true
3580
+ :accepted_src_neighbours: !ruby/object:Set
3581
+ hash:
3582
+ NilClass: true
3583
+ :accepted_trg_neighbours: !ruby/object:Set
3584
+ hash:
3585
+ NilClass: true
3586
+ :relative_position: !ruby/object:Wx::RealPoint
3587
+ :x: 0.0
3588
+ :y: 64.0
3589
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3590
+ :value: 4
3591
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3592
+ :value: 0
3593
+ :h_border: 0.0
3594
+ :v_border: 0.0
3595
+ :custom_dock_point: -3
3596
+ :connection_points:
3597
+ - !ruby/object:Wx::SF::ConnectionPoint
3598
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3599
+ :value: 4
3600
+ :ortho_direction: &56 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
3601
+ :value: 2
3602
+ :relative_position: &57 !ruby/object:Wx::RealPoint
3603
+ :x: 0.0
3604
+ :y: 0.0
3605
+ - !ruby/object:Wx::SF::ConnectionPoint
3606
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3607
+ :value: 6
3608
+ :ortho_direction: *56
3609
+ :relative_position: *57
3610
+ :user_data:
3611
+ :hover_colour: *8
3612
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3613
+ :list: !ruby/object:Set
3614
+ hash:
3615
+ ? !ruby/object:Wx::SF::EditTextShape
3616
+ :force_multiline: false
3617
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3618
+ :value: 0
3619
+ :text: 'first name : string'
3620
+ :text_colour: !ruby/object:Wx::Colour
3621
+ :colour:
3622
+ - 0
3623
+ - 0
3624
+ - 0
3625
+ - 255
3626
+ :font: !ruby/object:Wx::Font
3627
+ :font_info: Sans 12
3628
+ :rect_size: !ruby/object:Wx::RealPoint
3629
+ :x: 127.0
3630
+ :y: 19.0
3631
+ :fill: !ruby/object:Wx::Brush
3632
+ :colour: !ruby/object:Wx::Colour
3633
+ :colour:
3634
+ - 0
3635
+ - 0
3636
+ - 0
3637
+ - 255
3638
+ :style: *3
3639
+ :border: !ruby/object:Wx::Pen
3640
+ :colour: !ruby/object:Wx::Colour
3641
+ :colour:
3642
+ - 0
3643
+ - 0
3644
+ - 0
3645
+ - 255
3646
+ :width: 1
3647
+ :style: *4
3648
+ :active: true
3649
+ :visibility: true
3650
+ :style: 422200
3651
+ :accepted_children: !ruby/object:Set
3652
+ hash: {}
3653
+ :accepted_connections: !ruby/object:Set
3654
+ hash:
3655
+ NilClass: true
3656
+ :accepted_src_neighbours: !ruby/object:Set
3657
+ hash:
3658
+ NilClass: true
3659
+ :accepted_trg_neighbours: !ruby/object:Set
3660
+ hash:
3661
+ Wx::SF::TextShape: true
3662
+ Wx::SF::EditTextShape: true
3663
+ :relative_position: !ruby/object:Wx::RealPoint
3664
+ :x: 5.0
3665
+ :y: 1.0
3666
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3667
+ :value: 1
3668
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3669
+ :value: 1
3670
+ :h_border: 5.0
3671
+ :v_border: 1.0
3672
+ :custom_dock_point: -3
3673
+ :connection_points: []
3674
+ :user_data:
3675
+ :hover_colour: *8
3676
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3677
+ :list: !ruby/object:Set
3678
+ hash: {}
3679
+ : true
3680
+ : true
3681
+ ? !ruby/object:Wx::SF::RectShape
3682
+ :rect_size: !ruby/object:Wx::RealPoint
3683
+ :x: 151.0
3684
+ :y: 21.0
3685
+ :fill: !ruby/object:Wx::Brush
3686
+ :colour: !ruby/object:Wx::Colour
3687
+ :colour:
3688
+ - 255
3689
+ - 255
3690
+ - 255
3691
+ - 255
3692
+ :style: *3
3693
+ :border: !ruby/object:Wx::Pen
3694
+ :colour: !ruby/object:Wx::Colour
3695
+ :colour:
3696
+ - 0
3697
+ - 0
3698
+ - 0
3699
+ - 255
3700
+ :width: 1
3701
+ :style: *11
3702
+ :active: true
3703
+ :visibility: true
3704
+ :style: 262463
3705
+ :accepted_children: !ruby/object:Set
3706
+ hash:
3707
+ NilClass: true
3708
+ :accepted_connections: !ruby/object:Set
3709
+ hash:
3710
+ NilClass: true
3711
+ :accepted_src_neighbours: !ruby/object:Set
3712
+ hash:
3713
+ NilClass: true
3714
+ :accepted_trg_neighbours: !ruby/object:Set
3715
+ hash:
3716
+ NilClass: true
3717
+ :relative_position: !ruby/object:Wx::RealPoint
3718
+ :x: 0.0
3719
+ :y: 84.0
3720
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3721
+ :value: 4
3722
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3723
+ :value: 0
3724
+ :h_border: 0.0
3725
+ :v_border: 0.0
3726
+ :custom_dock_point: -3
3727
+ :connection_points:
3728
+ - !ruby/object:Wx::SF::ConnectionPoint
3729
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3730
+ :value: 4
3731
+ :ortho_direction: &58 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
3732
+ :value: 2
3733
+ :relative_position: &59 !ruby/object:Wx::RealPoint
3734
+ :x: 0.0
3735
+ :y: 0.0
3736
+ - !ruby/object:Wx::SF::ConnectionPoint
3737
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3738
+ :value: 6
3739
+ :ortho_direction: *58
3740
+ :relative_position: *59
3741
+ :user_data:
3742
+ :hover_colour: *8
3743
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3744
+ :list: !ruby/object:Set
3745
+ hash:
3746
+ ? !ruby/object:Wx::SF::EditTextShape
3747
+ :force_multiline: false
3748
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3749
+ :value: 0
3750
+ :text: 'last name : string'
3751
+ :text_colour: !ruby/object:Wx::Colour
3752
+ :colour:
3753
+ - 0
3754
+ - 0
3755
+ - 0
3756
+ - 255
3757
+ :font: !ruby/object:Wx::Font
3758
+ :font_info: Sans 12
3759
+ :rect_size: !ruby/object:Wx::RealPoint
3760
+ :x: 126.0
3761
+ :y: 19.0
3762
+ :fill: !ruby/object:Wx::Brush
3763
+ :colour: !ruby/object:Wx::Colour
3764
+ :colour:
3765
+ - 0
3766
+ - 0
3767
+ - 0
3768
+ - 255
3769
+ :style: *3
3770
+ :border: !ruby/object:Wx::Pen
3771
+ :colour: !ruby/object:Wx::Colour
3772
+ :colour:
3773
+ - 0
3774
+ - 0
3775
+ - 0
3776
+ - 255
3777
+ :width: 1
3778
+ :style: *4
3779
+ :active: true
3780
+ :visibility: true
3781
+ :style: 422200
3782
+ :accepted_children: !ruby/object:Set
3783
+ hash: {}
3784
+ :accepted_connections: !ruby/object:Set
3785
+ hash:
3786
+ NilClass: true
3787
+ :accepted_src_neighbours: !ruby/object:Set
3788
+ hash:
3789
+ NilClass: true
3790
+ :accepted_trg_neighbours: !ruby/object:Set
3791
+ hash:
3792
+ Wx::SF::TextShape: true
3793
+ Wx::SF::EditTextShape: true
3794
+ :relative_position: !ruby/object:Wx::RealPoint
3795
+ :x: 5.0
3796
+ :y: 1.0
3797
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3798
+ :value: 1
3799
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3800
+ :value: 1
3801
+ :h_border: 5.0
3802
+ :v_border: 1.0
3803
+ :custom_dock_point: -3
3804
+ :connection_points: []
3805
+ :user_data:
3806
+ :hover_colour: *8
3807
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3808
+ :list: !ruby/object:Set
3809
+ hash: {}
3810
+ : true
3811
+ : true
3812
+ ? !ruby/object:Wx::SF::EditTextShape
3813
+ :force_multiline: false
3814
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3815
+ :value: 0
3816
+ :text: Teachers
3817
+ :text_colour: !ruby/object:Wx::Colour
3818
+ :colour:
3819
+ - 0
3820
+ - 0
3821
+ - 0
3822
+ - 255
3823
+ :font: !ruby/object:Wx::Font
3824
+ :font_info: Sans 12
3825
+ :rect_size: !ruby/object:Wx::RealPoint
3826
+ :x: 68.0
3827
+ :y: 19.0
3828
+ :fill: !ruby/object:Wx::Brush
3829
+ :colour: !ruby/object:Wx::Colour
3830
+ :colour:
3831
+ - 0
3832
+ - 0
3833
+ - 0
3834
+ - 255
3835
+ :style: *3
3836
+ :border: !ruby/object:Wx::Pen
3837
+ :colour: !ruby/object:Wx::Colour
3838
+ :colour:
3839
+ - 0
3840
+ - 0
3841
+ - 0
3842
+ - 255
3843
+ :width: 1
3844
+ :style: *4
3845
+ :active: true
3846
+ :visibility: true
3847
+ :style: !ruby/object:Wx::SF::Shape::STYLE
3848
+ :value: 319
3849
+ :accepted_children: !ruby/object:Set
3850
+ hash: {}
3851
+ :accepted_connections: !ruby/object:Set
3852
+ hash:
3853
+ NilClass: true
3854
+ :accepted_src_neighbours: !ruby/object:Set
3855
+ hash:
3856
+ NilClass: true
3857
+ :accepted_trg_neighbours: !ruby/object:Set
3858
+ hash:
3859
+ Wx::SF::TextShape: true
3860
+ Wx::SF::EditTextShape: true
3861
+ :relative_position: !ruby/object:Wx::RealPoint
3862
+ :x: 41.0
3863
+ :y: 10.0
3864
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3865
+ :value: 2
3866
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3867
+ :value: 1
3868
+ :h_border: 0.0
3869
+ :v_border: 10.0
3870
+ :custom_dock_point: -3
3871
+ :connection_points: []
3872
+ :user_data:
3873
+ :hover_colour: *8
3874
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3875
+ :list: !ruby/object:Set
3876
+ hash: {}
3877
+ : true
3878
+ ? &63 !ruby/object:Wx::SF::RectShape
3879
+ :rect_size: !ruby/object:Wx::RealPoint
3880
+ :x: 151.0
3881
+ :y: 21.0
3882
+ :fill: !ruby/object:Wx::Brush
3883
+ :colour: !ruby/object:Wx::Colour
3884
+ :colour:
3885
+ - 255
3886
+ - 255
3887
+ - 255
3888
+ - 255
3889
+ :style: *3
3890
+ :border: !ruby/object:Wx::Pen
3891
+ :colour: !ruby/object:Wx::Colour
3892
+ :colour:
3893
+ - 0
3894
+ - 0
3895
+ - 0
3896
+ - 255
3897
+ :width: 1
3898
+ :style: *11
3899
+ :active: true
3900
+ :visibility: true
3901
+ :style: 262463
3902
+ :accepted_children: !ruby/object:Set
3903
+ hash:
3904
+ NilClass: true
3905
+ :accepted_connections: !ruby/object:Set
3906
+ hash:
3907
+ NilClass: true
3908
+ :accepted_src_neighbours: !ruby/object:Set
3909
+ hash:
3910
+ NilClass: true
3911
+ :accepted_trg_neighbours: !ruby/object:Set
3912
+ hash:
3913
+ NilClass: true
3914
+ :relative_position: !ruby/object:Wx::RealPoint
3915
+ :x: 0.0
3916
+ :y: 44.0
3917
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3918
+ :value: 4
3919
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3920
+ :value: 0
3921
+ :h_border: 0.0
3922
+ :v_border: 0.0
3923
+ :custom_dock_point: -3
3924
+ :connection_points:
3925
+ - !ruby/object:Wx::SF::ConnectionPoint
3926
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3927
+ :value: 4
3928
+ :ortho_direction: &60 !ruby/object:Wx::SF::ConnectionPoint::CPORTHODIR
3929
+ :value: 2
3930
+ :relative_position: &61 !ruby/object:Wx::RealPoint
3931
+ :x: 0.0
3932
+ :y: 0.0
3933
+ - !ruby/object:Wx::SF::ConnectionPoint
3934
+ :type: !ruby/object:Wx::SF::ConnectionPoint::CPTYPE
3935
+ :value: 6
3936
+ :ortho_direction: *60
3937
+ :relative_position: *61
3938
+ :user_data:
3939
+ :hover_colour: *8
3940
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
3941
+ :list: !ruby/object:Set
3942
+ hash:
3943
+ ? !ruby/object:Wx::SF::EditTextShape
3944
+ :force_multiline: false
3945
+ :edit_type: !ruby/object:Wx::SF::EditTextShape::EDITTYPE
3946
+ :value: 0
3947
+ :text: 'teacher id : integer'
3948
+ :text_colour: !ruby/object:Wx::Colour
3949
+ :colour:
3950
+ - 0
3951
+ - 0
3952
+ - 0
3953
+ - 255
3954
+ :font: !ruby/object:Wx::Font
3955
+ :font_info: Sans 12
3956
+ :rect_size: !ruby/object:Wx::RealPoint
3957
+ :x: 133.0
3958
+ :y: 19.0
3959
+ :fill: !ruby/object:Wx::Brush
3960
+ :colour: !ruby/object:Wx::Colour
3961
+ :colour:
3962
+ - 0
3963
+ - 0
3964
+ - 0
3965
+ - 255
3966
+ :style: *3
3967
+ :border: !ruby/object:Wx::Pen
3968
+ :colour: !ruby/object:Wx::Colour
3969
+ :colour:
3970
+ - 0
3971
+ - 0
3972
+ - 0
3973
+ - 255
3974
+ :width: 1
3975
+ :style: *4
3976
+ :active: true
3977
+ :visibility: true
3978
+ :style: 422200
3979
+ :accepted_children: !ruby/object:Set
3980
+ hash: {}
3981
+ :accepted_connections: !ruby/object:Set
3982
+ hash:
3983
+ NilClass: true
3984
+ :accepted_src_neighbours: !ruby/object:Set
3985
+ hash:
3986
+ NilClass: true
3987
+ :accepted_trg_neighbours: !ruby/object:Set
3988
+ hash:
3989
+ Wx::SF::TextShape: true
3990
+ Wx::SF::EditTextShape: true
3991
+ :relative_position: !ruby/object:Wx::RealPoint
3992
+ :x: 5.0
3993
+ :y: 1.0
3994
+ :h_align: !ruby/object:Wx::SF::Shape::HALIGN
3995
+ :value: 1
3996
+ :v_align: !ruby/object:Wx::SF::Shape::VALIGN
3997
+ :value: 1
3998
+ :h_border: 5.0
3999
+ :v_border: 1.0
4000
+ :custom_dock_point: -3
4001
+ :connection_points: []
4002
+ :user_data:
4003
+ :hover_colour: *8
4004
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
4005
+ :list: !ruby/object:Set
4006
+ hash: {}
4007
+ : true
4008
+ : true
4009
+ : true
4010
+ ? !ruby/object:Wx::SF::RoundOrthoLineShape
4011
+ :max_radius: 7
4012
+ :src_shape: *62
4013
+ :trg_shape: *63
4014
+ :stand_alone: false
4015
+ :src_arrow: !ruby/object:Wx::SF::DoubleCrossBarArrow
4016
+ :pen:
4017
+ :trg_arrow: !ruby/object:Wx::SF::CrossBarProngArrow
4018
+ :pen:
4019
+ :src_offset: !ruby/object:Wx::RealPoint
4020
+ :x: 0.9933774834437086
4021
+ :y: 0.47619047619047616
4022
+ :trg_offset: !ruby/object:Wx::RealPoint
4023
+ :x: 0.019867549668874173
4024
+ :y: 0.6190476190476191
4025
+ :dock_point: 18446744073709551616
4026
+ :control_points: []
4027
+ :line_pen: !ruby/object:Wx::Pen
4028
+ :colour: !ruby/object:Wx::Colour
4029
+ :colour:
4030
+ - 0
4031
+ - 0
4032
+ - 0
4033
+ - 255
4034
+ :width: 1
4035
+ :style: *5
4036
+ :active: true
4037
+ :visibility: true
4038
+ :style: *29
4039
+ :accepted_children: !ruby/object:Set
4040
+ hash:
4041
+ Wx::SF::TextShape: true
4042
+ Wx::SF::EditTextShape: true
4043
+ :accepted_connections: !ruby/object:Set
4044
+ hash:
4045
+ NilClass: true
4046
+ :accepted_src_neighbours: !ruby/object:Set
4047
+ hash:
4048
+ NilClass: true
4049
+ :accepted_trg_neighbours: !ruby/object:Set
4050
+ hash:
4051
+ NilClass: true
4052
+ :relative_position: !ruby/object:Wx::RealPoint
4053
+ :x: 549.0
4054
+ :y: 291.0
4055
+ :h_align: *25
4056
+ :v_align: *14
4057
+ :h_border: 0.0
4058
+ :v_border: 0.0
4059
+ :custom_dock_point: -3
4060
+ :connection_points: []
4061
+ :user_data:
4062
+ :hover_colour: *8
4063
+ :child_shapes: !ruby/object:Wx::SF::ShapeList
4064
+ :list: !ruby/object:Set
4065
+ hash: {}
4066
+ : true
4067
+ :accepted_shapes: !ruby/object:Set
4068
+ hash:
4069
+ NilClass: true
4070
+ :accepted_top_shapes: !ruby/object:Set
4071
+ hash:
4072
+ NilClass: true