-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathG7Draw.lfm
2618 lines (2618 loc) · 102 KB
/
G7Draw.lfm
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 FormG7: TFormG7
Left = 539
Height = 547
Top = 124
Width = 748
Anchors = [akTop, akLeft, akBottom]
Caption = 'Grafcet Draw Grid'
ClientHeight = 527
ClientWidth = 748
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Icon.Data = {
3E01000000000100010010101000010004002801000016000000280000001000
0000200000000100040000000000000000000000000000000000000000000000
0000820000008B0100007D03010095000600770015006D022200690724005F06
390036147400331580002B178D000D1ABC00011BC7000B1BC7000821C2000000
0000FBBBBBBBFFFFFFFFBBBBBBBBFFFFFFFFFBBBBBBFFFFFFFFFFFBBBBBFFFFB
BFFFFBDBFBFFFFFBBBFF048FFFFFFFBBBBBBFFF0FFFFFBBBBBBB00FF00FFFFBB
BBBBF021F000FFFBBBBFFF271FF00FCEBFBFFFFEA5FFF069FFFFBBBBEF100F30
0FFFFBBBFFFFF0FFFFFFBBBBBBBFFF00FFFFFBBBFFFFFFFFFFFFFFBFFFFFFFFF
FFFF80FF000000FF000081FF0000C1E700008BE300001FC00000EF80000033C0
000088E10000C6450000E38F0000044700008FBF000001CF00008FFF0000DFFF
0000
}
Menu = G7_MainMenu
OnActivate = FormActivate
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnKeyUp = FormKeyUp
OnMouseWheel = FormMouseWheel
LCLVersion = '2.0.10.0'
object Label3: TLabel
Left = -97
Height = 13
Top = 139
Width = 11
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = '2'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
end
object Label4: TLabel
Left = -97
Height = 17
Top = 109
Width = 11
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = '1'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
end
object Label5: TLabel
Left = -137
Height = 15
Top = 56
Width = 30
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Page:'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
end
object Splitter1: TSplitter
Left = 479
Height = 504
Top = 0
Width = 10
Align = alRight
Beveled = True
ResizeAnchor = akRight
end
object StatusBarG7: TStatusBar
Left = 0
Height = 23
Top = 504
Width = 748
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Panels = <
item
Width = 300
end
item
Width = 50
end>
ParentFont = False
SimplePanel = False
end
object Panel1Left: TPanel
Left = 0
Height = 504
Top = 0
Width = 479
Align = alClient
ClientHeight = 504
ClientWidth = 479
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 1
object ScrollBox1: TScrollBox
Left = 1
Height = 502
Top = 1
Width = 477
HorzScrollBar.Page = 456
VertScrollBar.Page = 481
Align = alClient
ClientHeight = 481
ClientWidth = 456
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 0
object ImageG7: TImage
Left = -2
Height = 4096
Top = -2
Width = 2048
OnMouseDown = ImagesMouseDown
OnMouseMove = ImageG7MouseMove
OnMouseUp = ImageG7MouseUp
PopupMenu = G7_PopupMenu
end
object LabelZones: TLabel
Left = 211
Height = 260
Top = 32
Width = 438
Caption = 'All the code from page 3 is produced before page 2, (etc) last page is 0.'#13#10'Special "Zone1", "Zone2", ... are hooks to interfere with produced variables.'#13#10'Just name a step "Zone1", etc.'#13#10'Zones are on a given page of code. Only one zone of the same name can exist at this time.'#13#10'Sequence of the code produced:'#13#10'1. “Zone1”'#13#10'2. If INIT activate initial steps'#13#10'3. “Zone2”'#13#10'4. Calculate Transitions'#13#10'5. “Zone3”'#13#10'6. For Fired Transitions, deactivate steps before'#13#10'7. “Zone4”'#13#10'8. For Fired Transitions, activate steps after; *_T:=0'#13#10'9. “Zone5”'#13#10'10. (otional) Reset all outputs'#13#10'11.“Zone6”'#13#10'12. At each tenth of sec, and for active steps, increment *_T '#13#10'13.“Zone7”'#13#10'14. For active steps, execute actions'#13#10'15.“Zone8”'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
Visible = False
end
object Memo1: TMemo
Left = 275
Height = 478
Top = 13
Width = 207
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Lines.Strings = (
'Memo1'
)
ParentFont = False
TabOrder = 0
Visible = False
end
end
end
object Label10: TLabel
Left = 28
Height = 41
Top = 100
Width = 58
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Zoom '#13#10'Font'#13#10'Code Area Size'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
WordWrap = True
end
object Label9: TLabel
Left = 199
Height = 62
Top = 79
Width = 10
Anchors = [akTop, akRight]
AutoSize = False
Caption = '0'#13#10'1'#13#10'2'#13#10'3'
Font.CharSet = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
WordWrap = True
end
object Label1: TLabel
Left = 37
Height = 13
Top = 117
Width = 26
Anchors = [akTop, akRight]
Caption = 'Font:'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
end
object Label6: TLabel
Left = -14
Height = 13
Top = 149
Width = 146
Anchors = []
Caption = 'Transition + Action code area:'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentColor = False
ParentFont = False
end
object Panel2Right: TPanel
Left = 489
Height = 504
Top = 0
Width = 259
Align = alRight
ClientHeight = 504
ClientWidth = 259
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 3
object PairSplitRight: TPairSplitter
Cursor = crVSplit
Left = 1
Height = 502
Top = 1
Width = 257
Align = alClient
Color = clBtnFace
Position = 187
SplitterType = pstVertical
object PairSplitUp: TPairSplitterSide
Cursor = crArrow
Left = 0
Height = 187
Top = 0
Width = 257
ClientWidth = 257
ClientHeight = 187
OnMouseEnter = PairSplitUpMouseEnter
OnResize = PairSplitUpResize
object TBPage: TTrackBar
AnchorSideRight.Side = asrBottom
Left = 213
Height = 68
Top = 71
Width = 17
Max = 3
OnChange = TBPageChange
Orientation = trVertical
PageSize = 1
Position = 0
Anchors = [akTop, akRight]
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 0
end
object ToolBar1: TToolBar
Left = 0
Height = 28
Top = 0
Width = 257
ButtonHeight = 26
ButtonWidth = 50
EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
Flat = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 22
object BBStop_GR7: TBitBtn
Left = 3
Height = 26
Hint = 'F10'
Top = 2
Width = 60
Caption = 'Stop'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Glyph.Data = {
F6060000424DF606000000000000360000002800000018000000180000000100
180000000000C006000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000801C00801C00801C00801C00801C00801C00801C00801C00801C
00801C00801C00801C00801C00801C00801C00801C0000000000000000000000
0000000000000000000000000000801C00F6D79CB84500B84500B84500B84500
B84500B84500B84500B84500B84500B84500B84500B84500B84500801C000000
00000000000000000000000000000000000000000000801C00F6D79CF6AA57F6
A54AF6A03EF69C33F69728F6921DF68E14F6890CF68404F68000F68000F68000
B84500801C00000000000000000000000000000000000000000000000000801C
00F6D79CF6AF64F6AA57F6A54AF6A03EF69C33F69728F6921DF68E14F6890CF6
8404F68000F68000B84500801C00000000000000000000000000000000000000
000000000000801C00F6D79CF6B472F6AF64F6AA57F6A54AF6A03EF69C33F697
28F6921DF68E14F6890CF68404F68000B84500801C0000000000000000000000
0000000000000000000000000000801C00F6D79CF6B880F6B472F6AF64F6AA57
F6A54AF6A03EF69C33F69728F6921DF68E14F6890CF68404B84500801C000000
00000000000000000000000000000000000000000000801C00F6D79CF6B880F6
B880F6B472F6AF64F6AA57F6A54AF6A03EF69C33F69728F6921DF68E14F6890C
B84500801C00000000000000000000000000000000000000000000000000801C
00F6D79CF6B880F6B880F6B880F6B678F6B16BF6AC5DF6A750F6A03EF69C33F6
9728F6921DF68E14B84500801C00000000000000000000000000000000000000
000000000000801C00F6D79CF6B880F6B880F6B880F6B880F6B678F6B16BF6AC
5DF6A750F6A344F69E38F6992DF69523B84500801C0000000000000000000000
0000000000000000000000000000801C00F6D79CF6B880F6B880F6B880F6B880
F6B880F6B678F6B16BF6AC5DF6A750F6A344F69E38F6992DB84500801C000000
00000000000000000000000000000000000000000000801C00F6D79CF6B880F6
B880F6B880F6B880F6B880F6B880F6B678F6B16BF6AC5DF6A750F6A344F69E38
B84500801C00000000000000000000000000000000000000000000000000801C
00F6D79CF6B880F6B880F6B880F6B880F6B880F6B880F6B880F6B678F6B16BF6
AC5DF6A750F6A344B84500801C00000000000000000000000000000000000000
000000000000801C00F6D79CF6B880F6B880F6B880F6B880F6B880F6B880F6B8
80F6B880F6B678F6B16BF6AC5DF6A750B84500801C0000000000000000000000
0000000000000000000000000000801C00F6D79CF6B880F6B880F6B880F6B880
F6B880F6B880F6B880F6B880F6B880F6B678F6B16BF6AC5DB84500801C000000
00000000000000000000000000000000000000000000801C00F6D79CF6D79CF6
D79CF6D79CF6D79CF6D79CF6D79CF6D79CF6D79CF6D79CF6D79CF6D79CF6D79C
F6D79C801C00000000000000000000000000000000000000000000000000801C
00801C00801C00801C00801C00801C00801C00801C00801C00801C00801C0080
1C00801C00801C00801C00801C00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
OnClick = BBStop_GR7Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object BIniRun: TBitBtn
Left = 63
Height = 26
Top = 2
Width = 60
Caption = 'IniRun'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Glyph.Data = {
F6060000424DF606000000000000360000002800000018000000180000000100
180000000000C006000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000801C0089240200000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000801C00F6D7
9CB84500801C0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F39528F39528
000000801C00F6D79CF6A53FB84500801C000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000F39528F39528000000801C00F6D79CF6A747F6982AB84500801C00000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000801C00F6D79CF6AB4FF69C34F6
982AB84500801C00000000000000000000000000000000000000000000000000
000000000000000000000000000000000000F39528F39528000000801C00F6D7
9CF6AF57F69F3DF69C34F39528B84500801C0000000000000000000000000000
0000000000000000000000000000000000000000F39528F39528F39528F39528
000000801C00F6D79CF6B160F6A447F69F3DF69C33F29327B84500801C000000
00000000000000000000000000000000F39528F39528F39528000000F39528F3
9528F39528F39528000000801C00F6D79CF6B569F6A752F6A447F69F3DF69C33
F09227B84500801C00000000000000000000000000000000F6B26EF6B26EF395
28000000F39528F39528F39528F39528000000801C00F6D79CF6BA76F6AD62F6
AA56F6A54AF6A041F69D36F09229B84500801C00000000000000000000000000
F6B26EF6B26EF39528000000F39528F39528F39528F39528000000801C00F6D7
9CF6BF86F6B880F6B880F6B77FF6B679F2AC68B84500801C0000000000000000
0000000000000000F39528F39528F39528000000F39528F39528F39528F39528
000000801C00F6D79CF6BF86F6B880F6B880F6B880F2B277B84500801C000000
00000000000000000000000000000000000000000000000000000000F39528F3
9528F39528F39528000000801C00F6D79CF6BF86F6B880F6B880F3B47AB84500
801C000000000000000000000000000000000000000000000000000000000000
00000000000000000000F39528F39528000000801C00F6D79CF6BF86F6B880F6
B880B84500801C00000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000801C00F6D7
9CF6BF86F6B880B84500801C0000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F39528F39528
000000801C00F6D79CF6BF86B84500801C000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000F39528F39528000000801C00F6D79CB84500801C00000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000801C00801C0000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
OnClick = BIniRunClick
ParentFont = False
TabOrder = 1
end
object BBRun_GR7: TBitBtn
Left = 123
Height = 26
Hint = 'F9'
Top = 2
Width = 76
Caption = 'Continue'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Glyph.Data = {
F6060000424DF606000000000000360000002800000018000000180000000100
180000000000C006000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000801C00892402
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000080
1C00F6D79CB84500801C00000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000801C00F6D79CF6A53FB84500801C0000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000801C00F6D79CF6A747F6982AB84500801C
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000801C00F6D79CF6AB4F
F69C34F6982AB84500801C000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000080
1C00F6D79CF6AF57F69F3DF69C34F39528B84500801C00000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000801C00F6D79CF6B160F6A447F69F3DF69C33F29327B8450080
1C00000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000801C00F6D79CF6B569F6A752F6A447F69F
3DF69C33F09227B84500801C0000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000801C00F6D79CF6BA76
F6AD62F6AA56F6A54AF6A041F69D36F09229B84500801C000000000000000000
0000000000000000000000000000000000000000000000000000000000000080
1C00F6D79CF6BD80F6B26EF6AD63F6AA56F6A54BF6A041F69D37F2932BB84500
801C000000000000000000000000000000000000000000000000000000000000
00000000000000801C00F6D79CF6BF86F6B67AF6B26EF6AD62F6AA56F6A54BF6
A041F69D37F3962CB84500801C00000000000000000000000000000000000000
000000000000000000000000000000801C00F6D79CF6BF86F6B880F6B77AF6B2
6EF6AD63F6AA57F6A64CF39E40B84500801C0000000000000000000000000000
0000000000000000000000000000000000000000000000801C00F6D79CF6BF86
F6B880F6B880F6B67AF6B26EF6AD63F2A552B84500801C000000000000000000
0000000000000000000000000000000000000000000000000000000000000080
1C00F6D79CF6BF86F6B880F6B880F6B77FF6B679F2AC68B84500801C00000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000801C00F6D79CF6BF86F6B880F6B880F6B880F2B277B8450080
1C00000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000801C00F6D79CF6BF86F6B880F6B880F3B4
7AB84500801C0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000801C00F6D79CF6BF86
F6B880F6B880B84500801C000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000080
1C00F6D79CF6BF86F6B880B84500801C00000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000801C00F6D79CF6BF86B84500801C0000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000801C00F6D79CB84500801C000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000801C00801C00
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
OnClick = BBRun_GR7Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
end
object BStepsPage2: TButton
Tag = 1
Left = 54
Height = 16
Hint = 'Append in code area reset steps of a given page (for you to edit latter)'
Top = 166
Width = 16
Caption = '1'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BStepsPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object BStepsPage3: TButton
Tag = 2
Left = 70
Height = 16
Hint = 'Append in code area reset steps of a given page (for you to edit latter)'
Top = 166
Width = 16
Caption = '2'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BStepsPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
object BPrintTransPage0: TButton
Left = 151
Height = 16
Hint = 'Append in code area reset transitions of a given page (for you to edit latter)'
Top = 166
Width = 16
Anchors = [akTop, akRight]
Caption = '0'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BPrintTransPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
end
object BPrintTransPage1: TButton
Tag = 1
Left = 167
Height = 16
Hint = 'Append in code area reset transitions of a given page (for you to edit latter)'
Top = 166
Width = 16
Anchors = [akTop, akRight]
Caption = '1'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BPrintTransPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 4
end
object BPrintTransPage3: TButton
Tag = 3
Left = 199
Height = 16
Hint = 'Append in code area reset transitions of a given page (for you to edit latter)'
Top = 166
Width = 16
Anchors = [akTop, akRight]
Caption = '3'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BPrintTransPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 5
end
object BPrintTransPage2: TButton
Tag = 2
Left = 183
Height = 16
Hint = 'Append in code area reset transitions of a given page (for you to edit latter)'
Top = 166
Width = 16
Anchors = [akTop, akRight]
Caption = '2'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BPrintTransPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 6
end
object BStepsPage1: TButton
Left = 38
Height = 16
Hint = 'Append in code area reset steps of a given page (for you to edit latter)'
Top = 166
Width = 16
Caption = '0'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = BStepsPage_x_Click
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 7
end
object EditDebugVar: TEdit
Left = 132
Height = 21
Top = 141
Width = 110
Anchors = [akTop, akRight]
Color = clInfoBk
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnChange = EditDebugVarChange
ParentFont = False
TabOrder = 8
Text = 'DebugVar'
end
object EditAnimation: TEdit
AnchorSideRight.Side = asrBottom
Left = 232
Height = 21
Top = 3
Width = 19
Anchors = [akRight]
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 9
Text = '|'
end
object LabelPage1: TLabel
AnchorSideRight.Side = asrBottom
Left = 235
Height = 19
Top = 87
Width = 9
Anchors = [akTop, akRight]
Caption = '1'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object LabelPage0: TLabel
AnchorSideRight.Side = asrBottom
Left = 235
Height = 19
Top = 70
Width = 9
Anchors = [akTop, akRight]
Caption = '0'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object LabelPage2: TLabel
AnchorSideRight.Side = asrBottom
Left = 235
Height = 19
Top = 102
Width = 9
Anchors = [akTop, akRight]
Caption = '2'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object LabelPage3: TLabel
AnchorSideRight.Side = asrBottom
Left = 235
Height = 19
Top = 120
Width = 9
Anchors = [akTop, akRight]
Caption = '3'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object TBFontCodeEditor: TTrackBar
AnchorSideRight.Side = asrBottom
Left = 127
Height = 16
Hint = 'Font Size for Code Editing Area'
Top = 122
Width = 80
Max = 8
Min = -6
OnChange = TBFontCodeEditorChange
PageSize = 1
Position = 0
Anchors = [akTop, akRight]
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 10
end
object TBFont: TTrackBar
AnchorSideRight.Side = asrBottom
Left = 127
Height = 16
Hint = 'Font Size'
Top = 96
Width = 80
Max = 5
Min = -5
OnChange = TBFontChange
PageSize = 1
Position = 0
Anchors = [akTop, akRight]
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 11
end
object TBZoom: TTrackBar
AnchorSideRight.Side = asrBottom
Left = 126
Height = 16
Hint = 'General Zoom Level'
Top = 109
Width = 81
Frequency = 10
Max = 200
Min = 20
OnChange = TBZoomChange
PageSize = 5
Position = 75
Anchors = [akTop, akRight]
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 12
end
object TBCodeAreaSize: TTrackBar
AnchorSideRight.Side = asrBottom
Left = 126
Height = 16
Hint = 'Code Area Size'
Top = 83
Width = 80
Max = 5
Min = 1
OnChange = TBCodeAreaSizeChange
PageSize = 1
Position = 3
Anchors = [akTop, akRight]
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 13
end
object TBStepHeight: TTrackBar
AnchorSideRight.Side = asrBottom
Left = 127
Height = 16
Hint = 'Step+Code Height'
Top = 68
Width = 80
Max = 18
Min = 3
OnChange = TBStepHeightChange
PageSize = 1
Position = 6
Anchors = [akTop, akRight]
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 14
end
object CBBarNum: TCheckBox
Left = 3
Height = 19
Top = 131
Width = 60
Caption = 'Bar Num'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 16
end
object CBCursors: TCheckBox
Left = 3
Height = 19
Top = 162
Width = 57
Caption = 'Cursors'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 17
Visible = False
end
object CBConfirmDel: TCheckBox
Left = 3
Height = 19
Top = 146
Width = 75
Caption = 'Confirm Del'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
ParentFont = False
TabOrder = 19
end
object Label2: TLabel
AnchorSideRight.Side = asrBottom
Left = 90
Height = 17
Top = 122
Width = 37
Anchors = [akTop, akRight]
Caption = 'Code:'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object CBRoundStates: TCheckBox
Left = 3
Height = 19
Top = 99
Width = 51
Caption = 'Round'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnClick = CBRoundStatesClick
ParentFont = False
TabOrder = 20
end
object LabelCodeAreaSize: TLabel
AnchorSideRight.Side = asrBottom
Left = 85
Height = 17
Top = 83
Width = 42
Anchors = [akTop, akRight]
Caption = 'Width:'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object CBDebugStuff: TCheckBox
Left = 3
Height = 19
Top = 115
Width = 51
Caption = 'Debug'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnChange = CBDebugStuffChange
OnClick = CBDebugStuffClick
ParentFont = False
TabOrder = 21
end
object LabelZoom: TLabel
AnchorSideRight.Side = asrBottom
Left = 86
Height = 17
Top = 109
Width = 41
Anchors = [akTop, akRight]
Caption = 'Zoom:'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object ToolBar: TToolBar
Left = 0
Height = 39
Top = 28
Width = 257
ButtonHeight = 35
ButtonWidth = 40
DropDownWidth = 12
EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
Flat = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Indent = 2
ParentFont = False
TabOrder = 23
object SPStepTransition: TSpeedButton
Left = 4
Height = 35
Hint = 'Create Steps & Transitions Click to place [or edit] a Step or Transition'
Top = 2
Width = 40
Caption = 'Steps'
Down = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Glyph.Data = {
1A070000424D1A070000000000001A0300000C00000020002000010008000000
00000000000000990000CC0000FF0000003300333300663300993300CC3300FF
3300006600336600666600996600CC6600FF6600009900339900669900999900
CC9900FF990000CC0033CC0066CC0099CC00CCCC00FFCC0000FF0033FF0066FF
0099FF00CCFF00FFFF00000033330033660033990033CC0033FF003300333333
3333663333993333CC3333FF3333006633336633666633996633CC6633FF6633
009933339933669933999933CC9933FF993300CC3333CC3366CC3399CC33CCCC
33FFCC3300FF3333FF3366FF3399FF33CCFF33FFFF3300006633006666006699
0066CC0066FF0066003366333366663366993366CC3366FF3366006666336666
666666996666CC6666FF6666009966339966669966999966CC9966FF996600CC
6633CC6666CC6699CC66CCCC66FFCC6600FF6633FF6666FF6699FF66CCFF66FF
FF66000099330099660099990099CC0099FF0099003399333399663399993399
CC3399FF3399006699336699666699996699CC6699FF66990099993399996699