-
Notifications
You must be signed in to change notification settings - Fork 0
/
ControlsForm.fmx
6921 lines (6921 loc) · 299 KB
/
ControlsForm.fmx
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 solar2DForm: Tsolar2DForm
Left = 497
Top = 171
Caption = 'Solar2D Generic GUI Designer'
ClientHeight = 739
ClientWidth = 1110
Position = ScreenCenter
StyleBook = StyleBook1
FormFactor.Width = 1024
FormFactor.Height = 1024
FormFactor.Devices = [Desktop]
FormFamily = 'TForm'
OnCreate = FormCreate
OnClose = FormClose
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnResize = FormResize
Left = 497
Top = 171
DesignerMasterStyle = 0
object StatusBar1: TStatusBar
HelpType = htKeyword
Padding.Left = 2.000000000000000000
Padding.Top = 5.000000000000000000
Padding.Right = 30.000000000000000000
Padding.Bottom = 5.000000000000000000
Position.Y = 711.000000000000000000
ShowSizeGrip = True
Size.Width = 1110.000000000000000000
Size.Height = 28.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'StatusBar1Style1'
TabOrder = 0
object statusLabel: TLabel
Align = Left
AutoSize = True
HelpType = htKeyword
Position.X = 2.000000000000000000
Position.Y = 5.000000000000000000
Size.Width = 647.000000000000000000
Size.Height = 18.000000000000000000
Size.PlatformDefault = False
Text = 'Hint messages'
end
object ScaleTrack: TTrackBar
Align = Right
CanParentFocus = True
Frequency = 0.050000000745058060
HelpType = htKeyword
Max = 2.000000000000000000
Min = 0.100000001490116100
Orientation = Horizontal
Position.X = 926.000000000000000000
Position.Y = 5.000000000000000000
Size.Width = 116.000000000000000000
Size.Height = 19.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Value = 0.900000035762786900
OnChange = ScaleTrackChange
end
object TextScale: TLabel
Align = Right
HelpType = htKeyword
Position.X = 1042.000000000000000000
Position.Y = 5.000000000000000000
Size.Width = 38.000000000000000000
Size.Height = 18.000000000000000000
Size.PlatformDefault = False
TextSettings.HorzAlign = Center
Text = '100%'
end
object Text1: TLabel
Align = Right
HelpType = htKeyword
Position.X = 869.000000000000000000
Position.Y = 5.000000000000000000
Size.Width = 57.000000000000000000
Size.Height = 18.000000000000000000
Size.PlatformDefault = False
TextSettings.HorzAlign = Center
Text = 'Scale:'
end
end
object FOpen: TOpenDialog
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofShareAware, ofEnableSizing, ofDontAddToRecent]
Left = 536
Top = 591
end
object ControlLayout: TLayout
Align = Client
Size.Width = 1110.000000000000000000
Size.Height = 671.000000000000000000
Size.PlatformDefault = False
object ControlRoot: TLayout
Align = Client
HitTest = True
Padding.Left = 5.000000000000000000
Padding.Top = 5.000000000000000000
Padding.Right = 5.000000000000000000
Padding.Bottom = 5.000000000000000000
Margins.Left = 5.000000000000000000
Margins.Top = 5.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Size.Width = 1100.000000000000000000
Size.Height = 661.000000000000000000
Size.PlatformDefault = False
object mainTab: TTabControl
Align = Client
HelpType = htKeyword
Padding.Left = 4.000000000000000000
Padding.Top = 4.000000000000000000
Padding.Right = 4.000000000000000000
Padding.Bottom = 4.000000000000000000
Size.Width = 1090.000000000000000000
Size.Height = 651.000000000000000000
Size.PlatformDefault = False
TabHeight = 25.000000000000000000
TabIndex = 0
TabOrder = 0
TabPosition = Top
Sizes = (
1082s
618s
1082s
618s)
object designTabItem: TTabItem
CustomIcon = <
item
end>
HelpType = htKeyword
IsSelected = True
Size.Width = 86.000000000000000000
Size.Height = 25.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'designTabItemStyle1'
TabOrder = 0
Text = 'Design View'
ExplicitSize.cx = 69.000000000000000000
ExplicitSize.cy = 24.000000000000000000
object deviceScrollBox: TPresentedScrollBox
Touch.InteractiveGestures = []
Bounces = False
ScrollAnimation = False
Align = Client
EnableDragHighlight = False
HelpType = htKeyword
Padding.Left = 2.000000000000000000
Padding.Top = 2.000000000000000000
Padding.Right = 2.000000000000000000
Padding.Bottom = 2.000000000000000000
Size.Width = 527.000000000000000000
Size.Height = 618.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'ScrollBox1Style1'
TabOrder = 2
Viewport.Width = 527.000000000000000000
Viewport.Height = 618.000000000000000000
object BC: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 160.000000000000000000
Position.Y = 600.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object BL: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 80.000000000000000000
Position.Y = 600.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object BR: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 216.000000000000000000
Position.Y = 600.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object L: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 88.000000000000000000
Position.Y = 536.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object R: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 216.000000000000000000
Position.Y = 536.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object selectionRect: TRectangle
EnableDragHighlight = False
Fill.Kind = None
HitTest = False
Position.X = 24.000000000000000000
Position.Y = 281.000000000000000000
Size.Width = 153.000000000000000000
Size.Height = 135.000000000000000000
Size.PlatformDefault = False
Stroke.Thickness = 1.500000000000000000
Stroke.Dash = Dash
end
object TC: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 160.000000000000000000
Position.Y = 470.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object TL: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 88.000000000000000000
Position.Y = 470.000000000000000000
Size.Width = 8.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
end
object TR: TRectangle
EnableDragHighlight = False
Fill.Color = claDodgerblue
HitTest = False
Position.X = 214.000000000000000000
Position.Y = 472.000000000000000000
Size.Width = 11.000000000000000000
Size.Height = 14.000000000000000000
Size.PlatformDefault = False
XRadius = 4.000000000000000000
YRadius = 4.000000000000000000
ParentShowHint = False
ShowHint = False
end
object deviceFrame: TRectangle
ClipChildren = True
EnableDragHighlight = False
Fill.Color = claChartreuse
Position.X = 152.000000000000000000
Position.Y = 24.000000000000000000
Sides = []
Size.Width = 257.000000000000000000
Size.Height = 288.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
OnMouseDown = deviceFrameMouseDown
OnMouseMove = deviceFrameMouseMove
OnMouseUp = deviceFrameMouseUp
OnResize = deviceScreenResize
object deviceScreen: TRectangle
ClipChildren = True
EnableDragHighlight = False
Fill.Color = claBlack
PopupMenu = devicePopup
Position.X = 88.000000000000000000
Position.Y = 80.000000000000000000
Size.Width = 57.000000000000000000
Size.Height = 72.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
Stroke.Thickness = 2.000000000000000000
Stroke.Cap = Round
OnMouseDown = deviceScreenMouseDown
OnMouseMove = deviceScreenMouseMove
OnPaint = deviceScreenPainting
end
end
end
object splitterVertL: TSplitter
Align = Left
Cursor = crHSplit
MinSize = 20.000000000000000000
Position.X = 257.000000000000000000
Size.Width = 4.000000000000000000
Size.Height = 618.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'splitterVertLStyle1'
end
object splitterVertR: TSplitter
Align = Right
Cursor = crHSplit
EnableDragHighlight = False
MinSize = 20.000000000000000000
Position.X = 788.000000000000000000
Size.Width = 4.000000000000000000
Size.Height = 618.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'splitterVertLStyle1'
end
object tabCtrlBox: TFramedScrollBox
Align = MostRight
Position.X = 792.000000000000000000
Size.Width = 290.000000000000000000
Size.Height = 618.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 286.000000000000000000
Viewport.Height = 614.000000000000000000
object inspectorTab: TTabControl
Align = Client
Size.Width = 286.000000000000000000
Size.Height = 614.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'TabControl2Style1'
TabHeight = 25.000000000000000000
TabIndex = 1
TabOrder = 0
TabPosition = PlatformDefault
Sizes = (
286s
589s
286s
589s)
object objectProperties: TTabItem
CustomIcon = <
item
end>
TextSettings.Font.StyleExt = {00060000000000000004000000}
StyledSettings = [Family, Size, FontColor]
IsSelected = False
Size.Width = 76.000000000000000000
Size.Height = 25.000000000000000000
Size.PlatformDefault = False
StyleLookup = ''
TabOrder = 0
Text = 'Properties'
ExplicitSize.cx = 76.000000000000000000
ExplicitSize.cy = 26.000000000000000000
object FramedVertScrollBox1: TFramedVertScrollBox
Align = Client
Size.Width = 286.000000000000000000
Size.Height = 589.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 286.000000000000000000
Viewport.Height = 589.000000000000000000
object propsSizedPanel: TPanel
Align = Top
Size.Width = 282.000000000000000000
Size.Height = 497.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
object propsGridL: TGridPanelLayout
Align = Left
ClipChildren = True
Size.Width = 142.000000000000000000
Size.Height = 497.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
ColumnCollection = <
item
Value = 100.000000000000000000
end>
ControlCollection = <
item
Column = 0
Control = name
Row = 0
end
item
Column = 0
Control = width
Row = 1
end
item
Column = 0
Control = height
Row = 2
end
item
Column = 0
Control = positionX
Row = 3
end
item
Column = 0
Control = positionY
Row = 4
end
item
Column = 0
Control = scaleX
Row = 5
end
item
Column = 0
Control = scaleY
Row = 6
end
item
Column = 0
Control = anchorX
Row = 7
end
item
Column = 0
Control = anchorY
Row = 8
end
item
Column = 0
Control = rotation
Row = 9
end
item
Column = 0
Control = isVisible
Row = 10
end
item
Column = 0
Control = alpha
Row = 11
end
item
Column = 0
Control = color
Row = 12
end
item
Column = 0
Control = image
Row = 13
end
item
Column = 0
Control = text
Row = 14
end
item
Column = 0
Control = textAlign
Row = 15
end
item
Column = 0
Control = font
Row = 16
end
item
Column = 0
Control = fontColor
Row = 17
end
item
Column = 0
Control = fontSize
Row = 18
end>
RowCollection = <
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end>
object alpha: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Alpha'
TabOrder = 3
end
object anchorX: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Anchor-X'
TabOrder = 8
end
object anchorY: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Anchor-Y'
TabOrder = 6
end
object color: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Color'
TabOrder = 2
end
object font: TLabel
Align = Client
StyledSettings = [FontColor]
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Font'
TabOrder = 17
end
object fontColor: TLabel
Align = Client
StyledSettings = [FontColor]
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Font Color'
TabOrder = 16
end
object fontSize: TLabel
Align = Client
StyledSettings = [FontColor]
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Font Size'
TabOrder = 15
end
object height: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Height'
TabOrder = 10
end
object image: TLabel
Align = Client
StyledSettings = [FontColor]
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Image'
TabOrder = 1
end
object isVisible: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'isVisible'
TabOrder = 4
end
object name: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Name'
TabOrder = 13
end
object positionX: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Position-X'
TabOrder = 14
end
object positionY: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Position-Y'
TabOrder = 12
end
object rotation: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Rotation'
TabOrder = 5
end
object scaleX: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Scale-X'
TabOrder = 9
end
object scaleY: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Scale-Y'
TabOrder = 7
end
object text: TLabel
Align = Client
StyledSettings = [FontColor]
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Text'
TabOrder = 19
end
object textAlign: TLabel
Align = Client
StyledSettings = [FontColor]
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Text Alignment'
TabOrder = 18
end
object width: TLabel
Align = Client
StyledSettings = [FontColor]
HitTest = True
Size.Width = 142.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'myTLabelStyle1'
TextSettings.Font.StyleExt = {00030000000000000004000000}
TextSettings.WordWrap = False
TextSettings.Trimming = None
Text = 'Width'
TabOrder = 11
end
end
object propsGridR: TGridPanelLayout
Align = Client
ClipChildren = True
Size.Width = 136.000000000000000000
Size.Height = 497.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
ColumnCollection = <
item
Value = 100.000000000000000000
end>
ControlCollection = <
item
Column = 0
Control = widthNum
Row = 1
end
item
Column = 0
Control = heightNum
Row = 2
end
item
Column = 0
Control = posXNum
Row = 3
end
item
Column = 0
Control = posYNum
Row = 4
end
item
Column = 0
Control = scaleXNum
Row = 5
end
item
Column = 0
Control = anchorXNum
Row = 7
end
item
Column = -1
Row = 9
end
item
Column = 0
Control = nameEdit
Row = 0
end
item
Column = 0
Control = scaleYNum
Row = 6
end
item
Column = 0
Control = anchorYNum
Row = 8
end
item
Column = 0
Control = rotateNum
Row = 9
end
item
Column = 0
Control = visibleCheck
Row = 10
end
item
Column = 0
Control = alphaNum
Row = 11
end
item
Column = 0
Control = imageButton
Row = 13
end
item
Column = 0
Control = shapeColorSelect
Row = 12
end
item
Column = 0
Control = enterText
Row = 14
end
item
Column = 0
Control = alignTextSelector
Row = 15
end
item
Column = 0
Control = fontColorSelect
Row = 17
end
item
Column = 0
Control = fontSizeNum
Row = 18
end
item
Column = 0
Control = Panel1
Row = 16
end>
RowCollection = <
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute
Value = 24.000000000000000000
end
item
SizeStyle = Absolute