-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathUEditorForm.dfm
More file actions
3282 lines (3282 loc) · 158 KB
/
UEditorForm.dfm
File metadata and controls
3282 lines (3282 loc) · 158 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object FEditForm: TFEditForm
Left = 333
Top = 204
Align = alClient
BorderIcons = []
ClientHeight = 546
ClientWidth = 687
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poScreenCenter
ShowHint = True
Visible = True
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = FormResize
OnShow = FormShow
DesignSize = (
687
546)
TextHeight = 15
object TVFileStructure: TTreeView
Left = 192
Top = -3
Width = 121
Height = 20
Indent = 19
TabOrder = 0
Visible = False
OnChange = TVFileStructureChange
end
object BottomPanel: TPanel
Left = 0
Top = 525
Width = 687
Height = 21
Align = alBottom
TabOrder = 1
object DesignButton: TButton
Left = 1
Top = 1
Width = 56
Height = 19
Hint = 'Design on/off'
Align = alLeft
Caption = 'Design'
TabOrder = 0
OnClick = DesignButtonClick
end
object StatusBar: TStatusBar
Left = 57
Top = 1
Width = 629
Height = 19
Align = alClient
Panels = <
item
Alignment = taCenter
Width = 50
end
item
Alignment = taCenter
Text = 'Column'
Width = 50
end
item
Alignment = taCenter
Width = 70
end
item
Width = 70
end>
end
end
object EditformToolbar: TToolBar
Left = 0
Top = 0
Width = 46
Height = 525
Align = alLeft
AutoSize = True
Images = vilEditorToolbarLight
TabOrder = 2
object TBClose: TToolButton
Left = 0
Top = 0
Hint = 'Close'
ImageIndex = 0
ImageName = 'Close'
OnClick = SBCloseClick
end
object TBExplorer: TToolButton
Left = 23
Top = 0
Hint = 'Explorer'
ImageIndex = 1
ImageName = 'Explorer'
Wrap = True
OnClick = SBExplorerClick
end
object TBBrowser: TToolButton
Left = 0
Top = 22
Hint = 'Show in browser'
ImageIndex = 2
ImageName = 'Browser'
OnClick = SBBrowserClick
end
object TBDesignform: TToolButton
Left = 23
Top = 22
Hint = 'Open the associated design form'
ImageIndex = 3
ImageName = 'Designform'
Wrap = True
OnClick = SBDesignformClick
end
object TBStructure: TToolButton
Left = 0
Top = 44
Hint = 'Edit class structure'
ImageIndex = 4
ImageName = 'Classedit'
OnClick = SBClassEditClick
end
object TBClassOpen: TToolButton
Left = 23
Top = 44
Hint = 'Open class in UML window'
ImageIndex = 5
ImageName = 'ClassOpen'
Wrap = True
OnClick = SBClassOpenClick
end
object TBMatchBracket: TToolButton
Left = 0
Top = 66
Hint = 'Go to the related bracket'
ImageIndex = 6
ImageName = 'MatchBracket'
OnClick = SBMatchBracketClick
end
object TBSystemOutPrintln: TToolButton
Left = 23
Top = 66
Hint = 'System.out.println'
ImageIndex = 7
ImageName = 'SystemOutPrintln'
Wrap = True
OnClick = SBSystemOutPrintlnClick
end
object TBStructureIndent: TToolButton
Left = 0
Top = 88
Hint = 'Structured indentation'
ImageIndex = 8
ImageName = 'StructureIndent'
OnClick = SBStructureIndentClick
end
object TBIfStatement: TToolButton
Tag = 1
Left = 23
Top = 88
Hint = 'if statement'
ImageIndex = 9
ImageName = 'IfStatement'
Wrap = True
OnClick = SBStatementClick
end
object TBIfElseStatement: TToolButton
Tag = 9
Left = 0
Top = 110
Hint = 'if-else statement'
ImageIndex = 10
ImageName = 'IfElseStatement'
OnClick = SBStatementClick
end
object TBWhileStatement: TToolButton
Tag = 2
Left = 23
Top = 110
Hint = 'while statement'
ImageIndex = 11
ImageName = 'WhileStatement'
Wrap = True
OnClick = SBStatementClick
end
object TBForStatement: TToolButton
Tag = 3
Left = 0
Top = 132
Hint = 'for statement'
ImageIndex = 12
ImageName = 'ForStatement'
OnClick = SBStatementClick
end
object TBDoWhileStatement: TToolButton
Tag = 4
Left = 23
Top = 132
Hint = 'do-while statement'
ImageIndex = 13
ImageName = 'DoWhileStatement'
Wrap = True
OnClick = SBStatementClick
end
object TBSwitchStatement: TToolButton
Tag = 5
Left = 0
Top = 154
Hint = 'switch statement'
ImageIndex = 14
ImageName = 'SwitchStatement'
OnClick = SBStatementClick
end
object TBTryStatement: TToolButton
Tag = 6
Left = 23
Top = 154
Hint = 'try statement'
ImageIndex = 15
ImageName = 'TryStatement'
Wrap = True
OnClick = SBStatementClick
end
object TBBlockStatement: TToolButton
Tag = 10
Left = 0
Top = 176
Hint = 'block statement'
ImageIndex = 16
ImageName = 'BlockStatement'
OnClick = SBStatementClick
end
object TBComment: TToolButton
Left = 23
Top = 176
Hint = 'Comment/Uncomment'
ImageIndex = 17
ImageName = 'Comment'
Wrap = True
OnClick = SBCommentClick
end
object TBIndent: TToolButton
Left = 0
Top = 198
Hint = 'Indent'
ImageIndex = 18
ImageName = 'Indent'
OnClick = SBIndentClick
end
object TBUnindent: TToolButton
Left = 23
Top = 198
Hint = 'Unindent'
ImageIndex = 19
ImageName = 'Unindent'
Wrap = True
OnClick = SBUnindentClick
end
object TBWordWrap: TToolButton
Left = 0
Top = 220
Hint = 'Word wrap'
ImageIndex = 20
ImageName = 'WordWrap'
OnClick = SBWordWrapClick
end
object TBBreakpoint: TToolButton
Left = 23
Top = 220
Hint = 'Breakpoint on/off'
ImageIndex = 21
ImageName = 'Breakpoint'
Wrap = True
OnClick = SBBreakpointClick
end
object TBBreakpointsClear: TToolButton
Left = 0
Top = 242
Hint = 'Clear breakpoints'
ImageIndex = 22
ImageName = 'BreakpointsClear'
OnClick = SBBreakpointsClearClick
end
object TBBookmark: TToolButton
Left = 23
Top = 242
Hint = 'Set bookmark'
ImageIndex = 23
ImageName = 'Bookmark'
Wrap = True
OnClick = SBBookmarkClick
end
object TBGotoBookmark: TToolButton
Left = 0
Top = 264
Hint = 'Go to bookmark'
ImageIndex = 24
ImageName = 'GotoBookmark'
OnClick = SBGotoBookmarkClick
end
object TBParagraph: TToolButton
Left = 23
Top = 264
Hint = 'Paragraph on/off'
ImageIndex = 25
ImageName = 'Paragraph'
Wrap = True
OnClick = SBParagraphClick
end
object TBNumbers: TToolButton
Left = 0
Top = 286
Hint = 'Line numbers on/off'
ImageIndex = 26
ImageName = 'Numbers'
OnClick = SBNumbersClick
end
object TBZoomOut: TToolButton
Left = 23
Top = 286
Hint = 'Zoom out'
ImageIndex = 27
ImageName = 'ZoomOut'
Wrap = True
OnClick = SBZoomOutClick
end
object TBZoomIn: TToolButton
Left = 0
Top = 308
Hint = 'Zoom in'
ImageIndex = 28
ImageName = 'ZoomIn'
OnClick = SBZoomInClick
end
object TBValidate: TToolButton
Left = 23
Top = 308
Hint = 'Validate'
ImageIndex = 29
ImageName = 'Validate'
OnClick = SBValidateClick
end
end
object PMain: TPanel
Left = 46
Top = 0
Width = 641
Height = 525
Align = alClient
BevelOuter = bvNone
TabOrder = 3
end
object ActivityIndicator: TActivityIndicator
Left = 480
Top = 32
Anchors = [akRight]
FrameDelay = 150
IndicatorType = aitRotatingSector
end
object icEditor: TSVGIconImageCollection
SVGIconItems = <
item
IconName = 'Close'
SVGText =
'<svg viewBox="0 -960 960 960" fill="#191919">'#13#10' <path d="m291-2' +
'40-51-51 189-189-189-189 51-51 189 189 189-189 51 51-189 189 189' +
' 189-51 51-189-189-189 189Z"/>'#13#10'</svg>'#13#10
end
item
IconName = 'Explorer'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#c69633" d="M2 1h2M1' +
' 2h1M0 3h1M0 4h1M12 9h1" />'#13#10'<path stroke="#c68e33" d="M4 1h1M0 ' +
'5h1" />'#13#10'<path stroke="#be8e2c" d="M5 1h1M0 6h1M0 7h1M1 9h1" />'#13 +
#10'<path stroke="#ffffff" d="M2 2h4M1 3h1M6 3h1M9 4h3M10 6h2M4 8h2' +
'" />'#13#10'<path stroke="#be862c" d="M6 2h1M0 8h1M0 9h1M1 10h1" />'#13#10'<' +
'path stroke="#a6a69e" d="M7 2h1" />'#13#10'<path stroke="#ffff96" d="M' +
'2 3h4M10 7h2" />'#13#10'<path stroke="#b68625" d="M7 3h1M10 5h1M2 7h1M' +
'0 10h1" />'#13#10'<path stroke="#b67e25" d="M8 3h1M11 5h1" />'#13#10'<path s' +
'troke="#ae7e1e" d="M9 3h3M12 5h2M13 9h1M0 11h1M1 12h2" />'#13#10'<path' +
' stroke="#ae771e" d="M12 3h1M3 12h1" />'#13#10'<path stroke="#feef8e" ' +
'd="M1 4h2M10 8h2" />'#13#10'<path stroke="#efe78e" d="M3 4h1" />'#13#10'<pat' +
'h stroke="#b6b6ae" d="M4 4h1" />'#13#10'<path stroke="#a6c6df" d="M5 4' +
'h2" />'#13#10'<path stroke="#b6bed6" d="M7 4h1" />'#13#10'<path stroke="#ced' +
'6e7" d="M8 4h1M8 5h1" />'#13#10'<path stroke="#a67717" d="M12 4h1M13 8' +
'h1M12 10h1M4 12h3" />'#13#10'<path stroke="#585858" d="M13 4h1M10 13h1' +
'M12 14h1" />'#13#10'<path stroke="#fee77e" d="M1 5h1M11 9h1" />'#13#10'<path' +
' stroke="#fece67" d="M2 5h1M1 7h1M4 11h4" />'#13#10'<path stroke="#8e8' +
'67e" d="M3 5h1" />'#13#10'<path stroke="#aee7ff" d="M4 5h2M8 8h1" />'#13#10 +
'<path stroke="#beefff" d="M6 5h1M6 6h1M7 8h1M7 9h1" />'#13#10'<path st' +
'roke="#e7ffff" d="M7 5h1M5 7h1M5 9h1" />'#13#10'<path stroke="#ae8650"' +
' d="M9 5h1" />'#13#10'<path stroke="#966700" d="M14 5h1" />'#13#10'<path str' +
'oke="#b6b6a6" d="M15 5h1M7 10h1M14 13h1" />'#13#10'<path stroke="#fedf' +
'77" d="M1 6h1M12 6h1M10 9h1" />'#13#10'<path stroke="#cea642" d="M2 6h' +
'1M13 7h1M1 11h1" />'#13#10'<path stroke="#9ebed6" d="M3 6h1" />'#13#10'<path' +
' stroke="#ceefff" d="M4 6h1M8 6h1" />'#13#10'<path stroke="#c6ffff" d=' +
'"M5 6h1" />'#13#10'<path stroke="#b6e7ff" d="M7 6h1M7 7h2" />'#13#10'<path s' +
'troke="#bec6e7" d="M9 6h1" />'#13#10'<path stroke="#e7d677" d="M13 6h1' +
'" />'#13#10'<path stroke="#8e6000" d="M14 6h1" />'#13#10'<path stroke="#4949' +
'42" d="M15 6h1M14 10h1M3 13h7M13 13h1" />'#13#10'<path stroke="#aecedf' +
'" d="M3 7h1" />'#13#10'<path stroke="#dfffff" d="M4 7h1M6 8h1" />'#13#10'<pa' +
'th stroke="#d7ffff" d="M6 7h1M6 9h1" />'#13#10'<path stroke="#b6ced6" ' +
'd="M9 7h1" />'#13#10'<path stroke="#febe60" d="M12 7h1" />'#13#10'<path stro' +
'ke="#775817" d="M14 7h1" />'#13#10'<path stroke="#42423a" d="M15 7h1M1' +
'4 9h1M13 12h1" />'#13#10'<path stroke="#dfae49" d="M1 8h1" />'#13#10'<path s' +
'troke="#ce963a" d="M2 8h1" />'#13#10'<path stroke="#aec6d6" d="M3 8h1"' +
' />'#13#10'<path stroke="#c6c6ae" d="M9 8h1" />'#13#10'<path stroke="#e7b650' +
'" d="M12 8h1" />'#13#10'<path stroke="#50422c" d="M14 8h1" />'#13#10'<path s' +
'troke="#605858" d="M15 8h1M13 14h1" />'#13#10'<path stroke="#efc67e" d' +
'="M2 9h1" />'#13#10'<path stroke="#c6bec6" d="M3 9h1" />'#13#10'<path stroke' +
'="#dfe7ef" d="M4 9h1" />'#13#10'<path stroke="#96aed6" d="M8 9h1" />'#13#10 +
'<path stroke="#d6be8e" d="M9 9h1M4 10h1" />'#13#10'<path stroke="#968e' +
'8e" d="M15 9h1" />'#13#10'<path stroke="#ffffce" d="M2 10h1M2 11h1" />' +
#13#10'<path stroke="#fee7a6" d="M3 10h1" />'#13#10'<path stroke="#bec6c6" ' +
'd="M5 10h1" />'#13#10'<path stroke="#aebebe" d="M6 10h1" />'#13#10'<path str' +
'oke="#ae9e8e" d="M8 10h1" />'#13#10'<path stroke="#ce8e58" d="M9 10h1"' +
' />'#13#10'<path stroke="#feb650" d="M10 10h1M11 11h1" />'#13#10'<path strok' +
'e="#fed66f" d="M11 10h1" />'#13#10'<path stroke="#7e5810" d="M13 10h1"' +
' />'#13#10'<path stroke="#fece77" d="M3 11h1" />'#13#10'<path stroke="#e7c67' +
'7" d="M8 11h1" />'#13#10'<path stroke="#a6868e" d="M9 11h1" />'#13#10'<path ' +
'stroke="#d68649" d="M10 11h1M11 12h1" />'#13#10'<path stroke="#9e6f10"' +
' d="M12 11h1M7 12h2" />'#13#10'<path stroke="#584925" d="M13 11h1" />'#13 +
#10'<path stroke="#676060" d="M14 11h1" />'#13#10'<path stroke="#b69e6f" ' +
'd="M0 12h1" />'#13#10'<path stroke="#96773a" d="M9 12h1" />'#13#10'<path str' +
'oke="#9e7e86" d="M10 12h1" />'#13#10'<path stroke="#d69633" d="M12 12h' +
'1" />'#13#10'<path stroke="#8e8e86" d="M14 12h1" />'#13#10'<path stroke="#86' +
'7e7e" d="M1 13h1" />'#13#10'<path stroke="#505050" d="M2 13h1" />'#13#10'<pa' +
'th stroke="#967786" d="M11 13h1" />'#13#10'<path stroke="#a67e60" d="M' +
'12 13h1" />'#13#10'<path stroke="#96968e" d="M11 14h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Browser'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#7a7a7a" d="M5 0h5M3' +
' 1h2M2 2h1M1 3h1M6 3h7M1 4h1M13 4h1M0 5h1M14 5h1M0 6h1M0 7h1M0 8' +
'h1M0 9h1M0 10h1" />'#13#10'<path stroke="#bbbbbb" d="M5 1h1M4 2h1M3 3h' +
'1M2 4h1M6 4h1M12 4h1M1 5h1M3 5h1M6 5h1M12 5h1M6 6h1M1 7h1M3 7h1M' +
'5 7h2M12 7h1M14 7h1M2 8h1M4 8h1M6 8h1M10 8h1M14 8h1M2 9h1M6 9h1M' +
'9 9h1M14 9h1M5 10h2M14 10h1M6 11h1M12 11h1M14 11h1M6 12h1M14 12h' +
'1M6 13h1M14 13h1M6 14h9" />'#13#10'<path stroke="#ffffff" d="M6 1h1M3 ' +
'2h1M5 2h1M2 3h1M3 4h1M7 4h3M11 4h1M2 5h1M4 5h1M7 5h1M9 5h3M13 5h' +
'1M1 6h3M7 6h3M11 6h1M2 7h1M4 7h1M7 7h1M13 7h1M3 8h1M7 8h1M9 8h1M' +
'13 8h1M7 9h1M13 9h1M7 10h1M13 10h1M7 11h1M13 11h1M7 12h3M11 12h3' +
'M7 13h1M9 13h3M13 13h1" />'#13#10'<path stroke="#0000ff" d="M7 1h1M10 ' +
'1h2M6 2h1M8 2h1M11 2h1M5 5h1M4 6h1M3 9h1M11 9h1M2 10h3M9 10h3M1 ' +
'11h1M3 11h3M2 12h4M3 13h2" />'#13#10'<path stroke="#077a7a" d="M8 1h2M' +
'4 3h1M9 7h3M1 8h1M8 8h1M1 9h1M4 9h2M8 9h1M8 10h1" />'#13#10'<path stro' +
'ke="#077a00" d="M7 2h1M9 2h2M5 3h1M4 4h2M5 6h1M5 8h1M11 8h1M10 9' +
'h1M1 10h1M2 11h1" />'#13#10'<path stroke="#00007a" d="M12 2h1M12 8h1M1' +
'2 9h1M12 10h1M9 11h3M1 12h1M2 13h1M5 13h1M3 14h3" />'#13#10'<path stro' +
'ke="#000000" d="M13 3h1M12 6h4M15 7h1M15 8h1M15 9h1M15 10h1M15 1' +
'1h1M15 12h1M15 13h1M15 14h1M5 15h11" />'#13#10'<path stroke="#ffff00" ' +
'd="M10 4h1M8 5h1M10 6h1M8 7h1M8 11h1M10 12h1M8 13h1M12 13h1" />'#13 +
#10'</svg>'#13#10
end
item
IconName = 'Designform'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M2 2h3M1' +
'1 2h3M2 3h3M11 3h3M2 4h3M11 4h3M2 12h3M11 12h3M2 13h3M11 13h3M2 ' +
'14h3M11 14h3" />'#13#10'<path stroke="#7e7e7e" d="M5 3h6M3 5h1M12 5h1M' +
'3 6h1M12 6h1M3 7h1M12 7h1M3 8h1M12 8h1M3 9h1M12 9h1M3 10h1M12 10' +
'h1M3 11h1M12 11h1M5 13h6" />'#13#10'</svg>'#13#10
end
item
IconName = 'Classedit'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#05529a" d="M2 1h11M' +
'1 2h1M13 2h1M1 3h1M13 3h1M1 4h1M13 4h1M1 5h1M13 5h1M1 6h1M13 6h1' +
'M1 7h1M13 7h1M1 8h1M13 8h1M1 9h1M13 9h1M1 10h1M13 10h1M1 11h1M13' +
' 11h1M1 12h1M13 12h1M2 13h12" />'#13#10'<path stroke="#8eb3dd" d="M2 2' +
'h11M2 3h1M2 4h1M2 5h1M2 6h1M2 7h1M2 8h1M2 9h1M2 10h1M2 11h1M2 12' +
'h1" />'#13#10'<path stroke="#408acc" d="M3 3h10M3 4h2M11 4h2M3 5h2M8 5' +
'h1M12 5h1M3 6h1M7 6h3M12 6h1M3 7h1M6 7h7M3 8h1M6 8h7M3 9h1M7 9h3' +
'M12 9h1M3 10h2M8 10h1M12 10h1M3 11h2M11 11h2M3 12h10" />'#13#10'<path ' +
'stroke="#468dcd" d="M5 4h1M5 11h1" />'#13#10'<path stroke="#a0c5e6" d=' +
'"M6 4h1" />'#13#10'<path stroke="#f2f7fb" d="M7 4h1" />'#13#10'<path stroke=' +
'"#e8f0f8" d="M8 4h1M10 5h1M10 10h1M8 11h1" />'#13#10'<path stroke="#cd' +
'e1f1" d="M9 4h1M9 11h1" />'#13#10'<path stroke="#5497d1" d="M10 4h1M10' +
' 11h1" />'#13#10'<path stroke="#c1d9ee" d="M5 5h1M5 10h1" />'#13#10'<path st' +
'roke="#b2d0ea" d="M6 5h1M6 10h1" />'#13#10'<path stroke="#488fce" d="M' +
'7 5h1M7 10h1" />'#13#10'<path stroke="#73aada" d="M9 5h1" />'#13#10'<path st' +
'roke="#438bcc" d="M11 5h1" />'#13#10'<path stroke="#609ed4" d="M4 6h1"' +
' />'#13#10'<path stroke="#f8fafc" d="M5 6h1M5 9h1M7 11h1" />'#13#10'<path st' +
'roke="#4990ce" d="M6 6h1M6 9h1M11 10h1" />'#13#10'<path stroke="#70a8d' +
'a" d="M10 6h1" />'#13#10'<path stroke="#5094d0" d="M11 6h1" />'#13#10'<path ' +
'stroke="#7eb1dd" d="M4 7h1" />'#13#10'<path stroke="#d0e3f2" d="M5 7h1' +
'M5 8h1" />'#13#10'<path stroke="#77acdb" d="M4 8h1" />'#13#10'<path stroke="' +
'#5d9cd4" d="M4 9h1" />'#13#10'<path stroke="#94bee3" d="M10 9h1" />'#13#10'<' +
'path stroke="#6da6d8" d="M11 9h1M9 10h1" />'#13#10'<path stroke="#aacb' +
'e9" d="M6 11h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'ClassOpen'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M1 1h13M' +
'1 2h1M13 2h1M1 3h1M13 3h1M1 4h1M13 4h1M1 5h13M1 6h1M13 6h1M1 7h1' +
'M13 7h1M1 8h1M13 8h1M1 9h13M1 10h1M13 10h1M1 11h1M13 11h1M1 12h1' +
'M13 12h1M1 13h13" />'#13#10'<path stroke="#ffffff" d="M2 2h11M2 3h11M2' +
' 4h11M2 6h11M2 7h11M2 8h11M2 10h11M2 11h11M2 12h11" />'#13#10'</svg>'#13#10
end
item
IconName = 'MatchBracket'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#9d9d9d" d="M4 2h1M1' +
'1 2h1M5 3h1M10 3h1M4 6h1M11 6h1M3 7h1M2 8h1M4 8h1M11 8h1M13 8h1M' +
'5 12h1M10 12h1M12 12h1M4 13h1M11 13h1" />'#13#10'<path stroke="#000000' +
'" d="M5 2h2M9 2h2M4 3h1M11 3h1M3 4h2M11 4h2M3 5h2M11 5h2M3 6h1M1' +
'2 6h1M2 7h1M13 7h1M3 8h1M12 8h1M3 9h2M11 9h2M3 10h2M11 10h2M3 11' +
'h2M11 11h2M4 12h1M11 12h1M5 13h2M9 13h1" />'#13#10'<path stroke="#7e7e' +
'7e" d="M3 3h1M12 3h1M12 7h1M3 12h1M10 13h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'SystemOutPrintln'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000082" d="M3 1h1M4' +
' 2h1M3 3h1" />'#13#10'<path stroke="#828282" d="M3 2h1M4 3h1M3 4h1" />' +
#13#10'<path stroke="#000000" d="M5 3h1M4 4h1M3 5h1M5 5h6M5 6h1M10 6h' +
'2M5 7h1M7 7h2M10 7h3M5 8h1M12 8h1M5 9h1M7 9h4M12 9h1M5 10h1M12 1' +
'0h1M5 11h1M12 11h1M5 12h1M12 12h1M5 13h1M12 13h1M5 14h8" />'#13#10'<pa' +
'th stroke="#ffffff" d="M6 6h4M6 7h1M9 7h1M6 8h6M6 9h1M11 9h1M7 1' +
'1h4M6 13h6" />'#13#10'<path stroke="#fe0000" d="M6 10h6M6 11h1M11 11h1' +
'M6 12h6" />'#13#10'</svg>'#13#10
end
item
IconName = 'StructureIndent'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#22ff37" d="M1 1h14M' +
'1 2h14M1 3h2M1 4h2M1 5h2M1 10h2M1 11h2M1 12h2M1 13h14M1 14h14" /' +
'>'#13#10'<path stroke="#ffff13" d="M3 3h12M3 4h12M5 4h10M3 5h1M3 10h1M' +
'3 11h12M5 11h10M3 12h12" />'#13#10'<path stroke="#fe6272" d="M5 5h10 M' +
'5 6h10 M5 9h10 M5 10h10" />'#13#10'<path stroke="#ffffff" d="M7 7h8M7 ' +
'8h8" />'#13#10'<polygon points="1,5.5 4,5.5 4,3.5 8,7.5 4,11.5 4,9.5 1' +
',9.5 z" style="fill:#0a92ff" />'#13#10'</svg>'#13#10
end
item
IconName = 'IfStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M1 5.5 h14 M10.1 5.5 v8' +
'.5 M10.1 5.5 L 14 2 M10.1 5.5 L 2 2" />'#13#10'</svg>'
end
item
IconName = 'IfElseStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M1 5.5 h14 M8 5.5 v8.5 M' +
'2 2 L8 5.5 M8 5.5 L14 2" />'#13#10'</svg>'
end
item
IconName = 'WhileStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M3.25 3.75 h11.5 M3.75 4' +
' v11" />'#13#10'</svg>'
end
item
IconName = 'ForStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M3.25 3.75 h11.5 M3.75 4' +
' v11 M9 7 v1 M9 9 v3.5" />'#13#10'</svg>'
end
item
IconName = 'DoWhileStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M3.25 12.25 h11.5 M3.75 ' +
'1 v11" />'#13#10'</svg>'
end
item
IconName = 'SwitchStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M1 5.5 h14 M5.8 5.5 v8.5' +
' M10.1 5.5 v8.5 M10.1 5.5 L 14 2 M10.1 5.5 L 2 2" />'#13#10'</svg>'
end
item
IconName = 'TryStatement'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M1 1h14M' +
'1 2h1M14 2h1M1 3h1M14 3h1M1 4h1M4 4h1M14 4h1M1 5h1M4 5h1M14 5h1M' +
'1 6h1M4 6h1M14 6h1M1 7h1M4 7h1M14 7h1M1 8h1M4 8h1M7 8h1M14 8h1M1' +
' 9h1M4 9h1M7 9h1M14 9h1M1 10h1M7 10h1M14 10h1M1 11h1M12 11h1M14 ' +
'11h1M1 12h1M14 12h1M1 13h1M14 13h1M1 14h14" />'#13#10'<path stroke="#2' +
'2001f" d="M3 5h1" />'#13#10'<path stroke="#160016" d="M5 5h1" />'#13#10'<pat' +
'h stroke="#170015" d="M7 7h1" />'#13#10'<path stroke="#1a0018" d="M8 7' +
'h1" />'#13#10'<path stroke="#160014" d="M9 7h1" />'#13#10'<path stroke="#280' +
'024" d="M11 7h1" />'#13#10'<path stroke="#250021" d="M13 7h1" />'#13#10'<pat' +
'h stroke="#410039" d="M9 8h1" />'#13#10'<path stroke="#2c0027" d="M11 ' +
'8h1" />'#13#10'<path stroke="#2e0029" d="M13 8h1" />'#13#10'<path stroke="#2' +
'0001d" d="M11 9h1" />'#13#10'<path stroke="#22001e" d="M12 9h1" />'#13#10'<p' +
'ath stroke="#150012" d="M4 10h1" />'#13#10'<path stroke="#180016" d="M' +
'5 10h1" />'#13#10'<path stroke="#24001f" d="M12 10h1M11 12h1" />'#13#10'<pat' +
'h stroke="#240020" d="M10 12h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'BlockStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#000000" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 " />'#13#10'</svg>'
end
item
IconName = 'Comment'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#001be1" stroke-widt' +
'h="1.5" d="M3 12 l5 -11 M8 12 l5 -11 " />'#13#10'</svg>'
end
item
IconName = 'Indent'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M7 0h1M2' +
' 2h4M7 2h9M7 4h9M7 5h9M7 7h6M7 8h6M2 10h4M7 10h9M2 12h4M7 12h2M7' +
' 14h1" />'#13#10'<path stroke="#00007e" d="M2 4h1M2 5h2M0 6h5M2 7h2M2 ' +
'8h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Unindent'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M7 0h1M2' +
' 2h4M7 2h9M7 4h9M7 5h9M7 7h6M7 8h6M2 10h4M7 10h9M2 12h4M7 12h2M7' +
' 14h1" />'#13#10'<path stroke="#00007e" d="M2 4h1M1 5h2M0 6h5M1 7h2M2 ' +
'8h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'WordWrap'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#00007e" d="M6 3h7M1' +
'3 4h1M13 5h1M10 6h1M13 6h1M9 7h2M13 7h1M8 8h5M9 9h2M10 10h1" />'#13 +
#10'<path stroke="#000000" d="M1 5h6M1 7h4M1 9h4M1 11h6" />'#13#10'</svg>' +
#13#10
end
item
IconName = 'Breakpoint'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M5 2h1M1' +
'0 2h1M8 4h1M3 5h1M8 5h2M12 5h1M4 6h2M9 6h3M3 8h2M10 8h3M10 9h1M1' +
'0 10h1M4 11h2M10 11h2M4 12h1M9 12h1M11 12h1M3 13h1M7 13h2M12 13h' +
'1" />'#13#10'<path stroke="#088400" d="M7 2h2M8 3h1M3 4h1M7 4h1M12 4h1' +
'M4 5h1M6 5h2M11 5h1M6 6h1M5 7h1M8 7h2M5 8h1M8 8h2M2 9h2M5 9h1M8 ' +
'9h2M12 9h2M5 10h1M8 10h2M7 11h3M3 12h1M5 12h4M12 12h1M2 13h1M6 1' +
'3h1M13 13h1" />'#13#10'<path stroke="#820000" d="M6 3h1M9 3h1M6 4h1M9 ' +
'4h1" />'#13#10'<path stroke="#11ff00" d="M7 3h1M7 6h2M6 7h2M6 8h2M6 9h' +
'2M6 10h1M6 11h1" />'#13#10'<path stroke="#fe0000" d="M5 4h1M10 4h1" />' +
#13#10'<path stroke="#c4c5c4" d="M5 5h1M10 5h1" />'#13#10'<path stroke="#08' +
'8482" d="M7 10h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'BreakpointsClear'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#000000" d="M5 2h1M1' +
'0 2h1M8 4h1M3 5h1M8 5h1M12 5h1M4 6h1M10 6h2M3 8h2M10 8h3M4 11h2M' +
'10 11h1M4 12h1M9 12h1M11 12h1M3 13h1M7 13h2M12 13h1" />'#13#10'<path s' +
'troke="#088400" d="M7 2h2M8 3h1M7 4h1M12 4h1M6 5h2M11 5h1M5 7h1M' +
'9 7h1M2 9h2M8 9h1M12 9h2M5 10h1M8 10h2M7 11h3M3 12h1M5 12h4M12 1' +
'2h1M2 13h1M6 13h1M13 13h1" />'#13#10'<path stroke="#fe000e" d="M3 3h1M' +
'11 3h1M3 4h2M10 4h2M4 5h2M9 5h2M5 6h2M8 6h2M6 7h3M5 8h2M8 8h2M4 ' +
'9h2M9 9h2M3 10h2M10 10h2M3 11h1M11 11h1" />'#13#10'<path stroke="#8200' +
'00" d="M6 3h1M9 3h1M6 4h1M9 4h1" />'#13#10'<path stroke="#11ff00" d="M' +
'7 3h1M7 6h1M7 8h1M6 9h2M6 10h1M6 11h1" />'#13#10'<path stroke="#fe0000' +
'" d="M5 4h1" />'#13#10'<path stroke="#088482" d="M7 10h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Bookmark'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#0000ff" d="M4 1h9M3' +
' 2h1M13 2h1M2 3h10M13 3h1M2 4h1M11 4h1M13 4h1M2 5h1M11 5h1M13 5h' +
'1M2 6h1M11 6h1M13 6h1M2 7h1M11 7h1M13 7h1M2 8h1M11 8h1M13 8h1M2 ' +
'9h1M11 9h1M13 9h1M2 10h1M11 10h1M13 10h1M2 11h1M11 11h1M13 11h1M' +
'2 12h1M11 12h1M13 12h1M2 13h1M11 13h2M2 14h10" />'#13#10'<path stroke=' +
'"#bebebe" d="M4 2h8M3 4h1M3 5h1M3 6h1M3 7h1M3 8h1M3 9h1M3 10h1M3' +
' 11h1M3 12h1M3 13h1" />'#13#10'<path stroke="#7e7e7e" d="M12 2h1M12 3h' +
'1M12 4h1M12 5h1M12 6h1M12 7h1M12 8h1M12 9h1M12 10h1M12 11h1M12 1' +
'2h1" />'#13#10'<path stroke="#087e00" d="M4 4h1M6 4h1M8 4h1M10 4h1M5 5' +
'h1M7 5h1M9 5h1M4 6h1M6 6h1M8 6h1M10 6h1M5 7h1M7 7h1M9 7h1M4 8h1M' +
'6 8h1M8 8h1M10 8h1M5 9h1M7 9h1M9 9h1M4 10h1M6 10h1M8 10h1M10 10h' +
'1M5 11h1M7 11h1M9 11h1M4 12h1M6 12h1M8 12h1M10 12h1M5 13h1M7 13h' +
'1M9 13h1" />'#13#10'<path stroke="#087e7e" d="M5 4h1M7 4h1M9 4h1M4 5h1' +
'M6 5h1M8 5h1M10 5h1M5 6h1M7 6h1M9 6h1M4 7h1M6 7h1M8 7h1M10 7h1M5' +
' 8h1M7 8h1M9 8h1M4 9h1M6 9h1M8 9h1M10 9h1M5 10h1M7 10h1M9 10h1M4' +
' 11h1M6 11h1M8 11h1M10 11h1M5 12h1M7 12h1M9 12h1M4 13h1M6 13h1M8' +
' 13h1M10 13h1" />'#13#10'</svg>'
end
item
IconName = 'GotoBookmark'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#0000ff" d="M4 1h9M3' +
' 2h1M13 2h1M2 3h10M13 3h1M2 4h1M11 4h1M13 4h1M2 5h1M11 5h1M13 5h' +
'1M2 6h1M11 6h1M13 6h1M2 7h1M11 7h1M13 7h1M2 8h1M11 8h1M13 8h1M2 ' +
'9h1M11 9h1M13 9h1M2 10h1M11 10h1M13 10h1M2 11h1M11 11h1M13 11h1M' +
'2 12h1M11 12h1M13 12h1M2 13h1M11 13h2M2 14h10" />'#13#10'<path stroke=' +
'"#bebebe" d="M4 2h8M3 4h1M3 5h1M3 6h1M3 7h1M3 8h1M3 9h1M3 10h1M3' +
' 11h1M3 12h1M3 13h1" />'#13#10'<path stroke="#7e7e7e" d="M12 2h1M12 3h' +
'1M12 4h1M12 5h1M12 6h1M12 7h1M12 8h1M12 9h1M12 10h1M12 11h1M12 1' +
'2h1" />'#13#10'<path stroke="#087e00" d="M4 4h1M6 4h1M8 4h1M10 4h1M5 5' +
'h1M9 5h1M4 6h1M10 6h1M5 7h1M9 7h1M4 8h1M10 8h1M5 9h1M9 9h1M4 10h' +
'1M10 10h1M5 11h1M9 11h1M4 12h1M6 12h1M8 12h1M10 12h1M5 13h1M7 13' +
'h1M9 13h1" />'#13#10'<path stroke="#087e7e" d="M5 4h1M7 4h1M9 4h1M4 5h' +
'1M10 5h1M5 6h1M9 6h1M4 7h1M10 7h1M5 8h1M9 8h1M4 9h1M10 9h1M4 11h' +
'1M10 11h1M5 12h1M9 12h1M4 13h1M6 13h1M8 13h1M10 13h1" />'#13#10'<path ' +
'stroke="#000000" d="M6 5h3M6 6h1M8 6h1M6 7h1M8 7h1M6 8h1M8 8h1M6' +
' 9h1M8 9h1M5 10h2M8 10h2M6 11h3M7 12h1" />'#13#10'<path stroke="#fffff' +
'f" d="M7 6h1M7 7h1M7 8h1M7 9h1M7 10h1" />'#13#10'</svg>'
end
item
IconName = 'Paragraph'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#001be1" d="M5 4h6M4' +
' 5h1M7 5h1M9 5h1M4 6h1M7 6h1M9 6h1M5 7h3M9 7h1M7 8h1M9 8h1M7 9h1' +
'M9 9h1M7 10h1M9 10h1M6 11h2M9 11h2" />'#13#10'</svg>'#13#10
end
item
IconName = 'Numbers'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#001be1" d="M4 5h7 M' +
'4 8h7 M5 11 L7 2 M8 11 L10 2 " />'#13#10'</svg>'
end
item
IconName = 'ZoomOut'
SVGText =
'<svg viewBox="100 -850 800 800" fill="#191919">'#13#10' <path d="M784' +
'-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109' +
' 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l2' +
'52 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T38' +
'0-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400ZM280-540v' +
'-80h200v80H280Z"/>'#13#10'</svg>'
end
item
IconName = 'ZoomIn'
SVGText =
'<svg viewBox="100 -850 800 800" fill="#191919">'#13#10' <path d="M784' +
'-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109' +
' 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l2' +
'52 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T38' +
'0-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Zm-40-60v-' +
'80h-80v-80h80v-80h80v80h80v80h-80v80h-80Z"/>'#13#10'</svg>'
end
item
IconName = 'Validate'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#04457e" d="M1 0h4M1' +
'1 0h4M0 1h5M11 1h5M0 2h4M12 2h4M15 3h1M0 9h2M14 9h2M0 10h2M14 10' +
'h2M0 11h1M15 11h1M0 12h1M15 12h1M0 13h2M14 13h2M1 14h2M7 14h2M13' +
' 14h2" />'#13#10'<path stroke="#235584" d="M5 0h1" />'#13#10'<path stroke="#' +
'c8d2db" d="M6 0h1" />'#13#10'<path stroke="#c9d3dc" d="M7 0h1" />'#13#10'<pa' +
'th stroke="#cad4dd" d="M8 0h1" />'#13#10'<path stroke="#cbd5de" d="M9 ' +
'0h1" />'#13#10'<path stroke="#2d5d89" d="M10 0h1" />'#13#10'<path stroke="#6' +
'e8daa" d="M5 1h1" />'#13#10'<path stroke="#f6eec3" d="M6 1h1" />'#13#10'<pat' +
'h stroke="#f4dc64" d="M7 1h2" />'#13#10'<path stroke="#eedbb4" d="M9 1' +
'h1" />'#13#10'<path stroke="#7795b0" d="M10 1h1" />'#13#10'<path stroke="#04' +
'437b" d="M4 2h1M11 2h1" />'#13#10'<path stroke="#becad4" d="M5 2h1" />' +
#13#10'<path stroke="#f3df7b" d="M6 2h1" />'#13#10'<path stroke="#f2d23a" d' +
'="M7 2h1M7 3h1M6 4h2" />'#13#10'<path stroke="#e9c131" d="M8 2h1" />'#13#10 +
'<path stroke="#d3a056" d="M9 2h1" />'#13#10'<path stroke="#c3cfda" d="' +
'M10 2h1" />'#13#10'<path stroke="#04447d" d="M0 3h1M15 8h1M14 11h1" />' +
#13#10'<path stroke="#5a7e9d" d="M1 3h1M0 5h1" />'#13#10'<path stroke="#6f8' +
'da8" d="M2 3h1" />'#13#10'<path stroke="#6f8fac" d="M3 3h1" />'#13#10'<path ' +
'stroke="#7793ad" d="M4 3h1" />'#13#10'<path stroke="#f2f1ed" d="M5 3h1' +
'" />'#13#10'<path stroke="#f2d444" d="M6 3h1" />'#13#10'<path stroke="#e7c35' +
'a" d="M8 3h1" />'#13#10'<path stroke="#dbb47a" d="M9 3h1" />'#13#10'<path st' +
'roke="#f7f7f8" d="M10 3h1" />'#13#10'<path stroke="#7996b0" d="M11 3h1' +
'" />'#13#10'<path stroke="#7494b0" d="M12 3h1" />'#13#10'<path stroke="#7594' +
'b1" d="M13 3h1" />'#13#10'<path stroke="#537b9f" d="M14 3h1" />'#13#10'<path' +
' stroke="#184c7e" d="M0 4h1" />'#13#10'<path stroke="#e6e9e8" d="M1 4h' +
'1" />'#13#10'<path stroke="#84bb71" d="M2 4h1" />'#13#10'<path stroke="#7baa' +
'72" d="M3 4h1" />'#13#10'<path stroke="#b8cfb4" d="M4 4h1" />'#13#10'<path s' +
'troke="#f2e9b8" d="M5 4h1" />'#13#10'<path stroke="#f5efd0" d="M8 4h1"' +
' />'#13#10'<path stroke="#e2acaa" d="M9 4h1" />'#13#10'<path stroke="#dd9b99' +
'" d="M10 4h1" />'#13#10'<path stroke="#dd9c99" d="M11 4h1" />'#13#10'<path s' +
'troke="#de9d9a" d="M12 4h1" />'#13#10'<path stroke="#e3a7a4" d="M13 4h' +
'1" />'#13#10'<path stroke="#e8ecf0" d="M14 4h1" />'#13#10'<path stroke="#0e4' +
'57a" d="M15 4h1" />'#13#10'<path stroke="#c0e1b2" d="M1 5h1" />'#13#10'<path' +
' stroke="#3eb800" d="M2 5h1" />'#13#10'<path stroke="#2c9400" d="M3 5h' +
'1" />'#13#10'<path stroke="#b4ceae" d="M4 5h1" />'#13#10'<path stroke="#f1e5' +
'a3" d="M5 5h1" />'#13#10'<path stroke="#f2d23b" d="M6 5h1" />'#13#10'<path s' +
'troke="#f2d752" d="M7 5h1" />'#13#10'<path stroke="#f1e7e6" d="M8 5h1"' +
' />'#13#10'<path stroke="#ba2722" d="M9 5h1" />'#13#10'<path stroke="#b8231d' +
'" d="M10 5h3" />'#13#10'<path stroke="#b8241e" d="M13 5h1" />'#13#10'<path s' +
'troke="#f2dcdc" d="M14 5h1" />'#13#10'<path stroke="#457096" d="M15 5h' +
'1" />'#13#10'<path stroke="#a6b6c4" d="M0 6h1" />'#13#10'<path stroke="#8cd1' +
'6f" d="M1 6h1" />'#13#10'<path stroke="#3eb900" d="M2 6h2M4 7h1" />'#13#10'<' +
'path stroke="#5ac22d" d="M4 6h1" />'#13#10'<path stroke="#cde7c3" d="M' +
'5 6h1" />'#13#10'<path stroke="#f1e9b9" d="M6 6h1" />'#13#10'<path stroke="#' +
'f2e59e" d="M7 6h1" />'#13#10'<path stroke="#e0adab" d="M8 6h1" />'#13#10'<pa' +
'th stroke="#bd342e" d="M9 6h2" />'#13#10'<path stroke="#be342e" d="M11' +
' 6h1" />'#13#10'<path stroke="#b1221d" d="M12 6h1" />'#13#10'<path stroke="#' +
'af201a" d="M13 6h1" />'#13#10'<path stroke="#d7928f" d="M14 6h1" />'#13#10'<' +
'path stroke="#96adc1" d="M15 6h1" />'#13#10'<path stroke="#6b8aa6" d="' +
'M0 7h1" />'#13#10'<path stroke="#dee5df" d="M1 7h1" />'#13#10'<path stroke="' +
'#82cd60" d="M2 7h1" />'#13#10'<path stroke="#3fb906" d="M3 7h1" />'#13#10'<p' +
'ath stroke="#42bb0f" d="M5 7h1" />'#13#10'<path stroke="#9ed784" d="M6' +
' 7h1" />'#13#10'<path stroke="#f1f2f2" d="M7 7h1" />'#13#10'<path stroke="#f' +
'1f0f3" d="M8 7h1" />'#13#10'<path stroke="#ebe3f0" d="M9 7h1" />'#13#10'<pat' +
'h stroke="#ece4f1" d="M10 7h1" />'#13#10'<path stroke="#f3f0f5" d="M11' +
' 7h1" />'#13#10'<path stroke="#944c4b" d="M12 7h1" />'#13#10'<path stroke="#' +
'9b5656" d="M13 7h1" />'#13#10'<path stroke="#ede5e5" d="M14 7h1" />'#13#10'<' +
'path stroke="#839eb6" d="M15 7h1" />'#13#10'<path stroke="#04447e" d="' +
'M0 8h1" />'#13#10'<path stroke="#34618a" d="M1 8h1" />'#13#10'<path stroke="' +
'#c7cfd7" d="M2 8h1" />'#13#10'<path stroke="#b3dda2" d="M3 8h1" />'#13#10'<p' +
'ath stroke="#4bbd19" d="M4 8h1" />'#13#10'<path stroke="#48bc16" d="M5' +
' 8h1" />'#13#10'<path stroke="#aedd9b" d="M6 8h1" />'#13#10'<path stroke="#d' +
'0dee9" d="M7 8h1" />'#13#10'<path stroke="#ebe9f0" d="M8 8h1" />'#13#10'<pat' +
'h stroke="#7f15bc" d="M9 8h1M11 12h1" />'#13#10'<path stroke="#7900b9"' +
' d="M10 8h1M10 9h1M10 10h2M11 11h1" />'#13#10'<path stroke="#b272d5" d' +
'="M11 8h1" />'#13#10'<path stroke="#ebe3e3" d="M12 8h1" />'#13#10'<path stro' +
'ke="#dae0e6" d="M13 8h1" />'#13#10'<path stroke="#446e94" d="M14 8h1" ' +
'/>'#13#10'<path stroke="#39638a" d="M2 9h1" />'#13#10'<path stroke="#e3e6e8"' +
' d="M3 9h1" />'#13#10'<path stroke="#d8e6d4" d="M4 9h1" />'#13#10'<path stro' +
'ke="#d6e7d0" d="M5 9h1" />'#13#10'<path stroke="#9abcdb" d="M6 9h1" />' +
#13#10'<path stroke="#2a77bc" d="M7 9h1" />'#13#10'<path stroke="#b7cee3" d' +
'="M8 9h1" />'#13#10'<path stroke="#a357cd" d="M9 9h1" />'#13#10'<path stroke' +
'="#8927c1" d="M11 9h1" />'#13#10'<path stroke="#f1f1f3" d="M12 9h1" />' +
#13#10'<path stroke="#20507e" d="M13 9h1" />'#13#10'<path stroke="#829ab1" ' +
'd="M2 10h1" />'#13#10'<path stroke="#86a7b8" d="M3 10h1" />'#13#10'<path str' +
'oke="#457b99" d="M4 10h1" />'#13#10'<path stroke="#5e97ca" d="M5 10h1"' +
' />'#13#10'<path stroke="#2271ba" d="M6 10h2M5 11h2" />'#13#10'<path stroke=' +
'"#73a5d0" d="M8 10h1" />'#13#10'<path stroke="#caa5e0" d="M9 10h1" />'#13 +
#10'<path stroke="#dbc3e9" d="M12 10h1" />'#13#10'<path stroke="#52789b" ' +
'd="M13 10h1" />'#13#10'<path stroke="#0c4479" d="M1 11h1" />'#13#10'<path st' +
'roke="#cfd5db" d="M2 11h1" />'#13#10'<path stroke="#3d789f" d="M3 11h1' +
'" />'#13#10'<path stroke="#1e6cb1" d="M4 11h1" />'#13#10'<path stroke="#4e8d' +
'c6" d="M7 11h1" />'#13#10'<path stroke="#d2dee8" d="M8 11h1" />'#13#10'<path' +
' stroke="#a78cbb" d="M9 11h1" />'#13#10'<path stroke="#7400b3" d="M10 ' +
'11h1" />'#13#10'<path stroke="#b172d4" d="M12 11h1" />'#13#10'<path stroke="' +
'#a0b3c3" d="M13 11h1" />'#13#10'<path stroke="#205382" d="M1 12h1" />'#13 +
#10'<path stroke="#d4d8de" d="M2 12h1" />'#13#10'<path stroke="#8bb2d3" d' +
'="M3 12h1" />'#13#10'<path stroke="#2775bb" d="M4 12h1" />'#13#10'<path stro' +
'ke="#2573bb" d="M5 12h1" />'#13#10'<path stroke="#84aed3" d="M6 12h1" ' +
'/>'#13#10'<path stroke="#dfe3e6" d="M7 12h1" />'#13#10'<path stroke="#e3e1e7' +
'" d="M8 12h1" />'#13#10'<path stroke="#744a92" d="M9 12h1" />'#13#10'<path s' +
'troke="#62009a" d="M10 12h1" />'#13#10'<path stroke="#c79edf" d="M12 1' +
'2h1" />'#13#10'<path stroke="#cad3dc" d="M13 12h1" />'#13#10'<path stroke="#' +
'07437b" d="M14 12h1" />'#13#10'<path stroke="#205180" d="M2 13h1" />'#13#10 +
'<path stroke="#a9b8c5" d="M3 13h1" />'#13#10'<path stroke="#c0d1e0" d=' +
'"M4 13h1" />'#13#10'<path stroke="#bacee0" d="M5 13h1" />'#13#10'<path strok' +
'e="#b3c0cc" d="M6 13h1" />'#13#10'<path stroke="#255582" d="M7 13h1" /' +
'>'#13#10'<path stroke="#456e92" d="M8 13h1" />'#13#10'<path stroke="#d7dce1"' +
' d="M9 13h1" />'#13#10'<path stroke="#b38fc9" d="M10 13h1" />'#13#10'<path s' +
'troke="#dfcee9" d="M11 13h1" />'#13#10'<path stroke="#9fb2c2" d="M12 1' +
'3h1" />'#13#10'<path stroke="#194e7f" d="M13 13h1" />'#13#10'<path stroke="#' +
'09447b" d="M3 14h1" />'#13#10'<path stroke="#6988a4" d="M4 14h1" />'#13#10'<' +
'path stroke="#738fa9" d="M5 14h1" />'#13#10'<path stroke="#0c457b" d="' +
'M6 14h1" />'#13#10'<path stroke="#205281" d="M9 14h1" />'#13#10'<path stroke' +
'="#a7b7c6" d="M10 14h1" />'#13#10'<path stroke="#5b7e9e" d="M11 14h1" ' +
'/>'#13#10'<path stroke="#07447c" d="M12 14h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'Close'
SVGText =
'<svg viewBox="0 -960 960 960" fill="#ffffff">'#13#10' <path d="m291-2' +
'40-51-51 189-189-189-189 51-51 189 189 189-189 51 51-189 189 189' +
' 189-51 51-189-189-189 189Z"/>'#13#10'</svg>'
end
item
IconName = 'Designform'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#ffffff" d="M2 2h3M1' +
'1 2h3M2 3h3M11 3h3M2 4h3M11 4h3M2 12h3M11 12h3M2 13h3M11 13h3M2 ' +
'14h3M11 14h3" />'#13#10'<path stroke="#7e7e7e" d="M5 3h6M3 5h1M12 5h1M' +
'3 6h1M12 6h1M3 7h1M12 7h1M3 8h1M12 8h1M3 9h1M12 9h1M3 10h1M12 10' +
'h1M3 11h1M12 11h1M5 13h6" />'#13#10'</svg>'#13#10
end
item
IconName = 'ClassEdit'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#95fff8" d="M2 1h11M' +
'1 2h1M13 2h1M1 3h1M13 3h1M1 4h1M13 4h1M1 5h1M13 5h1M1 6h1M13 6h1' +
'M1 7h1M13 7h1M1 8h1M13 8h1M1 9h1M13 9h1M1 10h1M13 10h1M1 11h1M13' +
' 11h1M1 12h1M13 12h1M2 13h12" />'#13#10'<path stroke="#8eb3dd" d="M2 2' +
'h11M2 3h1M2 4h1M2 5h1M2 6h1M2 7h1M2 8h1M2 9h1M2 10h1M2 11h1M2 12' +
'h1" />'#13#10'<path stroke="#408acc" d="M3 3h10M3 4h2M11 4h2M3 5h2M8 5' +
'h1M12 5h1M3 6h1M7 6h3M12 6h1M3 7h1M6 7h7M3 8h1M6 8h7M3 9h1M7 9h3' +
'M12 9h1M3 10h2M8 10h1M12 10h1M3 11h2M11 11h2M3 12h10" />'#13#10'<path ' +
'stroke="#468dcd" d="M5 4h1M5 11h1" />'#13#10'<path stroke="#a0c5e6" d=' +
'"M6 4h1" />'#13#10'<path stroke="#f2f7fb" d="M7 4h1" />'#13#10'<path stroke=' +
'"#cde1f1" d="M8 4h2M8 11h2" />'#13#10'<path stroke="#5497d1" d="M10 4h' +
'1M10 11h1" />'#13#10'<path stroke="#c1d9ee" d="M5 5h1M5 10h1" />'#13#10'<pat' +
'h stroke="#b2d0ea" d="M6 5h1M6 10h1" />'#13#10'<path stroke="#488fce" ' +
'd="M7 5h1M7 10h1" />'#13#10'<path stroke="#73aada" d="M9 5h1" />'#13#10'<pat' +
'h stroke="#e8f0f8" d="M10 5h1M10 10h1" />'#13#10'<path stroke="#438bcc' +
'" d="M11 5h1" />'#13#10'<path stroke="#609ed4" d="M4 6h1" />'#13#10'<path st' +
'roke="#f8fafc" d="M5 6h1M5 9h1M7 11h1" />'#13#10'<path stroke="#4990ce' +
'" d="M6 6h1M6 9h1M11 10h1" />'#13#10'<path stroke="#70a8da" d="M10 6h1' +
'" />'#13#10'<path stroke="#5094d0" d="M11 6h1" />'#13#10'<path stroke="#7eb1' +
'dd" d="M4 7h1" />'#13#10'<path stroke="#d0e3f2" d="M5 7h1M5 8h1" />'#13#10'<' +
'path stroke="#77acdb" d="M4 8h1" />'#13#10'<path stroke="#5d9cd4" d="M' +
'4 9h1" />'#13#10'<path stroke="#94bee3" d="M10 9h1" />'#13#10'<path stroke="' +
'#6da6d8" d="M11 9h1M9 10h1" />'#13#10'<path stroke="#aacbe9" d="M6 11h' +
'1" />'#13#10'</svg>'#13#10
end
item
IconName = 'ClassOpen'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#ffffff" d="M1 1h13M' +
'1 2h1M13 2h1M1 3h1M13 3h1M1 4h1M13 4h1M1 5h13M1 6h1M13 6h1M1 7h1' +
'M13 7h1M1 8h1M13 8h1M1 9h13M1 10h1M13 10h1M1 11h1M13 11h1M1 12h1' +
'M13 12h1M1 13h13" />'#13#10'</svg>'#13#10
end
item
IconName = 'MatchBracket'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#848484" d="M4 2h1M1' +
'1 2h1M5 3h1M10 3h1M4 6h1M11 6h1M3 7h1M2 8h1M4 8h1M11 8h1M13 8h1M' +
'5 12h1M10 12h1M12 12h1M4 13h1M11 13h1" />'#13#10'<path stroke="#ffffff' +
'" d="M5 2h2M9 2h2M4 3h1M11 3h1M3 4h2M11 4h2M3 5h2M11 5h2M3 6h1M1' +
'2 6h1M2 7h1M13 7h1M3 8h1M12 8h1M3 9h2M11 9h2M3 10h2M11 10h2M3 11' +
'h2M11 11h2M4 12h1M11 12h1M5 13h2M9 13h1" />'#13#10'<path stroke="#a2a2' +
'a2" d="M3 3h1M12 3h1M12 7h1M3 12h1M10 13h1" />'#13#10'</svg>'#13#10
end
item
IconName = 'SystemOutPrintln'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#ffff7a" d="M3 1h1M4' +
' 2h1M3 3h1" />'#13#10'<path stroke="#7a7a7a" d="M3 2h1M4 3h1M3 4h1" />' +
#13#10'<path stroke="#ffffff" d="M5 3h1M4 4h1M3 5h1M5 5h6M5 6h1M10 6h' +
'2M5 7h1M10 7h3M5 8h1M12 8h1M5 9h1M7 9h4M12 9h1M5 10h1M12 10h1M5 ' +
'11h1M12 11h1M5 12h1M12 12h1M5 13h1M12 13h1M5 14h8" />'#13#10'<path str' +
'oke="#11ffff" d="M6 10h6M6 11h1M11 11h1M6 12h6" />'#13#10'</svg>'#13#10
end
item
IconName = 'IfStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M1 5.5 h14 M10.1 5.5 v8' +
'.5 M10.1 5.5 L 14 2 M10.1 5.5 L 2 2" />'#13#10'</svg>'
end
item
IconName = 'IfElseStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M1 5.5 h14 M8 5.5 v8.5 M' +
'2 2 L8 5.5 M8 5.5 L14 2" />'#13#10'</svg>'
end
item
IconName = 'WhileStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M3.25 3.75 h11.5 M3.75 4' +
' v11" />'#13#10'</svg>'
end
item
IconName = 'ForStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M3.25 3.75 h11.5 M3.75 4' +
' v11 M9 7 v1 M9 9 v3.5" />'#13#10'</svg>'
end
item
IconName = 'DoWhileStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M3.25 12.25 h11.5 M3.75 ' +
'1 v11" />'#13#10'</svg>'
end
item
IconName = 'SwitchStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 M1 5.5 h14 M5.8 5.5 v8.5' +
' M10.1 5.5 v8.5 M10.1 5.5 L 14 2 M10.1 5.5 L 2 2" />'#13#10'</svg>'
end
item
IconName = 'TryStatement'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#ffffff" d="M1 1h14M' +
'1 2h1M14 2h1M1 3h1M14 3h1M1 4h1M4 4h1M14 4h1M1 5h1M4 5h1M14 5h1M' +
'1 6h1M4 6h1M14 6h1M1 7h1M4 7h1M14 7h1M1 8h1M4 8h1M7 8h1M14 8h1M1' +
' 9h1M4 9h1M7 9h1M14 9h1M1 10h1M7 10h1M14 10h1M1 11h1M12 11h1M14 ' +
'11h1M1 12h1M14 12h1M1 13h1M14 13h1M1 14h14" />'#13#10'<path stroke="#f' +
'fffff" d="M3 5h1" />'#13#10'<path stroke="#ffffff" d="M5 5h1" />'#13#10'<pat' +
'h stroke="#ffffff" d="M8 7h1" />'#13#10'<path stroke="#ffffff" d="M9 7' +
'h1" />'#13#10'<path stroke="#ffffff" d="M11 7h1" />'#13#10'<path stroke="#ff' +
'ffff" d="M13 7h1" />'#13#10'<path stroke="#ffffff" d="M9 8h1" />'#13#10'<pat' +
'h stroke="#ffffff" d="M11 8h1" />'#13#10'<path stroke="#ffffff" d="M13' +
' 8h1" />'#13#10'<path stroke="#ffffff" d="M11 9h1" />'#13#10'<path stroke="#' +
'ffffff" d="M12 9h1" />'#13#10'<path stroke="#ffffff" d="M4 10h1" />'#13#10'<' +
'path stroke="#ffffff" d="M5 10h1" />'#13#10'<path stroke="#ffffff" d="' +
'M12 10h1M11 12h1" />'#13#10'<path stroke="#ffffff" d="M10 12h1" />'#13#10'</' +
'svg>'#13#10
end
item
IconName = 'BlockStatement'
SVGText =
'<svg viewBox="0 0 16 16">'#13#10' <path stroke="#ffffff" d="M1 1.5h14' +
' M14.5 1 v14 M15 14.5 h-14 M1.5 15 v-14 " />'#13#10'</svg>'
end
item
IconName = 'Comment'
SVGText =
'<svg viewBox="0 -0.5 16 16">'#13#10'<path stroke="#95fff8" stroke-widt' +
'h="1.5" d="M3 12 l5 -11 M8 12 l5 -11 " />'#13#10'</svg>'
end