summaryrefslogtreecommitdiff
path: root/docs/html/gui.cnt
blob: 2052217790bdd765243b354e094faccd6538b7c8 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
# FPDoc Content File
:link tree
#fpgui index.html
 fpGUI fpgui/index.html
  mbText_Yes fpgui/index-1.html#mbtext_yes
  mbText_No fpgui/index-1.html#mbtext_no
  mbText_Ok fpgui/index-1.html#mbtext_ok
  mbText_Cancel fpgui/index-1.html#mbtext_cancel
  mbText_Apply fpgui/index-1.html#mbtext_apply
  mbText_Abort fpgui/index-1.html#mbtext_abort
  mbText_Retry fpgui/index-1.html#mbtext_retry
  mbText_Ignore fpgui/index-1.html#mbtext_ignore
  mbText_All fpgui/index-1.html#mbtext_all
  mbText_NoToAll fpgui/index-1.html#mbtext_notoall
  mbText_YesToAll fpgui/index-1.html#mbtext_yestoall
  mbText_Help fpgui/index-1.html#mbtext_help
  InfiniteSize fpgui/infinitesize.html
  clScrollBar fpgui/clscrollbar.html
  clMenu fpgui/clmenu.html
  clWindow fpgui/clwindow.html
  clMenuText fpgui/clmenutext.html
  clWindowText fpgui/clwindowtext.html
  clAppWorkSpace fpgui/clappworkspace.html
  clHighlight fpgui/clhighlight.html
  clHighlightText fpgui/clhighlighttext.html
  cl3DFace fpgui/cl3dface.html
  cl3DShadow fpgui/cl3dshadow.html
  clGrayText fpgui/clgraytext.html
  clBtnText fpgui/clbtntext.html
  cl3DHighlight fpgui/cl3dhighlight.html
  cl3DDkShadow fpgui/cl3ddkshadow.html
  cl3DLight fpgui/cl3dlight.html
  clInfoText fpgui/clinfotext.html
  clInfoBk fpgui/clinfobk.html
  clBlack fpgui/clblack.html
  clMaroon fpgui/clmaroon.html
  clGreen fpgui/clgreen.html
  clOlive fpgui/clolive.html
  clNavy fpgui/clnavy.html
  clPurple fpgui/clpurple.html
  clTeal fpgui/clteal.html
  clGray fpgui/clgray.html
  clSilver fpgui/clsilver.html
  clRed fpgui/clred.html
  clLime fpgui/cllime.html
  clYellow fpgui/clyellow.html
  clBlue fpgui/clblue.html
  clFuchsia fpgui/clfuchsia.html
  clAqua fpgui/claqua.html
  clLtGray fpgui/clltgray.html
  clDkGray fpgui/cldkgray.html
  clWhite fpgui/clwhite.html
  clCream fpgui/clcream.html
  clMoneyGreen fpgui/clmoneygreen.html
  clSkyBlue fpgui/clskyblue.html
  clBtnFace fpgui/clbtnface.html
  clBtnShadow fpgui/clbtnshadow.html
  clBtnHighlight fpgui/clbtnhighlight.html
  clCyan fpgui/clcyan.html
  clMagenta fpgui/clmagenta.html
  clAliceBlue fpgui/claliceblue.html
  clAntiqueWhite fpgui/clantiquewhite.html
  clAquamarine fpgui/claquamarine.html
  clAzure fpgui/clazure.html
  clBeige fpgui/clbeige.html
  clBisque fpgui/clbisque.html
  clBlanchedAlmond fpgui/clblanchedalmond.html
  clBlueViolet fpgui/clblueviolet.html
  clBrown fpgui/clbrown.html
  clBurlyWood fpgui/clburlywood.html
  clCadetBlue fpgui/clcadetblue.html
  clChartreuse fpgui/clchartreuse.html
  clChocolate fpgui/clchocolate.html
  clMedGray fpgui/clmedgray.html
  clForestGreen fpgui/clforestgreen.html
  clRoyalBlue fpgui/clroyalblue.html
  clLightYellow fpgui/cllightyellow.html
  clCornsilk fpgui/clcornsilk.html
  clMidnightBlue fpgui/clmidnightblue.html
  clDarkWhite fpgui/cldarkwhite.html
  clLemonChiffon fpgui/cllemonchiffon.html
  clLightGrey fpgui/cllightgrey.html
  TColor fpgui/tcolor.html
  TWidgetState fpgui/twidgetstate.html
  TOrientation fpgui/torientation.html
  TButtonFlags fpgui/tbuttonflags.html
  TCheckboxFlags fpgui/tcheckboxflags.html
  TMsgDlgBtn fpgui/tmsgdlgbtn.html
  TMsgDlgButtons fpgui/tmsgdlgbuttons.html
  TBevelStyle fpgui/tbevelstyle.html
  TBevelShape fpgui/tbevelshape.html
  TItemFlags fpgui/titemflags.html
  TArrowDirection fpgui/tarrowdirection.html
  TEventClass fpgui/teventclass.html
  TWidgetStyle fpgui/twidgetstyle.html
  THorzAlign fpgui/thorzalign.html
  TVertAlign fpgui/tvertalign.html
  TWidgetArrayInfo fpgui/twidgetarrayinfo.html
  TWidgetArrayInfoArray fpgui/twidgetarrayinfoarray.html
  PWidgetArrayInfoArray fpgui/pwidgetarrayinfoarray.html
  TDockingMode fpgui/tdockingmode.html
  TScrollEvent fpgui/tscrollevent.html
  TGridDrawState fpgui/tgriddrawstate.html
  TDrawCellEvent fpgui/tdrawcellevent.html
  PCells fpgui/pcells.html
  TCells fpgui/tcells.html
  TStyleAbs fpgui/tstyleabs.html
   UIColorCache fpgui/tstyleabs.uicolorcache.html
   Create fpgui/tstyleabs.create.html
   UpdateUIColorCache fpgui/tstyleabs.updateuicolorcache.html
   GetGUIColor fpgui/tstyleabs.getguicolor.html
   GetUIColor fpgui/tstyleabs.getuicolor.html
   SetUIColor fpgui/tstyleabs.setuicolor.html
   DrawText fpgui/tstyleabs.drawtext.html
   DrawItemBefore fpgui/tstyleabs.drawitembefore.html
   DrawItemAfter fpgui/tstyleabs.drawitemafter.html
   Draw3DFrame fpgui/tstyleabs.draw3dframe.html
   DrawFocusRect fpgui/tstyleabs.drawfocusrect.html
   DrawSunkenOuterBorder fpgui/tstyleabs.drawsunkenouterborder.html
   DrawRaisedOuterBorder fpgui/tstyleabs.drawraisedouterborder.html
   DrawWindowBackground fpgui/tstyleabs.drawwindowbackground.html
   DrawButtonFace fpgui/tstyleabs.drawbuttonface.html
   GetButtonBorders fpgui/tstyleabs.getbuttonborders.html
   GetSeparatorSize fpgui/tstyleabs.getseparatorsize.html
   DrawSeparator fpgui/tstyleabs.drawseparator.html
   DrawGroupBox fpgui/tstyleabs.drawgroupbox.html
   GetGroupBoxBorders fpgui/tstyleabs.getgroupboxborders.html
   DrawEditBox fpgui/tstyleabs.draweditbox.html
   GetEditBoxBorders fpgui/tstyleabs.geteditboxborders.html
   DrawCheckBox fpgui/tstyleabs.drawcheckbox.html
   GetCheckBoxLayout fpgui/tstyleabs.getcheckboxlayout.html
   DrawRadioButton fpgui/tstyleabs.drawradiobutton.html
   GetRadioButtonLayout fpgui/tstyleabs.getradiobuttonlayout.html
   GetComboBoxArrowSize fpgui/tstyleabs.getcomboboxarrowsize.html
   DrawComboBoxArrow fpgui/tstyleabs.drawcomboboxarrow.html
   GetComboBoxBtnSize fpgui/tstyleabs.getcomboboxbtnsize.html
   GetScrollBarBorders fpgui/tstyleabs.getscrollbarborders.html
   GetScrollBarBtnSize fpgui/tstyleabs.getscrollbarbtnsize.html
   GetScrollBarBtnMinSize fpgui/tstyleabs.getscrollbarbtnminsize.html
   DrawScrollBarBorder fpgui/tstyleabs.drawscrollbarborder.html
   DrawScrollBarButton fpgui/tstyleabs.drawscrollbarbutton.html
   GetScrollBoxBorders fpgui/tstyleabs.getscrollboxborders.html
   DrawScrollBoxBorder fpgui/tstyleabs.drawscrollboxborder.html
   GetMenuBorders fpgui/tstyleabs.getmenuborders.html
   GetPanelBorders fpgui/tstyleabs.getpanelborders.html
   DrawPanel fpgui/tstyleabs.drawpanel.html
  TBasicStyle fpgui/tbasicstyle.html
   DrawDirectionArrows fpgui/tbasicstyle.drawdirectionarrows.html
   DrawCheckBoxCheck fpgui/tbasicstyle.drawcheckboxcheck.html
   GetGUIColor fpgui/tstyleabs.getguicolor.html
   DrawText fpgui/tstyleabs.drawtext.html
   DrawItemBefore fpgui/tstyleabs.drawitembefore.html
   DrawItemAfter fpgui/tstyleabs.drawitemafter.html
   Draw3DFrame fpgui/tstyleabs.draw3dframe.html
   DrawFocusRect fpgui/tstyleabs.drawfocusrect.html
   DrawSunkenOuterBorder fpgui/tstyleabs.drawsunkenouterborder.html
   DrawRaisedOuterBorder fpgui/tbasicstyle.drawraisedouterborder.html
   DrawWindowBackground fpgui/tstyleabs.drawwindowbackground.html
   DrawButtonFace fpgui/tstyleabs.drawbuttonface.html
   GetButtonBorders fpgui/tstyleabs.getbuttonborders.html
   DrawSeparator fpgui/tstyleabs.drawseparator.html
   GetSeparatorSize fpgui/tstyleabs.getseparatorsize.html
   DrawGroupBox fpgui/tstyleabs.drawgroupbox.html
   GetGroupBoxBorders fpgui/tstyleabs.getgroupboxborders.html
   DrawEditBox fpgui/tstyleabs.draweditbox.html
   GetEditBoxBorders fpgui/tstyleabs.geteditboxborders.html
   DrawCheckBox fpgui/tstyleabs.drawcheckbox.html
   GetCheckBoxLayout fpgui/tstyleabs.getcheckboxlayout.html
   DrawRadioButton fpgui/tstyleabs.drawradiobutton.html
   GetRadioButtonLayout fpgui/tstyleabs.getradiobuttonlayout.html
   DrawComboBoxArrow fpgui/tstyleabs.drawcomboboxarrow.html
   GetComboBoxArrowSize fpgui/tstyleabs.getcomboboxarrowsize.html
   GetComboBoxBtnSize fpgui/tbasicstyle.getcomboboxbtnsize.html
   GetScrollBarBorders fpgui/tstyleabs.getscrollbarborders.html
   GetScrollBarBtnSize fpgui/tstyleabs.getscrollbarbtnsize.html
   GetScrollBarBtnMinSize fpgui/tstyleabs.getscrollbarbtnminsize.html
   DrawScrollBarBorder fpgui/tstyleabs.drawscrollbarborder.html
   DrawScrollBarButton fpgui/tstyleabs.drawscrollbarbutton.html
   GetScrollBoxBorders fpgui/tstyleabs.getscrollboxborders.html
   DrawScrollBoxBorder fpgui/tstyleabs.drawscrollboxborder.html
   GetMenuBorders fpgui/tstyleabs.getmenuborders.html
   GetPanelBorders fpgui/tbasicstyle.getpanelborders.html
   DrawPanel fpgui/tbasicstyle.drawpanel.html
  TEventObj fpgui/teventobj.html
   Create fpgui/teventobj.create.html
   AddRef fpgui/teventobj.addref.html
   Release fpgui/teventobj.release.html
   SendToChild fpgui/teventobj.sendtochild.html
   Sender fpgui/teventobj.sender.html
  TLayoutingEventObj fpgui/tlayoutingeventobj.html
  TCalcSizesEventObj fpgui/tcalcsizeseventobj.html
  TResizedEventObj fpgui/tresizedeventobj.html
   Create fpgui/tresizedeventobj.create.html
   IsForced fpgui/tresizedeventobj.isforced.html
  TDestroyEventObj fpgui/tdestroyeventobj.html
  TEnabledChangeEventObj fpgui/tenabledchangeeventobj.html
  TVisibilityChangeEventObj fpgui/tvisibilitychangeeventobj.html
  TPaintingEventObj fpgui/tpaintingeventobj.html
   Create fpgui/tpaintingeventobj.create.html
   Canvas fpgui/tpaintingeventobj.canvas.html
  TPreparePaintEventObj fpgui/tpreparepainteventobj.html
   SendToChild fpgui/tpreparepainteventobj.sendtochild.html
  TPaintEventObj fpgui/tpainteventobj.html
   SendToChild fpgui/tpainteventobj.sendtochild.html
  TMouseEventObj fpgui/tmouseeventobj.html
   Create fpgui/tmouseeventobj.create.html
   SendToChild fpgui/tmouseeventobj.sendtochild.html
   Position fpgui/tmouseeventobj.position.html
   Shift fpgui/tmouseeventobj.shift.html
  TMouseButtonEventObj fpgui/tmousebuttoneventobj.html
   Create fpgui/tmousebuttoneventobj.create.html
   Button fpgui/tmousebuttoneventobj.button.html
  TMousePressedEventObj fpgui/tmousepressedeventobj.html
  TMouseReleasedEventObj fpgui/tmousereleasedeventobj.html
  TMouseMoveEventObj fpgui/tmousemoveeventobj.html
   SendToChild fpgui/tmousemoveeventobj.sendtochild.html
  TMouseEnterEventObj fpgui/tmouseentereventobj.html
   NewCursor fpgui/tmouseentereventobj.newcursor.html
  TMouseLeaveEventObj fpgui/tmouseleaveeventobj.html
   SendToChild fpgui/tmouseleaveeventobj.sendtochild.html
  TMouseLeaveCheckEventObj fpgui/tmouseleavecheckeventobj.html
   SendToChild fpgui/tmouseleavecheckeventobj.sendtochild.html
   NewCursor fpgui/tmouseleavecheckeventobj.newcursor.html
  TMouseWheelEventObj fpgui/tmousewheeleventobj.html
   Create fpgui/tmousewheeleventobj.create.html
   WheelDelta fpgui/tmousewheeleventobj.wheeldelta.html
  TWidget fpgui/twidget.html
   FCursor fpgui/twidget.fcursor.html
   FText fpgui/twidget.ftext.html
   FStyle fpgui/twidget.fstyle.html
   FCanExpandHeight fpgui/twidget.fcanexpandheight.html
   FCanExpandWidth fpgui/twidget.fcanexpandwidth.html
   FEnabled fpgui/twidget.fenabled.html
   FVisible fpgui/twidget.fvisible.html
   FOrigin fpgui/twidget.forigin.html
   FBoundsSize fpgui/twidget.fboundssize.html
   FClientRect fpgui/twidget.fclientrect.html
   FMinSize fpgui/twidget.fminsize.html
   FMaxSize fpgui/twidget.fmaxsize.html
   FDefSize fpgui/twidget.fdefsize.html
   WidgetStyle fpgui/twidget.widgetstyle.html
   WidgetState fpgui/twidget.widgetstate.html
   Loaded fpgui/twidget.loaded.html
   Click fpgui/twidget.click.html
   Paint fpgui/twidget.paint.html
   SetParentComponent fpgui/twidget.setparentcomponent.html
   CalcSizes fpgui/twidget.calcsizes.html
   Resized fpgui/twidget.resized.html
   ProcessEvent fpgui/twidget.processevent.html
   DistributeEvent fpgui/twidget.distributeevent.html
   EvFocusChanged fpgui/twidget.evfocuschanged.html
   EvKeyPressed fpgui/twidget.evkeypressed.html
   EvKeyReleased fpgui/twidget.evkeyreleased.html
   EvKeyChar fpgui/twidget.evkeychar.html
   EvTextChanged fpgui/twidget.evtextchanged.html
   DoMouseEnter fpgui/twidget.domouseenter.html
   GetStyle fpgui/twidget.getstyle.html
   SetCanExpandWidth fpgui/twidget.setcanexpandwidth.html
   SetCanExpandHeight fpgui/twidget.setcanexpandheight.html
   SetText fpgui/twidget.settext.html
   CanExpandWidth fpgui/twidget.canexpandwidth.html
   CanExpandHeight fpgui/twidget.canexpandheight.html
   Cursor fpgui/twidget.cursor.html
   Text fpgui/twidget.text.html
   Color fpgui/twidget.color.html
   OnClick fpgui/twidget.onclick.html
   Create fpgui/twidget.create.html
   Destroy fpgui/twidget.destroy.html
   SendEvent fpgui/twidget.sendevent.html
   FindForm fpgui/twidget.findform.html
   SetEmbeddedParent fpgui/twidget.setembeddedparent.html
   SetBounds fpgui/twidget.setbounds.html
   WidgetToClient fpgui/twidget.widgettoclient.html
   ClientToWidget fpgui/twidget.clienttowidget.html
   ClientToScreen fpgui/twidget.clienttoscreen.html
   Show fpgui/twidget.show.html
   Hide fpgui/twidget.hide.html
   Redraw fpgui/twidget.redraw.html
   Scroll fpgui/twidget.scroll.html
   SetFocus fpgui/twidget.setfocus.html
   Update fpgui/twidget.update.html
   Parent fpgui/twidget.parent.html
   Origin fpgui/twidget.origin.html
   BoundsSize fpgui/twidget.boundssize.html
   BoundsRect fpgui/twidget.boundsrect.html
   Left fpgui/twidget.left.html
   Top fpgui/twidget.top.html
   Width fpgui/twidget.width.html
   Height fpgui/twidget.height.html
   MinSize fpgui/twidget.minsize.html
   MaxSize fpgui/twidget.maxsize.html
   DefSize fpgui/twidget.defsize.html
   ClientRect fpgui/twidget.clientrect.html
   Style fpgui/twidget.style.html
   Enabled fpgui/twidget.enabled.html
   Visible fpgui/twidget.visible.html
  TContainerWidget fpgui/tcontainerwidget.html
   DistributeEvent fpgui/tcontainerwidget.distributeevent.html
   GetChildCount fpgui/tcontainerwidget.getchildcount.html
   GetChild fpgui/tcontainerwidget.getchild.html
   ChildCount fpgui/tcontainerwidget.childcount.html
   Children fpgui/tcontainerwidget.children.html
   InsertChild fpgui/tcontainerwidget.insertchild.html
   RemoveChild fpgui/tcontainerwidget.removechild.html
   GetChildAt fpgui/tcontainerwidget.getchildat.html
   ContainsChild fpgui/tcontainerwidget.containschild.html
  TBinWidget fpgui/tbinwidget.html
   FChild fpgui/tbinwidget.fchild.html
   SetChild fpgui/tbinwidget.setchild.html
   GetChildCount fpgui/tbinwidget.getchildcount.html
   GetChild fpgui/tbinwidget.getchild.html
   CalcSizes fpgui/tbinwidget.calcsizes.html
   Child fpgui/tbinwidget.child.html
   ContainsChild fpgui/tbinwidget.containschild.html
   InsertChild fpgui/tbinwidget.insertchild.html
   RemoveChild fpgui/tbinwidget.removechild.html
  ELayoutError fpgui/elayouterror.html
  TLayoutItem fpgui/tlayoutitem.html
   Widget fpgui/tlayoutitem.widget.html
  TLayout fpgui/tlayout.html
   FWidgets fpgui/tlayout.fwidgets.html
   FBorderSpacing fpgui/tlayout.fborderspacing.html
   IsRecalcingLayout fpgui/tlayout.isrecalcinglayout.html
   GetChildCount fpgui/tlayout.getchildcount.html
   GetChild fpgui/tlayout.getchild.html
   BorderSpacing fpgui/tlayout.borderspacing.html
   Create fpgui/tlayout.create.html
   Destroy fpgui/tlayout.destroy.html
   ContainsChild fpgui/tlayout.containschild.html
  TFixedItem fpgui/tfixeditem.html
   Left fpgui/tfixeditem.left.html
   Top fpgui/tfixeditem.top.html
  TFixedLayout fpgui/tfixedlayout.html
   CalcSizes fpgui/tfixedlayout.calcsizes.html
   Create fpgui/tfixedlayout.create.html
   AddWidget fpgui/tfixedlayout.addwidget.html
   MoveWidget fpgui/tfixedlayout.movewidget.html
   Enabled fpgui/tfixedlayout.enabled.html
  TDockingItem fpgui/tdockingitem.html
   Left fpgui/tdockingitem.left.html
   Top fpgui/tdockingitem.top.html
   DockingMode fpgui/tdockingitem.dockingmode.html
  TDockingLayout fpgui/tdockinglayout.html
   CalcSizes fpgui/tdockinglayout.calcsizes.html
   Create fpgui/tdockinglayout.create.html
   AddWidget fpgui/tdockinglayout.addwidget.html
   Enabled fpgui/tdockinglayout.enabled.html
  TCustomBoxLayout fpgui/tcustomboxlayout.html
   CalcSizes fpgui/tcustomboxlayout.calcsizes.html
   Resized fpgui/tcustomboxlayout.resized.html
   HorzAlign fpgui/tcustomboxlayout.horzalign.html
   VertAlign fpgui/tcustomboxlayout.vertalign.html
   Orientation fpgui/tcustomboxlayout.orientation.html
   Spacing fpgui/tcustomboxlayout.spacing.html
   Create fpgui/tcustomboxlayout.create.html
   InsertChild fpgui/tcustomboxlayout.insertchild.html
   RemoveChild fpgui/tcustomboxlayout.removechild.html
  TBoxLayout fpgui/tboxlayout.html
   CanExpandWidth fpgui/tboxlayout.canexpandwidth.html
   CanExpandHeight fpgui/tboxlayout.canexpandheight.html
   Enabled fpgui/tboxlayout.enabled.html
   BorderSpacing fpgui/tboxlayout.borderspacing.html
   HorzAlign fpgui/tboxlayout.horzalign.html
   Orientation fpgui/tboxlayout.orientation.html
   Spacing fpgui/tboxlayout.spacing.html
   VertAlign fpgui/tboxlayout.vertalign.html
  TGridItem fpgui/tgriditem.html
   Create fpgui/tgriditem.create.html
   x fpgui/tgriditem.x.html
   y fpgui/tgriditem.y.html
   Width fpgui/tgriditem.width.html
   Height fpgui/tgriditem.height.html
  TCustomGridLayout fpgui/tcustomgridlayout.html
   InitSizeInfos fpgui/tcustomgridlayout.initsizeinfos.html
   CalcSizes fpgui/tcustomgridlayout.calcsizes.html
   Resized fpgui/tcustomgridlayout.resized.html
   GridPositions fpgui/tcustomgridlayout.gridpositions.html
   ColCount fpgui/tcustomgridlayout.colcount.html
   RowCount fpgui/tcustomgridlayout.rowcount.html
   ColSpacing fpgui/tcustomgridlayout.colspacing.html
   RowSpacing fpgui/tcustomgridlayout.rowspacing.html
   Create fpgui/tcustomgridlayout.create.html
   AddWidget fpgui/tcustomgridlayout.addwidget.html
   MoveWidget fpgui/tcustomgridlayout.movewidget.html
  TGridLayout fpgui/tgridlayout.html
   Enabled fpgui/tgridlayout.enabled.html
   ColCount fpgui/tgridlayout.colcount.html
   RowCount fpgui/tgridlayout.rowcount.html
   ColSpacing fpgui/tgridlayout.colspacing.html
   RowSpacing fpgui/tgridlayout.rowspacing.html
   GridPositions fpgui/tgridlayout.gridpositions.html
  TCustomForm fpgui/tcustomform.html
   FBorderWidth fpgui/tcustomform.fborderwidth.html
   FIsActive fpgui/tcustomform.fisactive.html
   FResizedByUser fpgui/tcustomform.fresizedbyuser.html
   FPositionSpecified fpgui/tcustomform.fpositionspecified.html
   Loaded fpgui/tcustomform.loaded.html
   Paint fpgui/tcustomform.paint.html
   Resized fpgui/tcustomform.resized.html
   WidgetCoords fpgui/tcustomform.widgetcoords.html
   ProcessEvent fpgui/tcustomform.processevent.html
   CalcSizes fpgui/tcustomform.calcsizes.html
   EvTextChanged fpgui/tcustomform.evtextchanged.html
   CreateWnd fpgui/tcustomform.createwnd.html
   CanExpandWidth fpgui/tcustomform.canexpandwidth.html
   CanExpandHeight fpgui/tcustomform.canexpandheight.html
   Cursor fpgui/tcustomform.cursor.html
   BorderWidth fpgui/tcustomform.borderwidth.html
   OnCreate fpgui/tcustomform.oncreate.html
   OnDestroy fpgui/tcustomform.ondestroy.html
   OnActivate fpgui/tcustomform.onactivate.html
   OnDeactivate fpgui/tcustomform.ondeactivate.html
   Create fpgui/tcustomform.create.html
   Destroy fpgui/tcustomform.destroy.html
   Show fpgui/tcustomform.show.html
   ShowModal fpgui/tcustomform.showmodal.html
   Close fpgui/tcustomform.close.html
   SetPosition fpgui/tcustomform.setposition.html
   FocusedWidget fpgui/tcustomform.focusedwidget.html
   IsActive fpgui/tcustomform.isactive.html
   MouseCaptureWidget fpgui/tcustomform.mousecapturewidget.html
   WindowOptions fpgui/tcustomform.windowoptions.html
   Wnd fpgui/tcustomform.wnd.html
  TForm fpgui/tform.html
   BorderWidth fpgui/tform.borderwidth.html
   Color fpgui/tform.color.html
   Enabled fpgui/tform.enabled.html
   Text fpgui/tform.text.html
   WindowOptions fpgui/tform.windowoptions.html
   OnCreate fpgui/tform.oncreate.html
   OnDestroy fpgui/tform.ondestroy.html
   OnActivate fpgui/tform.onactivate.html
   OnDeactivate fpgui/tform.ondeactivate.html
  TPopupWindow fpgui/tpopupwindow.html
   Create fpgui/tpopupwindow.create.html
   Show fpgui/tpopupwindow.show.html
   Close fpgui/tpopupwindow.close.html
  TCustomLabel fpgui/tcustomlabel.html
   FAlignment fpgui/tcustomlabel.falignment.html
   Paint fpgui/tcustomlabel.paint.html
   CalcSizes fpgui/tcustomlabel.calcsizes.html
   Alignment fpgui/tcustomlabel.alignment.html
   FontColor fpgui/tcustomlabel.fontcolor.html
   Create fpgui/tcustomlabel.create.html
  TLabel fpgui/tlabel.html
   CanExpandWidth fpgui/tlabel.canexpandwidth.html
   Enabled fpgui/tlabel.enabled.html
   FontColor fpgui/tlabel.fontcolor.html
   Text fpgui/tlabel.text.html
   Alignment fpgui/tlabel.alignment.html
  TCustomEdit fpgui/tcustomedit.html
   Paint fpgui/tcustomedit.paint.html
   ProcessEvent fpgui/tcustomedit.processevent.html
   CalcSizes fpgui/tcustomedit.calcsizes.html
   EvKeyPressed fpgui/tcustomedit.evkeypressed.html
   EvKeyChar fpgui/tcustomedit.evkeychar.html
   EvTextChanged fpgui/tcustomedit.evtextchanged.html
   CanExpandWidth fpgui/tcustomedit.canexpandwidth.html
   Cursor fpgui/tcustomedit.cursor.html
   PasswordChar fpgui/tcustomedit.passwordchar.html
   CursorPos fpgui/tcustomedit.cursorpos.html
   OnChange fpgui/tcustomedit.onchange.html
   FontColor fpgui/tcustomedit.fontcolor.html
   SetText fpgui/tcustomedit.settext.html
   Create fpgui/tcustomedit.create.html
  TEdit fpgui/tedit.html
   CanExpandWidth fpgui/tedit.canexpandwidth.html
   Enabled fpgui/tedit.enabled.html
   PasswordChar fpgui/tedit.passwordchar.html
   Text fpgui/tedit.text.html
   OnChange fpgui/tedit.onchange.html
   FontColor fpgui/tedit.fontcolor.html
  TGenericButton fpgui/tgenericbutton.html
   FEmbedded fpgui/tgenericbutton.fembedded.html
   Paint fpgui/tgenericbutton.paint.html
   Create fpgui/tgenericbutton.create.html
   Embedded fpgui/tgenericbutton.embedded.html
  TCustomButton fpgui/tcustombutton.html
   Paint fpgui/tcustombutton.paint.html
   CalcSizes fpgui/tcustombutton.calcsizes.html
   Create fpgui/tcustombutton.create.html
  TButton fpgui/tbutton.html
   CanExpandWidth fpgui/tbutton.canexpandwidth.html
   CanExpandHeight fpgui/tbutton.canexpandheight.html
   Enabled fpgui/tbutton.enabled.html
   Text fpgui/tbutton.text.html
   OnClick fpgui/tbutton.onclick.html
  TCustomScrollBar fpgui/tcustomscrollbar.html
   DistributeEvent fpgui/tcustomscrollbar.distributeevent.html
   Paint fpgui/tcustomscrollbar.paint.html
   CalcSizes fpgui/tcustomscrollbar.calcsizes.html
   Resized fpgui/tcustomscrollbar.resized.html
   Orientation fpgui/tcustomscrollbar.orientation.html
   Min fpgui/tcustomscrollbar.min.html
   Max fpgui/tcustomscrollbar.max.html
   PageSize fpgui/tcustomscrollbar.pagesize.html
   Position fpgui/tcustomscrollbar.position.html
   SmallChange fpgui/tcustomscrollbar.smallchange.html
   LargeChange fpgui/tcustomscrollbar.largechange.html
   OnChange fpgui/tcustomscrollbar.onchange.html
   OnScroll fpgui/tcustomscrollbar.onscroll.html
   Create fpgui/tcustomscrollbar.create.html
   LineUp fpgui/tcustomscrollbar.lineup.html
   LineDown fpgui/tcustomscrollbar.linedown.html
   PageUp fpgui/tcustomscrollbar.pageup.html
   PageDown fpgui/tcustomscrollbar.pagedown.html
  TScrollBar fpgui/tscrollbar.html
   Enabled fpgui/tscrollbar.enabled.html
   Orientation fpgui/tscrollbar.orientation.html
   Min fpgui/tscrollbar.min.html
   Max fpgui/tscrollbar.max.html
   PageSize fpgui/tscrollbar.pagesize.html
   Position fpgui/tscrollbar.position.html
   SmallChange fpgui/tscrollbar.smallchange.html
   LargeChange fpgui/tscrollbar.largechange.html
   OnChange fpgui/tscrollbar.onchange.html
   OnScroll fpgui/tscrollbar.onscroll.html
  TScrollingSupport fpgui/tscrollingsupport.html
   Create fpgui/tscrollingsupport.create.html
   Destroy fpgui/tscrollingsupport.destroy.html
   ProcessEvent fpgui/tscrollingsupport.processevent.html
   DistributeEvent fpgui/tscrollingsupport.distributeevent.html
   SendToChild fpgui/tscrollingsupport.sendtochild.html
   CalcSizes fpgui/tscrollingsupport.calcsizes.html
   Resized fpgui/tscrollingsupport.resized.html
   CalcClientSize fpgui/tscrollingsupport.calcclientsize.html
   SetVirtualSize fpgui/tscrollingsupport.setvirtualsize.html
   ScrollPos fpgui/tscrollingsupport.scrollpos.html
   DefHorzScrollHandler fpgui/tscrollingsupport.defhorzscrollhandler.html
   DefVertScrollHandler fpgui/tscrollingsupport.defvertscrollhandler.html
   Borders fpgui/tscrollingsupport.borders.html
   ClientRect fpgui/tscrollingsupport.clientrect.html
   HorzScrollBar fpgui/tscrollingsupport.horzscrollbar.html
   VertScrollBar fpgui/tscrollingsupport.vertscrollbar.html
   OnClientRectChange fpgui/tscrollingsupport.onclientrectchange.html
  TCustomScrollBox fpgui/tcustomscrollbox.html
   ScrollingSupport fpgui/tcustomscrollbox.scrollingsupport.html
   Paint fpgui/tcustomscrollbox.paint.html
   ProcessEvent fpgui/tcustomscrollbox.processevent.html
   DistributeEvent fpgui/tcustomscrollbox.distributeevent.html
   CalcSizes fpgui/tcustomscrollbox.calcsizes.html
   Resized fpgui/tcustomscrollbox.resized.html
   Create fpgui/tcustomscrollbox.create.html
   Destroy fpgui/tcustomscrollbox.destroy.html
  TScrollBox fpgui/tscrollbox.html
  TCustomCheckbox fpgui/tcustomcheckbox.html
   FChecked fpgui/tcustomcheckbox.fchecked.html
   FLabelPos fpgui/tcustomcheckbox.flabelpos.html
   Click fpgui/tcustomcheckbox.click.html
   Paint fpgui/tcustomcheckbox.paint.html
   CalcSizes fpgui/tcustomcheckbox.calcsizes.html
   Checked fpgui/tcustomcheckbox.checked.html
   Create fpgui/tcustomcheckbox.create.html
  TCheckbox fpgui/tcheckbox.html
   Enabled fpgui/tcheckbox.enabled.html
   CanExpandHeight fpgui/tcheckbox.canexpandheight.html
   CanExpandWidth fpgui/tcheckbox.canexpandwidth.html
   Checked fpgui/tcheckbox.checked.html
   Text fpgui/tcheckbox.text.html
   OnClick fpgui/tcheckbox.onclick.html
  TCustomRadioButton fpgui/tcustomradiobutton.html
   FChecked fpgui/tcustomradiobutton.fchecked.html
   FLabelPos fpgui/tcustomradiobutton.flabelpos.html
   Click fpgui/tcustomradiobutton.click.html
   Paint fpgui/tcustomradiobutton.paint.html
   CalcSizes fpgui/tcustomradiobutton.calcsizes.html
   Checked fpgui/tcustomradiobutton.checked.html
   Create fpgui/tcustomradiobutton.create.html
  TRadioButton fpgui/tradiobutton.html
   CanExpandWidth fpgui/tradiobutton.canexpandwidth.html
   CanExpandHeight fpgui/tradiobutton.canexpandheight.html
   Enabled fpgui/tradiobutton.enabled.html
   Checked fpgui/tradiobutton.checked.html
   Text fpgui/tradiobutton.text.html
   OnClick fpgui/tradiobutton.onclick.html
  TCustomSeparator fpgui/tcustomseparator.html
   FOrientation fpgui/tcustomseparator.forientation.html
   FSpacing fpgui/tcustomseparator.fspacing.html
   Paint fpgui/tcustomseparator.paint.html
   CalcSizes fpgui/tcustomseparator.calcsizes.html
   Orientation fpgui/tcustomseparator.orientation.html
   Spacing fpgui/tcustomseparator.spacing.html
   Create fpgui/tcustomseparator.create.html
  TSeparator fpgui/tseparator.html
   Enabled fpgui/tseparator.enabled.html
   Orientation fpgui/tseparator.orientation.html
   Spacing fpgui/tseparator.spacing.html
  TCustomGroupBox fpgui/tcustomgroupbox.html
   Paint fpgui/tcustomgroupbox.paint.html
   CalcSizes fpgui/tcustomgroupbox.calcsizes.html
   Resized fpgui/tcustomgroupbox.resized.html
   Create fpgui/tcustomgroupbox.create.html
  TGroupBox fpgui/tgroupbox.html
   CanExpandWidth fpgui/tgroupbox.canexpandwidth.html
   CanExpandHeight fpgui/tgroupbox.canexpandheight.html
   Enabled fpgui/tgroupbox.enabled.html
   Text fpgui/tgroupbox.text.html
  TCustomListBox fpgui/tcustomlistbox.html
   ScrollingSupport fpgui/tcustomlistbox.scrollingsupport.html
   FMaxItemWidth fpgui/tcustomlistbox.fmaxitemwidth.html
   ItemHeight fpgui/tcustomlistbox.itemheight.html
   Paint fpgui/tcustomlistbox.paint.html
   ProcessEvent fpgui/tcustomlistbox.processevent.html
   DistributeEvent fpgui/tcustomlistbox.distributeevent.html
   CalcSizes fpgui/tcustomlistbox.calcsizes.html
   Resized fpgui/tcustomlistbox.resized.html
   RecalcWidth fpgui/tcustomlistbox.recalcwidth.html
   UpdateScrollBars fpgui/tcustomlistbox.updatescrollbars.html
   RedrawItem fpgui/tcustomlistbox.redrawitem.html
   CanExpandWidth fpgui/tcustomlistbox.canexpandwidth.html
   CanExpandHeight fpgui/tcustomlistbox.canexpandheight.html
   HotTrack fpgui/tcustomlistbox.hottrack.html
   ItemIndex fpgui/tcustomlistbox.itemindex.html
   Create fpgui/tcustomlistbox.create.html
   Destroy fpgui/tcustomlistbox.destroy.html
   Items fpgui/tcustomlistbox.items.html
  TListBox fpgui/tlistbox.html
   OnClick fpgui/tlistbox.onclick.html
   Enabled fpgui/tlistbox.enabled.html
   HotTrack fpgui/tlistbox.hottrack.html
   Items fpgui/tlistbox.items.html
   ItemIndex fpgui/tlistbox.itemindex.html
  TComboBoxPopup fpgui/tcomboboxpopup.html
   Create fpgui/tcomboboxpopup.create.html
   ListBox fpgui/tcomboboxpopup.listbox.html
  TCustomComboBox fpgui/tcustomcombobox.html
   ComboBoxButton fpgui/tcustomcombobox.comboboxbutton.html
   FDropDown fpgui/tcustomcombobox.fdropdown.html
   lbl fpgui/tcustomcombobox.lbl.html
   Click fpgui/tcustomcombobox.click.html
   Paint fpgui/tcustomcombobox.paint.html
   CalcSizes fpgui/tcustomcombobox.calcsizes.html
   Resized fpgui/tcustomcombobox.resized.html
   DistributeEvent fpgui/tcustomcombobox.distributeevent.html
   CanExpandWidth fpgui/tcustomcombobox.canexpandwidth.html
   ItemIndex fpgui/tcustomcombobox.itemindex.html
   OnChange fpgui/tcustomcombobox.onchange.html
   Create fpgui/tcustomcombobox.create.html
   Destroy fpgui/tcustomcombobox.destroy.html
   Items fpgui/tcustomcombobox.items.html
  TComboBox fpgui/tcombobox.html
   CanExpandWidth fpgui/tcombobox.canexpandwidth.html
   CanExpandHeight fpgui/tcombobox.canexpandheight.html
   Enabled fpgui/tcombobox.enabled.html
   Text fpgui/tcombobox.text.html
   ItemIndex fpgui/tcombobox.itemindex.html
   OnChange fpgui/tcombobox.onchange.html
  EInvalidGridOperation fpgui/einvalidgridoperation.html
  TCustomGrid fpgui/tcustomgrid.html
   ScrollingSupport fpgui/tcustomgrid.scrollingsupport.html
   Paint fpgui/tcustomgrid.paint.html
   ProcessEvent fpgui/tcustomgrid.processevent.html
   DistributeEvent fpgui/tcustomgrid.distributeevent.html
   CalcSizes fpgui/tcustomgrid.calcsizes.html
   Resized fpgui/tcustomgrid.resized.html
   ColWidthsChanged fpgui/tcustomgrid.colwidthschanged.html
   DrawCell fpgui/tcustomgrid.drawcell.html
   RowHeightsChanged fpgui/tcustomgrid.rowheightschanged.html
   SizeChanged fpgui/tcustomgrid.sizechanged.html
   CanExpandWidth fpgui/tcustomgrid.canexpandwidth.html
   CanExpandHeight fpgui/tcustomgrid.canexpandheight.html
   ColCount fpgui/tcustomgrid.colcount.html
   RowCount fpgui/tcustomgrid.rowcount.html
   FixedCols fpgui/tcustomgrid.fixedcols.html
   FixedRows fpgui/tcustomgrid.fixedrows.html
   GridWidth fpgui/tcustomgrid.gridwidth.html
   GridHeight fpgui/tcustomgrid.gridheight.html
   FixedWidth fpgui/tcustomgrid.fixedwidth.html
   FixedHeight fpgui/tcustomgrid.fixedheight.html
   DefaultColWidth fpgui/tcustomgrid.defaultcolwidth.html
   DefaultRowHeight fpgui/tcustomgrid.defaultrowheight.html
   ColWidths fpgui/tcustomgrid.colwidths.html
   RowHeights fpgui/tcustomgrid.rowheights.html
   Create fpgui/tcustomgrid.create.html
   Destroy fpgui/tcustomgrid.destroy.html
  TDrawGrid fpgui/tdrawgrid.html
   DrawCell fpgui/tdrawgrid.drawcell.html
   CellRect fpgui/tdrawgrid.cellrect.html
   ColWidths fpgui/tdrawgrid.colwidths.html
   RowHeights fpgui/tdrawgrid.rowheights.html
   CanExpandWidth fpgui/tdrawgrid.canexpandwidth.html
   CanExpandHeight fpgui/tdrawgrid.canexpandheight.html
   ColCount fpgui/tdrawgrid.colcount.html
   RowCount fpgui/tdrawgrid.rowcount.html
   FixedCols fpgui/tdrawgrid.fixedcols.html
   FixedRows fpgui/tdrawgrid.fixedrows.html
   DefaultColWidth fpgui/tdrawgrid.defaultcolwidth.html
   DefaultRowHeight fpgui/tdrawgrid.defaultrowheight.html
   OnDrawCell fpgui/tdrawgrid.ondrawcell.html
  TStringGrid fpgui/tstringgrid.html
   SizeChanged fpgui/tstringgrid.sizechanged.html
   DrawCell fpgui/tstringgrid.drawcell.html
   Create fpgui/tstringgrid.create.html
   Destroy fpgui/tstringgrid.destroy.html
   Cells fpgui/tstringgrid.cells.html
   Cols fpgui/tstringgrid.cols.html
   Objects fpgui/tstringgrid.objects.html
   Rows fpgui/tstringgrid.rows.html
  TCustomStandardDialog fpgui/tcustomstandarddialog.html
   FButtons fpgui/tcustomstandarddialog.fbuttons.html
   MainLayout fpgui/tcustomstandarddialog.mainlayout.html
   BtnLayout fpgui/tcustomstandarddialog.btnlayout.html
   Separator fpgui/tcustomstandarddialog.separator.html
   ProcessEvent fpgui/tcustomstandarddialog.processevent.html
   DistributeEvent fpgui/tcustomstandarddialog.distributeevent.html
   CalcSizes fpgui/tcustomstandarddialog.calcsizes.html
   Resized fpgui/tcustomstandarddialog.resized.html
   SetButtons fpgui/tcustomstandarddialog.setbuttons.html
   Buttons fpgui/tcustomstandarddialog.buttons.html
   Create fpgui/tcustomstandarddialog.create.html
  TStandardDialog fpgui/tstandarddialog.html
   Text fpgui/tstandarddialog.text.html
   OnCreate fpgui/tstandarddialog.oncreate.html
   Buttons fpgui/tstandarddialog.buttons.html
  TCustomPanel fpgui/tcustompanel.html
   Paint fpgui/tcustompanel.paint.html
   CalcSizes fpgui/tbinwidget.calcsizes.html
   Resized fpgui/tcustompanel.resized.html
   BevelStyle fpgui/tcustompanel.bevelstyle.html
   Create fpgui/tcustompanel.create.html
  TPanel fpgui/tpanel.html
   CanExpandWidth fpgui/tpanel.canexpandwidth.html
   CanExpandHeight fpgui/tpanel.canexpandheight.html
   Enabled fpgui/tpanel.enabled.html
   Text fpgui/tpanel.text.html
   BevelStyle fpgui/tpanel.bevelstyle.html
  TMenuItem fpgui/tmenuitem.html
   Paint fpgui/tmenuitem.paint.html
   ProcessEvent fpgui/tmenuitem.processevent.html
   Click fpgui/tmenuitem.click.html
   Create fpgui/tmenuitem.create.html
   Destroy fpgui/tmenuitem.destroy.html
   SubMenu fpgui/tmenuitem.submenu.html
   Separator fpgui/tmenuitem.separator.html
   HotKeyDef fpgui/tmenuitem.hotkeydef.html
   Text fpgui/tmenuitem.text.html
   Visible fpgui/tmenuitem.visible.html
   Enabled fpgui/tmenuitem.enabled.html
  TPopupMenu fpgui/tpopupmenu.html
   Create fpgui/tpopupwindow.create.html
   Destroy fpgui/tpopupmenu.destroy.html
   AddMenu fpgui/tpopupmenu.addmenu.html
  TMenuBar fpgui/tmenubar.html
   Create fpgui/tmenubar.create.html
   AddMenu fpgui/tmenubar.addmenu.html
  TCustomProgressBar fpgui/tcustomprogressbar.html
   Paint fpgui/tcustomprogressbar.paint.html
   FillColor fpgui/tcustomprogressbar.fillcolor.html
   Position fpgui/tcustomprogressbar.position.html
   Min fpgui/tcustomprogressbar.min.html
   Max fpgui/tcustomprogressbar.max.html
   ShowPercentage fpgui/tcustomprogressbar.showpercentage.html
   Create fpgui/tcustomprogressbar.create.html
  TProgressBar fpgui/tprogressbar.html
   CanExpandWidth fpgui/tprogressbar.canexpandwidth.html
   CanExpandHeight fpgui/tprogressbar.canexpandheight.html
   Enabled fpgui/tprogressbar.enabled.html
   FillColor fpgui/tprogressbar.fillcolor.html
   Position fpgui/tprogressbar.position.html
   Min fpgui/tprogressbar.min.html
   Max fpgui/tprogressbar.max.html
   ShowPercentage fpgui/tprogressbar.showpercentage.html
  Min fpgui/min.html
  Max fpgui/max.html
  ClipMinMax fpgui/clipminmax.html
  LoadForm fpgui/loadform.html
 StyleManager stylemanager/index.html
  cDefaultStyle stylemanager/cdefaultstyle.html
  TStyleClass stylemanager/tstyleclass.html
  TStyleClassMapping stylemanager/tstyleclassmapping.html
   Create stylemanager/tstyleclassmapping.create.html
   MappingName stylemanager/tstyleclassmapping.mappingname.html
   StyleClass stylemanager/tstyleclassmapping.styleclass.html
  TStyleManager stylemanager/tstylemanager.html
   Create stylemanager/tstylemanager.create.html
   Destroy stylemanager/tstylemanager.destroy.html
   DefaultStyle stylemanager/tstylemanager.defaultstyle.html
   SetStyle stylemanager/tstylemanager.setstyle.html
   RegisterClass stylemanager/tstylemanager.registerclass.html
   CreateInstance stylemanager/tstylemanager.createinstance.html
   AssignStyleTypes stylemanager/tstylemanager.assignstyletypes.html
  gStyleManager stylemanager/gstylemanager.html
 WindowsStyle windowsstyle/index.html
  TWindowsStyle windowsstyle/twindowsstyle.html
 MotifStyle motifstyle/index.html
  TMotifStyle motifstyle/tmotifstyle.html
   DrawFocusRect motifstyle/tmotifstyle.drawfocusrect.html
   DrawButtonFace motifstyle/tmotifstyle.drawbuttonface.html
   DrawCheckBox motifstyle/tmotifstyle.drawcheckbox.html
 OpenSoftStyle opensoftstyle/index.html
  TGradientDirection opensoftstyle/tgradientdirection.html
  TCalcGradientEndX opensoftstyle/tcalcgradientendx.html
  TOpenSoftStyle opensoftstyle/topensoftstyle.html
   GetGUIColor opensoftstyle/topensoftstyle.getguicolor.html
   DrawGroupBox opensoftstyle/topensoftstyle.drawgroupbox.html

:classes
#fpgui.fpGUI.TStyleAbs TObject
2VUIColorCache
3MCreate
3MUpdateUIColorCache
3MGetGUIColor
3MGetUIColor
3MSetUIColor
3MDrawText
3MDrawItemBefore
3MDrawItemAfter
3MDraw3DFrame
3MDrawFocusRect
3MDrawSunkenOuterBorder
3MDrawRaisedOuterBorder
3MDrawWindowBackground
3MDrawButtonFace
3MGetButtonBorders
3MGetSeparatorSize
3MDrawSeparator
3MDrawGroupBox
3MGetGroupBoxBorders
3MDrawEditBox
3MGetEditBoxBorders
3MDrawCheckBox
3MGetCheckBoxLayout
3MDrawRadioButton
3MGetRadioButtonLayout
3MGetComboBoxArrowSize
3MDrawComboBoxArrow
3MGetComboBoxBtnSize
3MGetScrollBarBorders
3MGetScrollBarBtnSize
3MGetScrollBarBtnMinSize
3MDrawScrollBarBorder
3MDrawScrollBarButton
3MGetScrollBoxBorders
3MDrawScrollBoxBorder
3MGetMenuBorders
3MGetPanelBorders
3MDrawPanel
#fpgui.fpGUI.TBasicStyle #fpgui.fpGUI.TStyleAbs
2MDrawDirectionArrows
2MDrawCheckBoxCheck
3MGetGUIColor
3MDrawText
3MDrawItemBefore
3MDrawItemAfter
3MDraw3DFrame
3MDrawFocusRect
3MDrawSunkenOuterBorder
3MDrawRaisedOuterBorder
3MDrawWindowBackground
3MDrawButtonFace
3MGetButtonBorders
3MDrawSeparator
3MGetSeparatorSize
3MDrawGroupBox
3MGetGroupBoxBorders
3MDrawEditBox
3MGetEditBoxBorders
3MDrawCheckBox
3MGetCheckBoxLayout
3MDrawRadioButton
3MGetRadioButtonLayout
3MDrawComboBoxArrow
3MGetComboBoxArrowSize
3MGetComboBoxBtnSize
3MGetScrollBarBorders
3MGetScrollBarBtnSize
3MGetScrollBarBtnMinSize
3MDrawScrollBarBorder
3MDrawScrollBarButton
3MGetScrollBoxBorders
3MDrawScrollBoxBorder
3MGetMenuBorders
3MGetPanelBorders
3MDrawPanel
#fpgui.fpGUI.TEventObj .TObject
1VRefCount
1VFSender
3MCreate
3MAddRef
3MRelease
3MSendToChild
4PSender rw
#fpgui.fpGUI.TLayoutingEventObj #fpgui.fpGUI.TEventObj
#fpgui.fpGUI.TCalcSizesEventObj #fpgui.fpGUI.TLayoutingEventObj
#fpgui.fpGUI.TResizedEventObj #fpgui.fpGUI.TLayoutingEventObj
1VFIsForced
3MCreate
4PIsForced rw
#fpgui.fpGUI.TDestroyEventObj #fpgui.fpGUI.TEventObj
#fpgui.fpGUI.TEnabledChangeEventObj #fpgui.fpGUI.TEventObj
#fpgui.fpGUI.TVisibilityChangeEventObj #fpgui.fpGUI.TEventObj
#fpgui.fpGUI.TPaintingEventObj #fpgui.fpGUI.TEventObj
1VFCanvas
3MCreate
4PCanvas rw
#fpgui.fpGUI.TPreparePaintEventObj #fpgui.fpGUI.TPaintingEventObj
3MSendToChild
#fpgui.fpGUI.TPaintEventObj #fpgui.fpGUI.TPaintingEventObj
3MSendToChild
#fpgui.fpGUI.TMouseEventObj #fpgui.fpGUI.TEventObj
1VFShift
1VFPosition
3MCreate
3MSendToChild
3PPosition rw
4PShift rw
#fpgui.fpGUI.TMouseButtonEventObj #fpgui.fpGUI.TMouseEventObj
1VFButton
3MCreate
4PButton rw
#fpgui.fpGUI.TMousePressedEventObj #fpgui.fpGUI.TMouseButtonEventObj
#fpgui.fpGUI.TMouseReleasedEventObj #fpgui.fpGUI.TMouseButtonEventObj
#fpgui.fpGUI.TMouseMoveEventObj #fpgui.fpGUI.TMouseEventObj
3MSendToChild
#fpgui.fpGUI.TMouseEnterEventObj #fpgui.fpGUI.TMouseEventObj
3VNewCursor
#fpgui.fpGUI.TMouseLeaveEventObj #fpgui.fpGUI.TEventObj
3MSendToChild
#fpgui.fpGUI.TMouseLeaveCheckEventObj #fpgui.fpGUI.TMouseEventObj
3MSendToChild
3VNewCursor
#fpgui.fpGUI.TMouseWheelEventObj #fpgui.fpGUI.TMouseEventObj
1VFWheelDelta
3MCreate
4PWheelDelta rw
#fpgui.fpGUI.TWidget TComponent
1VFColor
1VFParent
1VFOnClick
1MSetColor
1MSetParent
1MGetBoundsRect
1MGetLeft
1MGetTop
1MGetWidth
1MGetHeight
1MSetEnabled
1MSetStyle
1MSetVisible
1MEvCalcSizes
1MEvEnabledChange
1MEvVisibilityChange
1MEvMousePressed
1MEvMouseReleased
1MEvMouseEnter
1MEvMouseLeave
1MEvMouseLeaveCheck
2VFCursor
2VFText
2VFStyle
2VFCanExpandHeight
2VFCanExpandWidth
2VFEnabled
2VFVisible
2VFOrigin
2VFBoundsSize
2VFClientRect
2VFMinSize
2VFMaxSize
2VFDefSize
2VWidgetStyle
2VWidgetState
2MLoaded
2MClick
2MPaint
2MSetParentComponent
2MCalcSizes
2MResized
2MProcessEvent
2MDistributeEvent
2MEvFocusChanged
2MEvKeyPressed
2MEvKeyReleased
2MEvKeyChar
2MEvTextChanged
2MDoMouseEnter
2MGetStyle
2MSetCanExpandWidth
2MSetCanExpandHeight
2MSetText
2PCanExpandWidth rw
2PCanExpandHeight rw
2PCursor rw
2PText rw
2PColor rw
2POnClick rw
3MCreate
3MDestroy
3MSendEvent
3MFindForm
3MSetEmbeddedParent
3MSetBounds
3MWidgetToClient
3MClientToWidget
3MClientToScreen
3MShow
3MHide
3MRedraw
3MScroll
3MSetFocus
3MUpdate
3PParent rw
3POrigin r
3PBoundsSize r
3PBoundsRect r
3PLeft r
3PTop r
3PWidth r
3PHeight r
3PMinSize r
3PMaxSize r
3PDefSize r
3PClientRect r
3PStyle rw
3PEnabled rw
3PVisible rw
#fpgui.fpGUI.TContainerWidget #fpgui.fpGUI.TWidget
2MDistributeEvent
2MGetChildCount
2MGetChild
2PChildCount r
2PChildren r
2MInsertChild
2MRemoveChild
3MGetChildAt
3MContainsChild
#fpgui.fpGUI.TBinWidget #fpgui.fpGUI.TContainerWidget
2VFChild
2MSetChild
2MGetChildCount
2MGetChild
2MCalcSizes
3PChild rw
3MContainsChild
3MInsertChild
3MRemoveChild
#fpgui.fpGUI.ELayoutError Exception
#fpgui.fpGUI.TLayoutItem TCollectionItem
1VFWidget
4PWidget rw
#fpgui.fpGUI.TLayout #fpgui.fpGUI.TContainerWidget
2VFWidgets
2VFBorderSpacing
2VIsRecalcingLayout
2MGetChildCount
2MGetChild
2PBorderSpacing rw
3MCreate
3MDestroy
3MContainsChild
#fpgui.fpGUI.TFixedItem #fpgui.fpGUI.TLayoutItem
3VLeft
3VTop
#fpgui.fpGUI.TFixedLayout #fpgui.fpGUI.TLayout
1MAddFixedChild
2MCalcSizes
3MCreate
3MAddWidget
3MMoveWidget
4PEnabled
#fpgui.fpGUI.TDockingItem #fpgui.fpGUI.TLayoutItem
3VLeft
3VTop
3VDockingMode
#fpgui.fpGUI.TDockingLayout #fpgui.fpGUI.TLayout
2MCalcSizes
3MCreate
3MAddWidget
4PEnabled
#fpgui.fpGUI.TCustomBoxLayout #fpgui.fpGUI.TLayout
1VFHorzAlign
1VFVertAlign
1VFOrientation
1VFSpacing
1MSetOrientation
2MCalcSizes
2MResized
2PHorzAlign rw
2PVertAlign rw
2POrientation rw
2PSpacing rw
3MCreate
3MInsertChild
3MRemoveChild
#fpgui.fpGUI.TBoxLayout #fpgui.fpGUI.TCustomBoxLayout
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PBorderSpacing
4PHorzAlign
4POrientation
4PSpacing
4PVertAlign
#fpgui.fpGUI.TGridItem #fpgui.fpGUI.TLayoutItem
1VFX
1VFY
1VFWidth
1VFHeight
3MCreate
4Px rw
4Py rw
4PWidth rw
4PHeight rw
#fpgui.fpGUI.TCustomGridLayout #fpgui.fpGUI.TLayout
1VFColCount
1VFRowCount
1VFColSpacing
1VFRowSpacing
1MSetColCount
1MSetRowCount
1MSetColSpacing
1MSetRowSpacing
2MInitSizeInfos
2MCalcSizes
2MResized
2PGridPositions rw
2PColCount rw
2PRowCount rw
2PColSpacing rw
2PRowSpacing rw
3MCreate
3MAddWidget
3MMoveWidget
#fpgui.fpGUI.TGridLayout #fpgui.fpGUI.TCustomGridLayout
4PEnabled
4PColCount
4PRowCount
4PColSpacing
4PRowSpacing
4PGridPositions
#fpgui.fpGUI.TCustomForm #fpgui.fpGUI.TBinWidget
1VFFocusedWidget
1VFMouseCaptureWidget
1VFLastSetCursor
1VFWindowOptions
1VFWnd
1VFOnCreate
1VFOnDestroy
1VFOnActivate
1VFOnDeactivate
1MGetWnd
1MSetFocusedWidget
1MSetMouseCaptureWidget
1MSetWindowOptions
1MWndClose
1MWndFocusIn
1MWndFocusOut
1MWndHide
1MWndKeyPressed
1MWndKeyReleased
1MWndKeyChar
1MWndMouseEnter
1MWndMouseLeave
1MWndMouseMoved
1MWndMousePressed
1MWndMouseReleased
1MWndMouseWheel
1MWndPaint
1MWndMove
1MWndResize
1MWndShow
2VFBorderWidth
2VFIsActive
2VFResizedByUser
2VFPositionSpecified
2MLoaded
2MPaint
2MResized
2MWidgetCoords
2MProcessEvent
2MCalcSizes
2MEvTextChanged
2MCreateWnd
2PCanExpandWidth
2PCanExpandHeight
2PCursor
2PBorderWidth rw
2POnCreate rw
2POnDestroy rw
2POnActivate rw
2POnDeactivate rw
3MCreate
3MDestroy
3MShow
3MShowModal
3MClose
3MSetPosition
3PFocusedWidget rw
3PIsActive r
3PMouseCaptureWidget rw
3PWindowOptions rw
3PWnd r
#fpgui.fpGUI.TForm #fpgui.fpGUI.TCustomForm
4PBorderWidth
4PColor
4PEnabled
4PText
4PWindowOptions
4POnCreate
4POnDestroy
4POnActivate
4POnDeactivate
#fpgui.fpGUI.TPopupWindow #fpgui.fpGUI.TCustomForm
3MCreate
3MShow
3MClose
#fpgui.fpGUI.TCustomLabel #fpgui.fpGUI.TWidget
1VFFontColor
1MSetAlignment
1MSetFontColor
2VFAlignment
2MPaint
2MCalcSizes
2PAlignment rw
2PFontColor rw
3MCreate
#fpgui.fpGUI.TLabel #fpgui.fpGUI.TCustomLabel
4PCanExpandWidth
4PEnabled
4PFontColor
4PText
4PAlignment
#fpgui.fpGUI.TCustomEdit #fpgui.fpGUI.TWidget
1VFFontColor
1VFSelStart
1VFSelOffset
1VFCursorPos
1VFPasswordChar
1VFOnChange
1MSetFontColor
1MSetPasswordChar
1MSetCursorPos
1MDoMousePressed
2MPaint
2MProcessEvent
2MCalcSizes
2MEvKeyPressed
2MEvKeyChar
2MEvTextChanged
2PCanExpandWidth
2PCursor
2PPasswordChar rw
2PCursorPos rw
2POnChange rw
2PFontColor rw
2MSetText
3MCreate
#fpgui.fpGUI.TEdit #fpgui.fpGUI.TCustomEdit
4PCanExpandWidth
4PEnabled
4PPasswordChar
4PText
4POnChange
4PFontColor
#fpgui.fpGUI.TGenericButton #fpgui.fpGUI.TWidget
2VFEmbedded
2MPaint
3MCreate
3PEmbedded rw
#fpgui.fpGUI.TCustomButton #fpgui.fpGUI.TGenericButton
2MPaint
2MCalcSizes
3MCreate
#fpgui.fpGUI.TButton #fpgui.fpGUI.TCustomButton
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PText
4POnClick
#fpgui.fpGUI.TCustomScrollBar #fpgui.fpGUI.TWidget
1VFOrientation
1VFMin
1VFMax
1VFPageSize
1VFPosition
1VFSmallChange
1VFLargeChange
1VFOnChange
1VFOnScroll
1VButtonUp
1VButtonDown
1VSlider
1VEmbedded
1MButtonUpClick
1MButtonDownClick
1MSetOrientation
1MSetMin
1MSetMax
1MSetPageSize
1MSetPosition
1MGetButtonSize
1MClipPosition
1MUpdateBar
2MDistributeEvent
2MPaint
2MCalcSizes
2MResized
2POrientation rw
2PMin rw
2PMax rw
2PPageSize rw
2PPosition rw
2PSmallChange rw
2PLargeChange rw
2POnChange rw
2POnScroll rw
3MCreate
3MLineUp
3MLineDown
3MPageUp
3MPageDown
#fpgui.fpGUI.TScrollBar #fpgui.fpGUI.TCustomScrollBar
4PEnabled
4POrientation
4PMin
4PMax
4PPageSize
4PPosition
4PSmallChange
4PLargeChange
4POnChange
4POnScroll
#fpgui.fpGUI.TScrollingSupport .TObject
1VParent
1VFBorders
1VFClientRect
1VFVirtualSize
1VFHorzScrollBar
1VFVertScrollBar
1VFOnClientRectChange
1MEvMouseWheel
3MCreate
3MDestroy
3MProcessEvent
3MDistributeEvent
3MSendToChild
3MCalcSizes
3MResized
3MCalcClientSize
3MSetVirtualSize
3MScrollPos
3MDefHorzScrollHandler
3MDefVertScrollHandler
3PBorders r
3PClientRect r
3PHorzScrollBar r
3PVertScrollBar r
3POnClientRectChange rw
#fpgui.fpGUI.TCustomScrollBox #fpgui.fpGUI.TWidget
2VScrollingSupport
2MPaint
2MProcessEvent
2MDistributeEvent
2MCalcSizes
2MResized
3MCreate
3MDestroy
#fpgui.fpGUI.TScrollBox #fpgui.fpGUI.TCustomScrollBox
#fpgui.fpGUI.TCustomCheckbox #fpgui.fpGUI.TWidget
1MSetChecked
2VFChecked
2VFLabelPos
2MClick
2MPaint
2MCalcSizes
2PChecked rw
3MCreate
#fpgui.fpGUI.TCheckbox #fpgui.fpGUI.TCustomCheckbox
4PEnabled
4PCanExpandHeight
4PCanExpandWidth
4PChecked
4PText
4POnClick
#fpgui.fpGUI.TCustomRadioButton #fpgui.fpGUI.TWidget
1MSetChecked
2VFChecked
2VFLabelPos
2MClick
2MPaint
2MCalcSizes
2PChecked rw
3MCreate
#fpgui.fpGUI.TRadioButton #fpgui.fpGUI.TCustomRadioButton
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PChecked
4PText
4POnClick
#fpgui.fpGUI.TCustomSeparator #fpgui.fpGUI.TWidget
1MSetOrientation
1MSetSpacing
2VFOrientation
2VFSpacing
2MPaint
2MCalcSizes
2POrientation rw
2PSpacing rw
3MCreate
#fpgui.fpGUI.TSeparator #fpgui.fpGUI.TCustomSeparator
4PEnabled
4POrientation
4PSpacing
#fpgui.fpGUI.TCustomGroupBox #fpgui.fpGUI.TBinWidget
2MPaint
2MCalcSizes
2MResized
3MCreate
#fpgui.fpGUI.TGroupBox #fpgui.fpGUI.TCustomGroupBox
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PText
#fpgui.fpGUI.TCustomListBox #fpgui.fpGUI.TWidget
1VFHotTrack
1VFItems
1VFItemIndex
1MEvMousePressed
1MEvMouseReleased
1MEvMouseMoved
1MProcessMouseEvent
2VScrollingSupport
2VFMaxItemWidth
2VItemHeight
2MPaint
2MProcessEvent
2MDistributeEvent
2MCalcSizes
2MResized
2MRecalcWidth
2MUpdateScrollBars
2MRedrawItem
2PCanExpandWidth
2PCanExpandHeight
2PHotTrack rw
2PItemIndex rw
3MCreate
3MDestroy
3PItems rw
#fpgui.fpGUI.TListBox #fpgui.fpGUI.TCustomListBox
4POnClick
4PEnabled
4PHotTrack
4PItems
4PItemIndex
#fpgui.fpGUI.TComboBoxPopup #fpgui.fpGUI.TPopupWindow
1VFLayout
1VFListBox
3MCreate
3PListBox r
#fpgui.fpGUI.TCustomComboBox #fpgui.fpGUI.TWidget
1VFItemIndex
1VFItems
1VFOnChange
1MComboBoxButtonClick
1MDropDownDeactivate
1MDropDownDestroy
1MSetItemIndex
2VComboBoxButton
2VFDropDown
2Vlbl
2MClick
2MPaint
2MCalcSizes
2MResized
2MDistributeEvent
2PCanExpandWidth
2PItemIndex rw
2POnChange rw
3MCreate
3MDestroy
3PItems rw
#fpgui.fpGUI.TComboBox #fpgui.fpGUI.TCustomComboBox
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PText
4PItemIndex
4POnChange
#fpgui.fpGUI.EInvalidGridOperation Exception
#fpgui.fpGUI.TCustomGrid #fpgui.fpGUI.TWidget
1VFColCount
1VFRowCount
1VFFixedCols
1VFFixedRows
1VFDefaultColWidth
1VFDefaultRowHeight
1VFGridWidth
1VFGridHeight
1VFFixedWidth
1VFFixedHeight
1VFColWidths
1VFRowHeights
1MSetColCount
1MSetRowCount
1MSetFixedCols
1MSetFixedRows
1MSetDefaultColWidth
1MSetDefaultRowHeight
1MGetColWidths
1MSetColWidths
1MGetRowHeights
1MSetRowHeights
1MHorzScrollBarScroll
1MVertScrollBarScroll
2VScrollingSupport
2MPaint
2MProcessEvent
2MDistributeEvent
2MCalcSizes
2MResized
2MColWidthsChanged
2MDrawCell
2MRowHeightsChanged
2MSizeChanged
2PCanExpandWidth
2PCanExpandHeight
2PColCount rw
2PRowCount rw
2PFixedCols rw
2PFixedRows rw
2PGridWidth r
2PGridHeight r
2PFixedWidth r
2PFixedHeight r
2PDefaultColWidth rw
2PDefaultRowHeight rw
2PColWidths rw
2PRowHeights rw
3MCreate
3MDestroy
#fpgui.fpGUI.TDrawGrid #fpgui.fpGUI.TCustomGrid
1VFOnDrawCell
2MDrawCell
3MCellRect
3PColWidths
3PRowHeights
4PCanExpandWidth
4PCanExpandHeight
4PColCount
4PRowCount
4PFixedCols
4PFixedRows
4PDefaultColWidth
4PDefaultRowHeight
4POnDrawCell rw
#fpgui.fpGUI.TStringGrid #fpgui.fpGUI.TDrawGrid
1VCellStrings
1MGetCells
1MSetCells
2MSizeChanged
2MDrawCell
3MCreate
3MDestroy
3PCells rw
3PCols
3PObjects
3PRows
#fpgui.fpGUI.TCustomStandardDialog #fpgui.fpGUI.TCustomForm
1MStdBtnClicked
2VFButtons
2VMainLayout
2VBtnLayout
2VSeparator
2MProcessEvent
2MDistributeEvent
2MCalcSizes
2MResized
2MSetButtons
2PButtons rw
3MCreate
#fpgui.fpGUI.TStandardDialog #fpgui.fpGUI.TCustomStandardDialog
4PText
4POnCreate
4PButtons
#fpgui.fpGUI.TCustomPanel #fpgui.fpGUI.TBinWidget
1VFBevelStyle
1MSetBevelStyle
2MPaint
2MCalcSizes
2MResized
2PBevelStyle rw
3MCreate
#fpgui.fpGUI.TPanel #fpgui.fpGUI.TCustomPanel
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PText
4PBevelStyle
#fpgui.fpGUI.TMenuItem #fpgui.fpGUI.TCustomPanel
1VFHotKeyDef
1VFSeparator
1VFSubMenu
1MGetSubMenu
1MInternalShowPopupMenu
2MPaint
2MProcessEvent
2MClick
3MCreate
3MDestroy
3PSubMenu r
4PSeparator rw
4PHotKeyDef rw
4PText
4PVisible
4PEnabled
#fpgui.fpGUI.TPopupMenu #fpgui.fpGUI.TPopupWindow
1VFMenu
3MCreate
3MDestroy
3MAddMenu
#fpgui.fpGUI.TMenuBar #fpgui.fpGUI.TCustomBoxLayout
3MCreate
3MAddMenu
#fpgui.fpGUI.TCustomProgressBar #fpgui.fpGUI.TCustomPanel
1VFFillColor
1VFMax
1VFMin
1VFPosition
1VFShowPercentage
1MSetFillColor
1MSetMax
1MSetMin
1MSetPosition
1MSetShowPercentage
2MPaint
2PFillColor rw
2PPosition rw
2PMin rw
2PMax rw
2PShowPercentage rw
3MCreate
#fpgui.fpGUI.TProgressBar #fpgui.fpGUI.TCustomProgressBar
4PCanExpandWidth
4PCanExpandHeight
4PEnabled
4PFillColor
4PPosition
4PMin
4PMax
4PShowPercentage
#fpgui.StyleManager.TStyleClassMapping TObject
1VFsMappingName
1VFStyleClass
3MCreate
3PMappingName r
3PStyleClass r
#fpgui.StyleManager.TStyleManager TObject
1VFList
1VFDefaultStyle
1VFUserStyle
1VFDefaultStyleType
1MGetDefaultStyle
3MCreate
3MDestroy
3PDefaultStyle r
3MSetStyle
3MRegisterClass
3MCreateInstance
3MAssignStyleTypes
#fpgui.WindowsStyle.TWindowsStyle #fpgui.fpGUI.TBasicStyle
#fpgui.MotifStyle.TMotifStyle #fpgui.fpGUI.TBasicStyle
3MDrawFocusRect
3MDrawButtonFace
3MDrawCheckBox
#fpgui.OpenSoftStyle.TOpenSoftStyle #fpgui.fpGUI.TBasicStyle
1MPaintGradient
3MGetGUIColor
3MDrawGroupBox