-
Notifications
You must be signed in to change notification settings - Fork 31
/
RubikMain.dfm
11286 lines (11286 loc) · 672 KB
/
RubikMain.dfm
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 Form1: TForm1
Left = 284
Top = 401
HelpContext = 1008
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
AutoScroll = False
ClientHeight = 502
ClientWidth = 857
Color = clBtnFace
Constraints.MinHeight = 532
Constraints.MinWidth = 652
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
Menu = MainMenu1
OldCreateOrder = False
Position = poScreenCenter
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnMouseWheel = FormMouseWheel
OnResize = FormResize
PixelsPerInch = 96
TextHeight = 13
object PageCtrl: TPageControl
Left = 513
Top = 0
Width = 344
Height = 502
ActivePage = TabSheet1
Align = alRight
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabIndex = 0
TabOrder = 0
TabStop = False
OnChange = PageCtrlChange
object TabSheet1: TTabSheet
HelpContext = 1002
Caption = 'Facelet Editor'
DesignSize = (
336
474)
object FacePaint: TPaintBox
Left = 3
Top = 12
Width = 332
Height = 250
Anchors = [akLeft, akTop, akRight]
Color = clBtnFace
ParentColor = False
OnMouseDown = FacePaintMouseDown
OnMouseMove = FacePaintMouseMove
OnPaint = FacePaintPaint
end
object Bevel1: TBevel
Left = -3
Top = 265
Width = 341
Height = 2
Anchors = [akLeft, akTop, akRight]
end
object LSelColor: TLabel
Left = 223
Top = 231
Width = 89
Height = 16
Caption = 'Selected Color'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object ProgressLabel: TLabel
Left = 11
Top = 449
Width = 206
Height = 13
Alignment = taCenter
Anchors = [akLeft, akBottom]
AutoSize = False
end
object Bevel9: TBevel
Left = -15
Top = 469
Width = 351
Height = 10
Anchors = [akLeft, akTop, akRight]
Shape = bsTopLine
end
object AutoRunIdx: TLabel
Left = 10
Top = 433
Width = 3
Height = 13
Visible = False
end
object GroupBox1: TGroupBox
Left = 109
Top = 269
Width = 120
Height = 104
Caption = 'Apply Move'
ParentShowHint = False
ShowHint = False
TabOrder = 1
object ButtonU: TButton
Left = 42
Top = 14
Width = 35
Height = 21
HelpContext = 1006
Caption = 'U'
TabOrder = 0
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonR: TButton
Left = 5
Top = 14
Width = 35
Height = 21
HelpContext = 1006
Caption = 'R'
TabOrder = 1
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonF: TButton
Left = 80
Top = 14
Width = 35
Height = 21
HelpContext = 1006
Caption = 'F'
TabOrder = 2
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonD: TButton
Left = 42
Top = 35
Width = 35
Height = 21
HelpContext = 1006
Caption = 'D'
TabOrder = 3
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonL: TButton
Left = 5
Top = 35
Width = 35
Height = 21
HelpContext = 1006
Caption = 'L'
TabOrder = 4
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonB: TButton
Left = 80
Top = 35
Width = 35
Height = 21
HelpContext = 1006
Caption = 'B'
TabOrder = 5
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonE: TButton
Left = 42
Top = 57
Width = 35
Height = 21
HelpContext = 1006
Caption = 'E'
TabOrder = 6
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object Buttony: TButton
Left = 42
Top = 79
Width = 35
Height = 21
HelpContext = 1006
Caption = 'y'
TabOrder = 7
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonS: TButton
Left = 80
Top = 57
Width = 35
Height = 21
HelpContext = 1006
Caption = 'S'
TabOrder = 8
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object ButtonM: TButton
Left = 5
Top = 57
Width = 35
Height = 21
HelpContext = 1006
Caption = 'M'
TabOrder = 9
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object Buttonx: TButton
Left = 5
Top = 79
Width = 35
Height = 21
HelpContext = 1006
Caption = 'x'
TabOrder = 10
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
object Buttonz: TButton
Left = 80
Top = 79
Width = 35
Height = 21
HelpContext = 1006
Caption = 'z'
TabOrder = 11
OnClick = ButtonXClick
OnMouseDown = ButtonMouseDown
OnMouseUp = ButtonMouseUp
end
end
object GroupBox2: TGroupBox
Left = 230
Top = 269
Width = 103
Height = 104
Caption = 'Reset To'
TabOrder = 2
object ButtonEmpty: TButton
Left = 4
Top = 15
Width = 55
Height = 26
Caption = 'Empty'
TabOrder = 0
OnClick = ButtonEmptyClick
end
object ButtonClear: TButton
Left = 4
Top = 44
Width = 55
Height = 26
Caption = 'Clean'
TabOrder = 1
OnClick = ButtonClearClick
end
object ButtonRandom: TButton
Left = 4
Top = 73
Width = 55
Height = 26
Caption = 'Random'
TabOrder = 2
OnClick = ButtonRandomClick
end
object ButtonEmptyC: TButton
Left = 62
Top = 15
Width = 16
Height = 26
Caption = 'C'
TabOrder = 3
OnClick = ButtonEmptyCClick
end
object ButtonEmptyE: TButton
Left = 81
Top = 15
Width = 16
Height = 26
Caption = 'E'
TabOrder = 4
OnClick = ButtonEmptyEClick
end
object ButtonClearC: TButton
Left = 62
Top = 44
Width = 16
Height = 26
Caption = 'C'
TabOrder = 5
OnClick = ButtonClearCClick
end
object ButtonClearE: TButton
Left = 81
Top = 44
Width = 16
Height = 26
Caption = 'E'
TabOrder = 6
OnClick = ButtonClearEClick
end
object ButtonRandomC: TButton
Left = 62
Top = 73
Width = 16
Height = 26
Caption = 'C'
TabOrder = 7
OnClick = ButtonRandomClick
end
object ButtonRandomE: TButton
Left = 81
Top = 73
Width = 16
Height = 26
Caption = 'E'
TabOrder = 8
OnClick = ButtonRandomClick
end
end
object ButtonCustomize: TButton
Left = 199
Top = 424
Width = 130
Height = 24
Caption = 'Customize Selected Color'
TabOrder = 3
OnClick = ButtonCustomizeClick
end
object GroupBox3: TGroupBox
Left = 1
Top = 269
Width = 107
Height = 104
Caption = 'Add Pattern'
TabOrder = 0
object ButtonAddSolve: TButton
Left = 5
Top = 14
Width = 97
Height = 41
HelpContext = 1002
Caption = ' Add and Solve '
Enabled = False
TabOrder = 0
OnClick = ButtonAddSolveClick
end
object ButtonAddGen: TButton
Left = 5
Top = 58
Width = 97
Height = 41
HelpContext = 1001
Caption = 'Add and Generate'
TabOrder = 1
OnClick = ButtonAddSolveClick
end
end
object ProgressBar: TProgressBar
Left = 10
Top = 430
Width = 177
Height = 13
Min = 0
Max = 100
TabOrder = 4
end
object GroupBox8: TGroupBox
Left = 0
Top = 376
Width = 333
Height = 42
Caption = 'Enter Maneuver'
TabOrder = 5
object EManeuver: TEdit
Left = 6
Top = 13
Width = 253
Height = 21
TabOrder = 0
OnKeyDown = EManeuverKeyDown
end
object BApplyMan: TButton
Left = 265
Top = 13
Width = 60
Height = 20
Caption = 'Apply'
TabOrder = 1
OnClick = BApplyManClick
end
end
object ColorCheck: TCheckBox
Left = 2
Top = 231
Width = 88
Height = 17
Caption = 'AutoFix Colors'
Checked = True
State = cbChecked
TabOrder = 6
OnClick = ColorCheckClick
end
end
object PatEdit: TTabSheet
HelpContext = 1003
Caption = 'Pattern Editor'
ImageIndex = 1
DesignSize = (
336
474)
object Bevel2: TBevel
Left = 229
Top = 0
Width = 12
Height = 461
Shape = bsLeftLine
end
object CurShape: TShape
Left = 243
Top = 192
Width = 77
Height = 65
Brush.Color = clRed
end
object Label1: TLabel
Left = 235
Top = 263
Width = 89
Height = 16
Caption = 'Selected Type'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Bevel7: TBevel
Left = -4
Top = 462
Width = 348
Height = 17
Anchors = [akLeft, akTop, akRight]
Shape = bsTopLine
end
object CheckBoxA1: TCheckBox
Left = 191
Top = 42
Width = 35
Height = 17
TabStop = False
AllowGrayed = True
Caption = 'All'
Checked = True
State = cbChecked
TabOrder = 4
OnClick = CheckBoxAOnClick
end
object CheckBoxF1: TCheckBox
Left = 160
Top = 33
Width = 31
Height = 18
TabStop = False
Caption = 'F'
Checked = True
State = cbChecked
TabOrder = 5
OnClick = CheckBoxOnClick
end
object CheckBoxR1: TCheckBox
Left = 126
Top = 33
Width = 31
Height = 18
TabStop = False
Caption = 'R'
Checked = True
State = cbChecked
TabOrder = 6
OnClick = CheckBoxOnClick
end
object CheckBoxU1: TCheckBox
Left = 92
Top = 33
Width = 31
Height = 18
TabStop = False
Caption = 'U'
Checked = True
State = cbChecked
TabOrder = 7
OnClick = CheckBoxOnClick
end
object CheckBoxD1: TCheckBox
Left = 92
Top = 51
Width = 31
Height = 18
TabStop = False
Caption = 'D'
Checked = True
State = cbChecked
TabOrder = 8
OnClick = CheckBoxOnClick
end
object CheckBoxL1: TCheckBox
Left = 126
Top = 51
Width = 31
Height = 18
TabStop = False
Caption = 'L'
Checked = True
State = cbChecked
TabOrder = 9
OnClick = CheckBoxOnClick
end
object CheckBoxB1: TCheckBox
Left = 160
Top = 51
Width = 31
Height = 18
TabStop = False
Caption = 'B'
Checked = True
State = cbChecked
TabOrder = 10
OnClick = CheckBoxOnClick
end
object CheckBoxA2: TCheckBox
Left = 191
Top = 132
Width = 35
Height = 17
TabStop = False
AllowGrayed = True
Caption = 'All'
Checked = True
State = cbChecked
TabOrder = 11
OnClick = CheckBoxAOnClick
end
object CheckBoxU2: TCheckBox
Left = 92
Top = 123
Width = 31
Height = 18
TabStop = False
Caption = 'U'
Checked = True
State = cbChecked
TabOrder = 12
OnClick = CheckBoxOnClick
end
object CheckBoxD2: TCheckBox
Left = 92
Top = 141
Width = 31
Height = 17
TabStop = False
Caption = 'D'
Checked = True
State = cbChecked
TabOrder = 13
OnClick = CheckBoxOnClick
end
object CheckBoxR2: TCheckBox
Left = 126
Top = 123
Width = 31
Height = 18
TabStop = False
Caption = 'R'
Checked = True
State = cbChecked
TabOrder = 14
OnClick = CheckBoxOnClick
end
object CheckBoxL2: TCheckBox
Left = 126
Top = 141
Width = 31
Height = 17
TabStop = False
Caption = 'L'
Checked = True
State = cbChecked
TabOrder = 15
OnClick = CheckBoxOnClick
end
object CheckBoxF2: TCheckBox
Left = 160
Top = 123
Width = 31
Height = 18
TabStop = False
Caption = 'F'
Checked = True
State = cbChecked
TabOrder = 16
OnClick = CheckBoxOnClick
end
object CheckBoxB2: TCheckBox
Left = 160
Top = 141
Width = 31
Height = 17
TabStop = False
Caption = 'B'
Checked = True
State = cbChecked
TabOrder = 17
OnClick = CheckBoxOnClick
end
object CheckBoxA3: TCheckBox
Left = 191
Top = 221
Width = 35
Height = 17
TabStop = False
AllowGrayed = True
Caption = 'All'
Checked = True
State = cbChecked
TabOrder = 18
OnClick = CheckBoxAOnClick
end
object CheckBoxU3: TCheckBox
Left = 92
Top = 212
Width = 31
Height = 18
TabStop = False
Caption = 'U'
Checked = True
State = cbChecked
TabOrder = 19
OnClick = CheckBoxOnClick
end
object CheckBoxD3: TCheckBox
Left = 92
Top = 230
Width = 31
Height = 17
TabStop = False
Caption = 'D'
Checked = True
State = cbChecked
TabOrder = 20
OnClick = CheckBoxOnClick
end
object CheckBoxR3: TCheckBox
Left = 126
Top = 212
Width = 31
Height = 18
TabStop = False
Caption = 'R'
Checked = True
State = cbChecked
TabOrder = 21
OnClick = CheckBoxOnClick
end
object CheckBoxL3: TCheckBox
Left = 126
Top = 230
Width = 31
Height = 17
TabStop = False
Caption = 'L'
Checked = True
State = cbChecked
TabOrder = 22
OnClick = CheckBoxOnClick
end
object CheckBoxF3: TCheckBox
Left = 160
Top = 212
Width = 31
Height = 18
TabStop = False
Caption = 'F'
Checked = True
State = cbChecked
TabOrder = 23
OnClick = CheckBoxOnClick
end
object CheckBoxB3: TCheckBox
Left = 160
Top = 230
Width = 31
Height = 17
TabStop = False
Caption = 'B'
Checked = True
State = cbChecked
TabOrder = 24
OnClick = CheckBoxOnClick
end
object CheckBoxA4: TCheckBox
Left = 191
Top = 311
Width = 35
Height = 17
TabStop = False
AllowGrayed = True
Caption = 'All'
Checked = True
State = cbChecked
TabOrder = 25
OnClick = CheckBoxAOnClick
end
object CheckBoxU4: TCheckBox
Left = 92
Top = 302
Width = 31
Height = 18
TabStop = False
Caption = 'U'
Checked = True
State = cbChecked
TabOrder = 26
OnClick = CheckBoxOnClick
end
object CheckBoxD4: TCheckBox
Left = 92
Top = 320
Width = 31
Height = 17
TabStop = False
Caption = 'D'
Checked = True
State = cbChecked
TabOrder = 27
OnClick = CheckBoxOnClick
end
object CheckBoxR4: TCheckBox
Left = 126
Top = 302
Width = 31
Height = 18
TabStop = False
Caption = 'R'
Checked = True
State = cbChecked
TabOrder = 28
OnClick = CheckBoxOnClick
end
object CheckBoxL4: TCheckBox
Left = 126
Top = 320
Width = 31
Height = 17
TabStop = False
Caption = 'L'
Checked = True
State = cbChecked
TabOrder = 29
OnClick = CheckBoxOnClick
end
object CheckBoxF4: TCheckBox
Left = 160
Top = 302
Width = 31
Height = 18
TabStop = False
Caption = 'F'
Checked = True
State = cbChecked
TabOrder = 30
OnClick = CheckBoxOnClick
end
object CheckBoxB4: TCheckBox
Left = 160
Top = 320
Width = 31
Height = 17
TabStop = False
Caption = 'B'
Checked = True
State = cbChecked
TabOrder = 31
OnClick = CheckBoxOnClick
end
object CheckBoxA5: TCheckBox
Left = 191
Top = 400
Width = 35
Height = 17
TabStop = False
AllowGrayed = True
Caption = 'All'
Checked = True
State = cbChecked
TabOrder = 32
OnClick = CheckBoxAOnClick
end
object CheckBoxU5: TCheckBox
Left = 92
Top = 391
Width = 31
Height = 18
TabStop = False
Caption = 'U'
Checked = True
State = cbChecked
TabOrder = 33
OnClick = CheckBoxOnClick
end
object CheckBoxD5: TCheckBox
Left = 92
Top = 409
Width = 31
Height = 17
TabStop = False
Caption = 'D'
Checked = True
State = cbChecked
TabOrder = 34
OnClick = CheckBoxOnClick
end
object CheckBoxR5: TCheckBox
Left = 126
Top = 391
Width = 31
Height = 18
TabStop = False
Caption = 'R'
Checked = True
State = cbChecked
TabOrder = 35
OnClick = CheckBoxOnClick
end
object CheckBoxL5: TCheckBox
Left = 126
Top = 409
Width = 31
Height = 17
TabStop = False
Caption = 'L'
Checked = True
State = cbChecked
TabOrder = 36
OnClick = CheckBoxOnClick
end
object CheckBoxF5: TCheckBox
Left = 160
Top = 391
Width = 31
Height = 18
TabStop = False
Caption = 'F'
Checked = True
State = cbChecked
TabOrder = 37
OnClick = CheckBoxOnClick
end
object CheckBoxB5: TCheckBox
Left = 160
Top = 409
Width = 31
Height = 17
TabStop = False
Caption = 'B'
Checked = True
State = cbChecked
TabOrder = 38
OnClick = CheckBoxOnClick
end
object PatBox1: TGroupBox
Left = 7
Top = 3
Width = 83
Height = 86
TabOrder = 39
end
object PatBox2: TGroupBox
Left = 7
Top = 94
Width = 83
Height = 86
TabOrder = 40
end
object PatBox3: TGroupBox
Left = 7
Top = 185
Width = 83
Height = 86
TabOrder = 41
end
object PatBox4: TGroupBox
Left = 7
Top = 275
Width = 83
Height = 86
TabOrder = 42
end
object PatBox5: TGroupBox
Left = 7
Top = 366
Width = 83
Height = 86
TabOrder = 43
end
object CheckBoxContinuous: TCheckBox
Left = 238
Top = 436
Width = 82
Height = 17
Caption = 'Continuous'
TabOrder = 3
end
object GroupBox4: TGroupBox
Left = 243
Top = 10
Width = 77
Height = 167
Caption = 'Pattern Type'
TabOrder = 44
object PatShape1: TShape
Tag = 1
Left = 2
Top = 18
Width = 71
Height = 25
Brush.Color = clRed
OnMouseDown = PatShapeMouseDown
end
object PatShape2: TShape
Tag = 2
Left = 2
Top = 42
Width = 71
Height = 25
Brush.Color = clYellow
OnMouseDown = PatShapeMouseDown
end
object PatShape3: TShape
Tag = 3
Left = 2
Top = 66
Width = 71
Height = 25
Brush.Color = clLime
OnMouseDown = PatShapeMouseDown
end
object PatShape4: TShape
Tag = 4
Left = 2
Top = 90
Width = 71
Height = 25
Brush.Color = clBlue
OnMouseDown = PatShapeMouseDown
end
object PatShape5: TShape
Tag = 5
Left = 2
Top = 114
Width = 71
Height = 25
OnMouseDown = PatShapeMouseDown
end
object PatShape6: TShape
Tag = 6
Left = 2