-
-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathFMX.TabControl.xml
1908 lines (1756 loc) · 129 KB
/
FMX.TabControl.xml
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
<?xml version="1.0" ?><namespace name="FMX.TabControl" platform="Win32">
<classref name="TTabItemClass" ref="TTabItem" file="FMX.TabControl.pas" line="24"/>
<enum name="TTabTransition" file="FMX.TabControl.pas" line="26">
<element value="0" name="None" file="FMX.TabControl.pas" line="26"/>
<element value="1" name="Slide" file="FMX.TabControl.pas" line="26"/>
</enum>
<enum name="TTabTransitionDirection" file="FMX.TabControl.pas" line="27">
<element value="0" name="Normal" file="FMX.TabControl.pas" line="27"/>
<element value="1" name="Reversed" file="FMX.TabControl.pas" line="27"/>
</enum>
<class name="TTabControlAction" file="FMX.TabControl.pas" line="29">
<members>
<field name="FTabControl" type="TTabControl" visibility="private" size="4" offset="184" file="FMX.TabControl.pas" line="31">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<field name="FTransition" type="TTabTransition" visibility="private" size="1" offset="188" file="FMX.TabControl.pas" line="32"/>
<field name="FDirection" type="TTabTransitionDirection" visibility="private" size="1" offset="189" file="FMX.TabControl.pas" line="33"/>
<procedure name="SetTabControl" visibility="private" file="FMX.TabControl.pas" line="34">
<parameters>
<parameter name="Value" type="TTabControl" paramflags="const"/>
</parameters>
</procedure>
<function name="FindVisibleTab" visibility="protected" file="FMX.TabControl.pas" line="36">
<parameters>
<parameter name="LeftToRight" type="Boolean"/>
<retval type="Integer"/>
</parameters>
</function>
<procedure name="Notification" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="37">
<parameters>
<parameter name="AComponent" type="TComponent"/>
<parameter name="Operation" type="TOperation"/>
</parameters>
</procedure>
<property name="TabControl" visibility="protected" read="FTabControl" write="SetTabControl" type="TTabControl" file="FMX.TabControl.pas" line="38"/>
<property name="Transition" visibility="protected" read="FTransition" write="FTransition" type="TTabTransition" default="1" file="FMX.TabControl.pas" line="39"/>
<property name="Direction" visibility="protected" read="FDirection" write="FDirection" type="TTabTransitionDirection" default="0" file="FMX.TabControl.pas" line="40"/>
<constructor name="Create" visibility="public" file="FMX.TabControl.pas" line="42">
<parameters>
<parameter name="AOwner" type="TComponent"/>
</parameters>
</constructor>
<function name="GetEnsuingTabIndex" visibility="public" procflags="virtual" file="FMX.TabControl.pas" line="43">
<parameters>
<retval type="Integer"/>
</parameters>
</function>
<function name="HandlesTarget" visibility="public" procflags="override" file="FMX.TabControl.pas" line="44">
<parameters>
<parameter name="Target" type="TObject"/>
<retval type="Boolean"/>
</parameters>
</function>
<procedure name="ExecuteTarget" visibility="public" procflags="override" file="FMX.TabControl.pas" line="45">
<parameters>
<parameter name="Target" type="TObject"/>
</parameters>
</procedure>
<function name="Update" visibility="public" procflags="override" file="FMX.TabControl.pas" line="46">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
</members>
</class>
<class name="TChangeTabAction" file="FMX.TabControl.pas" line="49">
<members>
<field name="FTab" type="TTabItem" visibility="private" size="4" offset="192" file="FMX.TabControl.pas" line="51">
<attributes>
<attribute name="TObject"/>
</attributes>
</field>
<procedure name="SetTab" visibility="private" file="FMX.TabControl.pas" line="52">
<parameters>
<parameter name="Value" type="TTabItem" paramflags="const"/>
</parameters>
</procedure>
<procedure name="UpdateTabControl" visibility="private" file="FMX.TabControl.pas" line="53">
</procedure>
<procedure name="Notification" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="55">
<parameters>
<parameter name="AComponent" type="TComponent"/>
<parameter name="Operation" type="TOperation"/>
</parameters>
</procedure>
<function name="GetEnsuingTabIndex" visibility="public" procflags="override" file="FMX.TabControl.pas" line="57">
<parameters>
<retval type="Integer"/>
</parameters>
</function>
<procedure name="CustomTextChanged" visibility="public" procflags="override" file="FMX.TabControl.pas" line="58">
</procedure>
<procedure name="ExecuteTarget" visibility="public" procflags="override" file="FMX.TabControl.pas" line="59">
<parameters>
<parameter name="Target" type="TObject"/>
</parameters>
</procedure>
<function name="Update" visibility="public" procflags="override" file="FMX.TabControl.pas" line="60">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<property name="CustomText" visibility="published" read="FCustomText" write="SetCustomText" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="62"/>
<property name="Tab" visibility="published" read="FTab" write="SetTab" type="TTabItem" file="FMX.TabControl.pas" line="63"/>
<property name="Direction" visibility="published" read="FDirection" write="FDirection" type="TTabTransitionDirection" default="0" hoisted="true" file="FMX.TabControl.pas" line="64"/>
<property name="Transition" visibility="published" read="FTransition" write="FTransition" type="TTabTransition" default="1" hoisted="true" file="FMX.TabControl.pas" line="65"/>
<property name="HelpContext" visibility="published" read="FHelpContext" write="SetHelpContext" type="THelpContext" default="0" hoisted="true" file="FMX.TabControl.pas" line="66"/>
<property name="HelpKeyword" visibility="published" read="FHelpKeyword" write="SetHelpKeyword" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="67"/>
<property name="HelpType" visibility="published" read="FHelpType" write="SetHelpType" type="THelpType" default="0" hoisted="true" file="FMX.TabControl.pas" line="68"/>
<property name="Hint" visibility="published" read="FHint" write="SetHint" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="69"/>
<property name="ShortCut" visibility="published" read="FShortCut" write="SetShortCut" type="TShortCut" default="0" hoisted="true" file="FMX.TabControl.pas" line="70"/>
<property name="SecondaryShortCuts" visibility="published" read="GetSecondaryShortCuts" write="SetSecondaryShortCuts" stored="IsSecondaryShortCutsStored" type="TCustomShortCutList" hoisted="true" file="FMX.TabControl.pas" line="71"/>
<property name="Visible" visibility="published" read="FVisible" write="SetVisible" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="72"/>
<event name="OnUpdate" visibility="published" read="FOnUpdate" write="FOnUpdate" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="73"/>
</members>
</class>
<class name="TNextTabAction" file="FMX.TabControl.pas" line="76">
<members>
<function name="GetEnsuingTabIndex" visibility="public" procflags="override" file="FMX.TabControl.pas" line="78">
<parameters>
<retval type="Integer"/>
</parameters>
</function>
<procedure name="CustomTextChanged" visibility="public" procflags="override" file="FMX.TabControl.pas" line="79">
</procedure>
<property name="TabControl" visibility="published" read="FTabControl" write="SetTabControl" type="TTabControl" hoisted="true" file="FMX.TabControl.pas" line="81"/>
<property name="CustomText" visibility="published" read="FCustomText" write="SetCustomText" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="82"/>
<property name="Direction" visibility="published" read="FDirection" write="FDirection" type="TTabTransitionDirection" default="0" hoisted="true" file="FMX.TabControl.pas" line="83"/>
<property name="Transition" visibility="published" read="FTransition" write="FTransition" type="TTabTransition" default="1" hoisted="true" file="FMX.TabControl.pas" line="84"/>
<property name="HelpContext" visibility="published" read="FHelpContext" write="SetHelpContext" type="THelpContext" default="0" hoisted="true" file="FMX.TabControl.pas" line="85"/>
<property name="HelpKeyword" visibility="published" read="FHelpKeyword" write="SetHelpKeyword" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="86"/>
<property name="HelpType" visibility="published" read="FHelpType" write="SetHelpType" type="THelpType" default="0" hoisted="true" file="FMX.TabControl.pas" line="87"/>
<property name="Hint" visibility="published" read="FHint" write="SetHint" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="88"/>
<property name="ShortCut" visibility="published" read="FShortCut" write="SetShortCut" type="TShortCut" default="0" hoisted="true" file="FMX.TabControl.pas" line="89"/>
<property name="SecondaryShortCuts" visibility="published" read="GetSecondaryShortCuts" write="SetSecondaryShortCuts" stored="IsSecondaryShortCutsStored" type="TCustomShortCutList" hoisted="true" file="FMX.TabControl.pas" line="90"/>
<property name="Visible" visibility="published" read="FVisible" write="SetVisible" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="91"/>
<event name="OnUpdate" visibility="published" read="FOnUpdate" write="FOnUpdate" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="92"/>
</members>
</class>
<class name="TPreviousTabAction" file="FMX.TabControl.pas" line="95">
<members>
<function name="GetEnsuingTabIndex" visibility="public" procflags="override" file="FMX.TabControl.pas" line="97">
<parameters>
<retval type="Integer"/>
</parameters>
</function>
<procedure name="CustomTextChanged" visibility="public" procflags="override" file="FMX.TabControl.pas" line="98">
</procedure>
<property name="TabControl" visibility="published" read="FTabControl" write="SetTabControl" type="TTabControl" hoisted="true" file="FMX.TabControl.pas" line="100"/>
<property name="CustomText" visibility="published" read="FCustomText" write="SetCustomText" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="101"/>
<property name="Direction" visibility="published" read="FDirection" write="FDirection" type="TTabTransitionDirection" default="0" hoisted="true" file="FMX.TabControl.pas" line="102"/>
<property name="Transition" visibility="published" read="FTransition" write="FTransition" type="TTabTransition" default="1" hoisted="true" file="FMX.TabControl.pas" line="103"/>
<property name="HelpContext" visibility="published" read="FHelpContext" write="SetHelpContext" type="THelpContext" default="0" hoisted="true" file="FMX.TabControl.pas" line="104"/>
<property name="HelpKeyword" visibility="published" read="FHelpKeyword" write="SetHelpKeyword" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="105"/>
<property name="HelpType" visibility="published" read="FHelpType" write="SetHelpType" type="THelpType" default="0" hoisted="true" file="FMX.TabControl.pas" line="106"/>
<property name="Hint" visibility="published" read="FHint" write="SetHint" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="107"/>
<property name="ShortCut" visibility="published" read="FShortCut" write="SetShortCut" type="TShortCut" default="0" hoisted="true" file="FMX.TabControl.pas" line="108"/>
<property name="SecondaryShortCuts" visibility="published" read="GetSecondaryShortCuts" write="SetSecondaryShortCuts" stored="IsSecondaryShortCutsStored" type="TCustomShortCutList" hoisted="true" file="FMX.TabControl.pas" line="109"/>
<property name="Visible" visibility="published" read="FVisible" write="SetVisible" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="110"/>
<event name="OnUpdate" visibility="published" read="FOnUpdate" write="FOnUpdate" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="111"/>
</members>
</class>
<class name="TTabItem" file="FMX.TabControl.pas" line="116">
<interfaces>
<implements name="IGlyph"/>
</interfaces>
<members>
<const name="DotStyleName" visibility="public" type="string" file="FMX.TabControl.pas" line="142">
<value>
tabdotstyle
</value>
</const>
<const name="DotSize" visibility="public" type="Integer" file="FMX.TabControl.pas" line="119">
<value>
$8
</value>
</const>
<struct name="TTabItemInfo" visibility="public" alias="FMX.TabControl.TTabItemInfo" size="24" file="FMX.TabControl.pas" line="122">
<field name="LayoutControlSize" type="TSizeF" visibility="public" size="8" offset="0" file="FMX.TabControl.pas" line="125">
<devnotes>
<summary> The size of the style element <c>layoutstyle</c>. If it is not present then <c>-1</c>, <c>-1</c>
</summary>
</devnotes>
</field>
<field name="Size" type="TSizeF" visibility="public" size="8" offset="8" file="FMX.TabControl.pas" line="127">
<devnotes>
<summary> The autocalculated size of the tab title </summary>
</devnotes>
</field>
<field name="ExplicitSize" type="TSizeF" visibility="public" size="8" offset="16" file="FMX.TabControl.pas" line="129">
<devnotes>
<summary> Size which was set manually when <c>AutoSize</c> was <c>False</c></summary>
</devnotes>
</field>
</struct>
<enum name="TPaintPart" visibility="public" alias="FMX.TabControl.TPaintPart" file="FMX.TabControl.pas" line="131">
<element value="0" name="All" file="FMX.TabControl.pas" line="131"/>
<element value="1" name="ResourceControl" file="FMX.TabControl.pas" line="131"/>
<element value="2" name="Children" file="FMX.TabControl.pas" line="131"/>
<element value="3" name="Nothing" file="FMX.TabControl.pas" line="131"/>
</enum>
<enum name="TSizeState" visibility="private" alias="FMX.TabControl.TSizeState" file="FMX.TabControl.pas" line="133">
<element value="0" name="Invalid" file="FMX.TabControl.pas" line="133"/>
<element value="1" name="Calculating" file="FMX.TabControl.pas" line="133"/>
<element value="2" name="Calculated" file="FMX.TabControl.pas" line="133"/>
</enum>
<field name="FSizeState" type="TTabItem.TSizeState" visibility="class private" size="1" offset="992" file="FMX.TabControl.pas" line="135"/>
<field name="FInfo" type="TTabItem.TTabItemInfo" visibility="class private" size="24" offset="996" file="FMX.TabControl.pas" line="136"/>
<field name="FContent" type="TContent" visibility="class private" size="4" offset="1020" file="FMX.TabControl.pas" line="137"/>
<field name="FTabControl" type="TTabControl" visibility="private" size="4" offset="1024" file="FMX.TabControl.pas" line="139"/>
<field name="FLeftOffset" type="Single" visibility="private" size="4" offset="1028" file="FMX.TabControl.pas" line="140"/>
<field name="FRightOffset" type="Single" visibility="private" size="4" offset="1032" file="FMX.TabControl.pas" line="141"/>
<field name="FAutoSize" type="Boolean" visibility="private" size="1" offset="1036" file="FMX.TabControl.pas" line="142"/>
<field name="FOriginalGlyphSize" type="TSizeF" visibility="private" size="8" offset="1040" file="FMX.TabControl.pas" line="143"/>
<field name="FOriginalIconSize" type="TSizeF" visibility="private" size="8" offset="1048" file="FMX.TabControl.pas" line="144"/>
<field name="FIsSelected" type="Boolean" visibility="private" size="1" offset="1056" file="FMX.TabControl.pas" line="145"/>
<field name="FCustomIcon" type="TFixedMultiResBitmap" visibility="private" size="4" offset="1060" file="FMX.TabControl.pas" line="146"/>
<field name="FItemStyle" type="TControl" visibility="private" size="4" offset="1064" file="FMX.TabControl.pas" line="147"/>
<field name="FIconObject" type="IMultiResBitmapObject" visibility="private" size="4" offset="1068" file="FMX.TabControl.pas" line="148"/>
<field name="FIconControl" type="TControl" visibility="private" size="4" offset="1072" file="FMX.TabControl.pas" line="149"/>
<field name="FLayoutControl" type="TControl" visibility="private" size="4" offset="1076" file="FMX.TabControl.pas" line="150"/>
<field name="FOldLayoutWidth" type="Single" visibility="private" size="4" offset="1080" file="FMX.TabControl.pas" line="151"/>
<field name="FOldIconControlVisible" type="Boolean" visibility="private" size="1" offset="1084" file="FMX.TabControl.pas" line="152"/>
<field name="FCanTouchClick" type="Boolean" visibility="private" size="1" offset="1085" file="FMX.TabControl.pas" line="153"/>
<field name="FBeginPanPosition" type="TPointF" visibility="private" size="8" offset="1088" file="FMX.TabControl.pas" line="154"/>
<field name="FGlyph" type="TGlyph" visibility="private" size="4" offset="1096" file="FMX.TabControl.pas" line="155"/>
<field name="FImageLink" type="TGlyphImageLink" visibility="private" size="4" offset="1100" file="FMX.TabControl.pas" line="156"/>
<field name="FShowAsDot" type="Boolean" visibility="private" size="1" offset="1104" file="FMX.TabControl.pas" line="157"/>
<field name="FCustomStyleLookup" type="string" visibility="private" size="4" offset="1108" file="FMX.TabControl.pas" line="158"/>
<field name="FPaintPart" type="TTabItem.TPaintPart" visibility="private" size="1" offset="1112" file="FMX.TabControl.pas" line="159"/>
<function name="GetInfo" visibility="private" file="FMX.TabControl.pas" line="160">
<parameters>
<retval type="TTabItem.TTabItemInfo"/>
</parameters>
</function>
<procedure name="SetAutoSize" visibility="private" file="FMX.TabControl.pas" line="161">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<procedure name="SetIsSelected" visibility="private" file="FMX.TabControl.pas" line="162">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<procedure name="SetCustomIcon" visibility="private" file="FMX.TabControl.pas" line="163">
<parameters>
<parameter name="Value" type="TFixedMultiResBitmap" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImages" visibility="private" file="FMX.TabControl.pas" line="164">
<parameters>
<retval type="TCustomImageList"/>
</parameters>
</function>
<procedure name="SetImages" visibility="private" file="FMX.TabControl.pas" line="165">
<parameters>
<parameter name="Value" type="TCustomImageList" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImageIndex" visibility="private" file="FMX.TabControl.pas" line="167">
<parameters>
<retval type="TImageIndex"/>
</parameters>
</function>
<procedure name="SetImageIndex" visibility="private" file="FMX.TabControl.pas" line="168">
<parameters>
<parameter name="Value" type="TImageIndex" paramflags="const"/>
</parameters>
</procedure>
<function name="GetImageList" visibility="private" procflags="inline" file="FMX.TabControl.pas" line="169">
<parameters>
<retval type="TBaseImageList"/>
</parameters>
</function>
<procedure name="SetImageList" visibility="private" file="FMX.TabControl.pas" line="170">
<parameters>
<parameter name="Value" type="TBaseImageList" paramflags="const"/>
</parameters>
</procedure>
<procedure name="UpdateIcon" visibility="private" file="FMX.TabControl.pas" line="173">
</procedure>
<procedure name="SetSelectedInternal" visibility="private" file="FMX.TabControl.pas" line="174">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<procedure name="UpdateLayoutControl" visibility="private" file="FMX.TabControl.pas" line="175">
</procedure>
<procedure name="SetShowAsDot" visibility="private" file="FMX.TabControl.pas" line="176">
<parameters>
<parameter name="Value" type="Boolean" paramflags="const"/>
</parameters>
</procedure>
<function name="GetStyleLookup" visibility="private" file="FMX.TabControl.pas" line="177">
<parameters>
<retval type="string"/>
</parameters>
</function>
<procedure name="SetStyleLookup" visibility="private" file="FMX.TabControl.pas" line="178">
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
</procedure>
<procedure name="ReadExplicitSizeCx" visibility="private" file="FMX.TabControl.pas" line="179">
<parameters>
<parameter name="Reader" type="TReader"/>
</parameters>
</procedure>
<procedure name="ReadExplicitSizeCy" visibility="private" file="FMX.TabControl.pas" line="180">
<parameters>
<parameter name="Reader" type="TReader"/>
</parameters>
</procedure>
<procedure name="WriteExplicitSizeCx" visibility="private" file="FMX.TabControl.pas" line="181">
<parameters>
<parameter name="Writer" type="TWriter"/>
</parameters>
</procedure>
<procedure name="WriteExplicitSizeCy" visibility="private" file="FMX.TabControl.pas" line="182">
<parameters>
<parameter name="Writer" type="TWriter"/>
</parameters>
</procedure>
<function name="TouchEnabled" visibility="private" file="FMX.TabControl.pas" line="183">
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<procedure name="TouchClick" visibility="private" file="FMX.TabControl.pas" line="184">
</procedure>
<procedure name="UpdatePaintPart" visibility="private" file="FMX.TabControl.pas" line="185">
</procedure>
<procedure name="SetPaintPart" visibility="private" file="FMX.TabControl.pas" line="186">
<parameters>
<parameter name="Value" type="TTabItem.TPaintPart" paramflags="const"/>
</parameters>
</procedure>
<procedure name="CalcSize" visibility="protected" file="FMX.TabControl.pas" line="188">
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></procedure>
<function name="InvalidateSize" visibility="protected" file="FMX.TabControl.pas" line="192">
<devnotes><summary>
Changes the size state from Calculated to Invalid so that the size is re-calculated later.
InvalidateSize returns False if the call is performed at the moment of calculation. That is, when the size state is Calculating.
</summary></devnotes>
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="RealignTabs" visibility="protected" file="FMX.TabControl.pas" line="195">
<devnotes><summary>
Calls TTabControl.RealignTabs.
RealignTabs returns False if the call to TTabControl.RealignTabs is not executed. For example, in the case of recursive calls.
</summary></devnotes>
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<function name="GetDefaultStyleLookupName" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="196">
<parameters>
<retval type="string"/>
</parameters>
<devnotes><summary>
Protected getter implementation for the DefaultStyleLookupName property.
FMX.TabControl.TTabItem.GetDefaultStyleLookupName inherits from FMX.Controls.TStyledControl.GetDefaultStyleLookupName. All content below this line refers to FMX.Controls.TStyledControl.GetDefaultStyleLookupName.
Protected getter implementation for the DefaultStyleLookupName property.
When you Create a styled FireMonkey component by extending an existing component, override this method, if you want your component to inherit styles from the parent component. See Step 2 - Implement a Property to Specify the Format: Inheriting Styles of the Parent Component for more information and example code.
</summary></devnotes></function>
<procedure name="ChangeOrder" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="197">
<devnotes><summary>
Notification method called after the creation order is changed.
FMX.TabControl.TTabItem.ChangeOrder inherits from FMX.Types.TFmxObject.ChangeOrder. All content below this line refers to FMX.Types.TFmxObject.ChangeOrder.
Notification method called after the creation order is changed. ChangeOrder is a virtual method to be implemented in subclasses to allow for changing the creation order of this FMX object.
</summary></devnotes></procedure>
<property name="Info" visibility="protected" read="GetInfo" type="TTabItem.TTabItemInfo" file="FMX.TabControl.pas" line="200">
<devnotes><summary>
Holds information about the size of the tab title.
The CalcSize method initializes the Info property.
</summary></devnotes>
</property>
<procedure name="DoAddObject" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="201">
<parameters>
<parameter name="AObject" type="TFmxObject" paramflags="const"/>
</parameters>
<devnotes><summary>
Adds the AObject object to the Children list of children attached to this parent object (self).
FMX.TabControl.TTabItem.DoAddObject inherits from FMX.Types.TFmxObject.DoAddObject. All content below this line refers to FMX.Types.TFmxObject.DoAddObject.
Adds the AObject object to the Children list of children attached to this parent object (self).
DoAddObject adds the object provided in the AObject parameter to the list of children stored in the Children property of this object (self). DoAddObject changes the parent of AObject to this object (self) and sets the root of AObject to the Root object of this object (self).
Descendant classes, like TCommonCustomForm and TControl, additionally handle tab stop lists keeping ordered lists of objects to which the user can tab. If such descendant class supports the ITabStopController interface and AObject is an object of a class supporting the IControl interface, then DoAddObject of this descendant adds AObject to the TabList tab stop lists of the (self) object.
DoAddObject is internally called from AddObject.
</summary></devnotes></procedure>
<procedure name="DoChanged" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="202">
<devnotes><summary>
Updates the representation of the text on the control.
FMX.TabControl.TTabItem.DoChanged inherits from FMX.Controls.TTextControl.DoChanged. All content below this line refers to FMX.Controls.TTextControl.DoChanged.
Updates the representation of the text on the control.
DoChanged is called internally from the Change methods.
Do not call DoChanged explicitly; call the Change method.
</summary></devnotes></procedure>
<procedure name="DefineProperties" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="203">
<parameters>
<parameter name="Filer" type="TFiler"/>
</parameters>
<devnotes><summary>
Designates methods for storing an object's unpublished data on a stream such as a form file.
FMX.TabControl.TTabItem.DefineProperties inherits from System.Classes.TComponent.DefineProperties. All content below this line refers to System.Classes.TComponent.DefineProperties.
Designates methods for storing an object's unpublished data on a stream such as a form file.
TComponent overrides the DefineProperties method defined in TPersistent to define "fake" Top and Left properties. These are defined so that components that are not controls can be manipulated at design time. However, the Top and Left properties are hidden, that is, they are not published, because only controls appear at run time.
DefineProperties is virtual; descendent classes can override it. When overriding DefineProperties, be aware that the Ancestor property of Filer might be set, and that this property can determine whether or not it is appropriate to write properties.
DefineProperties is called automatically as part of the component streaming system; do not call it directly.
</summary></devnotes></procedure>
<procedure name="SetText" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="204">
<parameters>
<parameter name="Value" type="string" paramflags="const"/>
</parameters>
<devnotes><summary>
Protected setter implementation for the Text property.
FMX.TabControl.TTabItem.SetText inherits from FMX.Controls.TTextControl.SetText. All content below this line refers to FMX.Controls.TTextControl.SetText.
Protected setter implementation for the Text property.
In descendants, override SetText to allow for further functionality when setting the text using the Text property.
Do not use SetText directly in applications. Use the Text property instead.
</summary></devnotes></procedure>
<function name="FindTextObject" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="205">
<parameters>
<retval type="TFmxObject"/>
</parameters>
<devnotes><summary>
Retrieves the resource object linked to the style of the current TTextControl object.
FMX.TabControl.TTabItem.FindTextObject inherits from FMX.Controls.TTextControl.FindTextObject. All content below this line refers to FMX.Controls.TTextControl.FindTextObject.
Retrieves the resource object linked to the style of the current TTextControl object.
In the current implementation, FindTextObject retrieves the resource object linked to the 'text' style.
</summary></devnotes></function>
<procedure name="ApplyStyle" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="206">
<devnotes><summary>
Customizes styles in complex objects.
FMX.TabControl.TTabItem.ApplyStyle inherits from FMX.Controls.TStyledControl.ApplyStyle. All content below this line refers to FMX.Controls.TStyledControl.ApplyStyle.
Customizes styles in complex objects.
TStyledControl descendants override it to apply styles in concordance with their primitive components.
Do not call ApplyStyle explicitly in an application. It is called by the ApplyStyleLookup method when object styles are updated.
For an example of an ApplyStyle implementation, see "TCalloutPanel:Style Contracts" in FireMonkey Component Design.
</summary></devnotes></procedure>
<procedure name="FreeStyle" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="207">
<devnotes><summary>
Frees the style of TStyledControl.
FMX.TabControl.TTabItem.FreeStyle inherits from FMX.Controls.TTextControl.FreeStyle. All content below this line refers to FMX.Controls.TTextControl.FreeStyle.
Frees the style of TStyledControl.
FreeStyle frees some TTextControl-specific style resources like TextObject and TextSettings, then calls the inherited TStyledControl.FreeStyle.
</summary></devnotes></procedure>
<procedure name="Loaded" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="208">
<devnotes><summary>
Initializes the component after the form file has been read into memory.
FMX.TabControl.TTabItem.Loaded inherits from FMX.Controls.TControl.Loaded. All content below this line refers to FMX.Controls.TControl.Loaded.
Initializes the component after the form file has been read into memory.
Loaded inherits TComponent.Loaded, realigns the children, if any, and updates the tab list.
For details, see TComponent.Loaded.
</summary></devnotes></procedure>
<procedure name="MouseDown" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="209">
<parameters>
<parameter name="Button" type="TMouseButton"/>
<parameter name="Shift" type="TShiftState"/>
<parameter name="X" type="Single"/>
<parameter name="Y" type="Single"/>
</parameters>
<devnotes><summary>
OnMouseDown event dispatcher.
FMX.TabControl.TTabItem.MouseDown inherits from FMX.Controls.TControl.MouseDown. All content below this line refers to FMX.Controls.TControl.MouseDown.
OnMouseDown event dispatcher.
A control calls MouseDown in response to any of mouse-down messages, decoding the message parameters into the shift-key state and position, which it passes in the Shift, X, and Y parameters, respectively:
Button determines which mouse button is pressed: left, right, or middle.
Shift indicates which shift keys--SHIFT, CTRL, ALT, and CMD (only for Mac)--were down when the user pressed the mouse button.
X and Y are the pixel coordinates of the mouse pointer within the client area of the control. If Button is mbLeft, MouseDown sets PressedPosition as a TPointF(X,Y).
Override the protected MouseDown method to provide other responses when a mouse button is down while the cursor is over the control.
</summary></devnotes></procedure>
<procedure name="MouseClick" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="210">
<parameters>
<parameter name="Button" type="TMouseButton"/>
<parameter name="Shift" type="TShiftState"/>
<parameter name="X" type="Single"/>
<parameter name="Y" type="Single"/>
</parameters>
<devnotes><summary>
Calls Click and starts the animation by calling StartTriggerAnimation.
FMX.TabControl.TTabItem.MouseClick inherits from FMX.Controls.TControl.MouseClick. All content below this line refers to FMX.Controls.TControl.MouseClick.
Calls Click and starts the animation by calling StartTriggerAnimation.
MouseClick receives the following parameters:
Button determines which mouse button was previously pressed: left, right, or middle.
Shift indicates which shift keys -- SHIFT, CTRL, ALT, and CMD (only for Mac) -- were down when the pressed mouse button is released.
X and Y are the pixel coordinates of the mouse pointer within the client area of the control.
See Also
FMX.Controls.TControl.Click
FMX.Controls.TControl.OnClick
FMX.Controls.TControl.OnMouseLeave
FMX.Controls.TControl.OnMouseEnter
FMX.Controls.TControl.OnMouseMove
FMX.Controls.TControl.OnMouseDown
FMX.Controls.TControl.OnMouseWheel
System.Classes.TShiftState
System.UITypes.TMouseButton
FMX.Ani.TAnimator.StartTriggerAnimation
</summary></devnotes></procedure>
<procedure name="DblClick" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="211">
<devnotes><summary>
Responds to user double-clicks.
FMX.TabControl.TTabItem.DblClick inherits from FMX.Controls.TControl.DblClick. All content below this line refers to FMX.Controls.TControl.DblClick.
Responds to user double-clicks.
DblClick is an event handler for the OnDblClick event. It is automatically called when the left mouse button is pressed and released twice, consecutively, with the pointer over the control.
Call DblClick in applications to simulate a mouse OnDblClick event.
</summary></devnotes></procedure>
<procedure name="MouseUp" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="212">
<parameters>
<parameter name="Button" type="TMouseButton"/>
<parameter name="Shift" type="TShiftState"/>
<parameter name="X" type="Single"/>
<parameter name="Y" type="Single"/>
</parameters>
<devnotes><summary>
OnMouseUp event dispatcher.
FMX.TabControl.TTabItem.MouseUp inherits from FMX.Controls.TControl.MouseUp. All content below this line refers to FMX.Controls.TControl.MouseUp.
OnMouseUp event dispatcher.
A control calls MouseUp in response to any of mouse-up messages, decoding the message parameters into the shift-key state and position, which it passes in the Shift, X and Y parameters, respectively:
Button determines which mouse button was previously pressed: left, right, or middle.
Shift indicates which shift keys--SHIFT, CTRL, ALT, and CMD (only for Mac)--were down when the pressed mouse button is released.
X and Y are the pixel coordinates of the mouse pointer within the client area of the control.
Override the protected MouseUp method to provide other responses when the mouse button previously pressed is released while the cursor is over the control.
</summary></devnotes></procedure>
<procedure name="KeyDown" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="213">
<parameters>
<parameter name="Key" type="Word" paramflags="var"/>
<parameter name="KeyChar" type="Char" paramflags="var"/>
<parameter name="Shift" type="TShiftState"/>
</parameters>
<devnotes><summary>
Provides a response when a key is pressed down while the control has the keyboard focus.
FMX.TabControl.TTabItem.KeyDown inherits from FMX.Controls.TControl.KeyDown. All content below this line refers to FMX.Controls.TControl.KeyDown.
Provides a response when a key is pressed down while the control has the keyboard focus.
If the pressed key is the Applications key (Key = vkApps), then KeyDown shows the context menu of the control. Otherwise, KeyDown calls the OnKeyDown event handler if one is assigned.
TCommonCustomForm and descendant of TControl classes--like TCustomGrid--call KeyDown from their methods handling key pressing. They decode the message parameters into the key code, character code, and shift state. They pass them into the called KeyDown method in the Key, KeyChar, and Shift parameters, respectively:
Parameters
Descriptions
Key
Is the scan code of the pressed keyboard key or $0.
If a pressed key combination can be a shortcut, then Key <> 0 is a virtual key and KeyChar = #0.
Physical scan codes of the same key can differ under different platforms (Windows or iOS).
Platform-specific units (for example FMX.Platform.Mac.pas) should translate native scan codes to corresponding Windows codes defined in the UITypes unit. For example,
vkReturn = $0D; { 13 } corresponds to the RETURN keyboard key.
vkF2 = $71; { 113 } corresponds to the F2 keyboard key.
KeyChar
Is the pressed character (digit) or #0.
If a pressed key combination can be treated as a printable character or digit, then Key = 0 and KeyChar contains a pressed symbol according to the current keyboard's input language, keyboard mode (CAPS LOCK and NUM LOCK keys), keyboard Shift state, and IME state. Editors can use this symbol to add into a text being edited.
Shift
Indicates which shift keys--SHIFT, CTRL, ALT, and CMD (only for Mac)--were down when the specified key was pressed with the control in focus.
If the control has successfully processed the pressed key combination and no additional processing is required, then KeyDown assigns Key = 0 and KeyChar = #0.
Override the protected KeyDown method to provide other responses when a key is down while the control has keyboard input focus.
See TCommonCustomForm.KeyDown for more information about parameters.
</summary></devnotes></procedure>
<procedure name="ImagesChanged" visibility="protected" procflags="virtual" file="FMX.TabControl.pas" line="217">
<devnotes><summary>
Should be called when the component needs to redraw the image.
ImagesChanged should be called
when you change the Images reference to the TCustomImageList object or
the object itself or when you change the ImageIndex property.
</summary></devnotes>
</procedure>
<function name="ImageIndexStored" visibility="protected" procflags="virtual" file="FMX.TabControl.pas" line="220">
<devnotes><summary>
Returns True when the ImageIndex property needs to be stored in the fmx-file.
</summary></devnotes>
<parameters>
<retval type="Boolean"/>
</parameters>
</function>
<procedure name="ParentChanged" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="221">
<devnotes><summary>
Executed right after the value of the Parent property changes.
FMX.TabControl.TTabItem.ParentChanged inherits from FMX.Controls.TControl.ParentChanged. All content below this line refers to FMX.Controls.TControl.ParentChanged.
Executed right after the value of the Parent property changes.
The control does not execute ParentChanged if you assign Parent the same value that it already has.
See Also
FMX.Controls.TControl.AncestorParentChanged
FMX.Controls.TControl.ClipChildrenChanged
FMX.Controls.TControl.EffectEnabledChanged
FMX.Controls.TControl.EnabledChanged
FMX.Controls.TControl.HandleSizeChanged
FMX.Controls.TControl.HitTestChanged
FMX.Controls.TControl.PaddingChanged
FMX.Controls.TControl.VisibleChanged
FMX.Controls.TControl.AncestorVisibleChanged
FMX.Controls.TControl.ChildrenAlignChanged
</summary></devnotes></procedure>
<procedure name="Hide" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="222">
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></procedure>
<procedure name="Show" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="223">
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></procedure>
<function name="DoSetSize" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="224">
<parameters>
<parameter name="ASize" type="TControlSize" paramflags="const"/>
<parameter name="NewPlatformDefault" type="Boolean" paramflags="const"/>
<parameter name="ANewWidth" type="Single"/>
<parameter name="ANewHeight" type="Single"/>
<parameter name="ALastWidth" type="Single" paramflags="var"/>
<parameter name="ALastHeight" type="Single" paramflags="var"/>
<retval type="Boolean"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></function>
<property name="Align" visibility="protected" read="FAlign" write="SetAlign" type="TAlignLayout" default="0" hoisted="true" file="FMX.TabControl.pas" line="226"><devnotes><summary>
Specifies the alignment options (top, left, client, and so on) of this control.
Use Align to automatically set the alignment of the current control. Setting Align to a value different than None can affect the position, size (height and width), and anchors of the control. By default, Align is set to None.
Descendants of TControl typically set the visibility and value for the Align property. For example, for TToolBar, Align defaults to TAlignLayout.Top.
To see the possible values for Align and their visible effects over the control, see FMX.Types.TAlignLayout.
Controls that have the Align or Anchors properties set can use a Scale that is different from the default (1,1), so that controls align together even when they have a custom scale.
</summary></devnotes></property>
<property name="RotationAngle" visibility="protected" read="GetRotationAngle" write="SetRotationAngle" type="Single" default="0" hoisted="true" file="FMX.TabControl.pas" line="227"><devnotes><summary>
Specifies the amount (in degrees) by which the control is rotated from the x-axis.
Positive angles correspond to clockwise rotation. For counterclockwise rotation, use negative values.
To set the rotation center, use RotationCenter.
</summary></devnotes></property>
<property name="RotationCenter" visibility="protected" read="GetRotationCenter" write="SetRotationCenter" type="TPosition" hoisted="true" file="FMX.TabControl.pas" line="228"><devnotes><summary>
Specifies the position of the pivot point of the control.
The coordinates of the rotation center take values in the range from 0 through 1. The point with the coordinates (0,0) corresponds to the upper-left corner of the control, the point with the coordinates (1,1) corresponds to the lower-right corner of the control. The default center of rotation is (0.5, 0.5).
Values outside of [0,0] and [1,1] can be clipped in some descendant classes.
To set the rotation angle, use RotationAngle.
</summary></devnotes></property>
<property name="Position" visibility="protected" read="FPosition" write="SetPosition" stored="IsPositionStored" type="TPosition" hoisted="true" file="FMX.TabControl.pas" line="229"><devnotes><summary>
Aligns the component to the position points of other components (Bounds points).
Specifies the upper-left corner of the current control, relative to its parent.
The Position can be affected by the Padding of its parent and the Margins of the control.
</summary></devnotes></property>
<function name="GetTextSettingsClass" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="230">
<parameters>
<retval type="TTextSettingsInfo.TCustomTextSettingsClass">
</retval>
</parameters>
<devnotes><summary>
Returns the class type that instance represents the used text settings.
FMX.TabControl.TTabItem.GetTextSettingsClass inherits from FMX.Controls.TTextControl.GetTextSettingsClass. All content below this line refers to FMX.Controls.TTextControl.GetTextSettingsClass.
Returns the class type that instance represents the used text settings.
GetTextSettingsClass returns the TTextSettingsInfo.TCustomTextSettingsClass (or its descendant) class reference. An instance of such class provides the DefaultTextSettings, TextSettings, StyledSettings, ResultingTextSettings, and other properties handling the text representation settings of a control.
You can override the method in descendant classes to modify the default behavior.
Typical implementations of GetTextSettingsClass returns the class declaring properties like the Font, FontColor, HorzAlign, and WordWrap. Some of these properties can be declared as published to be editable in the Object Inspector.
See Also
FMX.Controls.TTextSettingsInfo
FMX.Controls.TTextSettingsInfo.TCustomTextSettingsClass
FMX.Controls.TTextSettingsInfo.DefaultTextSettings
FMX.Controls.TTextSettingsInfo.TextSettings
FMX.Controls.TTextSettingsInfo.StyledSettings
FMX.Controls.TTextSettingsInfo.ResultingTextSettings
</summary></devnotes></function>
<procedure name="CMGesture" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="231">
<parameters>
<parameter name="EventInfo" type="TGestureEventInfo" paramflags="var"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></procedure>
<procedure name="TriggerAcceleratorKey" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="234">
<devnotes><summary>
Allows the object to perform an action when the accelerator key is pressed.
FMX.TabControl.TTabItem.TriggerAcceleratorKey inherits from FMX.AcceleratorKey.IAcceleratorKeyReceiver.TriggerAcceleratorKey. All content below this line refers to FMX.AcceleratorKey.IAcceleratorKeyReceiver.TriggerAcceleratorKey.
Allows the object to perform an action when the accelerator key is pressed.
Use TriggerAcceleratorKey to trigger an action as a response to the accelerator key. For example, use TriggerAcceleratorKey to set focus to the acceleration key receiver control.
See Also
FMX.AcceleratorKey.IAcceleratorKeyReceiver.CanTriggerAcceleratorKey
</summary></devnotes>
</procedure>
<procedure name="PaintChildren" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="236">
<devnotes><summary>
Renders the child controls.
FMX.TabControl.TTabItem.PaintChildren inherits from FMX.Controls.TControl.PaintChildren. All content below this line refers to FMX.Controls.TControl.PaintChildren.
Renders the child controls.
The PaintChildren method is called automatically in the process of painting of the current control. It renders child controls, if any, on the surface specified by the Canvas property.
The effects that are applied to the control are also applied to its children.
TControl descendants can override PaintChildren to provide specific rendering of the respective controls.
</summary></devnotes></procedure>
<procedure name="Painting" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="237">
<devnotes><summary>
OnPainting event dispatcher.
FMX.TabControl.TTabItem.Painting inherits from FMX.Controls.TControl.Painting. All content below this line refers to FMX.Controls.TControl.Painting.
OnPainting event dispatcher.
Painting defines the drawing area of the control by intersecting Canvas with ClipRect if ClipChildren is True and dispatches the OnPainting event.
It is always called internally before DoPaint.
The Painting method can be overridden by derived controls to establish control-specific rendering conditions.
</summary></devnotes></procedure>
<procedure name="Paint" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="238">
<devnotes><summary>
Renders the control's surface.
FMX.TabControl.TTabItem.Paint inherits from FMX.Controls.TControl.Paint. All content below this line refers to FMX.Controls.TControl.Paint.
Renders the control's surface.
The Paint method is called by DoPaint when a control is being painted by the PaintTo method. Before DoPaint, Painting is called. AfterPaint is called immediately after.
FireMonkey internally calls Paint to paint the control when the window is being painted. You must not call Paint explicitly.
The base class TControl implements an empty Paint. The descendants of TControl override Paint to provide specific rendering of the respective controls.
For example, Paint methods in classes of the FMX.Objects unit draw and fill shapes using the properties defined in these classes. See the descriptions of these classes to find the properties of the respective shapes.
</summary></devnotes></procedure>
<procedure name="DoPaint" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="239">
<devnotes><summary>
Processes the painting of the control.
FMX.TabControl.TTabItem.DoPaint inherits from FMX.Controls.TControl.DoPaint. All content below this line refers to FMX.Controls.TControl.DoPaint.
Processes the painting of the control.
This method is called internally from PaintTo and PaintChildren. DoPaint defines the drawing area by clipping the Canvas to the areas occupied by the control and its children, paints the children and then the control itself. The call to DoPaint is always preceded by a call to Painting and succeeded by a call to AfterPaint.
</summary></devnotes></procedure>
<procedure name="AfterPaint" visibility="protected" procflags="override" file="FMX.TabControl.pas" line="240">
<devnotes><summary>
Restores Canvas properties after the painting process.
FMX.TabControl.TTabItem.AfterPaint inherits from FMX.Controls.TControl.AfterPaint. All content below this line refers to FMX.Controls.TControl.AfterPaint.
Restores Canvas properties after the painting process.
As implemented in TControl, AfterPaint does nothing.
TShape descendants of TControl override AfterPaint to restore Dash and Thickness to default values.
</summary></devnotes></procedure>
<property name="PaintPart" visibility="protected" read="FPaintPart" write="SetPaintPart" type="TTabItem.TPaintPart" file="FMX.TabControl.pas" line="243">
<devnotes><summary>
Specifies the part of the page that needs to be painted.
The tab control sets the PaintPart property during painting.
</summary></devnotes>
</property>
<property name="Content" visibility="protected" read="FContent" type="TContent" file="FMX.TabControl.pas" line="245">
<devnotes><summary>
Contains all the controls that you place on the TabItem.
</summary></devnotes>
</property>
<constructor name="Create" visibility="public" file="FMX.TabControl.pas" line="247">
<parameters>
<parameter name="AOwner" type="TComponent"/>
</parameters>
<devnotes><summary>
Allocates memory and constructs a safely initialized instance of a component.
Allocates memory and constructs a safely initialized instance of a component.
FMX.TabControl.TTabItem.Create inherits from System.Classes.TComponent.Create. All content below this line refers to System.Classes.TComponent.Create.
Allocates memory and constructs a safely initialized instance of a component.
All objects have a Create method that constructs the object. TComponent redefines Create so that, for components, Create also:
Establishes the relationship of a component and its Owner, as indicated by the AOwner parameter.
Sets the ComponentStyle property to csInheritable, meaning that the component can be inherited by a descendent form type.
It is not necessary to explicitly create components added in the Form Designer. These components are created automatically when the application is run, and they are destroyed when the application is closed.
For components created programmatically, that is, not created in the Form Designer, call Create and pass in an owner component as the AOwner parameter. The owner disposes of the component when it is destroyed. If the component is not owned, then use Free when it needs to be destroyed.
Tip: When passing in Self as the Owner parameter, consider what Self references. If a component creates another component in one of its methods, then Self refers to the first component and not the component being created, which is then owned by the first component.
Note: The TComponent constructor is virtual in part to allow polymorphic instantiation of class references. This is critical to the streaming system and to the Form Designer. Do not forget to use the override directive when declaring a new component's Create constructor.</summary></devnotes></constructor>
<destructor name="Destroy" visibility="public" file="FMX.TabControl.pas" line="248">
<parameters>
</parameters>
<devnotes><summary>
Disposes of the component and its owned components.
Disposes of the component and its owned components.
FMX.TabControl.TTabItem.Destroy inherits from System.Classes.TComponent.Destroy. All content below this line refers to System.Classes.TComponent.Destroy.
Disposes of the component and its owned components.
Do not call Destroy directly. Call Free instead. Free verifies that the component is not nil, and only then calls Destroy.
Never explicitly free a component in one of its own event handlers, nor free a component from the event handler of a component that it owns or contains.
To destroy a form, call its Release method. Release waits for all the form's event handlers and the event handlers of the form's components to finish executing before destroying the form.
Note: A form owns all the controls and nonvisual components that are placed on it in design mode. When it is freed, all of these components are automatically freed as well. By default, all forms are owned by the global Application object. When an application terminates, it frees the global Application object, which frees all forms. For objects that are not components, and for components created with a nil owner, be sure to call Free after finishing with the object; otherwise the memory allocated for the object will be lost until the application terminates.</summary></devnotes></destructor>
<function name="GetTabList" visibility="public" procflags="override" file="FMX.TabControl.pas" line="249">
<parameters>
<retval type="ITabList"/>
</parameters>
<devnotes><summary>
Embarcadero Technologies does not currently have any additional information.
</summary></devnotes></function>
<property name="TabControl" visibility="public" read="FTabControl" type="TTabControl" file="FMX.TabControl.pas" line="250"><devnotes><summary>
Returns a TTabControl object that holds this tab page.
Note: You cannot access this TTabControl using the TTabItem.Parent property.
</summary></devnotes></property>
<property name="WordWrap" visibility="public" read="GetWordWrap" write="SetWordWrap" type="Boolean" default="0" hoisted="true" file="FMX.TabControl.pas" line="251"/>
<property name="Font" visibility="public" read="GetFont" write="SetFont" type="TFont" hoisted="true" file="FMX.TabControl.pas" line="252"/>
<property name="VertTextAlign" visibility="public" read="GetVertTextAlign" write="SetVertTextAlign" type="TTextAlign" default="0" hoisted="true" file="FMX.TabControl.pas" line="253"/>
<property name="TextAlign" visibility="public" read="GetTextAlign" write="SetTextAlign" type="TTextAlign" default="0" hoisted="true" file="FMX.TabControl.pas" line="254"/>
<property name="Trimming" visibility="public" read="GetTrimming" write="SetTrimming" type="TTextTrimming" default="0" hoisted="true" file="FMX.TabControl.pas" line="255"/>
<property name="ShowAsDot" visibility="public" read="FShowAsDot" write="SetShowAsDot" type="Boolean" file="FMX.TabControl.pas" line="259">
<devnotes><summary>
If ShowAsDot is true, then the StyleLookup property has the value tabdotstyle.
</summary></devnotes>
</property>
<property name="Images" visibility="public" read="GetImages" type="TCustomImageList" file="FMX.TabControl.pas" line="261">
<devnotes><summary>
Defines the reference to a TCustomImageList list of images to be used to draw images on the component.
If the TCustomImageList list is empty, then Images is nil/null.
Call ImagesChanged when Images is changed.
</summary></devnotes>
</property>
<property name="AutoTranslate" visibility="published" read="FAutoTranslate" write="FAutoTranslate" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="264"/>
<property name="AutoSize" visibility="published" read="FAutoSize" write="SetAutoSize" type="Boolean" default="1" file="FMX.TabControl.pas" line="265"><devnotes><summary>
Specifies whether TTabItem header (where the TabItem names appear) is auto-sized based on the length of the Text.
Set the AutoSize property to True to automatically resize the tab item header according to the length of the Text.
Set the AutoSize property to False to lock autoresize of the TTabItem header.
Tip: The size of the TTabItem header readjusts when the Font property changes.</summary></devnotes></property>
<property name="CanFocus" visibility="published" read="FCanFocus" write="FCanFocus" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="266"/>
<property name="ClipChildren" visibility="published" read="FClipChildren" write="SetClipChildren" type="Boolean" default="0" hoisted="true" file="FMX.TabControl.pas" line="267"/>
<property name="ClipParent" visibility="published" read="FClipParent" write="FClipParent" type="Boolean" default="0" hoisted="true" file="FMX.TabControl.pas" line="268"/>
<property name="Cursor" visibility="published" read="GetCursor" write="SetCursor" type="TCursor" default="0" hoisted="true" file="FMX.TabControl.pas" line="269"/>
<property name="CustomIcon" visibility="published" read="FCustomIcon" write="SetCustomIcon" type="TFixedMultiResBitmap" file="FMX.TabControl.pas" line="270"><devnotes><summary>
Specifies custom multi-resolution icons for the tab. This property is of the TFixedMultiResBitmap type.
A TFixedMultiResBitmap multi-resolution bitmap represents a collection of TFixedBitmapItem bitmap items displayed at different scales. You can create a multi-resolution bitmap with the MultiResBitmap Editor.
Mobile applications need to have images of different scales defined for various devices, such as Retina and non-Retina iOS devices.
</summary></devnotes></property>
<property name="DragMode" visibility="published" read="GetDragMode" write="SetDragMode" type="TDragMode" default="0" hoisted="true" file="FMX.TabControl.pas" line="271"/>
<property name="EnableDragHighlight" visibility="published" read="FEnableDragHighlight" write="FEnableDragHighlight" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="272"/>
<property name="Enabled" visibility="published" read="FEnabled" write="SetEnabled" stored="EnabledStored" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="273"/>
<property name="TextSettings" visibility="published" read="GetTextSettings" write="SetTextSettings" type="TTextSettings" hoisted="true" file="FMX.TabControl.pas" line="274"/>
<property name="StyledSettings" visibility="published" read="GetStyledSettings" write="SetStyledSettings" stored="StyledSettingsStored" type="TStyledSettings" hoisted="true" file="FMX.TabControl.pas" line="275"/>
<property name="Locked" visibility="published" read="FLocked" write="SetLocked" type="Boolean" default="0" hoisted="true" file="FMX.TabControl.pas" line="276"/>
<property name="Height" visibility="published" read="GetHeight" write="SetHeight" stored="False" type="Single" hoisted="true" file="FMX.TabControl.pas" line="277"/>
<property name="HelpContext" visibility="published" read="FHelpContext" write="SetHelpContext" stored="IsHelpContextStored" type="THelpContext" default="0" hoisted="true" file="FMX.TabControl.pas" line="278"/>
<property name="HelpKeyword" visibility="published" read="FHelpKeyword" write="SetHelpKeyword" stored="IsHelpContextStored" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="279"/>
<property name="HelpType" visibility="published" read="FHelpType" write="FHelpType" type="THelpType" default="1" hoisted="true" file="FMX.TabControl.pas" line="280"/>
<property name="HitTest" visibility="published" read="FHitTest" write="SetHitTest" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="281"/>
<property name="IsSelected" visibility="published" read="FIsSelected" write="SetIsSelected" type="Boolean" file="FMX.TabControl.pas" line="283"><devnotes><summary>
Property that has the True value when the TTabItem object is selected.
IsSelected is a property of TTabItem that has the Boolean value True if the tab item is selected. Otherwise, it has the Boolean value False.
</summary></devnotes></property>
<property name="Index" visibility="published" read="GetIndex" write="SetIndex" stored="False" type="Integer" hoisted="true" file="FMX.TabControl.pas" line="284"/>
<property name="ImageIndex" visibility="published" read="GetImageIndex" write="SetImageIndex" stored="ImageIndexStored" type="TImageIndex" file="FMX.TabControl.pas" line="288">
<devnotes><summary>
Defines the zero-based index enumerating images in the Images list of images.
If you use a non-existing ImageIndex value to access an image in the Images list, then no image is retrieved and no exception is raised. The usual default value is -1. Call ImagesChanged when ImageIndex is changed.
</summary></devnotes>
</property>
<property name="Padding" visibility="published" read="GetPadding" write="SetPadding" type="TBounds" hoisted="true" file="FMX.TabControl.pas" line="289"/>
<property name="Opacity" visibility="published" read="FOpacity" write="SetOpacity" stored="IsOpacityStored" type="Single" hoisted="true" file="FMX.TabControl.pas" line="290"/>
<property name="Margins" visibility="published" read="GetMargins" write="SetMargins" type="TBounds" hoisted="true" file="FMX.TabControl.pas" line="291"/>
<property name="PopupMenu" visibility="published" read="FPopupMenu" write="SetPopupMenu" stored="IsPopupMenuStored" type="TCustomPopupMenu" hoisted="true" file="FMX.TabControl.pas" line="292"/>
<property name="Scale" visibility="published" read="GetScale" write="SetScale" type="TPosition" hoisted="true" file="FMX.TabControl.pas" line="293"/>
<property name="Size" visibility="published" read="FSize" write="SetSize" stored="IsSizeStored" type="TControlSize" hoisted="true" file="FMX.TabControl.pas" line="294"/>
<property name="StyleLookup" visibility="published" read="GetStyleLookup" write="SetStyleLookup" type="string" file="FMX.TabControl.pas" line="297">
<devnotes><summary>
Name of the ressource object, to which the current TStyledControl is linked.
If ShowAsDot is True, the name of the ressource object is "tabdotstyle" and you cannot overwrite it. To use a custom resource object name, first ensure that the value of ShowAsDot is False.
For more information, see TStyledControl.StyleLookup.
</summary></devnotes>
</property>
<property name="TabOrder" visibility="published" read="GetTabOrder" write="SetTabOrder" type="TTabOrder" default="-1" hoisted="true" file="FMX.TabControl.pas" line="298"/>
<property name="TabStop" visibility="published" read="GetTabStop" write="SetTabStop" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="299"/>
<property name="Text" visibility="published" read="GetText" write="SetText" stored="TextStored" type="string" default="0" hoisted="true" file="FMX.TabControl.pas" line="300"/>
<property name="TouchTargetExpansion" visibility="published" read="FTouchTargetExpansion" write="SetTouchTargetExpansion" type="TBounds" hoisted="true" file="FMX.TabControl.pas" line="301"/>
<property name="Visible" visibility="published" read="FVisible" write="SetVisible" stored="VisibleStored" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="302"/>
<property name="Width" visibility="published" read="GetWidth" write="SetWidth" stored="False" type="Single" hoisted="true" file="FMX.TabControl.pas" line="303"/>
<property name="ParentShowHint" visibility="published" read="FParentShowHint" write="SetParentShowHint" type="Boolean" default="1" hoisted="true" file="FMX.TabControl.pas" line="304"/>
<event name="OnApplyStyleLookup" visibility="published" read="FOnApplyStyleLookup" write="FOnApplyStyleLookup" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="305"/>
<event name="OnDragEnter" visibility="published" read="FOnDragEnter" write="FOnDragEnter" type="TDragEnterEvent" hoisted="true" file="FMX.TabControl.pas" line="306"/>
<event name="OnDragLeave" visibility="published" read="FOnDragLeave" write="FOnDragLeave" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="307"/>
<event name="OnDragOver" visibility="published" read="FOnDragOver" write="FOnDragOver" type="TDragOverEvent" hoisted="true" file="FMX.TabControl.pas" line="308"/>
<event name="OnDragDrop" visibility="published" read="FOnDragDrop" write="FOnDragDrop" type="TDragDropEvent" hoisted="true" file="FMX.TabControl.pas" line="309"/>
<event name="OnDragEnd" visibility="published" read="FOnDragEnd" write="FOnDragEnd" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="310"/>
<event name="OnClick" visibility="published" read="FOnClick" write="SetOnClick" stored="OnClickStored" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="311"/>
<event name="OnDblClick" visibility="published" read="FOnDblClick" write="FOnDblClick" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="312"/>
<event name="OnMouseDown" visibility="published" read="FOnMouseDown" write="FOnMouseDown" type="TMouseEvent" hoisted="true" file="FMX.TabControl.pas" line="313"/>
<event name="OnMouseMove" visibility="published" read="FOnMouseMove" write="FOnMouseMove" type="TMouseMoveEvent" hoisted="true" file="FMX.TabControl.pas" line="314"/>
<event name="OnMouseUp" visibility="published" read="FOnMouseUp" write="FOnMouseUp" type="TMouseEvent" hoisted="true" file="FMX.TabControl.pas" line="315"/>
<event name="OnMouseWheel" visibility="published" read="FOnMouseWheel" write="FOnMouseWheel" type="TMouseWheelEvent" hoisted="true" file="FMX.TabControl.pas" line="316"/>
<event name="OnMouseEnter" visibility="published" read="FOnMouseEnter" write="FOnMouseEnter" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="317"/>
<event name="OnMouseLeave" visibility="published" read="FOnMouseLeave" write="FOnMouseLeave" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="318"/>
<event name="OnPainting" visibility="published" read="FOnPainting" write="FOnPainting" type="TOnPaintEvent" hoisted="true" file="FMX.TabControl.pas" line="319"/>
<event name="OnPaint" visibility="published" read="FOnPaint" write="FOnPaint" type="TOnPaintEvent" hoisted="true" file="FMX.TabControl.pas" line="320"/>
<event name="OnResize" visibility="published" read="FOnResize" write="FOnResize" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="321"/>
<event name="OnResized" visibility="published" read="FOnResized" write="FOnResized" type="TNotifyEvent" hoisted="true" file="FMX.TabControl.pas" line="322"/>
</members>
<devnotes><summary>
TTabItem is a tab item in a TTabControl component. A TTabControl contains one or more TTabItem objects.
The Text property can be used to define an accelerator key to the control.
</summary></devnotes></class>
<enum name="TTabPosition" file="FMX.TabControl.pas" line="327">
<element value="0" name="Top" file="FMX.TabControl.pas" line="327"/>
<element value="1" name="Bottom" file="FMX.TabControl.pas" line="327"/>
<element value="2" name="None" file="FMX.TabControl.pas" line="327"/>
<element value="3" name="Dots" file="FMX.TabControl.pas" line="327"/>
<element value="4" name="PlatformDefault" file="FMX.TabControl.pas" line="327"/>
</enum>
<class name="TTabControl" file="FMX.TabControl.pas" line="329">
<interfaces>
<implements name="IGlyph"/>
<implements name="IItemsContainer"/>
</interfaces>
<members>
<enum name="TFindKind" visibility="public" alias="FMX.TabControl.TFindKind" file="FMX.TabControl.pas" line="331">
<element value="0" name="Next" file="FMX.TabControl.pas" line="331"/>
<element value="1" name="Back" file="FMX.TabControl.pas" line="331"/>
<element value="2" name="First" file="FMX.TabControl.pas" line="331"/>
<element value="3" name="Last" file="FMX.TabControl.pas" line="331"/>
<element value="4" name="Current" file="FMX.TabControl.pas" line="331"/>
</enum>
<enum name="TTabBarButton" visibility="public" alias="FMX.TabControl.TTabBarButton" file="FMX.TabControl.pas" line="332">
<element value="0" name="Left" file="FMX.TabControl.pas" line="332"/>
<element value="1" name="Right" file="FMX.TabControl.pas" line="332"/>
</enum>
<set name="TTabBarButtons" visibility="public" alias="FMX.TabControl.TTabBarButtons" type="TTabControl.TTabBarButton" file="FMX.TabControl.pas" line="333">
<element name="Left"/>
<element name="Right"/>
</set>
<array name="TArrayTabBarControls" visibility="public" alias="FMX.TabControl.TArrayTabBarControls" file="FMX.TabControl.pas" line="334">
<element type="TControl"/>
</array>
<const name="DefaultButtons" visibility="public" type="Set" file="FMX.TabControl.pas" line="353">
<value>
[Left..Right]
</value>
</const>
<field name="ButtonStyleNames" type=":TTabControl.:1" visibility="public" varflags="class" file="FMX.TabControl.pas" line="338">