blob: 73a013c65d19fca344f0cbce74172ab4fc74493c (
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
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
|
# FPDoc Content File
:link tree
#GUI index.html
gui_basegrid gui_basegrid/index.html
TfpgFocusChangeNotify gui_basegrid/tfpgfocuschangenotify.html
TfpgRowChangeNotify gui_basegrid/tfpgrowchangenotify.html
TfpgCanSelectCellEvent gui_basegrid/tfpgcanselectcellevent.html
TfpgDrawCellEvent gui_basegrid/tfpgdrawcellevent.html
TfpgBaseGrid gui_basegrid/tfpgbasegrid.html
UpdateScrollBars gui_basegrid/tfpgbasegrid.updatescrollbars.html
GetHeaderText gui_basegrid/tfpgbasegrid.getheadertext.html
GetColumnWidth gui_basegrid/tfpgbasegrid.getcolumnwidth.html
SetColumnWidth gui_basegrid/tfpgbasegrid.setcolumnwidth.html
GetColumnBackgroundColor gui_basegrid/tfpgbasegrid.getcolumnbackgroundcolor.html
SetColumnBackgroundColor gui_basegrid/tfpgbasegrid.setcolumnbackgroundcolor.html
GetColumnTextColor gui_basegrid/tfpgbasegrid.getcolumntextcolor.html
SetColumnTextColor gui_basegrid/tfpgbasegrid.setcolumntextcolor.html
GetColumnCount gui_basegrid/tfpgbasegrid.getcolumncount.html
GetRowCount gui_basegrid/tfpgbasegrid.getrowcount.html
CanSelectCell gui_basegrid/tfpgbasegrid.canselectcell.html
DoDrawCellEvent gui_basegrid/tfpgbasegrid.dodrawcellevent.html
DoCanSelectCell gui_basegrid/tfpgbasegrid.docanselectcell.html
DrawCell gui_basegrid/tfpgbasegrid.drawcell.html
DrawHeader gui_basegrid/tfpgbasegrid.drawheader.html
DrawGrid gui_basegrid/tfpgbasegrid.drawgrid.html
HandlePaint gui_basegrid/tfpgbasegrid.handlepaint.html
HandleShow gui_basegrid/tfpgbasegrid.handleshow.html
HandleResize gui_basegrid/tfpgbasegrid.handleresize.html
HandleKeyPress gui_basegrid/tfpgbasegrid.handlekeypress.html
HandleMouseScroll gui_basegrid/tfpgbasegrid.handlemousescroll.html
HandleMouseMove gui_basegrid/tfpgbasegrid.handlemousemove.html
HandleLMouseUp gui_basegrid/tfpgbasegrid.handlelmouseup.html
HandleLMouseDown gui_basegrid/tfpgbasegrid.handlelmousedown.html
FollowFocus gui_basegrid/tfpgbasegrid.followfocus.html
DefaultColWidth gui_basegrid/tfpgbasegrid.defaultcolwidth.html
DefaultRowHeight gui_basegrid/tfpgbasegrid.defaultrowheight.html
Font gui_basegrid/tfpgbasegrid.font.html
FontDesc gui_basegrid/tfpgbasegrid.fontdesc.html
HeaderFont gui_basegrid/tfpgbasegrid.headerfont.html
HeaderFontDesc gui_basegrid/tfpgbasegrid.headerfontdesc.html
FocusCol gui_basegrid/tfpgbasegrid.focuscol.html
FocusRow gui_basegrid/tfpgbasegrid.focusrow.html
RowSelect gui_basegrid/tfpgbasegrid.rowselect.html
ColumnCount gui_basegrid/tfpgbasegrid.columncount.html
RowCount gui_basegrid/tfpgbasegrid.rowcount.html
ShowHeader gui_basegrid/tfpgbasegrid.showheader.html
ShowGrid gui_basegrid/tfpgbasegrid.showgrid.html
ScrollBarStyle gui_basegrid/tfpgbasegrid.scrollbarstyle.html
HeaderHeight gui_basegrid/tfpgbasegrid.headerheight.html
ColumnWidth gui_basegrid/tfpgbasegrid.columnwidth.html
ColumnBackgroundColor gui_basegrid/tfpgbasegrid.columnbackgroundcolor.html
ColumnTextColor gui_basegrid/tfpgbasegrid.columntextcolor.html
TopRow gui_basegrid/tfpgbasegrid.toprow.html
OnDrawCell gui_basegrid/tfpgbasegrid.ondrawcell.html
OnFocusChange gui_basegrid/tfpgbasegrid.onfocuschange.html
OnRowChange gui_basegrid/tfpgbasegrid.onrowchange.html
OnCanSelectCell gui_basegrid/tfpgbasegrid.oncanselectcell.html
Create gui_basegrid/tfpgbasegrid.create.html
Destroy gui_basegrid/tfpgbasegrid.destroy.html
Update gui_basegrid/tfpgbasegrid.update.html
BeginUpdate gui_basegrid/tfpgbasegrid.beginupdate.html
EndUpdate gui_basegrid/tfpgbasegrid.endupdate.html
gui_bevel gui_bevel/index.html
TBevelShape gui_bevel/tbevelshape.html
TBevelStyle gui_bevel/tbevelstyle.html
TfpgBevel gui_bevel/tfpgbevel.html
HandlePaint gui_bevel/tfpgbevel.handlepaint.html
Create gui_bevel/tfpgbevel.create.html
BackgroundColor gui_bevel/tfpgbevel.backgroundcolor.html
Shape gui_bevel/tfpgbevel.shape.html
Style gui_bevel/tfpgbevel.style.html
OnClick gui_bevel/tfpgbevel.onclick.html
OnDoubleClick gui_bevel/tfpgbevel.ondoubleclick.html
CreateBevel gui_bevel/createbevel.html
gui_button gui_button/index.html
TfpgButton gui_button/tfpgbutton.html
FImageMargin gui_button/tfpgbutton.fimagemargin.html
FImageSpacing gui_button/tfpgbutton.fimagespacing.html
FEmbedded gui_button/tfpgbutton.fembedded.html
FDown gui_button/tfpgbutton.fdown.html
FImage gui_button/tfpgbutton.fimage.html
FText gui_button/tfpgbutton.ftext.html
FFont gui_button/tfpgbutton.ffont.html
FDefault gui_button/tfpgbutton.fdefault.html
SetShowImage gui_button/tfpgbutton.setshowimage.html
HandlePaint gui_button/tfpgbutton.handlepaint.html
HandleKeyPress gui_button/tfpgbutton.handlekeypress.html
HandleKeyRelease gui_button/tfpgbutton.handlekeyrelease.html
HandleLMouseDown gui_button/tfpgbutton.handlelmousedown.html
HandleLMouseUp gui_button/tfpgbutton.handlelmouseup.html
HandleMouseExit gui_button/tfpgbutton.handlemouseexit.html
HandleMouseEnter gui_button/tfpgbutton.handlemouseenter.html
Create gui_button/tfpgbutton.create.html
Destroy gui_button/tfpgbutton.destroy.html
Click gui_button/tfpgbutton.click.html
GetCommand gui_button/tfpgbutton.getcommand.html
SetCommand gui_button/tfpgbutton.setcommand.html
Down gui_button/tfpgbutton.down.html
Font gui_button/tfpgbutton.font.html
AllowDown gui_button/tfpgbutton.allowdown.html
AllowAllUp gui_button/tfpgbutton.allowallup.html
BackgroundColor gui_button/tfpgbutton.backgroundcolor.html
Default gui_button/tfpgbutton.default.html
Embedded gui_button/tfpgbutton.embedded.html
FontDesc gui_button/tfpgbutton.fontdesc.html
GroupIndex gui_button/tfpgbutton.groupindex.html
ImageMargin gui_button/tfpgbutton.imagemargin.html
ImageName gui_button/tfpgbutton.imagename.html
ImageSpacing gui_button/tfpgbutton.imagespacing.html
ModalResult gui_button/tfpgbutton.modalresult.html
ShowImage gui_button/tfpgbutton.showimage.html
TabOrder gui_button/tfpgbutton.taborder.html
Text gui_button/tfpgbutton.text.html
TextColor gui_button/tfpgbutton.textcolor.html
OnMouseExit gui_button/tfpgbutton.onmouseexit.html
OnMouseEnter gui_button/tfpgbutton.onmouseenter.html
OnClick gui_button/tfpgbutton.onclick.html
CreateButton gui_button/createbutton.html
gui_checkbox gui_checkbox/index.html
TfpgCheckBox gui_checkbox/tfpgcheckbox.html
HandlePaint gui_checkbox/tfpgcheckbox.handlepaint.html
HandleLMouseDown gui_checkbox/tfpgcheckbox.handlelmousedown.html
HandleLMouseUp gui_checkbox/tfpgcheckbox.handlelmouseup.html
HandleKeyRelease gui_checkbox/tfpgcheckbox.handlekeyrelease.html
Create gui_checkbox/tfpgcheckbox.create.html
Destroy gui_checkbox/tfpgcheckbox.destroy.html
Font gui_checkbox/tfpgcheckbox.font.html
BackgroundColor gui_checkbox/tfpgcheckbox.backgroundcolor.html
Checked gui_checkbox/tfpgcheckbox.checked.html
FontDesc gui_checkbox/tfpgcheckbox.fontdesc.html
TabOrder gui_checkbox/tfpgcheckbox.taborder.html
Text gui_checkbox/tfpgcheckbox.text.html
TextColor gui_checkbox/tfpgcheckbox.textcolor.html
OnChange gui_checkbox/tfpgcheckbox.onchange.html
CreateCheckBox gui_checkbox/createcheckbox.html
gui_combobox gui_combobox/index.html
TfpgBaseComboBox gui_combobox/tfpgbasecombobox.html
FInternalBtnRect gui_combobox/tfpgbasecombobox.finternalbtnrect.html
FFocusItem gui_combobox/tfpgbasecombobox.ffocusitem.html
FItems gui_combobox/tfpgbasecombobox.fitems.html
HandleKeyPress gui_combobox/tfpgbasecombobox.handlekeypress.html
DoOnChange gui_combobox/tfpgbasecombobox.doonchange.html
DoDropDown gui_combobox/tfpgbasecombobox.dodropdown.html
GetDropDownPos gui_combobox/tfpgbasecombobox.getdropdownpos.html
DropDownCount gui_combobox/tfpgbasecombobox.dropdowncount.html
FocusItem gui_combobox/tfpgbasecombobox.focusitem.html
FontDesc gui_combobox/tfpgbasecombobox.fontdesc.html
Items gui_combobox/tfpgbasecombobox.items.html
OnChange gui_combobox/tfpgbasecombobox.onchange.html
Create gui_combobox/tfpgbasecombobox.create.html
Destroy gui_combobox/tfpgbasecombobox.destroy.html
Font gui_combobox/tfpgbasecombobox.font.html
TfpgAbstractComboBox gui_combobox/tfpgabstractcombobox.html
FMargin gui_combobox/tfpgabstractcombobox.fmargin.html
FBtnPressed gui_combobox/tfpgabstractcombobox.fbtnpressed.html
FDropDown gui_combobox/tfpgabstractcombobox.fdropdown.html
DoDropDown gui_combobox/tfpgabstractcombobox.dodropdown.html
GetText gui_combobox/tfpgabstractcombobox.gettext.html
HasText gui_combobox/tfpgabstractcombobox.hastext.html
SetText gui_combobox/tfpgabstractcombobox.settext.html
SetHeight gui_combobox/tfpgabstractcombobox.setheight.html
SetWidth gui_combobox/tfpgabstractcombobox.setwidth.html
HandleKeyPress gui_combobox/tfpgabstractcombobox.handlekeypress.html
HandleLMouseDown gui_combobox/tfpgabstractcombobox.handlelmousedown.html
HandleLMouseUp gui_combobox/tfpgabstractcombobox.handlelmouseup.html
HandleMouseScroll gui_combobox/tfpgabstractcombobox.handlemousescroll.html
HandleResize gui_combobox/tfpgabstractcombobox.handleresize.html
HandlePaint gui_combobox/tfpgabstractcombobox.handlepaint.html
PaintInternalButton gui_combobox/tfpgabstractcombobox.paintinternalbutton.html
Text gui_combobox/tfpgabstractcombobox.text.html
Create gui_combobox/tfpgabstractcombobox.create.html
Destroy gui_combobox/tfpgabstractcombobox.destroy.html
Update gui_combobox/tfpgabstractcombobox.update.html
TfpgComboBox gui_combobox/tfpgcombobox.html
BackgroundColor gui_combobox/tfpgcombobox.backgroundcolor.html
DropDownCount gui_combobox/tfpgcombobox.dropdowncount.html
FocusItem gui_combobox/tfpgcombobox.focusitem.html
FontDesc gui_combobox/tfpgcombobox.fontdesc.html
Height gui_combobox/tfpgcombobox.height.html
Items gui_combobox/tfpgcombobox.items.html
TabOrder gui_combobox/tfpgcombobox.taborder.html
Text gui_combobox/tfpgcombobox.text.html
TextColor gui_combobox/tfpgcombobox.textcolor.html
Width gui_combobox/tfpgcombobox.width.html
OnChange gui_combobox/tfpgcombobox.onchange.html
CreateComboBox gui_combobox/createcombobox.html
gui_customgrid gui_customgrid/index.html
TfpgGridColumn gui_customgrid/tfpggridcolumn.html
Create gui_customgrid/tfpggridcolumn.create.html
Width gui_customgrid/tfpggridcolumn.width.html
Title gui_customgrid/tfpggridcolumn.title.html
Alignment gui_customgrid/tfpggridcolumn.alignment.html
BackgroundColor gui_customgrid/tfpggridcolumn.backgroundcolor.html
TextColor gui_customgrid/tfpggridcolumn.textcolor.html
TfpgCustomGrid gui_customgrid/tfpgcustomgrid.html
FRowCount gui_customgrid/tfpgcustomgrid.frowcount.html
FColumns gui_customgrid/tfpgcustomgrid.fcolumns.html
SetTextColor gui_customgrid/tfpgcustomgrid.settextcolor.html
GetColumns gui_customgrid/tfpgcustomgrid.getcolumns.html
DoDeleteColumn gui_customgrid/tfpgcustomgrid.dodeletecolumn.html
DoSetRowCount gui_customgrid/tfpgcustomgrid.dosetrowcount.html
DoCreateColumnClass gui_customgrid/tfpgcustomgrid.docreatecolumnclass.html
GetColumnCount gui_customgrid/tfpgcustomgrid.getcolumncount.html
SetColumnCount gui_customgrid/tfpgcustomgrid.setcolumncount.html
GetRowCount gui_customgrid/tfpgcustomgrid.getrowcount.html
SetRowCount gui_customgrid/tfpgcustomgrid.setrowcount.html
GetColumnWidth gui_customgrid/tfpgcustomgrid.getcolumnwidth.html
SetColumnWidth gui_customgrid/tfpgcustomgrid.setcolumnwidth.html
GetColumnBackgroundColor gui_customgrid/tfpgcustomgrid.getcolumnbackgroundcolor.html
SetColumnBackgroundColor gui_customgrid/tfpgcustomgrid.setcolumnbackgroundcolor.html
GetColumnTextColor gui_customgrid/tfpgcustomgrid.getcolumntextcolor.html
SetColumnTextColor gui_customgrid/tfpgcustomgrid.setcolumntextcolor.html
GetHeaderText gui_customgrid/tfpgcustomgrid.getheadertext.html
RowCount gui_customgrid/tfpgcustomgrid.rowcount.html
ColumnCount gui_customgrid/tfpgcustomgrid.columncount.html
Columns gui_customgrid/tfpgcustomgrid.columns.html
Create gui_customgrid/tfpgcustomgrid.create.html
Destroy gui_customgrid/tfpgcustomgrid.destroy.html
AddColumn gui_customgrid/tfpgcustomgrid.addcolumn.html
DeleteColumn gui_customgrid/tfpgcustomgrid.deletecolumn.html
MoveColumn gui_customgrid/tfpgcustomgrid.movecolumn.html
gui_dialogs gui_dialogs/index.html
mbYesNoCancel gui_dialogs/mbyesnocancel.html
mbYesNo gui_dialogs/mbyesno.html
mbOKCancel gui_dialogs/mbokcancel.html
mbAbortRetryIgnore gui_dialogs/mbabortretryignore.html
cMsgDlgBtnText gui_dialogs/cmsgdlgbtntext.html
stdimg_fpgui_logo gui_dialogs/stdimg_fpgui_logo.html
TfpgMsgDlgType gui_dialogs/tfpgmsgdlgtype.html
TfpgMsgDlgBtn gui_dialogs/tfpgmsgdlgbtn.html
TfpgMsgDlgButtons gui_dialogs/tfpgmsgdlgbuttons.html
TfpgMessageBox gui_dialogs/tfpgmessagebox.html
HandleKeyPress gui_dialogs/tfpgmessagebox.handlekeypress.html
HandlePaint gui_dialogs/tfpgmessagebox.handlepaint.html
HandleShow gui_dialogs/tfpgmessagebox.handleshow.html
Create gui_dialogs/tfpgmessagebox.create.html
Destroy gui_dialogs/tfpgmessagebox.destroy.html
SetMessage gui_dialogs/tfpgmessagebox.setmessage.html
CentreText gui_dialogs/tfpgmessagebox.centretext.html
TfpgBaseDialog gui_dialogs/tfpgbasedialog.html
FSpacing gui_dialogs/tfpgbasedialog.fspacing.html
FDefaultButtonWidth gui_dialogs/tfpgbasedialog.fdefaultbuttonwidth.html
btnOK gui_dialogs/tfpgbasedialog.btnok.html
btnCancel gui_dialogs/tfpgbasedialog.btncancel.html
btnOKClick gui_dialogs/tfpgbasedialog.btnokclick.html
btnCancelClick gui_dialogs/tfpgbasedialog.btncancelclick.html
HandleKeyPress gui_dialogs/tfpgbasedialog.handlekeypress.html
SetupCaptions gui_dialogs/tfpgbasedialog.setupcaptions.html
Create gui_dialogs/tfpgbasedialog.create.html
TfpgFontSelectDialog gui_dialogs/tfpgfontselectdialog.html
GetFontDesc gui_dialogs/tfpgfontselectdialog.getfontdesc.html
SetFontDesc gui_dialogs/tfpgfontselectdialog.setfontdesc.html
SetupCaptions gui_dialogs/tfpgfontselectdialog.setupcaptions.html
Create gui_dialogs/tfpgfontselectdialog.create.html
SetSampleText gui_dialogs/tfpgfontselectdialog.setsampletext.html
TfpgFileDialog gui_dialogs/tfpgfiledialog.html
HandleKeyPress gui_dialogs/tfpgfiledialog.handlekeypress.html
btnOKClick gui_dialogs/tfpgfiledialog.btnokclick.html
SetCurrentDirectory gui_dialogs/tfpgfiledialog.setcurrentdirectory.html
FileName gui_dialogs/tfpgfiledialog.filename.html
Create gui_dialogs/tfpgfiledialog.create.html
Destroy gui_dialogs/tfpgfiledialog.destroy.html
SelectFile gui_dialogs/tfpgfiledialog.selectfile.html
RunOpenFile gui_dialogs/tfpgfiledialog.runopenfile.html
RunSaveFile gui_dialogs/tfpgfiledialog.runsavefile.html
Filter gui_dialogs/tfpgfiledialog.filter.html
ShowHidden gui_dialogs/tfpgfiledialog.showhidden.html
TfpgMessageDialog gui_dialogs/tfpgmessagedialog.html
SetWindowTitle gui_dialogs/tfpgmessagedialog.setwindowtitle.html
HandlePaint gui_dialogs/tfpgmessagedialog.handlepaint.html
HandleShow gui_dialogs/tfpgmessagedialog.handleshow.html
HandleKeyPress gui_dialogs/tfpgmessagedialog.handlekeypress.html
PrepareLayout gui_dialogs/tfpgmessagedialog.preparelayout.html
lblName1 gui_dialogs/tfpgmessagedialog.lblname1.html
pnlIcon gui_dialogs/tfpgmessagedialog.pnlicon.html
Create gui_dialogs/tfpgmessagedialog.create.html
Destroy gui_dialogs/tfpgmessagedialog.destroy.html
AfterCreate gui_dialogs/tfpgmessagedialog.aftercreate.html
About gui_dialogs/tfpgmessagedialog.about.html
AboutFPGui gui_dialogs/tfpgmessagedialog.aboutfpgui.html
Critical gui_dialogs/tfpgmessagedialog.critical.html
Information gui_dialogs/tfpgmessagedialog.information.html
Question gui_dialogs/tfpgmessagedialog.question.html
Warning gui_dialogs/tfpgmessagedialog.warning.html
InformativeText gui_dialogs/tfpgmessagedialog.informativetext.html
Text gui_dialogs/tfpgmessagedialog.text.html
Buttons gui_dialogs/tfpgmessagedialog.buttons.html
DefaultButton gui_dialogs/tfpgmessagedialog.defaultbutton.html
DialogType gui_dialogs/tfpgmessagedialog.dialogtype.html
TfpgNewDirDialog gui_dialogs/tfpgnewdirdialog.html
Create gui_dialogs/tfpgbasedialog.create.html
Directory gui_dialogs/tfpgnewdirdialog.directory.html
TfpgPromptUserDialog gui_dialogs/tfpgpromptuserdialog.html
Create gui_dialogs/tfpgbasedialog.create.html
Authenticate gui_dialogs/tfpgpromptuserdialog.authenticate.html
Wiggle gui_dialogs/tfpgpromptuserdialog.wiggle.html
UserID gui_dialogs/tfpgpromptuserdialog.userid.html
Password gui_dialogs/tfpgpromptuserdialog.password.html
TfpgPromptUserDbDialog gui_dialogs/tfpgpromptuserdbdialog.html
aStringList gui_dialogs/tfpgpromptuserdbdialog.astringlist.html
cbDatabases gui_dialogs/tfpgpromptuserdbdialog.cbdatabases.html
PopulateComboDb gui_dialogs/tfpgpromptuserdbdialog.populatecombodb.html
Create gui_dialogs/tfpgpromptuserdbdialog.create.html
Destroy gui_dialogs/tfpgpromptuserdbdialog.destroy.html
ShowMessage gui_dialogs/showmessage.html
SelectFontDialog gui_dialogs/selectfontdialog.html
gui_edit gui_edit/index.html
TfpgEditBorderStyle gui_edit/tfpgeditborderstyle.html
TfpgCustomEdit gui_edit/tfpgcustomedit.html
FMouseDragPos gui_edit/tfpgcustomedit.fmousedragpos.html
FDrawOffset gui_edit/tfpgcustomedit.fdrawoffset.html
FSideMargin gui_edit/tfpgcustomedit.fsidemargin.html
FSelStart gui_edit/tfpgcustomedit.fselstart.html
FSelOffset gui_edit/tfpgcustomedit.fseloffset.html
FCursorPos gui_edit/tfpgcustomedit.fcursorpos.html
ShowDefaultPopupMenu gui_edit/tfpgcustomedit.showdefaultpopupmenu.html
HandlePaint gui_edit/tfpgcustomedit.handlepaint.html
HandleKeyChar gui_edit/tfpgcustomedit.handlekeychar.html
HandleKeyPress gui_edit/tfpgcustomedit.handlekeypress.html
HandleLMouseDown gui_edit/tfpgcustomedit.handlelmousedown.html
HandleRMouseDown gui_edit/tfpgcustomedit.handlermousedown.html
HandleMouseMove gui_edit/tfpgcustomedit.handlemousemove.html
HandleDoubleClick gui_edit/tfpgcustomedit.handledoubleclick.html
HandleMouseEnter gui_edit/tfpgcustomedit.handlemouseenter.html
HandleMouseExit gui_edit/tfpgcustomedit.handlemouseexit.html
HandleSetFocus gui_edit/tfpgcustomedit.handlesetfocus.html
HandleKillFocus gui_edit/tfpgcustomedit.handlekillfocus.html
GetDrawText gui_edit/tfpgcustomedit.getdrawtext.html
AutoSelect gui_edit/tfpgcustomedit.autoselect.html
BorderStyle gui_edit/tfpgcustomedit.borderstyle.html
Font gui_edit/tfpgcustomedit.font.html
FontDesc gui_edit/tfpgcustomedit.fontdesc.html
HideSelection gui_edit/tfpgcustomedit.hideselection.html
MaxLength gui_edit/tfpgcustomedit.maxlength.html
PasswordMode gui_edit/tfpgcustomedit.passwordmode.html
PopupMenu gui_edit/tfpgcustomedit.popupmenu.html
Text gui_edit/tfpgcustomedit.text.html
OnChange gui_edit/tfpgcustomedit.onchange.html
Create gui_edit/tfpgcustomedit.create.html
Destroy gui_edit/tfpgcustomedit.destroy.html
SelectionText gui_edit/tfpgcustomedit.selectiontext.html
SelectAll gui_edit/tfpgcustomedit.selectall.html
Clear gui_edit/tfpgcustomedit.clear.html
ClearSelection gui_edit/tfpgcustomedit.clearselection.html
CopyToClipboard gui_edit/tfpgcustomedit.copytoclipboard.html
CutToClipboard gui_edit/tfpgcustomedit.cuttoclipboard.html
PasteFromClipboard gui_edit/tfpgcustomedit.pastefromclipboard.html
TfpgEdit gui_edit/tfpgedit.html
PopupMenu gui_edit/tfpgedit.popupmenu.html
AutoSelect gui_edit/tfpgedit.autoselect.html
BackgroundColor gui_edit/tfpgedit.backgroundcolor.html
BorderStyle gui_edit/tfpgedit.borderstyle.html
FontDesc gui_edit/tfpgedit.fontdesc.html
HideSelection gui_edit/tfpgedit.hideselection.html
MaxLength gui_edit/tfpgedit.maxlength.html
PasswordMode gui_edit/tfpgedit.passwordmode.html
TabOrder gui_edit/tfpgedit.taborder.html
Text gui_edit/tfpgedit.text.html
TextColor gui_edit/tfpgedit.textcolor.html
OnChange gui_edit/tfpgedit.onchange.html
OnEnter gui_edit/tfpgedit.onenter.html
OnExit gui_edit/tfpgedit.onexit.html
OnKeyPress gui_edit/tfpgedit.onkeypress.html
OnMouseEnter gui_edit/tfpgedit.onmouseenter.html
OnMouseExit gui_edit/tfpgedit.onmouseexit.html
OnPaint gui_edit/tfpgedit.onpaint.html
TfpgNumericEdit gui_edit/tfpgnumericedit.html
HandleKeyChar gui_edit/tfpgcustomedit.handlekeychar.html
AutoSelect gui_edit/tfpgnumericedit.autoselect.html
BackgroundColor gui_edit/tfpgnumericedit.backgroundcolor.html
BorderStyle gui_edit/tfpgcustomedit.borderstyle.html
FontDesc gui_edit/tfpgcustomedit.fontdesc.html
HideSelection gui_edit/tfpgnumericedit.hideselection.html
TabOrder gui_edit/tfpgnumericedit.taborder.html
TextColor gui_edit/tfpgnumericedit.textcolor.html
OnChange gui_edit/tfpgcustomedit.onchange.html
OnEnter gui_edit/tfpgnumericedit.onenter.html
OnExit gui_edit/tfpgnumericedit.onexit.html
OnKeyPress gui_edit/tfpgnumericedit.onkeypress.html
OnMouseEnter gui_edit/tfpgnumericedit.onmouseenter.html
OnMouseExit gui_edit/tfpgnumericedit.onmouseexit.html
OnPaint gui_edit/tfpgnumericedit.onpaint.html
CreateEdit gui_edit/createedit.html
gui_form gui_form/index.html
TWindowPosition gui_form/twindowposition.html
TfpgForm gui_form/tfpgform.html
FModalResult gui_form/tfpgform.fmodalresult.html
FParentForm gui_form/tfpgform.fparentform.html
FWindowPosition gui_form/tfpgform.fwindowposition.html
FWindowTitle gui_form/tfpgform.fwindowtitle.html
FSizeable gui_form/tfpgform.fsizeable.html
AdjustWindowStyle gui_form/tfpgform.adjustwindowstyle.html
SetWindowParameters gui_form/tfpgform.setwindowparameters.html
SetWindowTitle gui_form/tfpgform.setwindowtitle.html
MsgActivate gui_form/tfpgform.msgactivate.html
MsgDeActivate gui_form/tfpgform.msgdeactivate.html
MsgClose gui_form/tfpgform.msgclose.html
HandlePaint gui_form/tfpgform.handlepaint.html
HandleClose gui_form/tfpgform.handleclose.html
HandleHide gui_form/tfpgform.handlehide.html
HandleShow gui_form/tfpgform.handleshow.html
HandleMove gui_form/tfpgform.handlemove.html
HandleResize gui_form/tfpgform.handleresize.html
HandleKeyPress gui_form/tfpgform.handlekeypress.html
AfterConstruction gui_form/tfpgform.afterconstruction.html
BeforeDestruction gui_form/tfpgform.beforedestruction.html
DoOnClose gui_form/tfpgform.doonclose.html
Create gui_form/tfpgform.create.html
AfterCreate gui_form/tfpgform.aftercreate.html
Show gui_form/tfpgform.show.html
Hide gui_form/tfpgform.hide.html
ShowModal gui_form/tfpgform.showmodal.html
Close gui_form/tfpgform.close.html
Sizeable gui_form/tfpgform.sizeable.html
ModalResult gui_form/tfpgform.modalresult.html
FullScreen gui_form/tfpgform.fullscreen.html
BackgroundColor gui_form/tfpgform.backgroundcolor.html
TextColor gui_form/tfpgform.textcolor.html
WindowPosition gui_form/tfpgform.windowposition.html
WindowTitle gui_form/tfpgform.windowtitle.html
OnActivate gui_form/tfpgform.onactivate.html
OnClose gui_form/tfpgform.onclose.html
OnCreate gui_form/tfpgform.oncreate.html
OnDeactivate gui_form/tfpgform.ondeactivate.html
OnDestroy gui_form/tfpgform.ondestroy.html
OnHide gui_form/tfpgform.onhide.html
OnPaint gui_form/tfpgform.onpaint.html
OnShow gui_form/tfpgform.onshow.html
WidgetParentForm gui_form/widgetparentform.html
gui_grid gui_grid/index.html
TfpgFileGrid gui_grid/tfpgfilegrid.html
GetRowCount gui_grid/tfpgfilegrid.getrowcount.html
DrawCell gui_grid/tfpgfilegrid.drawcell.html
Create gui_grid/tfpgfilegrid.create.html
Destroy gui_grid/tfpgfilegrid.destroy.html
CurrentEntry gui_grid/tfpgfilegrid.currententry.html
FixedFont gui_grid/tfpgfilegrid.fixedfont.html
FileList gui_grid/tfpgfilegrid.filelist.html
DefaultRowHeight gui_grid/tfpgfilegrid.defaultrowheight.html
Font gui_grid/tfpgfilegrid.font.html
HeaderFont gui_grid/tfpgfilegrid.headerfont.html
FontDesc gui_grid/tfpgfilegrid.fontdesc.html
HeaderFontDesc gui_grid/tfpgfilegrid.headerfontdesc.html
RowCount gui_grid/tfpgfilegrid.rowcount.html
ColumnCount gui_grid/tfpgfilegrid.columncount.html
Columns gui_grid/tfpgfilegrid.columns.html
FocusRow gui_grid/tfpgfilegrid.focusrow.html
ScrollBarStyle gui_grid/tfpgfilegrid.scrollbarstyle.html
TabOrder gui_grid/tfpgfilegrid.taborder.html
OnRowChange gui_grid/tfpgfilegrid.onrowchange.html
OnDoubleClick gui_grid/tfpgfilegrid.ondoubleclick.html
TfpgStringColumn gui_grid/tfpgstringcolumn.html
Create gui_grid/tfpgstringcolumn.create.html
Destroy gui_grid/tfpgstringcolumn.destroy.html
Cells gui_grid/tfpgstringcolumn.cells.html
TfpgCustomStringGrid gui_grid/tfpgcustomstringgrid.html
GetColumnWidth gui_grid/tfpgcustomstringgrid.getcolumnwidth.html
SetColumnWidth gui_grid/tfpgcustomstringgrid.setcolumnwidth.html
GetColumns gui_grid/tfpgcustomstringgrid.getcolumns.html
DoDeleteColumn gui_grid/tfpgcustomstringgrid.dodeletecolumn.html
DoSetRowCount gui_grid/tfpgcustomstringgrid.dosetrowcount.html
DoCreateColumnClass gui_grid/tfpgcustomstringgrid.docreatecolumnclass.html
DrawCell gui_grid/tfpgcustomstringgrid.drawcell.html
Columns gui_grid/tfpgcustomstringgrid.columns.html
Create gui_grid/tfpgcustomstringgrid.create.html
AddColumn gui_grid/tfpgcustomstringgrid.addcolumn.html
Cells gui_grid/tfpgcustomstringgrid.cells.html
Objects gui_grid/tfpgcustomstringgrid.objects.html
ColumnTitle gui_grid/tfpgcustomstringgrid.columntitle.html
ColumnWidth gui_grid/tfpgcustomstringgrid.columnwidth.html
ColumnBackgroundColor gui_grid/tfpgcustomstringgrid.columnbackgroundcolor.html
ColumnTextColor gui_grid/tfpgcustomstringgrid.columntextcolor.html
TfpgStringGrid gui_grid/tfpgstringgrid.html
BackgroundColor gui_grid/tfpgstringgrid.backgroundcolor.html
ColumnCount gui_grid/tfpgstringgrid.columncount.html
Columns gui_grid/tfpgstringgrid.columns.html
ColumnWidth gui_grid/tfpgstringgrid.columnwidth.html
DefaultColWidth gui_grid/tfpgstringgrid.defaultcolwidth.html
DefaultRowHeight gui_grid/tfpgstringgrid.defaultrowheight.html
FocusCol gui_grid/tfpgstringgrid.focuscol.html
FocusRow gui_grid/tfpgstringgrid.focusrow.html
FontDesc gui_grid/tfpgstringgrid.fontdesc.html
HeaderFontDesc gui_grid/tfpgstringgrid.headerfontdesc.html
HeaderHeight gui_grid/tfpgstringgrid.headerheight.html
RowCount gui_grid/tfpgstringgrid.rowcount.html
RowSelect gui_grid/tfpgstringgrid.rowselect.html
ScrollBarStyle gui_grid/tfpgstringgrid.scrollbarstyle.html
ShowGrid gui_grid/tfpgstringgrid.showgrid.html
ShowHeader gui_grid/tfpgstringgrid.showheader.html
TabOrder gui_grid/tfpgstringgrid.taborder.html
TopRow gui_grid/tfpgstringgrid.toprow.html
OnCanSelectCell gui_grid/tfpgstringgrid.oncanselectcell.html
OnDrawCell gui_grid/tfpgstringgrid.ondrawcell.html
OnDoubleClick gui_grid/tfpgstringgrid.ondoubleclick.html
OnFocusChange gui_grid/tfpgstringgrid.onfocuschange.html
OnKeyPress gui_grid/tfpgstringgrid.onkeypress.html
OnRowChange gui_grid/tfpgstringgrid.onrowchange.html
CreateStringGrid gui_grid/createstringgrid.html
gui_label gui_label/index.html
TLayout gui_label/tlayout.html
TfpgCustomLabel gui_label/tfpgcustomlabel.html
FText gui_label/tfpgcustomlabel.ftext.html
FFont gui_label/tfpgcustomlabel.ffont.html
HandleResize gui_label/tfpgcustomlabel.handleresize.html
HandlePaint gui_label/tfpgcustomlabel.handlepaint.html
WrapText gui_label/tfpgcustomlabel.wraptext.html
Alignment gui_label/tfpgcustomlabel.alignment.html
AutoSize gui_label/tfpgcustomlabel.autosize.html
Layout gui_label/tfpgcustomlabel.layout.html
FontDesc gui_label/tfpgcustomlabel.fontdesc.html
Text gui_label/tfpgcustomlabel.text.html
LineSpace gui_label/tfpgcustomlabel.linespace.html
Create gui_label/tfpgcustomlabel.create.html
Destroy gui_label/tfpgcustomlabel.destroy.html
Font gui_label/tfpgcustomlabel.font.html
TfpgLabel gui_label/tfpglabel.html
Alignment gui_label/tfpglabel.alignment.html
AutoSize gui_label/tfpglabel.autosize.html
BackgroundColor gui_label/tfpglabel.backgroundcolor.html
FontDesc gui_label/tfpglabel.fontdesc.html
Layout gui_label/tfpglabel.layout.html
Text gui_label/tfpglabel.text.html
TextColor gui_label/tfpglabel.textcolor.html
Width gui_label/tfpglabel.width.html
WrapText gui_label/tfpglabel.wraptext.html
OnClick gui_label/tfpglabel.onclick.html
OnDoubleClick gui_label/tfpglabel.ondoubleclick.html
OnMouseDown gui_label/tfpglabel.onmousedown.html
OnMouseEnter gui_label/tfpglabel.onmouseenter.html
OnMouseExit gui_label/tfpglabel.onmouseexit.html
OnMouseMove gui_label/tfpglabel.onmousemove.html
OnMouseUp gui_label/tfpglabel.onmouseup.html
CreateLabel gui_label/createlabel.html
gui_listbox gui_listbox/index.html
TfpgColorPalette gui_listbox/tfpgcolorpalette.html
TfpgBaseListBox gui_listbox/tfpgbaselistbox.html
FFont gui_listbox/tfpgbaselistbox.ffont.html
FScrollBar gui_listbox/tfpgbaselistbox.fscrollbar.html
FFocusItem gui_listbox/tfpgbaselistbox.ffocusitem.html
FMouseDragging gui_listbox/tfpgbaselistbox.fmousedragging.html
FFirstItem gui_listbox/tfpgbaselistbox.ffirstitem.html
FMargin gui_listbox/tfpgbaselistbox.fmargin.html
UpdateScrollBar gui_listbox/tfpgbaselistbox.updatescrollbar.html
FollowFocus gui_listbox/tfpgbaselistbox.followfocus.html
ListHeight gui_listbox/tfpgbaselistbox.listheight.html
ScrollBarWidth gui_listbox/tfpgbaselistbox.scrollbarwidth.html
PageLength gui_listbox/tfpgbaselistbox.pagelength.html
ScrollBarMove gui_listbox/tfpgbaselistbox.scrollbarmove.html
DrawItem gui_listbox/tfpgbaselistbox.drawitem.html
DoChange gui_listbox/tfpgbaselistbox.dochange.html
DoSelect gui_listbox/tfpgbaselistbox.doselect.html
HandleKeyPress gui_listbox/tfpgbaselistbox.handlekeypress.html
HandleLMouseDown gui_listbox/tfpgbaselistbox.handlelmousedown.html
HandleLMouseUp gui_listbox/tfpgbaselistbox.handlelmouseup.html
HandleMouseMove gui_listbox/tfpgbaselistbox.handlemousemove.html
HandleMouseScroll gui_listbox/tfpgbaselistbox.handlemousescroll.html
HandleShow gui_listbox/tfpgbaselistbox.handleshow.html
HandlePaint gui_listbox/tfpgbaselistbox.handlepaint.html
AutoHeight gui_listbox/tfpgbaselistbox.autoheight.html
FocusItem gui_listbox/tfpgbaselistbox.focusitem.html
FontDesc gui_listbox/tfpgbaselistbox.fontdesc.html
HotTrack gui_listbox/tfpgbaselistbox.hottrack.html
PopupFrame gui_listbox/tfpgbaselistbox.popupframe.html
Create gui_listbox/tfpgbaselistbox.create.html
Destroy gui_listbox/tfpgbaselistbox.destroy.html
Update gui_listbox/tfpgbaselistbox.update.html
ItemCount gui_listbox/tfpgbaselistbox.itemcount.html
RowHeight gui_listbox/tfpgbaselistbox.rowheight.html
SetFirstItem gui_listbox/tfpgbaselistbox.setfirstitem.html
Font gui_listbox/tfpgbaselistbox.font.html
OnChange gui_listbox/tfpgbaselistbox.onchange.html
OnSelect gui_listbox/tfpgbaselistbox.onselect.html
OnScroll gui_listbox/tfpgbaselistbox.onscroll.html
OnKeyPress gui_listbox/tfpgbaselistbox.onkeypress.html
TfpgTextListBox gui_listbox/tfpgtextlistbox.html
FItems gui_listbox/tfpgtextlistbox.fitems.html
DrawItem gui_listbox/tfpgtextlistbox.drawitem.html
HandleKeyChar gui_listbox/tfpgtextlistbox.handlekeychar.html
Items gui_listbox/tfpgtextlistbox.items.html
Create gui_listbox/tfpgtextlistbox.create.html
Destroy gui_listbox/tfpgtextlistbox.destroy.html
ItemCount gui_listbox/tfpgtextlistbox.itemcount.html
Text gui_listbox/tfpgtextlistbox.text.html
TfpgListBox gui_listbox/tfpglistbox.html
AutoHeight gui_listbox/tfpglistbox.autoheight.html
BackgroundColor gui_listbox/tfpglistbox.backgroundcolor.html
FocusItem gui_listbox/tfpglistbox.focusitem.html
FontDesc gui_listbox/tfpglistbox.fontdesc.html
HotTrack gui_listbox/tfpglistbox.hottrack.html
Items gui_listbox/tfpglistbox.items.html
PopupFrame gui_listbox/tfpglistbox.popupframe.html
TabOrder gui_listbox/tfpglistbox.taborder.html
TextColor gui_listbox/tfpglistbox.textcolor.html
TColorItem gui_listbox/tcoloritem.html
Create gui_listbox/tcoloritem.create.html
ColorName gui_listbox/tcoloritem.colorname.html
ColorValue gui_listbox/tcoloritem.colorvalue.html
TfpgBaseColorListBox gui_listbox/tfpgbasecolorlistbox.html
FItems gui_listbox/tfpgbasecolorlistbox.fitems.html
DrawItem gui_listbox/tfpgbaselistbox.drawitem.html
Items gui_listbox/tfpgbasecolorlistbox.items.html
Color gui_listbox/tfpgbasecolorlistbox.color.html
ColorPalette gui_listbox/tfpgbasecolorlistbox.colorpalette.html
ShowColorNames gui_listbox/tfpgbasecolorlistbox.showcolornames.html
Create gui_listbox/tfpgbaselistbox.create.html
Destroy gui_listbox/tfpgbaselistbox.destroy.html
ItemCount gui_listbox/tfpgbaselistbox.itemcount.html
TfpgColorListBox gui_listbox/tfpgcolorlistbox.html
AutoHeight gui_listbox/tfpgcolorlistbox.autoheight.html
BackgroundColor gui_listbox/tfpgcolorlistbox.backgroundcolor.html
Color gui_listbox/tfpgcolorlistbox.color.html
ColorPalette gui_listbox/tfpgcolorlistbox.colorpalette.html
FocusItem gui_listbox/tfpgcolorlistbox.focusitem.html
FontDesc gui_listbox/tfpgcolorlistbox.fontdesc.html
HotTrack gui_listbox/tfpgcolorlistbox.hottrack.html
Items gui_listbox/tfpgcolorlistbox.items.html
PopupFrame gui_listbox/tfpgcolorlistbox.popupframe.html
ShowColorNames gui_listbox/tfpgcolorlistbox.showcolornames.html
TabOrder gui_listbox/tfpgcolorlistbox.taborder.html
TextColor gui_listbox/tfpgcolorlistbox.textcolor.html
CreateListBox gui_listbox/createlistbox.html
gui_listview gui_listview/index.html
TfpgLVColumnClickEvent gui_listview/tfpglvcolumnclickevent.html
TfpgLVItemState gui_listview/tfpglvitemstate.html
TfpgLVItemPaintPart gui_listview/tfpglvitempaintpart.html
TfpgLVPaintColumnEvent gui_listview/tfpglvpaintcolumnevent.html
TfpgLVPaintItemEvent gui_listview/tfpglvpaintitemevent.html
TfpgLVItemSelectEvent gui_listview/tfpglvitemselectevent.html
TfpgLVColumn gui_listview/tfpglvcolumn.html
Create gui_listview/tfpglvcolumn.create.html
Destroy gui_listview/tfpglvcolumn.destroy.html
Caption gui_listview/tfpglvcolumn.caption.html
CaptionAlignment gui_listview/tfpglvcolumn.captionalignment.html
Alignment gui_listview/tfpglvcolumn.alignment.html
AutoSize gui_listview/tfpglvcolumn.autosize.html
Width gui_listview/tfpglvcolumn.width.html
Height gui_listview/tfpglvcolumn.height.html
Visible gui_listview/tfpglvcolumn.visible.html
ColumnIndex gui_listview/tfpglvcolumn.columnindex.html
Clickable gui_listview/tfpglvcolumn.clickable.html
Resizable gui_listview/tfpglvcolumn.resizable.html
TfpgLVColumns gui_listview/tfpglvcolumns.html
Create gui_listview/tfpglvcolumns.create.html
Destroy gui_listview/tfpglvcolumns.destroy.html
Add gui_listview/tfpglvcolumns.add.html
Clear gui_listview/tfpglvcolumns.clear.html
Delete gui_listview/tfpglvcolumns.delete.html
Insert gui_listview/tfpglvcolumns.insert.html
Count gui_listview/tfpglvcolumns.count.html
Column gui_listview/tfpglvcolumns.column.html
IfpgLVItemViewer gui_listview/ifpglvitemviewer.html
ItemDeleted gui_listview/ifpglvitemviewer.itemdeleted.html
ItemAdded gui_listview/ifpglvitemviewer.itemadded.html
ItemChanged gui_listview/ifpglvitemviewer.itemchanged.html
ItemsUpdated gui_listview/ifpglvitemviewer.itemsupdated.html
TfpgLVItems gui_listview/tfpglvitems.html
Create gui_listview/tfpglvitems.create.html
Destroy gui_listview/tfpglvitems.destroy.html
Add gui_listview/tfpglvitems.add.html
Count gui_listview/tfpglvitems.count.html
Clear gui_listview/tfpglvitems.clear.html
Delete gui_listview/tfpglvitems.delete.html
IndexOf gui_listview/tfpglvitems.indexof.html
InsertItem gui_listview/tfpglvitems.insertitem.html
BeginUpdate gui_listview/tfpglvitems.beginupdate.html
EndUpdate gui_listview/tfpglvitems.endupdate.html
Capacity gui_listview/tfpglvitems.capacity.html
Columns gui_listview/tfpglvitems.columns.html
Item gui_listview/tfpglvitems.item.html
TfpgLVItem gui_listview/tfpglvitem.html
Create gui_listview/tfpglvitem.create.html
Destroy gui_listview/tfpglvitem.destroy.html
Caption gui_listview/tfpglvitem.caption.html
UserData gui_listview/tfpglvitem.userdata.html
SubItems gui_listview/tfpglvitem.subitems.html
Selected gui_listview/tfpglvitem.selected.html
TfpgListView gui_listview/tfpglistview.html
HandleMouseScroll gui_listview/tfpglistview.handlemousescroll.html
HandleLMouseDown gui_listview/tfpglistview.handlelmousedown.html
HandleRMouseDown gui_listview/tfpglistview.handlermousedown.html
HandleLMouseUp gui_listview/tfpglistview.handlelmouseup.html
HandleRMouseUp gui_listview/tfpglistview.handlermouseup.html
HandleMouseMove gui_listview/tfpglistview.handlemousemove.html
HandleKeyPress gui_listview/tfpglistview.handlekeypress.html
HandleKeyRelease gui_listview/tfpglistview.handlekeyrelease.html
HandlePaint gui_listview/tfpglistview.handlepaint.html
HandleResize gui_listview/tfpglistview.handleresize.html
PaintHeaders gui_listview/tfpglistview.paintheaders.html
PaintItems gui_listview/tfpglistview.paintitems.html
UpdateScrollBarPositions gui_listview/tfpglistview.updatescrollbarpositions.html
Create gui_listview/tfpglistview.create.html
Destroy gui_listview/tfpglistview.destroy.html
BeginUpdate gui_listview/tfpglistview.beginupdate.html
EndUpdate gui_listview/tfpglistview.endupdate.html
MakeItemVisible gui_listview/tfpglistview.makeitemvisible.html
ItemAdd gui_listview/tfpglistview.itemadd.html
Columns gui_listview/tfpglistview.columns.html
Items gui_listview/tfpglistview.items.html
SelectionFollowsFocus gui_listview/tfpglistview.selectionfollowsfocus.html
ShowHeaders gui_listview/tfpglistview.showheaders.html
MultiSelect gui_listview/tfpglistview.multiselect.html
VScrollBar gui_listview/tfpglistview.vscrollbar.html
HScrollBar gui_listview/tfpglistview.hscrollbar.html
ItemHeight gui_listview/tfpglistview.itemheight.html
ItemIndex gui_listview/tfpglistview.itemindex.html
TabOrder gui_listview/tfpglistview.taborder.html
OnColumnClick gui_listview/tfpglistview.oncolumnclick.html
OnPaintColumn gui_listview/tfpglistview.onpaintcolumn.html
OnPaintItem gui_listview/tfpglistview.onpaintitem.html
OnSelectionChanged gui_listview/tfpglistview.onselectionchanged.html
gui_memo gui_memo/index.html
TfpgMemo gui_memo/tfpgmemo.html
HandleKeyChar gui_memo/tfpgmemo.handlekeychar.html
HandleKeyPress gui_memo/tfpgmemo.handlekeypress.html
HandleLMouseDown gui_memo/tfpgmemo.handlelmousedown.html
HandleMouseMove gui_memo/tfpgmemo.handlemousemove.html
HandleResize gui_memo/tfpgmemo.handleresize.html
HandleMouseScroll gui_memo/tfpgmemo.handlemousescroll.html
HandlePaint gui_memo/tfpgmemo.handlepaint.html
HandleShow gui_memo/tfpgmemo.handleshow.html
HandleMouseEnter gui_memo/tfpgmemo.handlemouseenter.html
HandleMouseExit gui_memo/tfpgmemo.handlemouseexit.html
Create gui_memo/tfpgmemo.create.html
Destroy gui_memo/tfpgmemo.destroy.html
UpdateScrollBars gui_memo/tfpgmemo.updatescrollbars.html
SelectionText gui_memo/tfpgmemo.selectiontext.html
CursorLine gui_memo/tfpgmemo.cursorline.html
Font gui_memo/tfpgmemo.font.html
LineHeight gui_memo/tfpgmemo.lineheight.html
MaxLength gui_memo/tfpgmemo.maxlength.html
TabWidth gui_memo/tfpgmemo.tabwidth.html
Text gui_memo/tfpgmemo.text.html
UseTabs gui_memo/tfpgmemo.usetabs.html
BackgroundColor gui_memo/tfpgmemo.backgroundcolor.html
FontDesc gui_memo/tfpgmemo.fontdesc.html
Lines gui_memo/tfpgmemo.lines.html
TabOrder gui_memo/tfpgmemo.taborder.html
TextColor gui_memo/tfpgmemo.textcolor.html
OnChange gui_memo/tfpgmemo.onchange.html
CreateMemo gui_memo/creatememo.html
gui_menu gui_menu/index.html
TfpgHotKeyDef gui_menu/tfpghotkeydef.html
TfpgMenuOption gui_menu/tfpgmenuoption.html
TfpgMenuOptions gui_menu/tfpgmenuoptions.html
TfpgMenuItem gui_menu/tfpgmenuitem.html
Create gui_menu/tfpgmenuitem.create.html
Click gui_menu/tfpgmenuitem.click.html
Selectable gui_menu/tfpgmenuitem.selectable.html
GetAccelChar gui_menu/tfpgmenuitem.getaccelchar.html
DrawText gui_menu/tfpgmenuitem.drawtext.html
GetCommand gui_menu/tfpgmenuitem.getcommand.html
SetCommand gui_menu/tfpgmenuitem.setcommand.html
Text gui_menu/tfpgmenuitem.text.html
HotKeyDef gui_menu/tfpgmenuitem.hotkeydef.html
Separator gui_menu/tfpgmenuitem.separator.html
Visible gui_menu/tfpgmenuitem.visible.html
Enabled gui_menu/tfpgmenuitem.enabled.html
SubMenu gui_menu/tfpgmenuitem.submenu.html
OnClick gui_menu/tfpgmenuitem.onclick.html
TfpgPopupMenu gui_menu/tfpgpopupmenu.html
FMenuFont gui_menu/tfpgpopupmenu.fmenufont.html
FMenuAccelFont gui_menu/tfpgpopupmenu.fmenuaccelfont.html
FMenuDisabledFont gui_menu/tfpgpopupmenu.fmenudisabledfont.html
FSymbolWidth gui_menu/tfpgpopupmenu.fsymbolwidth.html
FItems gui_menu/tfpgpopupmenu.fitems.html
FFocusItem gui_menu/tfpgpopupmenu.ffocusitem.html
HandleMouseEnter gui_menu/tfpgpopupmenu.handlemouseenter.html
HandleMouseExit gui_menu/tfpgpopupmenu.handlemouseexit.html
HandleMouseMove gui_menu/tfpgpopupmenu.handlemousemove.html
HandleLMouseDown gui_menu/tfpgpopupmenu.handlelmousedown.html
HandleLMouseUp gui_menu/tfpgpopupmenu.handlelmouseup.html
HandleKeyPress gui_menu/tfpgpopupmenu.handlekeypress.html
HandlePaint gui_menu/tfpgpopupmenu.handlepaint.html
HandleShow gui_menu/tfpgpopupmenu.handleshow.html
HandleClose gui_menu/tfpgpopupmenu.handleclose.html
DrawItem gui_menu/tfpgpopupmenu.drawitem.html
DrawRow gui_menu/tfpgpopupmenu.drawrow.html
ItemHeight gui_menu/tfpgpopupmenu.itemheight.html
PrepareToShow gui_menu/tfpgpopupmenu.preparetoshow.html
OpenerPopup gui_menu/tfpgpopupmenu.openerpopup.html
OpenerMenuBar gui_menu/tfpgpopupmenu.openermenubar.html
Create gui_menu/tfpgpopupmenu.create.html
Destroy gui_menu/tfpgpopupmenu.destroy.html
Close gui_menu/tfpgpopupmenu.close.html
AddMenuItem gui_menu/tfpgpopupmenu.addmenuitem.html
MenuItemByName gui_menu/tfpgpopupmenu.menuitembyname.html
MenuItem gui_menu/tfpgpopupmenu.menuitem.html
BeforeShow gui_menu/tfpgpopupmenu.beforeshow.html
TfpgMenuBar gui_menu/tfpgmenubar.html
FItems gui_menu/tfpgmenubar.fitems.html
FocusItem gui_menu/tfpgmenubar.focusitem.html
PrepareToShow gui_menu/tfpgmenubar.preparetoshow.html
VisibleCount gui_menu/tfpgmenubar.visiblecount.html
VisibleItem gui_menu/tfpgmenubar.visibleitem.html
HandleShow gui_menu/tfpgmenubar.handleshow.html
HandleMouseMove gui_menu/tfpgmenubar.handlemousemove.html
HandleLMouseDown gui_menu/tfpgmenubar.handlelmousedown.html
HandleKeyPress gui_menu/tfpgmenubar.handlekeypress.html
HandlePaint gui_menu/tfpgmenubar.handlepaint.html
CalcMouseCol gui_menu/tfpgmenubar.calcmousecol.html
GetItemPosX gui_menu/tfpgmenubar.getitemposx.html
MenuFocused gui_menu/tfpgmenubar.menufocused.html
SearchItemByAccel gui_menu/tfpgmenubar.searchitembyaccel.html
ActivateMenu gui_menu/tfpgmenubar.activatemenu.html
DeActivateMenu gui_menu/tfpgmenubar.deactivatemenu.html
DrawColumn gui_menu/tfpgmenubar.drawcolumn.html
Create gui_menu/tfpgmenubar.create.html
Destroy gui_menu/tfpgmenubar.destroy.html
AddMenuItem gui_menu/tfpgmenubar.addmenuitem.html
MenuItem gui_menu/tfpgmenubar.menuitem.html
MenuOptions gui_menu/tfpgmenubar.menuoptions.html
BeforeShow gui_menu/tfpgmenubar.beforeshow.html
CreateMenuBar gui_menu/createmenubar.html
gui_progressbar gui_progressbar/index.html
TfpgCustomProgressBar gui_progressbar/tfpgcustomprogressbar.html
HandlePaint gui_progressbar/tfpgcustomprogressbar.handlepaint.html
Max gui_progressbar/tfpgcustomprogressbar.max.html
Min gui_progressbar/tfpgcustomprogressbar.min.html
Position gui_progressbar/tfpgcustomprogressbar.position.html
Step gui_progressbar/tfpgcustomprogressbar.step.html
ShowCaption gui_progressbar/tfpgcustomprogressbar.showcaption.html
Create gui_progressbar/tfpgcustomprogressbar.create.html
Destroy gui_progressbar/tfpgcustomprogressbar.destroy.html
StepIt gui_progressbar/tfpgcustomprogressbar.stepit.html
StepBy gui_progressbar/tfpgcustomprogressbar.stepby.html
Font gui_progressbar/tfpgcustomprogressbar.font.html
TfpgProgressBar gui_progressbar/tfpgprogressbar.html
BackgroundColor gui_progressbar/tfpgprogressbar.backgroundcolor.html
ShowCaption gui_progressbar/tfpgprogressbar.showcaption.html
Max gui_progressbar/tfpgprogressbar.max.html
Min gui_progressbar/tfpgprogressbar.min.html
Position gui_progressbar/tfpgprogressbar.position.html
Step gui_progressbar/tfpgprogressbar.step.html
TextColor gui_progressbar/tfpgprogressbar.textcolor.html
gui_radiobutton gui_radiobutton/index.html
TfpgRadioButton gui_radiobutton/tfpgradiobutton.html
HandlePaint gui_radiobutton/tfpgradiobutton.handlepaint.html
HandleLMouseDown gui_radiobutton/tfpgradiobutton.handlelmousedown.html
HandleLMouseUp gui_radiobutton/tfpgradiobutton.handlelmouseup.html
HandleKeyPress gui_radiobutton/tfpgradiobutton.handlekeypress.html
HandleKeyRelease gui_radiobutton/tfpgradiobutton.handlekeyrelease.html
FindNeighbor gui_radiobutton/tfpgradiobutton.findneighbor.html
Create gui_radiobutton/tfpgradiobutton.create.html
Destroy gui_radiobutton/tfpgradiobutton.destroy.html
Font gui_radiobutton/tfpgradiobutton.font.html
AutoSize gui_radiobutton/tfpgradiobutton.autosize.html
BackgroundColor gui_radiobutton/tfpgradiobutton.backgroundcolor.html
Checked gui_radiobutton/tfpgradiobutton.checked.html
FontDesc gui_radiobutton/tfpgradiobutton.fontdesc.html
GroupIndex gui_radiobutton/tfpgradiobutton.groupindex.html
TabOrder gui_radiobutton/tfpgradiobutton.taborder.html
Text gui_radiobutton/tfpgradiobutton.text.html
TextColor gui_radiobutton/tfpgradiobutton.textcolor.html
OnChange gui_radiobutton/tfpgradiobutton.onchange.html
CreateRadioButton gui_radiobutton/createradiobutton.html
gui_scrollbar gui_scrollbar/index.html
TScrollNotifyEvent gui_scrollbar/tscrollnotifyevent.html
TfpgScrollStyle gui_scrollbar/tfpgscrollstyle.html
TfpgScrollBarPart gui_scrollbar/tfpgscrollbarpart.html
TfpgScrollBar gui_scrollbar/tfpgscrollbar.html
FMax gui_scrollbar/tfpgscrollbar.fmax.html
FMin gui_scrollbar/tfpgscrollbar.fmin.html
FPageSize gui_scrollbar/tfpgscrollbar.fpagesize.html
FPosition gui_scrollbar/tfpgscrollbar.fposition.html
FScrollStep gui_scrollbar/tfpgscrollbar.fscrollstep.html
FSliderPos gui_scrollbar/tfpgscrollbar.fsliderpos.html
FSliderLength gui_scrollbar/tfpgscrollbar.fsliderlength.html
FSliderDragPos gui_scrollbar/tfpgscrollbar.fsliderdragpos.html
FSliderDragStart gui_scrollbar/tfpgscrollbar.fsliderdragstart.html
FScrollTimer gui_scrollbar/tfpgscrollbar.fscrolltimer.html
FActiveButtonRect gui_scrollbar/tfpgscrollbar.factivebuttonrect.html
FMousePosition gui_scrollbar/tfpgscrollbar.fmouseposition.html
FOnScroll gui_scrollbar/tfpgscrollbar.fonscroll.html
ScrollTimer gui_scrollbar/tfpgscrollbar.scrolltimer.html
DrawButton gui_scrollbar/tfpgscrollbar.drawbutton.html
DrawSlider gui_scrollbar/tfpgscrollbar.drawslider.html
HandleLMouseDown gui_scrollbar/tfpgscrollbar.handlelmousedown.html
HandleLMouseUp gui_scrollbar/tfpgscrollbar.handlelmouseup.html
HandleMouseMove gui_scrollbar/tfpgscrollbar.handlemousemove.html
HandleMouseScroll gui_scrollbar/tfpgscrollbar.handlemousescroll.html
HandlePaint gui_scrollbar/tfpgscrollbar.handlepaint.html
PositionChange gui_scrollbar/tfpgscrollbar.positionchange.html
Orientation gui_scrollbar/tfpgscrollbar.orientation.html
SliderSize gui_scrollbar/tfpgscrollbar.slidersize.html
Create gui_scrollbar/tfpgscrollbar.create.html
Destroy gui_scrollbar/tfpgscrollbar.destroy.html
RepaintSlider gui_scrollbar/tfpgscrollbar.repaintslider.html
PageSize gui_scrollbar/tfpgscrollbar.pagesize.html
Position gui_scrollbar/tfpgscrollbar.position.html
ScrollStep gui_scrollbar/tfpgscrollbar.scrollstep.html
Min gui_scrollbar/tfpgscrollbar.min.html
Max gui_scrollbar/tfpgscrollbar.max.html
OnScroll gui_scrollbar/tfpgscrollbar.onscroll.html
gui_style gui_style/index.html
TfpgPrimitiveElement gui_style/tfpgprimitiveelement.html
TfpgControlElement gui_style/tfpgcontrolelement.html
TfpgStyleOptionEnum gui_style/tfpgstyleoptionenum.html
TfpgStateItem gui_style/tfpgstateitem.html
TfpgState gui_style/tfpgstate.html
TfpgStandardPixmap gui_style/tfpgstandardpixmap.html
TfpgButtonFeatures gui_style/tfpgbuttonfeatures.html
TfpgStyleOption gui_style/tfpgstyleoption.html
StyleOption gui_style/tfpgstyleoption.styleoption.html
Rect gui_style/tfpgstyleoption.rect.html
State gui_style/tfpgstyleoption.state.html
TfpgButtonStyleOption gui_style/tfpgbuttonstyleoption.html
ButtonFeatures gui_style/tfpgbuttonstyleoption.buttonfeatures.html
TfpgBaseStyle gui_style/tfpgbasestyle.html
DrawControl gui_style/tfpgbasestyle.drawcontrol.html
DrawPrimitive gui_style/tfpgbasestyle.drawprimitive.html
TfpgCommonStyle gui_style/tfpgcommonstyle.html
DrawControl gui_style/tfpgcommonstyle.drawcontrol.html
DrawPrimitive gui_style/tfpgcommonstyle.drawprimitive.html
TfpgWin2000Style gui_style/tfpgwin2000style.html
TfpgWinXPStyle gui_style/tfpgwinxpstyle.html
TfpgBlueCurveStyle gui_style/tfpgbluecurvestyle.html
TfpgClearLookStyle gui_style/tfpgclearlookstyle.html
TfpgMotifStyle gui_style/tfpgmotifstyle.html
gui_tab gui_tab/index.html
TfpgTabStyle gui_tab/tfpgtabstyle.html
TfpgTabPosition gui_tab/tfpgtabposition.html
TTabSheetChange gui_tab/ttabsheetchange.html
TfpgTabSheet gui_tab/tfpgtabsheet.html
HandlePaint gui_tab/tfpgtabsheet.handlepaint.html
Create gui_tab/tfpgtabsheet.create.html
Destroy gui_tab/tfpgtabsheet.destroy.html
AfterConstruction gui_tab/tfpgtabsheet.afterconstruction.html
Text gui_tab/tfpgtabsheet.text.html
PageIndex gui_tab/tfpgtabsheet.pageindex.html
PageControl gui_tab/tfpgtabsheet.pagecontrol.html
TfpgPageControl gui_tab/tfpgpagecontrol.html
OrderSheets gui_tab/tfpgpagecontrol.ordersheets.html
RePaintTitles gui_tab/tfpgpagecontrol.repainttitles.html
HandlePaint gui_tab/tfpgpagecontrol.handlepaint.html
HandleShow gui_tab/tfpgpagecontrol.handleshow.html
HandleLMouseUp gui_tab/tfpgpagecontrol.handlelmouseup.html
HandleKeyPress gui_tab/tfpgpagecontrol.handlekeypress.html
Create gui_tab/tfpgpagecontrol.create.html
Destroy gui_tab/tfpgpagecontrol.destroy.html
AppendTabSheet gui_tab/tfpgpagecontrol.appendtabsheet.html
PageCount gui_tab/tfpgpagecontrol.pagecount.html
ActivePage gui_tab/tfpgpagecontrol.activepage.html
Pages gui_tab/tfpgpagecontrol.pages.html
OnChange gui_tab/tfpgpagecontrol.onchange.html
ActivePageIndex gui_tab/tfpgpagecontrol.activepageindex.html
BackgroundColor gui_tab/tfpgpagecontrol.backgroundcolor.html
FixedTabWidth gui_tab/tfpgpagecontrol.fixedtabwidth.html
SortPages gui_tab/tfpgpagecontrol.sortpages.html
Style gui_tab/tfpgpagecontrol.style.html
TabOrder gui_tab/tfpgpagecontrol.taborder.html
TabPosition gui_tab/tfpgpagecontrol.tabposition.html
TextColor gui_tab/tfpgpagecontrol.textcolor.html
gui_trackbar gui_trackbar/index.html
TTrackBarChange gui_trackbar/ttrackbarchange.html
TfpgTrackBarExtra gui_trackbar/tfpgtrackbarextra.html
HandlePaint gui_trackbar/tfpgtrackbarextra.handlepaint.html
HandleLMouseUp gui_trackbar/tfpgtrackbarextra.handlelmouseup.html
HandleKeyPress gui_trackbar/tfpgtrackbarextra.handlekeypress.html
Create gui_trackbar/tfpgtrackbarextra.create.html
BackgroundColor gui_trackbar/tfpgtrackbarextra.backgroundcolor.html
Min gui_trackbar/tfpgtrackbarextra.min.html
Max gui_trackbar/tfpgtrackbarextra.max.html
Position gui_trackbar/tfpgtrackbarextra.position.html
SliderSize gui_trackbar/tfpgtrackbarextra.slidersize.html
Orientation gui_trackbar/tfpgtrackbarextra.orientation.html
TabOrder gui_trackbar/tfpgtrackbarextra.taborder.html
OnChange gui_trackbar/tfpgtrackbarextra.onchange.html
TfpgTrackBar gui_trackbar/tfpgtrackbar.html
HandleLMouseDown gui_trackbar/tfpgtrackbar.handlelmousedown.html
HandleLMouseUp gui_trackbar/tfpgtrackbar.handlelmouseup.html
HandleMouseMove gui_trackbar/tfpgtrackbar.handlemousemove.html
HandlePaint gui_trackbar/tfpgtrackbar.handlepaint.html
DrawSlider gui_trackbar/tfpgtrackbar.drawslider.html
RepaintSlider gui_trackbar/tfpgtrackbar.repaintslider.html
PositionChange gui_trackbar/tfpgtrackbar.positionchange.html
Create gui_trackbar/tfpgtrackbar.create.html
Destroy gui_trackbar/tfpgtrackbar.destroy.html
BackgroundColor gui_trackbar/tfpgtrackbar.backgroundcolor.html
Position gui_trackbar/tfpgtrackbar.position.html
ScrollStep gui_trackbar/tfpgtrackbar.scrollstep.html
Min gui_trackbar/tfpgtrackbar.min.html
Max gui_trackbar/tfpgtrackbar.max.html
ShowPosition gui_trackbar/tfpgtrackbar.showposition.html
Orientation gui_trackbar/tfpgtrackbar.orientation.html
TabOrder gui_trackbar/tfpgtrackbar.taborder.html
TextColor gui_trackbar/tfpgtrackbar.textcolor.html
OnChange gui_trackbar/tfpgtrackbar.onchange.html
gui_iniutils gui_iniutils/index.html
TfpgINIFile gui_iniutils/tfpginifile.html
CreateExt gui_iniutils/tfpginifile.createext.html
ReadString gui_iniutils/tfpginifile.readstring.html
ReadInteger gui_iniutils/tfpginifile.readinteger.html
ReadBool gui_iniutils/tfpginifile.readbool.html
ReadDate gui_iniutils/tfpginifile.readdate.html
ReadDateTime gui_iniutils/tfpginifile.readdatetime.html
ReadFloat gui_iniutils/tfpginifile.readfloat.html
ReadTime gui_iniutils/tfpginifile.readtime.html
ReadFormState gui_iniutils/tfpginifile.readformstate.html
WriteFormState gui_iniutils/tfpginifile.writeformstate.html
gINI gui_iniutils/gini.html
gui_mru gui_mru/index.html
TMRUClickEvent gui_mru/tmruclickevent.html
TfpgMRU gui_mru/tfpgmru.html
Loaded gui_mru/tfpgmru.loaded.html
Notification gui_mru/tfpgmru.notification.html
DoClick gui_mru/tfpgmru.doclick.html
Create gui_mru/tfpgmru.create.html
Destroy gui_mru/tfpgmru.destroy.html
AddItem gui_mru/tfpgmru.additem.html
RemoveItem gui_mru/tfpgmru.removeitem.html
LoadMRU gui_mru/tfpgmru.loadmru.html
MaxItems gui_mru/tfpgmru.maxitems.html
ShowFullPath gui_mru/tfpgmru.showfullpath.html
ParentMenuItem gui_mru/tfpgmru.parentmenuitem.html
OnClick gui_mru/tfpgmru.onclick.html
gui_gauge gui_gauge/index.html
TGaugeKind gui_gauge/tgaugekind.html
TBorderStyle gui_gauge/tborderstyle.html
TfpgGauge gui_gauge/tfpggauge.html
HandlePaint gui_gauge/tfpggauge.handlepaint.html
Create gui_gauge/tfpggauge.create.html
AddProgress gui_gauge/tfpggauge.addprogress.html
Percentage gui_gauge/tfpggauge.percentage.html
Font gui_gauge/tfpggauge.font.html
Align gui_gauge/tfpggauge.align.html
Anchors gui_gauge/tfpggauge.anchors.html
SecondColor gui_gauge/tfpggauge.secondcolor.html
BorderStyle gui_gauge/tfpggauge.borderstyle.html
Color gui_gauge/tfpggauge.color.html
Enabled gui_gauge/tfpggauge.enabled.html
FirstColor gui_gauge/tfpggauge.firstcolor.html
Kind gui_gauge/tfpggauge.kind.html
MinValue gui_gauge/tfpggauge.minvalue.html
MaxValue gui_gauge/tfpggauge.maxvalue.html
Progress gui_gauge/tfpggauge.progress.html
ShowText gui_gauge/tfpggauge.showtext.html
Visible gui_gauge/tfpggauge.visible.html
CreateGauge gui_gauge/creategauge.html
gui_popupcalendar gui_popupcalendar/index.html
TfpgOnDateSetEvent gui_popupcalendar/tfpgondatesetevent.html
TfpgPopupCalendar gui_popupcalendar/tfpgpopupcalendar.html
FOrigFocusWin gui_popupcalendar/tfpgpopupcalendar.forigfocuswin.html
HandlePaint gui_popupcalendar/tfpgpopupcalendar.handlepaint.html
HandleKeyPress gui_popupcalendar/tfpgpopupcalendar.handlekeypress.html
HandleShow gui_popupcalendar/tfpgpopupcalendar.handleshow.html
HandleHide gui_popupcalendar/tfpgpopupcalendar.handlehide.html
CallerWidget gui_popupcalendar/tfpgpopupcalendar.callerwidget.html
Create gui_popupcalendar/tfpgpopupcalendar.create.html
AfterCreate gui_popupcalendar/tfpgpopupcalendar.aftercreate.html
CloseOnSelect gui_popupcalendar/tfpgpopupcalendar.closeonselect.html
Day gui_popupcalendar/tfpgpopupcalendar.day.html
Month gui_popupcalendar/tfpgpopupcalendar.month.html
Year gui_popupcalendar/tfpgpopupcalendar.year.html
OnValueSet gui_popupcalendar/tfpgpopupcalendar.onvalueset.html
DateValue gui_popupcalendar/tfpgpopupcalendar.datevalue.html
MinDate gui_popupcalendar/tfpgpopupcalendar.mindate.html
MaxDate gui_popupcalendar/tfpgpopupcalendar.maxdate.html
TfpgCalendarCombo gui_popupcalendar/tfpgcalendarcombo.html
HasText gui_popupcalendar/tfpgcalendarcombo.hastext.html
DoDropDown gui_popupcalendar/tfpgcalendarcombo.dodropdown.html
Create gui_popupcalendar/tfpgcalendarcombo.create.html
BackgroundColor gui_popupcalendar/tfpgcalendarcombo.backgroundcolor.html
DateFormat gui_popupcalendar/tfpgcalendarcombo.dateformat.html
DateValue gui_popupcalendar/tfpgcalendarcombo.datevalue.html
FontDesc gui_popupcalendar/tfpgcalendarcombo.fontdesc.html
MinDate gui_popupcalendar/tfpgcalendarcombo.mindate.html
MaxDate gui_popupcalendar/tfpgcalendarcombo.maxdate.html
CloseOnSelect gui_popupcalendar/tfpgcalendarcombo.closeonselect.html
TabOrder gui_popupcalendar/tfpgcalendarcombo.taborder.html
OnChange gui_popupcalendar/tfpgcalendarcombo.onchange.html
gui_hyperlink gui_hyperlink/index.html
TfpgHyperlink gui_hyperlink/tfpghyperlink.html
HandleMouseEnter gui_hyperlink/tfpghyperlink.handlemouseenter.html
HandleMouseExit gui_hyperlink/tfpghyperlink.handlemouseexit.html
HandleLMouseDown gui_hyperlink/tfpghyperlink.handlelmousedown.html
Create gui_label/tfpgcustomlabel.create.html
GoHyperLink gui_hyperlink/tfpghyperlink.gohyperlink.html
Autosize gui_hyperlink/tfpghyperlink.autosize.html
FontDesc gui_hyperlink/tfpghyperlink.fontdesc.html
HotTrackColor gui_hyperlink/tfpghyperlink.hottrackcolor.html
HotTrackFont gui_hyperlink/tfpghyperlink.hottrackfont.html
Text gui_hyperlink/tfpghyperlink.text.html
TextColor gui_hyperlink/tfpghyperlink.textcolor.html
URL gui_hyperlink/tfpghyperlink.url.html
:classes
#GUI.gui_basegrid.TfpgBaseGrid #CoreLib.gfx_widget.TfpgWidget
1VFColResizing
1VFDragPos
1VFOnDrawCell
1VFResizedCol
1VFDefaultColWidth
1VFDefaultRowHeight
1VFFocusCol
1VFFocusRow
1VFHeaderHeight
1VFOnCanSelectCell
1VFOnFocusChange
1VFOnRowChange
1VFPrevCol
1VFPrevRow
1VFFirstRow
1VFFirstCol
1VFMargin
1VFFont
1VFHeaderFont
1VFRowSelect
1VFScrollBarStyle
1VFShowGrid
1VFShowHeader
1VFTemp
1VFVScrollBar
1VFHScrollBar
1VFUpdateCount
1MGetFontDesc
1MGetHeaderFontDesc
1MHScrollBarMove
1MSetFontDesc
1MSetHeaderFontDesc
1MSetRowSelect
1MSetScrollBarStyle
1MVScrollBarMove
1MSetDefaultColWidth
1MSetDefaultRowHeight
1MSetFocusCol
1MSetFocusRow
1MCheckFocusChange
1MSetShowGrid
1MSetShowHeader
1MVisibleLines
1MVisibleWidth
1MSetFirstRow
2MUpdateScrollBars
2MGetHeaderText
2MGetColumnWidth
2MSetColumnWidth
2MGetColumnBackgroundColor
2MSetColumnBackgroundColor
2MGetColumnTextColor
2MSetColumnTextColor
2MGetColumnCount
2MGetRowCount
2MCanSelectCell
2MDoDrawCellEvent
2MDoCanSelectCell
2MDrawCell
2MDrawHeader
2MDrawGrid
2MHandlePaint
2MHandleShow
2MHandleResize
2MHandleKeyPress
2MHandleMouseScroll
2MHandleMouseMove
2MHandleLMouseUp
2MHandleLMouseDown
2MFollowFocus
2PDefaultColWidth rw
2PDefaultRowHeight rw
2PFont r
2PFontDesc rw
2PHeaderFont r
2PHeaderFontDesc rw
2PFocusCol rw
2PFocusRow rw
2PRowSelect rw
2PColumnCount r
2PRowCount r
2PShowHeader rw
2PShowGrid rw
2PScrollBarStyle rw
2PHeaderHeight r
2PColumnWidth rw
2PColumnBackgroundColor rw
2PColumnTextColor rw
2PTopRow rw
2POnDrawCell rw
2POnFocusChange rw
2POnRowChange rw
2POnCanSelectCell rw
3MCreate
3MDestroy
3MUpdate
3MBeginUpdate
3MEndUpdate
#GUI.gui_bevel.TfpgBevel #CoreLib.gfx_widget.TfpgWidget
1VFBevelShape
1VFBevelStyle
1MSetBevelShape
1MSetBevelStyle
2MHandlePaint
3MCreate
4PBackgroundColor
4PShape rw
4PStyle rw
4POnClick
4POnDoubleClick
#GUI.gui_button.TfpgButton #CoreLib.gfx_widget.TfpgWidget
1VFCommand
1VFImageName
1VFClicked
1VFShowImage
1VFClickOnPush
1VFGroupIndex
1VFAllowAllUp
1VFModalResult
1MGetFontDesc
1MSetDefault
1MSetEmbedded
1MSetFontDesc
1MSetImageName
1MSetText
1MSetDown
1MSetImageMargin
1MSetImageSpacing
1MGetAllowDown
1MSetAllowDown
1MSetAllowAllUp
1MDoPush
1MDoRelease
2VFImageMargin
2VFImageSpacing
2VFEmbedded
2VFDown
2VFImage
2VFText
2VFFont
2VFDefault
2MSetShowImage
2MHandlePaint
2MHandleKeyPress
2MHandleKeyRelease
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleMouseExit
2MHandleMouseEnter
3MCreate
3MDestroy
3MClick
3MGetCommand
3MSetCommand
3PDown rw
3PFont r
3PAllowDown rw
4PAllowAllUp rw
4PBackgroundColor
4PDefault rw
4PEmbedded rw
4PFontDesc rw
4PGroupIndex rw
4PImageMargin rw
4PImageName rw
4PImageSpacing rw
4PModalResult rw
4PShowImage rw
4PTabOrder
4PText rw
4PTextColor
4POnMouseExit
4POnMouseEnter
4POnClick
#GUI.gui_checkbox.TfpgCheckBox #CoreLib.gfx_widget.TfpgWidget
1VFChecked
1VFOnChange
1VFText
1VFFont
1VFBoxSize
1VFIsPressed
1MGetFontDesc
1MSetChecked
1MSetFontDesc
1MSetText
2MHandlePaint
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleKeyRelease
3MCreate
3MDestroy
3PFont r
4PBackgroundColor
4PChecked rw
4PFontDesc rw
4PTabOrder
4PText rw
4PTextColor
4POnChange rw
#GUI.gui_combobox.TfpgBaseComboBox #CoreLib.gfx_widget.TfpgWidget
1VFDropDownCount
1VFFont
1VFOnChange
1MGetFontDesc
1MSetDropDownCount
1MSetFocusItem
1MSetFontDesc
2VFInternalBtnRect
2VFFocusItem
2VFItems
2MHandleKeyPress
2MDoOnChange
2MDoDropDown
2MGetDropDownPos
2PDropDownCount rw
2PFocusItem rw
2PFontDesc rw
2PItems r
2POnChange rw
3MCreate
3MDestroy
3PFont r
#GUI.gui_combobox.TfpgAbstractComboBox #GUI.gui_combobox.TfpgBaseComboBox
1MInternalBtnClick
1MSetFocusItem
1MCalculateInternalButtonRect
2VFMargin
2VFBtnPressed
2VFDropDown
2MDoDropDown
2MGetText
2MHasText
2MSetText
2MSetHeight
2MSetWidth
2MHandleKeyPress
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleMouseScroll
2MHandleResize
2MHandlePaint
2MPaintInternalButton
2PText rw
3MCreate
3MDestroy
3MUpdate
#GUI.gui_combobox.TfpgComboBox #GUI.gui_combobox.TfpgAbstractComboBox
4PBackgroundColor
4PDropDownCount
4PFocusItem
4PFontDesc
4PHeight
4PItems
4PTabOrder
4PText
4PTextColor
4PWidth
4POnChange
#GUI.gui_customgrid.TfpgGridColumn TObject
1VFAlignment
1VFTitle
1VFWidth
1VFBackgroundColor
1VFTextColor
3MCreate
3PWidth rw
3PTitle rw
3PAlignment rw
3PBackgroundColor rw
3PTextColor rw
#GUI.gui_customgrid.TfpgCustomGrid #GUI.gui_basegrid.TfpgBaseGrid
2VFRowCount
2VFColumns
2MSetTextColor
2MGetColumns
2MDoDeleteColumn
2MDoSetRowCount
2MDoCreateColumnClass
2MGetColumnCount
2MSetColumnCount
2MGetRowCount
2MSetRowCount
2MGetColumnWidth
2MSetColumnWidth
2MGetColumnBackgroundColor
2MSetColumnBackgroundColor
2MGetColumnTextColor
2MSetColumnTextColor
2MGetHeaderText
2PRowCount rw
2PColumnCount rw
2PColumns r
3MCreate
3MDestroy
3MAddColumn
3MDeleteColumn
3MMoveColumn
#GUI.gui_dialogs.TfpgMessageBox TfpgForm
1VFLines
1VFFont
1VFTextY
1VFLineHeight
1VFMaxLineWidth
1VFButton
1VFCentreText
2MHandleKeyPress
2MHandlePaint
2MHandleShow
3MCreate
3MDestroy
3MSetMessage
3PCentreText rw
#GUI.gui_dialogs.TfpgBaseDialog TfpgForm
2VFSpacing
2VFDefaultButtonWidth
2VbtnOK
2VbtnCancel
2MbtnOKClick
2MbtnCancelClick
2MHandleKeyPress
2MSetupCaptions
3MCreate
#GUI.gui_dialogs.TfpgFontSelectDialog #GUI.gui_dialogs.TfpgBaseDialog
1VFSampleText
1VFMode
1VlblLabel1
1VlblTypeface
1VlblSize
1VlblLabel4
1VlblLabel5
1VlbCollection
1VlbFaces
1VlbSize
1VcbBold
1VcbItalic
1VcbUnderline
1VcbAntiAlias
1VmemSample
1MOnCollectionChanged
1MOnParamChange
1MCreateFontList
1MCreateFontAliasList
1MSetupUI
2MGetFontDesc
2MSetFontDesc
2MSetupCaptions
3MCreate
3MSetSampleText
#GUI.gui_dialogs.TfpgFileDialog #GUI.gui_dialogs.TfpgBaseDialog
1VchlDir
1Vgrid
1VbtnUpDir
1VbtnDirNew
1VbtnShowHidden
1Vpanel1
1VlbFileInfo
1VedFilename
1VchlFilter
1Vlb1
1Vlb2
1VFOpenMode
1VFFilterList
1VFFilter
1MSetFilter
1MGetShowHidden
1MSetShowHidden
1MListChanged
1MGridDblClicked
1MInitializeComponents
1MProcessFilterString
1MGetFileFilter
1MFilterChange
1MDirChange
1MUpDirClick
1MbtnDirNewClicked
1MedFilenameChanged
1MUpdateButtonState
2MHandleKeyPress
2MbtnOKClick
2MSetCurrentDirectory
3VFileName
3MCreate
3MDestroy
3MSelectFile
3MRunOpenFile
3MRunSaveFile
3PFilter rw
3PShowHidden rw
#GUI.gui_dialogs.TfpgMessageDialog TfpgForm
1VFInformativeText
1VFText
1VFButtons
1VFDefaultButton
1VFDialogType
1VFButtonList
1VFMaxLineWidth
1VFFont
1VFTextY
1VFLineHeight
1MGetInformativeText
1MSetButtons
1MSetDefaultButton
1MSetInformativeText
1MSetText
1MpnlIconPaint
1MPrepareIcon
1MPrepareText
1MPrepareButtons
2MSetWindowTitle
2MHandlePaint
2MHandleShow
2MHandleKeyPress
2MPrepareLayout
3VlblName1
3VpnlIcon
3MCreate
3MDestroy
3MAfterCreate
3MAbout
3MAboutFPGui
3MCritical
3MInformation
3MQuestion
3MWarning
3PInformativeText rw
3PText rw
3PButtons rw
3PDefaultButton rw
3PDialogType r
#GUI.gui_dialogs.TfpgNewDirDialog #GUI.gui_dialogs.TfpgBaseDialog
1VlblTitle
1VedDirectory
1MGetDirectory
3MCreate
3PDirectory r
#GUI.gui_dialogs.TfpgPromptUserDialog #GUI.gui_dialogs.TfpgBaseDialog
1VlblTitle
1VlblTitlePw
1VedUserID
1VedPassword
1MGetUserID
1MGetUserPassword
3MCreate
3MAuthenticate
3MWiggle
3PUserID r
3PPassword r
#GUI.gui_dialogs.TfpgPromptUserDbDialog #GUI.gui_dialogs.TfpgPromptUserDialog
1VlblDatabases
2VaStringList
2VcbDatabases
2MPopulateComboDb
3MCreate
3MDestroy
#GUI.gui_edit.TfpgCustomEdit #CoreLib.gfx_widget.TfpgWidget
1VFAutoSelect
1VFHideSelection
1VFPopupMenu
1VFDefaultPopupMenu
1VFText
1VFFont
1VFPasswordMode
1VFBorderStyle
1VFOnChange
1VFMaxLength
1VFSelecting
1MAdjustCursor
1MDeleteSelection
1MDoCopy
1MDoPaste
1MSetAutoSelect
1MSetBorderStyle
1MSetHideSelection
1MSetPasswordMode
1MGetFontDesc
1MSetFontDesc
1MSetText
1MDefaultPopupCut
1MDefaultPopupCopy
1MDefaultPopupPaste
1MDefaultPopupClearAll
1MSetDefaultPopupMenuItemsState
2VFMouseDragPos
2VFDrawOffset
2VFSideMargin
2VFSelStart
2VFSelOffset
2VFCursorPos
2MShowDefaultPopupMenu
2MHandlePaint
2MHandleKeyChar
2MHandleKeyPress
2MHandleLMouseDown
2MHandleRMouseDown
2MHandleMouseMove
2MHandleDoubleClick
2MHandleMouseEnter
2MHandleMouseExit
2MHandleSetFocus
2MHandleKillFocus
2MGetDrawText
2PAutoSelect rw
2PBorderStyle rw
2PFont r
2PFontDesc rw
2PHideSelection rw
2PMaxLength rw
2PPasswordMode rw
2PPopupMenu rw
2PText rw
2POnChange rw
3MCreate
3MDestroy
3MSelectionText
3MSelectAll
3MClear
3MClearSelection
3MCopyToClipboard
3MCutToClipboard
3MPasteFromClipboard
#GUI.gui_edit.TfpgEdit #GUI.gui_edit.TfpgCustomEdit
3PPopupMenu
4PAutoSelect
4PBackgroundColor
4PBorderStyle
4PFontDesc
4PHideSelection
4PMaxLength
4PPasswordMode
4PTabOrder
4PText
4PTextColor
4POnChange
4POnEnter
4POnExit
4POnKeyPress
4POnMouseEnter
4POnMouseExit
4POnPaint
#GUI.gui_edit.TfpgNumericEdit #GUI.gui_edit.TfpgCustomEdit
2MHandleKeyChar
4PAutoSelect
4PBackgroundColor
4PBorderStyle
4PFontDesc
4PHideSelection
4PTabOrder
4PTextColor
4POnChange
4POnEnter
4POnExit
4POnKeyPress
4POnMouseEnter
4POnMouseExit
4POnPaint
#GUI.gui_form.TfpgForm #CoreLib.gfx_widget.TfpgWidget
1VFFullScreen
1VFOnActivate
1VFOnClose
1VFOnCreate
1VFOnDeactivate
1VFOnDestroy
1VFOnHide
1VFOnShow
2VFModalResult
2VFParentForm
2VFWindowPosition
2VFWindowTitle
2VFSizeable
2MAdjustWindowStyle
2MSetWindowParameters
2MSetWindowTitle
2MMsgActivate
2MMsgDeActivate
2MMsgClose
2MHandlePaint
2MHandleClose
2MHandleHide
2MHandleShow
2MHandleMove
2MHandleResize
2MHandleKeyPress
2MAfterConstruction
2MBeforeDestruction
2MDoOnClose
3MCreate
3MAfterCreate
3MShow
3MHide
3MShowModal
3MClose
3PSizeable rw
3PModalResult rw
3PFullScreen rw
4PBackgroundColor
4PTextColor
4PWindowPosition rw
4PWindowTitle rw
4POnActivate rw
4POnClose rw
4POnCreate rw
4POnDeactivate rw
4POnDestroy rw
4POnHide rw
4POnPaint
4POnShow rw
#GUI.gui_grid.TfpgFileGrid #GUI.gui_customgrid.TfpgCustomGrid
1VFFileList
1VFFixedFont
2MGetRowCount
2MDrawCell
3MCreate
3MDestroy
3MCurrentEntry
3PFixedFont r
3PFileList r
3PDefaultRowHeight
3PFont
3PHeaderFont
4PFontDesc
4PHeaderFontDesc
4PRowCount
4PColumnCount
4PColumns
4PFocusRow
4PScrollBarStyle
4PTabOrder
4POnRowChange
4POnDoubleClick
#GUI.gui_grid.TfpgStringColumn #GUI.gui_customgrid.TfpgGridColumn
1VFCells
3MCreate
3MDestroy
3PCells rw
#GUI.gui_grid.TfpgCustomStringGrid #GUI.gui_customgrid.TfpgCustomGrid
1MGetCell
1MGetColumnTitle
1MGetObjects
1MSetCell
1MSetColumnTitle
1MSetObjects
2MGetColumnWidth
2MSetColumnWidth
2MGetColumns
2MDoDeleteColumn
2MDoSetRowCount
2MDoCreateColumnClass
2MDrawCell
2PColumns r
3MCreate
3MAddColumn
3PCells rw
3PObjects rw
3PColumnTitle rw
3PColumnWidth rw
3PColumnBackgroundColor rw
3PColumnTextColor rw
#GUI.gui_grid.TfpgStringGrid #GUI.gui_grid.TfpgCustomStringGrid
4PBackgroundColor
4PColumnCount
4PColumns
4PColumnWidth
4PDefaultColWidth
4PDefaultRowHeight
4PFocusCol
4PFocusRow
4PFontDesc
4PHeaderFontDesc
4PHeaderHeight
4PRowCount
4PRowSelect
4PScrollBarStyle
4PShowGrid
4PShowHeader
4PTabOrder
4PTopRow
4POnCanSelectCell
4POnDrawCell
4POnDoubleClick
4POnFocusChange
4POnKeyPress
4POnRowChange
#GUI.gui_label.TfpgCustomLabel #CoreLib.gfx_widget.TfpgWidget
1VFAutoSize
1VFAlignment
1VFLayout
1VFWrapText
1VFWrappedText
1VFLineSpace
1MWrap
1MSetWrapText
1MSetAlignment
1MSetLayout
1MGetFontDesc
1MSetAutoSize
1MSetFontDesc
1MSetText
1MResizeLabel
2VFText
2VFFont
2MHandleResize
2MHandlePaint
2PWrapText rw
2PAlignment rw
2PAutoSize rw
2PLayout rw
2PFontDesc rw
2PText rw
2PLineSpace rw
3MCreate
3MDestroy
3PFont r
#GUI.gui_label.TfpgLabel #GUI.gui_label.TfpgCustomLabel
4PAlignment
4PAutoSize
4PBackgroundColor
4PFontDesc
4PLayout
4PText
4PTextColor
4PWidth
4PWrapText
4POnClick
4POnDoubleClick
4POnMouseDown
4POnMouseEnter
4POnMouseExit
4POnMouseMove
4POnMouseUp
#GUI.gui_listbox.TfpgBaseListBox #CoreLib.gfx_widget.TfpgWidget
1VFHotTrack
1VFOnChange
1VFOnScroll
1VFOnSelect
1VFPopupFrame
1VFAutoHeight
1MGetFontDesc
1MSetFocusItem
1MSetFontDesc
1MSetPopupFrame
1MUpdateScrollbarCoords
1MSetAutoHeight
2VFFont
2VFScrollBar
2VFFocusItem
2VFMouseDragging
2VFFirstItem
2VFMargin
2MUpdateScrollBar
2MFollowFocus
2MListHeight
2MScrollBarWidth
2MPageLength
2MScrollBarMove
2MDrawItem
2MDoChange
2MDoSelect
2MHandleKeyPress
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleMouseMove
2MHandleMouseScroll
2MHandleShow
2MHandlePaint
2PAutoHeight rw
2PFocusItem rw
2PFontDesc rw
2PHotTrack rw
2PPopupFrame rw
3MCreate
3MDestroy
3MUpdate
3MItemCount
3MRowHeight
3MSetFirstItem
3PFont r
3POnChange rw
3POnSelect rw
3POnScroll rw
3POnKeyPress
#GUI.gui_listbox.TfpgTextListBox #GUI.gui_listbox.TfpgBaseListBox
2VFItems
2MDrawItem
2MHandleKeyChar
2PItems r
3MCreate
3MDestroy
3MItemCount
3MText
#GUI.gui_listbox.TfpgListBox #GUI.gui_listbox.TfpgTextListBox
4PAutoHeight
4PBackgroundColor
4PFocusItem
4PFontDesc
4PHotTrack
4PItems
4PPopupFrame
4PTabOrder
4PTextColor
#GUI.gui_listbox.TColorItem TObject
3MCreate
3VColorName
3VColorValue
#GUI.gui_listbox.TfpgBaseColorListBox #GUI.gui_listbox.TfpgBaseListBox
1VFColorBoxWidth
1VFColorBoxHeight
1VFColorPalette
1VFShowColorNames
1MGetColor
1MSetColor
1MSetColorPalette
1MSetShowColorNames
1MSetupColorPalette
1MFreeAndClearColors
2VFItems
2MDrawItem
2PItems r
2PColor rw
2PColorPalette rw
2PShowColorNames rw
3MCreate
3MDestroy
3MItemCount
#GUI.gui_listbox.TfpgColorListBox #GUI.gui_listbox.TfpgBaseColorListBox
4PAutoHeight
4PBackgroundColor
4PColor
4PColorPalette
4PFocusItem
4PFontDesc
4PHotTrack
4PItems
4PPopupFrame
4PShowColorNames
4PTabOrder
4PTextColor
#GUI.gui_listview.TfpgLVColumn TComponent
1VFAlignment
1VFCaptionAlignment
1VFDown
1VFAutoSize
1VFCaption
1VFClickable
1VFColumnIndex
1VFColumns
1VFHeight
1VFResizable
1VFVisible
1VFWidth
1MSetAlignment
1MSetAutoSize
1MSetCaption
1MSetCaptionAlignment
1MSetColumnIndex
1MSetHeight
1MSetResizable
1MSetVisible
1MSetWidth
3MCreate
3MDestroy
3PCaption rw
3PCaptionAlignment rw
3PAlignment rw
3PAutoSize rw
3PWidth rw
3PHeight rw
3PVisible rw
3PColumnIndex rw
3PClickable rw
3PResizable rw
#GUI.gui_listview.TfpgLVColumns TPersistent
1VFListView
1VFColumns
1MGetColumn
1MSetColumn
3MCreate
3MDestroy
3MAdd
3MClear
3MDelete
3MInsert
3MCount
3PColumn rw
#GUI.gui_listview.IfpgLVItemViewer 0MItemDeleted
0MItemAdded
0MItemChanged
0MItemsUpdated
#GUI.gui_listview.TfpgLVItems TObject
1VFUpdateCount
1VFColumns
1VFCurrentIndexOf
1VFViewers
1VFItems
1MGetCapacity
1MGetItem
1MSetCapacity
1MSetItem
1MAddViewer
1MDeleteViewer
1MDoChange
1MDoAdd
1MDoDelete
1MDoEndUpdate
3MCreate
3MDestroy
3MAdd
3MCount
3MClear
3MDelete
3MIndexOf
3MInsertItem
3MBeginUpdate
3MEndUpdate
3PCapacity rw
3PColumns r
3PItem rw
#GUI.gui_listview.TfpgLVItem TObject
1VFCaption
1VFItems
1VFSubItems
1VFUserData
1MGetSelected
1MSetCaption
1MSetSelected
1MSubItemsChanged
3MCreate
3MDestroy
3PCaption rw
3PUserData rw
3PSubItems r
3PSelected rw
#GUI.gui_listview.TfpgListView #CoreLib.gfx_widget.TfpgWidget
1VFItemIndex
1VFMultiSelect
1VFOnPaintColumn
1VFOnSelectionChanged
1VFShiftCount
1VFSelectionFollowsFocus
1VFSelectionShiftStart
1VFOnColumnClick
1VFSelected
1VFOldSelected
1VFUpdateCount
1VFVScrollBar
1VFHScrollBar
1VFColumns
1VFItems
1VFOnPaintItem
1VFShowHeaders
1VFResizingColumn
1VFMouseDownPoint
1MGetItemHeight
1MSetItemIndex
1MSetItems
1MSetMultiSelect
1MSetOnColumnClick
1MSetShowHeaders
1MVScrollChange
1MHScrollChange
1MItemDeleted
1MItemAdded
1MItemChanged
1MItemsUpdated
1MGetClientRect
1MGetVisibleColumnsWidth
1MGetItemAreaHeight
1MStartShiftSelection
1MEndShiftSelection
1MSelectionSetRangeEnabled
1MSelectionToggleRange
1MSelectionClear
1MItemGetSelected
1MItemSetSelected
1MItemGetFromPoint
1MItemGetRect
1MItemIndexFromY
1MHeaderHeight
1MDoRepaint
1MDoColumnClick
1MHandleHeaderMouseMove
2MHandleMouseScroll
2MHandleLMouseDown
2MHandleRMouseDown
2MHandleLMouseUp
2MHandleRMouseUp
2MHandleMouseMove
2MHandleKeyPress
2MHandleKeyRelease
2MHandlePaint
2MHandleResize
2MPaintHeaders
2MPaintItems
2MUpdateScrollBarPositions
3MCreate
3MDestroy
3MBeginUpdate
3MEndUpdate
3MMakeItemVisible
3MItemAdd
4PColumns r
4PItems rw
4PSelectionFollowsFocus rw
4PShowHeaders rw
4PMultiSelect rw
4PVScrollBar r
4PHScrollBar r
4PItemHeight r
4PItemIndex rw
4PTabOrder
4POnColumnClick rw
4POnPaintColumn rw
4POnPaintItem rw
4POnSelectionChanged rw
#GUI.gui_memo.TfpgMemo #CoreLib.gfx_widget.TfpgWidget
1VFLines
1VFMaxLength
1VFCursorPos
1VFCursorLine
1VFOnChange
1VFSideMargin
1VFSelStartLine
1VFSelEndLine
1VFSelStartPos
1VFSelEndPos
1VFSelecting
1VFMouseDragging
1VFMouseDragPos
1VFFont
1VFDrawOffset
1VFLineHeight
1VFFirstLine
1VFTabWidth
1VFUseTabs
1VFVScrollBar
1VFHScrollBar
1VFWrapping
1VFLongestLineWidth
1MGetFontDesc
1MSetFontDesc
1MRecalcLongestLine
1MDeleteSelection
1MDoCopy
1MDoPaste
1MAdjustCursor
1MLineCount
1MGetLineText
1MSetLineText
1MGetCursorX
1MSetCPByX
1MCurrentLine
1MVisibleLines
1MVisibleWidth
1MVScrollBarMove
1MHScrollBarMove
1MSetText
1MGetText
1MSetCursorLine
1MUpdateScrollBarCoords
2MHandleKeyChar
2MHandleKeyPress
2MHandleLMouseDown
2MHandleMouseMove
2MHandleResize
2MHandleMouseScroll
2MHandlePaint
2MHandleShow
2MHandleMouseEnter
2MHandleMouseExit
3MCreate
3MDestroy
3MUpdateScrollBars
3MSelectionText
3PCursorLine rw
3PFont r
3PLineHeight r
3PMaxLength rw
3PTabWidth rw
3PText rw
3PUseTabs rw
4PBackgroundColor
4PFontDesc rw
4PLines r
4PTabOrder
4PTextColor
4POnChange rw
#GUI.gui_menu.TfpgMenuItem TComponent
1VFCommand
1VFEnabled
1VFHotKeyDef
1VFOnClick
1VFSeparator
1VFSubMenu
1VFText
1VFVisible
1MSetEnabled
1MSetHotKeyDef
1MSetSeparator
1MSetText
1MSetVisible
3MCreate
3MClick
3MSelectable
3MGetAccelChar
3MDrawText
3MGetCommand
3MSetCommand
3PText rw
3PHotKeyDef rw
3PSeparator rw
3PVisible rw
3PEnabled rw
3PSubMenu rw
3POnClick rw
#GUI.gui_menu.TfpgPopupMenu #CoreLib.gfx_popupwindow.TfpgPopupWindow
1VFBeforeShow
1VFMargin
1VFTextMargin
1MDoSelect
1MCloseSubmenus
1MGetItemPosY
1MCalcMouseRow
1MVisibleCount
1MVisibleItem
1MMenuFocused
1MSearchItemByAccel
2VFMenuFont
2VFMenuAccelFont
2VFMenuDisabledFont
2VFSymbolWidth
2VFItems
2VFFocusItem
2MHandleMouseEnter
2MHandleMouseExit
2MHandleMouseMove
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleKeyPress
2MHandlePaint
2MHandleShow
2MHandleClose
2MDrawItem
2MDrawRow
2MItemHeight
2MPrepareToShow
3VOpenerPopup
3VOpenerMenuBar
3MCreate
3MDestroy
3MClose
3MAddMenuItem
3MMenuItemByName
3MMenuItem
3PBeforeShow rw
#GUI.gui_menu.TfpgMenuBar #CoreLib.gfx_widget.TfpgWidget
1VFBeforeShow
1VFLightColor
1VFDarkColor
1VFMenuOptions
1VFPrevFocusItem
1VFFocusItem
1MSetFocusItem
1MDoSelect
1MCloseSubmenus
1MItemWidth
2VFItems
2PFocusItem rw
2MPrepareToShow
2MVisibleCount
2MVisibleItem
2MHandleShow
2MHandleMouseMove
2MHandleLMouseDown
2MHandleKeyPress
2MHandlePaint
2MCalcMouseCol
2MGetItemPosX
2MMenuFocused
2MSearchItemByAccel
2MActivateMenu
2MDeActivateMenu
2MDrawColumn
3MCreate
3MDestroy
3MAddMenuItem
3MMenuItem
3PMenuOptions rw
3PBeforeShow rw
#GUI.gui_progressbar.TfpgCustomProgressBar #CoreLib.gfx_widget.TfpgWidget
1VFMax
1VFMin
1VFPosition
1VFShowCaption
1VFStep
1VFFont
1MSetMax
1MSetMin
1MSetPosition
1MSetShowCaption
1MSetStep
2MHandlePaint
2PMax rw
2PMin rw
2PPosition rw
2PStep rw
2PShowCaption rw
3MCreate
3MDestroy
3MStepIt
3MStepBy
3PFont r
#GUI.gui_progressbar.TfpgProgressBar #GUI.gui_progressbar.TfpgCustomProgressBar
4PBackgroundColor
4PShowCaption
4PMax
4PMin
4PPosition
4PStep
4PTextColor
#GUI.gui_radiobutton.TfpgRadioButton #CoreLib.gfx_widget.TfpgWidget
1VFAutoSize
1VFChecked
1VFFont
1VFGroupIndex
1VFOnChange
1VFText
1VFBoxSize
1VFIsPressed
1MGetFontDesc
1MSetAutoSize
1MSetChecked
1MSetFontDesc
1MSetText
1MDoAdjustWidth
2MHandlePaint
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleKeyPress
2MHandleKeyRelease
2MFindNeighbor
3MCreate
3MDestroy
3PFont r
4PAutoSize rw
4PBackgroundColor
4PChecked rw
4PFontDesc rw
4PGroupIndex rw
4PTabOrder
4PText rw
4PTextColor
4POnChange rw
#GUI.gui_scrollbar.TfpgScrollBar #CoreLib.gfx_widget.TfpgWidget
1VFLargeChange
1VFScrollbarDownPart
1MSetMax
1MSetMin
1MSetPosition
1MStep
1MStepPage
1MStepStart
1MStepEnd
2VFMax
2VFMin
2VFPageSize
2VFPosition
2VFScrollStep
2VFSliderPos
2VFSliderLength
2VFSliderDragPos
2VFSliderDragStart
2VFScrollTimer
2VFActiveButtonRect
2VFMousePosition
2VFOnScroll
2MScrollTimer
2MDrawButton
2MDrawSlider
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleMouseMove
2MHandleMouseScroll
2MHandlePaint
2MPositionChange
3VOrientation
3VSliderSize
3MCreate
3MDestroy
3MRepaintSlider
3PPageSize rw
3PPosition rw
3PScrollStep rw
3PMin rw
3PMax rw
3POnScroll rw
#GUI.gui_style.TfpgStyleOption TObject
1VFRect
1VFState
1VFStyleOption
3PStyleOption rw
3PRect rw
3PState rw
#GUI.gui_style.TfpgButtonStyleOption #GUI.gui_style.TfpgStyleOption
1VFButtonFeatures
3PButtonFeatures rw
#GUI.gui_style.TfpgBaseStyle TObject
3MDrawControl
3MDrawPrimitive
#GUI.gui_style.TfpgCommonStyle #GUI.gui_style.TfpgBaseStyle
3MDrawControl
3MDrawPrimitive
#GUI.gui_style.TfpgWin2000Style #GUI.gui_style.TfpgCommonStyle
#GUI.gui_style.TfpgWinXPStyle #GUI.gui_style.TfpgCommonStyle
#GUI.gui_style.TfpgBlueCurveStyle #GUI.gui_style.TfpgCommonStyle
#GUI.gui_style.TfpgClearLookStyle #GUI.gui_style.TfpgCommonStyle
#GUI.gui_style.TfpgMotifStyle #GUI.gui_style.TfpgCommonStyle
#GUI.gui_tab.TfpgTabSheet #CoreLib.gfx_widget.TfpgWidget
1VFText
1MGetPageControl
1MGetPageIndex
1MGetText
1MSetPageIndex
1MSetText
2MHandlePaint
3MCreate
3MDestroy
3MAfterConstruction
3PText rw
3PPageIndex rw
3PPageControl r
#GUI.gui_tab.TfpgPageControl #CoreLib.gfx_widget.TfpgWidget
1VFFont
1VFActivePage
1VFMargin
1VFFixedTabWidth
1VFPages
1VFActivePageIndex
1VFOnChange
1VFRightButton
1VFLeftButton
1VFFirstTabButton
1VFSortPages
1VFStyle
1VFTabPosition
1MGetActivePageIndex
1MGetPage
1MGetPageCount
1MInsertPage
1MRemovePage
1MSetActivePageIndex
1MSetActivePage
1MMaxButtonWidthSum
1MMaxButtonHeight
1MMaxButtonWidth
1MButtonHeight
1MButtonWidth
1MSetFixedTabWidth
1MGetTabText
1MLeftButtonClick
1MRightButtonClick
1MFindNextPage
1MSetSortPages
1MSetStyle
1MSetTabPosition
1MDoChange
2MOrderSheets
2MRePaintTitles
2MHandlePaint
2MHandleShow
2MHandleLMouseUp
2MHandleKeyPress
3MCreate
3MDestroy
3MAppendTabSheet
3PPageCount r
3PActivePage rw
3PPages r
3POnChange rw
4PActivePageIndex rw
4PBackgroundColor
4PFixedTabWidth rw
4PSortPages rw
4PStyle rw
4PTabOrder
4PTabPosition rw
4PTextColor
#GUI.gui_trackbar.TfpgTrackBarExtra #CoreLib.gfx_widget.TfpgWidget
1VFMax
1VFMin
1VFOnChange
1VFOrientation
1VFPosition
1VFSliderSize
1MDoChange
1MSetMax
1MSetMin
1MSetPosition
1MSetSliderSize
1MFixMinMaxOrder
1MFixPositionLimits
1MDrawSlider
2MHandlePaint
2MHandleLMouseUp
2MHandleKeyPress
3MCreate
4PBackgroundColor
4PMin rw
4PMax rw
4PPosition rw
4PSliderSize rw
4POrientation rw
4PTabOrder
4POnChange rw
#GUI.gui_trackbar.TfpgTrackBar #CoreLib.gfx_widget.TfpgWidget
1VFMax
1VFMin
1VFOrientation
1VFPosition
1VFScrollStep
1VFShowPosition
1VFSliderPos
1VFSliderLength
1VFSliderDragging
1VFSliderDragPos
1VFSliderDragStart
1VFMousePosition
1VFOnChange
1VFFont
1MSetMax
1MSetMin
1MSetPosition
1MSetShowPosition
1MGetTextWidth
2MHandleLMouseDown
2MHandleLMouseUp
2MHandleMouseMove
2MHandlePaint
2MDrawSlider
2MRepaintSlider
2MPositionChange
3MCreate
3MDestroy
4PBackgroundColor
4PPosition rw
4PScrollStep rw
4PMin rw
4PMax rw
4PShowPosition rw
4POrientation rw
4PTabOrder
4PTextColor
4POnChange rw
#GUI.gui_iniutils.TfpgINIFile TINIFile
1VFReadOnly
3MCreateExt
3MReadString
3MReadInteger
3MReadBool
3MReadDate
3MReadDateTime
3MReadFloat
3MReadTime
3MReadFormState
3MWriteFormState
#GUI.gui_mru.TfpgMRU TComponent
1VFItems
1VFMaxItems
1VFShowFullPath
1VFParentMenuItem
1VFIniFilePath
1VFOnClick
1MSetMaxItems
1MSetParentMenuItem
1MSetShowFullPath
1MSaveMRU
1MItemsChange
1MClearParentMenu
2MLoaded
2MNotification
2MDoClick
3MCreate
3MDestroy
3MAddItem
3MRemoveItem
3MLoadMRU
4PMaxItems rw
4PShowFullPath rw
4PParentMenuItem rw
4POnClick rw
#GUI.gui_gauge.TfpgGauge #CoreLib.gfx_widget.TfpgWidget
1VFFont
1VFClientRect
1VFMin
1VFMax
1VFPosition
1VFKind
1VFShowText
1VFBorderStyle
1VFColor
1VFFirstColor
1VFSecondColor
1VFLWMColor
1VFLWMValue
1VFHWMColor
1VFHWMValue
1MBackgroundDraw
1MTextDraw
1MBarDraw
1MPieDraw
1MNeedleDraw
1MDialDraw
1MSetGaugeKind
1MSetShowText
1MSetBorderStyle
1MSetFirstColor
1MSetSecondColor
1MSetMin
1MSetMax
1MSetProgress
1MGetPercentage
2MHandlePaint
3MCreate
3MAddProgress
3PPercentage r
3PFont r
4PAlign
4PAnchors
4PSecondColor rw
4PBorderStyle rw
4PColor rw
4PEnabled
4PFirstColor rw
4PKind rw
4PMinValue rw
4PMaxValue rw
4PProgress rw
4PShowText rw
4PVisible
#GUI.gui_popupcalendar.TfpgPopupCalendar #CoreLib.gfx_popupwindow.TfpgPopupWindow
1VFMonthOffset
1VFDate
1VFMaxDate
1VFMinDate
1VFCallerWidget
1VFOnValueSet
1VFCloseOnSelect
1VedtYear
1VbtnYearUp
1VbtnYearDown
1VedtMonth
1VbtnMonthUp
1VbtnMonthDown
1VbtnToday
1VgrdName1
1MGetDateElement
1MPopulateDays
1MCalculateMonthOffset
1MCalculateCellDay
1MSetDateElement
1MSetDateValue
1MSetMaxDate
1MSetMinDate
1MSetCloseOnSelect
1MUpdateCalendar
1MbtnYearUpClicked
1MbtnYearDownClicked
1MbtnMonthUpClicked
1MbtnMonthDownClicked
1MbtnTodayClicked
1MgrdName1DoubleClick
1MgrdName1KeyPress
1MTearDown
2VFOrigFocusWin
2MHandlePaint
2MHandleKeyPress
2MHandleShow
2MHandleHide
2PCallerWidget rw
3MCreate
3MAfterCreate
3PCloseOnSelect rw
3PDay
3PMonth
3PYear
3POnValueSet rw
4PDateValue rw
4PMinDate rw
4PMaxDate rw
#GUI.gui_popupcalendar.TfpgCalendarCombo #GUI.gui_combobox.TfpgAbstractComboBox
1VFDate
1VFDateFormat
1VFMaxDate
1VFMinDate
1VFCloseOnSelect
1MInternalOnValueSet
1MSetDateFormat
1MSetDateValue
1MSetMaxDate
1MSetMinDate
1MSetText
1MGetText
1MSetCloseOnSelect
2MHasText
2MDoDropDown
3MCreate
4PBackgroundColor
4PDateFormat rw
4PDateValue rw
4PFontDesc
4PMinDate rw
4PMaxDate rw
4PCloseOnSelect rw
4PTabOrder
4POnChange
#GUI.gui_hyperlink.TfpgHyperlink #GUI.gui_label.TfpgCustomLabel
1VfHotTrackColor
1VfOldColor
1VfOldFont
1VfHTFont
1VfUrl
1MSetHotTrackColor
1MSetHotTrackFont
1MSetURL
2MHandleMouseEnter
2MHandleMouseExit
2MHandleLMouseDown
3MCreate
3MGoHyperLink
4PAutosize
4PFontDesc
4PHotTrackColor rw
4PHotTrackFont rw
4PText
4PTextColor
4PURL rw
|