blob: 3cecf74bd203ae79e4ac87d8642352cc68b83466 (
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
|
# FPDoc Content File
:link tree
#CoreLib index.html
fpg_base fpg_base/index.html
MOUSE_LEFT fpg_base/mouse_left.html
MOUSE_RIGHT fpg_base/mouse_right.html
MOUSE_MIDDLE fpg_base/mouse_middle.html
FPGM_PAINT fpg_base/fpgm_paint.html
FPGM_ACTIVATE fpg_base/fpgm_activate.html
FPGM_DEACTIVATE fpg_base/fpgm_deactivate.html
FPGM_KEYPRESS fpg_base/fpgm_keypress.html
FPGM_KEYRELEASE fpg_base/fpgm_keyrelease.html
FPGM_KEYCHAR fpg_base/fpgm_keychar.html
FPGM_MOUSEDOWN fpg_base/fpgm_mousedown.html
FPGM_MOUSEUP fpg_base/fpgm_mouseup.html
FPGM_MOUSEMOVE fpg_base/fpgm_mousemove.html
FPGM_DOUBLECLICK fpg_base/fpgm_doubleclick.html
FPGM_MOUSEENTER fpg_base/fpgm_mouseenter.html
FPGM_MOUSEEXIT fpg_base/fpgm_mouseexit.html
FPGM_CLOSE fpg_base/fpgm_close.html
FPGM_SCROLL fpg_base/fpgm_scroll.html
FPGM_RESIZE fpg_base/fpgm_resize.html
FPGM_MOVE fpg_base/fpgm_move.html
FPGM_POPUPCLOSE fpg_base/fpgm_popupclose.html
FPGM_HINTTIMER fpg_base/fpgm_hinttimer.html
FPGM_USER fpg_base/fpgm_user.html
FPGM_KILLME fpg_base/fpgm_killme.html
keyNul fpg_base/keynul.html
keyBackSpace fpg_base/keybackspace.html
keyTab fpg_base/keytab.html
keyLinefeed fpg_base/keylinefeed.html
keyReturn fpg_base/keyreturn.html
keyEnter fpg_base/keyenter.html
keyEscape fpg_base/keyescape.html
keyDelete fpg_base/keydelete.html
keySpace fpg_base/keyspace.html
keyVoid fpg_base/keyvoid.html
keyBreak fpg_base/keybreak.html
keyScrollForw fpg_base/keyscrollforw.html
keyScrollBack fpg_base/keyscrollback.html
keyBoot fpg_base/keyboot.html
keyCompose fpg_base/keycompose.html
keySAK fpg_base/keysak.html
keyUndo fpg_base/keyundo.html
keyRedo fpg_base/keyredo.html
keyMenu fpg_base/keymenu.html
keyCancel fpg_base/keycancel.html
keyPrintScreen fpg_base/keyprintscreen.html
keyExecute fpg_base/keyexecute.html
keyFind fpg_base/keyfind.html
keyBegin fpg_base/keybegin.html
keyClear fpg_base/keyclear.html
keyInsert fpg_base/keyinsert.html
keySelect fpg_base/keyselect.html
keyMacro fpg_base/keymacro.html
keyHelp fpg_base/keyhelp.html
keyDo fpg_base/keydo.html
keyPause fpg_base/keypause.html
keyStop fpg_base/keystop.html
keySysRq fpg_base/keysysrq.html
keyModeSwitch fpg_base/keymodeswitch.html
keyUp fpg_base/keyup.html
keyDown fpg_base/keydown.html
keyLeft fpg_base/keyleft.html
keyRight fpg_base/keyright.html
keyPrior fpg_base/keyprior.html
keyPageUp fpg_base/keypageup.html
keyNext fpg_base/keynext.html
keyPageDown fpg_base/keypagedown.html
keyHome fpg_base/keyhome.html
keyEnd fpg_base/keyend.html
keyF0 fpg_base/keyf0.html
keyF1 fpg_base/keyf1.html
keyF2 fpg_base/keyf2.html
keyF3 fpg_base/keyf3.html
keyF4 fpg_base/keyf4.html
keyF5 fpg_base/keyf5.html
keyF6 fpg_base/keyf6.html
keyF7 fpg_base/keyf7.html
keyF8 fpg_base/keyf8.html
keyF9 fpg_base/keyf9.html
keyF10 fpg_base/keyf10.html
keyF11 fpg_base/keyf11.html
keyF12 fpg_base/keyf12.html
keyF13 fpg_base/keyf13.html
keyF14 fpg_base/keyf14.html
keyF15 fpg_base/keyf15.html
keyF16 fpg_base/keyf16.html
keyF17 fpg_base/keyf17.html
keyF18 fpg_base/keyf18.html
keyF19 fpg_base/keyf19.html
keyF20 fpg_base/keyf20.html
keyF21 fpg_base/keyf21.html
keyF22 fpg_base/keyf22.html
keyF23 fpg_base/keyf23.html
keyF24 fpg_base/keyf24.html
keyF25 fpg_base/keyf25.html
keyF26 fpg_base/keyf26.html
keyF27 fpg_base/keyf27.html
keyF28 fpg_base/keyf28.html
keyF29 fpg_base/keyf29.html
keyF30 fpg_base/keyf30.html
keyF31 fpg_base/keyf31.html
keyF32 fpg_base/keyf32.html
keyF33 fpg_base/keyf33.html
keyF34 fpg_base/keyf34.html
keyF35 fpg_base/keyf35.html
keyF36 fpg_base/keyf36.html
keyF37 fpg_base/keyf37.html
keyF38 fpg_base/keyf38.html
keyF39 fpg_base/keyf39.html
keyF40 fpg_base/keyf40.html
keyF41 fpg_base/keyf41.html
keyF42 fpg_base/keyf42.html
keyF43 fpg_base/keyf43.html
keyF44 fpg_base/keyf44.html
keyF45 fpg_base/keyf45.html
keyF46 fpg_base/keyf46.html
keyF47 fpg_base/keyf47.html
keyF48 fpg_base/keyf48.html
keyF49 fpg_base/keyf49.html
keyF50 fpg_base/keyf50.html
keyF51 fpg_base/keyf51.html
keyF52 fpg_base/keyf52.html
keyF53 fpg_base/keyf53.html
keyF54 fpg_base/keyf54.html
keyF55 fpg_base/keyf55.html
keyF56 fpg_base/keyf56.html
keyF57 fpg_base/keyf57.html
keyF58 fpg_base/keyf58.html
keyF59 fpg_base/keyf59.html
keyF60 fpg_base/keyf60.html
keyF61 fpg_base/keyf61.html
keyF62 fpg_base/keyf62.html
keyF63 fpg_base/keyf63.html
keyF64 fpg_base/keyf64.html
keyP0 fpg_base/keyp0.html
keyP1 fpg_base/keyp1.html
keyP2 fpg_base/keyp2.html
keyP3 fpg_base/keyp3.html
keyP4 fpg_base/keyp4.html
keyP5 fpg_base/keyp5.html
keyP6 fpg_base/keyp6.html
keyP7 fpg_base/keyp7.html
keyP8 fpg_base/keyp8.html
keyP9 fpg_base/keyp9.html
keyPA fpg_base/keypa.html
keyPB fpg_base/keypb.html
keyPC fpg_base/keypc.html
keyPD fpg_base/keypd.html
keyPE fpg_base/keype.html
keyPF fpg_base/keypf.html
keyPPlus fpg_base/keypplus.html
keyPMinus fpg_base/keypminus.html
keyPSlash fpg_base/keypslash.html
keyPAsterisk fpg_base/keypasterisk.html
keyPStar fpg_base/keypstar.html
keyPEqual fpg_base/keypequal.html
keyPSeparator fpg_base/keypseparator.html
keyPDecimal fpg_base/keypdecimal.html
keyPParenLeft fpg_base/keypparenleft.html
keyPParenRight fpg_base/keypparenright.html
keyPSpace fpg_base/keypspace.html
keyPEnter fpg_base/keypenter.html
keyPTab fpg_base/keyptab.html
keyPPlusMinus fpg_base/keypplusminus.html
keyPBegin fpg_base/keypbegin.html
keyPF1 fpg_base/keypf1.html
keyPF2 fpg_base/keypf2.html
keyPF3 fpg_base/keypf3.html
keyPF4 fpg_base/keypf4.html
keyPF5 fpg_base/keypf5.html
keyPF6 fpg_base/keypf6.html
keyPF7 fpg_base/keypf7.html
keyPF8 fpg_base/keypf8.html
keyPF9 fpg_base/keypf9.html
keyShift fpg_base/keyshift.html
keyCtrl fpg_base/keyctrl.html
keyAlt fpg_base/keyalt.html
keyMeta fpg_base/keymeta.html
keySuper fpg_base/keysuper.html
keyHyper fpg_base/keyhyper.html
keyAltGr fpg_base/keyaltgr.html
keyCaps fpg_base/keycaps.html
keyNum fpg_base/keynum.html
keyScroll fpg_base/keyscroll.html
keyShiftL fpg_base/keyshiftl.html
keyShiftR fpg_base/keyshiftr.html
keyCtrlL fpg_base/keyctrll.html
keyCtrlR fpg_base/keyctrlr.html
keyAltL fpg_base/keyaltl.html
keyAltR fpg_base/keyaltr.html
keyMetaL fpg_base/keymetal.html
keyMetaR fpg_base/keymetar.html
keySuperL fpg_base/keysuperl.html
keySuperR fpg_base/keysuperr.html
keyHyperL fpg_base/keyhyperl.html
keyHyperR fpg_base/keyhyperr.html
keyShiftLock fpg_base/keyshiftlock.html
keyCtrlLock fpg_base/keyctrllock.html
keyAltLock fpg_base/keyaltlock.html
keyMetaLock fpg_base/keymetalock.html
keySuperLock fpg_base/keysuperlock.html
keyHyperLock fpg_base/keyhyperlock.html
keyAltGrLock fpg_base/keyaltgrlock.html
keyCapsLock fpg_base/keycapslock.html
keyNumLock fpg_base/keynumlock.html
keyScrollLock fpg_base/keyscrolllock.html
keyDeadRing fpg_base/keydeadring.html
keyDeadCaron fpg_base/keydeadcaron.html
keyDeadOgonek fpg_base/keydeadogonek.html
keyDeadIota fpg_base/keydeadiota.html
keyDeadDoubleAcute fpg_base/keydeaddoubleacute.html
keyDeadBreve fpg_base/keydeadbreve.html
keyDeadAboveDot fpg_base/keydeadabovedot.html
keyDeadBelowDot fpg_base/keydeadbelowdot.html
keyDeadVoicedSound fpg_base/keydeadvoicedsound.html
keyDeadSemiVoicedSound fpg_base/keydeadsemivoicedsound.html
keyDeadAcute fpg_base/keydeadacute.html
keyDeadCedilla fpg_base/keydeadcedilla.html
keyDeadCircumflex fpg_base/keydeadcircumflex.html
keyDeadDiaeresis fpg_base/keydeaddiaeresis.html
keyDeadGrave fpg_base/keydeadgrave.html
keyDeadTilde fpg_base/keydeadtilde.html
keyDeadMacron fpg_base/keydeadmacron.html
keyNIL fpg_base/keynil.html
keyEcuSign fpg_base/keyecusign.html
keyColonSign fpg_base/keycolonsign.html
keyCruzeiroSign fpg_base/keycruzeirosign.html
keyFFrancSign fpg_base/keyffrancsign.html
keyLiraSign fpg_base/keylirasign.html
keyMillSign fpg_base/keymillsign.html
keyNairaSign fpg_base/keynairasign.html
keyPesetaSign fpg_base/keypesetasign.html
keyRupeeSign fpg_base/keyrupeesign.html
keyWonSign fpg_base/keywonsign.html
keyNewSheqelSign fpg_base/keynewsheqelsign.html
keyDongSign fpg_base/keydongsign.html
keyEuroSign fpg_base/keyeurosign.html
mrNone fpg_base/mrnone.html
mrOk fpg_base/mrok.html
mrCancel fpg_base/mrcancel.html
mrYes fpg_base/mryes.html
mrNo fpg_base/mrno.html
mrAbort fpg_base/mrabort.html
mrRetry fpg_base/mrretry.html
mrIgnore fpg_base/mrignore.html
mrAll fpg_base/mrall.html
mrNoToAll fpg_base/mrnotoall.html
mrYesToAll fpg_base/mryestoall.html
UserNamedColorStart fpg_base/usernamedcolorstart.html
clAqua fpg_base/claqua.html
clBlack fpg_base/clblack.html
clBlue fpg_base/clblue.html
clCream fpg_base/clcream.html
clDkGray fpg_base/cldkgray.html
clFuchsia fpg_base/clfuchsia.html
clGray fpg_base/clgray.html
clGreen fpg_base/clgreen.html
clLime fpg_base/cllime.html
clLtGray fpg_base/clltgray.html
clMaroon fpg_base/clmaroon.html
clNavy fpg_base/clnavy.html
clOlive fpg_base/clolive.html
clPurple fpg_base/clpurple.html
clRed fpg_base/clred.html
clSilver fpg_base/clsilver.html
clTeal fpg_base/clteal.html
clWhite fpg_base/clwhite.html
clYellow fpg_base/clyellow.html
clNone fpg_base/clnone.html
clDefault fpg_base/cldefault.html
clMoneyGreen fpg_base/clmoneygreen.html
clSkyBlue fpg_base/clskyblue.html
clMedGray fpg_base/clmedgray.html
cl_BaseNamedColor fpg_base/cl_basenamedcolor.html
clWindowBackground fpg_base/clwindowbackground.html
clBoxColor fpg_base/clboxcolor.html
clButtonFace fpg_base/clbuttonface.html
clShadow1 fpg_base/clshadow1.html
clShadow2 fpg_base/clshadow2.html
clHilite1 fpg_base/clhilite1.html
clHilite2 fpg_base/clhilite2.html
clText1 fpg_base/cltext1.html
clText2 fpg_base/cltext2.html
clText3 fpg_base/cltext3.html
clText4 fpg_base/cltext4.html
clSelection fpg_base/clselection.html
clSelectionText fpg_base/clselectiontext.html
clInactiveSel fpg_base/clinactivesel.html
clInactiveSelText fpg_base/clinactiveseltext.html
clScrollBar fpg_base/clscrollbar.html
clListBox fpg_base/cllistbox.html
clGridLines fpg_base/clgridlines.html
clGridHeader fpg_base/clgridheader.html
clWidgetFrame fpg_base/clwidgetframe.html
clInactiveWgFrame fpg_base/clinactivewgframe.html
clTextCursor fpg_base/cltextcursor.html
clChoiceListBox fpg_base/clchoicelistbox.html
clUnset fpg_base/clunset.html
clMenuText fpg_base/clmenutext.html
clMenuDisabled fpg_base/clmenudisabled.html
clHintWindow fpg_base/clhintwindow.html
clAliceBlue fpg_base/claliceblue.html
clAntiqueWhite fpg_base/clantiquewhite.html
clAquamarine fpg_base/claquamarine.html
clAzure fpg_base/clazure.html
clBeige fpg_base/clbeige.html
clBisque fpg_base/clbisque.html
clBlanchedAlmond fpg_base/clblanchedalmond.html
clBlueViolet fpg_base/clblueviolet.html
clBrown fpg_base/clbrown.html
clBurlyWood fpg_base/clburlywood.html
clCadetBlue fpg_base/clcadetblue.html
clChartreuse fpg_base/clchartreuse.html
clChocolate fpg_base/clchocolate.html
clCoral fpg_base/clcoral.html
clCornflowerBlue fpg_base/clcornflowerblue.html
clCornsilk fpg_base/clcornsilk.html
clCrimson fpg_base/clcrimson.html
clCyan fpg_base/clcyan.html
clDarkBlue fpg_base/cldarkblue.html
clDarkCyan fpg_base/cldarkcyan.html
clDarkGoldenrod fpg_base/cldarkgoldenrod.html
clDarkGray fpg_base/cldarkgray.html
clDarkGreen fpg_base/cldarkgreen.html
clDarkKhaki fpg_base/cldarkkhaki.html
clDarkMagenta fpg_base/cldarkmagenta.html
clDarkOliveGreen fpg_base/cldarkolivegreen.html
clDarkOrange fpg_base/cldarkorange.html
clDarkOrchid fpg_base/cldarkorchid.html
clDarkRed fpg_base/cldarkred.html
clDarkSalmon fpg_base/cldarksalmon.html
clDarkSeaGreen fpg_base/cldarkseagreen.html
clDarkSlateBlue fpg_base/cldarkslateblue.html
clDarkSlateGray fpg_base/cldarkslategray.html
clDarkTurquoise fpg_base/cldarkturquoise.html
clDarkViolet fpg_base/cldarkviolet.html
clDeepPink fpg_base/cldeeppink.html
clDeepSkyBlue fpg_base/cldeepskyblue.html
clDimGray fpg_base/cldimgray.html
clDodgerBlue fpg_base/cldodgerblue.html
clFireBrick fpg_base/clfirebrick.html
clFloralWhite fpg_base/clfloralwhite.html
clForestGreen fpg_base/clforestgreen.html
clGainsboro fpg_base/clgainsboro.html
clGhostWhite fpg_base/clghostwhite.html
clGold fpg_base/clgold.html
clGoldenrod fpg_base/clgoldenrod.html
clGreenYellow fpg_base/clgreenyellow.html
clHoneydew fpg_base/clhoneydew.html
clHotPink fpg_base/clhotpink.html
clIndianRed fpg_base/clindianred.html
clIndigo fpg_base/clindigo.html
clIvory fpg_base/clivory.html
clKhaki fpg_base/clkhaki.html
clLavender fpg_base/cllavender.html
clLavenderBlush fpg_base/cllavenderblush.html
clLawnGreen fpg_base/cllawngreen.html
clLemonChiffon fpg_base/cllemonchiffon.html
clLightBlue fpg_base/cllightblue.html
clLightCoral fpg_base/cllightcoral.html
clLightCyan fpg_base/cllightcyan.html
clLightGoldenrodYellow fpg_base/cllightgoldenrodyellow.html
clLightGreen fpg_base/cllightgreen.html
clLightGray fpg_base/cllightgray.html
clLightPink fpg_base/cllightpink.html
clLightSalmon fpg_base/cllightsalmon.html
clLightSeaGreen fpg_base/cllightseagreen.html
clLightSkyBlue fpg_base/cllightskyblue.html
clLightSlateGray fpg_base/cllightslategray.html
clLightSteelBlue fpg_base/cllightsteelblue.html
clLightYellow fpg_base/cllightyellow.html
clLimeGreen fpg_base/cllimegreen.html
clLinen fpg_base/cllinen.html
clMagenta fpg_base/clmagenta.html
clMediumAquamarine fpg_base/clmediumaquamarine.html
clMediumBlue fpg_base/clmediumblue.html
clMediumOrchid fpg_base/clmediumorchid.html
clMediumPurple fpg_base/clmediumpurple.html
clMediumSeaGreen fpg_base/clmediumseagreen.html
clMediumSlateBlue fpg_base/clmediumslateblue.html
clMediumSpringGreen fpg_base/clmediumspringgreen.html
clMediumTurquoise fpg_base/clmediumturquoise.html
clMediumVioletRed fpg_base/clmediumvioletred.html
clMidnightBlue fpg_base/clmidnightblue.html
clMintCream fpg_base/clmintcream.html
clMistyRose fpg_base/clmistyrose.html
clMoccasin fpg_base/clmoccasin.html
clNavajoWhite fpg_base/clnavajowhite.html
clOldLace fpg_base/cloldlace.html
clOliveDrab fpg_base/clolivedrab.html
clOrange fpg_base/clorange.html
clOrangeRed fpg_base/clorangered.html
clOrchid fpg_base/clorchid.html
clPaleGoldenrod fpg_base/clpalegoldenrod.html
clPaleGreen fpg_base/clpalegreen.html
clPaleTurquoise fpg_base/clpaleturquoise.html
clPaleVioletRed fpg_base/clpalevioletred.html
clPaleBlue fpg_base/clpaleblue.html
clPapayaWhip fpg_base/clpapayawhip.html
clPeachPuff fpg_base/clpeachpuff.html
clPeru fpg_base/clperu.html
clPink fpg_base/clpink.html
clPlum fpg_base/clplum.html
clPowderBlue fpg_base/clpowderblue.html
clRosyBrown fpg_base/clrosybrown.html
clRoyalBlue fpg_base/clroyalblue.html
clSaddleBrown fpg_base/clsaddlebrown.html
clSalmon fpg_base/clsalmon.html
clSandyBrown fpg_base/clsandybrown.html
clSeaGreen fpg_base/clseagreen.html
clSeashell fpg_base/clseashell.html
clSienna fpg_base/clsienna.html
clSkyBlue2 fpg_base/clskyblue2.html
clSlateBlue fpg_base/clslateblue.html
clSlateGray fpg_base/clslategray.html
clSnow fpg_base/clsnow.html
clSpringGreen fpg_base/clspringgreen.html
clSteelBlue fpg_base/clsteelblue.html
clTan fpg_base/cltan.html
clThistle fpg_base/clthistle.html
clTomato fpg_base/cltomato.html
clTurquoise fpg_base/clturquoise.html
clViolet fpg_base/clviolet.html
clWheat fpg_base/clwheat.html
clWhiteSmoke fpg_base/clwhitesmoke.html
clYellowGreen fpg_base/clyellowgreen.html
TfpgCoord fpg_base/tfpgcoord.html
TfpgColor fpg_base/tfpgcolor.html
TfpgString fpg_base/tfpgstring.html
TfpgChar fpg_base/tfpgchar.html
TfpgModalResult fpg_base/tfpgmodalresult.html
PPoint fpg_base/ppoint.html
TRGBTriple fpg_base/trgbtriple.html
TWindowType fpg_base/twindowtype.html
TWindowAttribute fpg_base/twindowattribute.html
TWindowAttributes fpg_base/twindowattributes.html
TMouseCursor fpg_base/tmousecursor.html
TGradientDirection fpg_base/tgradientdirection.html
TClipboardKeyType fpg_base/tclipboardkeytype.html
TfpgMsgParmMouse fpg_base/tfpgmsgparmmouse.html
TfpgMsgParmKeyboard fpg_base/tfpgmsgparmkeyboard.html
TfpgMsgParmUser fpg_base/tfpgmsgparmuser.html
TfpgMessageParams fpg_base/tfpgmessageparams.html
TfpgMessageRec fpg_base/tfpgmessagerec.html
PfpgMessageRec fpg_base/pfpgmessagerec.html
TfpgLineStyle fpg_base/tfpglinestyle.html
TFileEntryType fpg_base/tfileentrytype.html
TFileListSortOrder fpg_base/tfilelistsortorder.html
TFileModeString fpg_base/tfilemodestring.html
TfpgRect fpg_base/tfpgrect.html
Top fpg_base/tfpgrect.top.html
Left fpg_base/tfpgrect.left.html
Width fpg_base/tfpgrect.width.html
Height fpg_base/tfpgrect.height.html
SetRect fpg_base/tfpgrect.setrect.html
Bottom fpg_base/tfpgrect.bottom.html
Right fpg_base/tfpgrect.right.html
SetBottom fpg_base/tfpgrect.setbottom.html
SetRight fpg_base/tfpgrect.setright.html
TfpgImageBase fpg_base/tfpgimagebase.html
FWidth fpg_base/tfpgimagebase.fwidth.html
FHeight fpg_base/tfpgimagebase.fheight.html
FColorDepth fpg_base/tfpgimagebase.fcolordepth.html
FMasked fpg_base/tfpgimagebase.fmasked.html
FImageData fpg_base/tfpgimagebase.fimagedata.html
FImageDataSize fpg_base/tfpgimagebase.fimagedatasize.html
FMaskData fpg_base/tfpgimagebase.fmaskdata.html
FMaskDataSize fpg_base/tfpgimagebase.fmaskdatasize.html
DoFreeImage fpg_base/tfpgimagebase.dofreeimage.html
DoInitImage fpg_base/tfpgimagebase.doinitimage.html
DoInitImageMask fpg_base/tfpgimagebase.doinitimagemask.html
Create fpg_base/tfpgimagebase.create.html
Destroy fpg_base/tfpgimagebase.destroy.html
Invert fpg_base/tfpgimagebase.invert.html
FreeImage fpg_base/tfpgimagebase.freeimage.html
AllocateImage fpg_base/tfpgimagebase.allocateimage.html
AllocateMask fpg_base/tfpgimagebase.allocatemask.html
CreateMaskFromSample fpg_base/tfpgimagebase.createmaskfromsample.html
UpdateImage fpg_base/tfpgimagebase.updateimage.html
ImageData fpg_base/tfpgimagebase.imagedata.html
ImageDataSize fpg_base/tfpgimagebase.imagedatasize.html
MaskData fpg_base/tfpgimagebase.maskdata.html
MaskDataSize fpg_base/tfpgimagebase.maskdatasize.html
Width fpg_base/tfpgimagebase.width.html
Height fpg_base/tfpgimagebase.height.html
ColorDepth fpg_base/tfpgimagebase.colordepth.html
Masked fpg_base/tfpgimagebase.masked.html
Colors fpg_base/tfpgimagebase.colors.html
TfpgFontResourceBase fpg_base/tfpgfontresourcebase.html
GetAscent fpg_base/tfpgfontresourcebase.getascent.html
GetDescent fpg_base/tfpgfontresourcebase.getdescent.html
GetHeight fpg_base/tfpgfontresourcebase.getheight.html
GetTextWidth fpg_base/tfpgfontresourcebase.gettextwidth.html
TfpgFontBase fpg_base/tfpgfontbase.html
FFontDesc fpg_base/tfpgfontbase.ffontdesc.html
FFontRes fpg_base/tfpgfontbase.ffontres.html
TextWidth fpg_base/tfpgfontbase.textwidth.html
Ascent fpg_base/tfpgfontbase.ascent.html
Descent fpg_base/tfpgfontbase.descent.html
Height fpg_base/tfpgfontbase.height.html
FontDesc fpg_base/tfpgfontbase.fontdesc.html
FontRes fpg_base/tfpgfontbase.fontres.html
Handle fpg_base/tfpgfontbase.handle.html
TfpgCustomInterpolation fpg_base/tfpgcustominterpolation.html
Initialize fpg_base/tfpgcustominterpolation.initialize.html
Execute fpg_base/tfpgcustominterpolation.execute.html
Canvas fpg_base/tfpgcustominterpolation.canvas.html
Image fpg_base/tfpgcustominterpolation.image.html
TfpgBaseInterpolation fpg_base/tfpgbaseinterpolation.html
Execute fpg_base/tfpgbaseinterpolation.execute.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
Destroy fpg_base/tfpgbaseinterpolation.destroy.html
TfpgMitchelInterpolation fpg_base/tfpgmitchelinterpolation.html
Filter fpg_base/tfpgmitchelinterpolation.filter.html
MaxSupport fpg_base/tfpgmitchelinterpolation.maxsupport.html
TfpgCanvasBase fpg_base/tfpgcanvasbase.html
FBufferedDraw fpg_base/tfpgcanvasbase.fbuffereddraw.html
FBeginDrawCount fpg_base/tfpgcanvasbase.fbegindrawcount.html
FWindow fpg_base/tfpgcanvasbase.fwindow.html
FColor fpg_base/tfpgcanvasbase.fcolor.html
FTextColor fpg_base/tfpgcanvasbase.ftextcolor.html
FLineWidth fpg_base/tfpgcanvasbase.flinewidth.html
FLineStyle fpg_base/tfpgcanvasbase.flinestyle.html
FFont fpg_base/tfpgcanvasbase.ffont.html
FPersistentResources fpg_base/tfpgcanvasbase.fpersistentresources.html
DoSetFontRes fpg_base/tfpgcanvasbase.dosetfontres.html
DoSetTextColor fpg_base/tfpgcanvasbase.dosettextcolor.html
DoSetColor fpg_base/tfpgcanvasbase.dosetcolor.html
DoSetLineStyle fpg_base/tfpgcanvasbase.dosetlinestyle.html
DoGetWinRect fpg_base/tfpgcanvasbase.dogetwinrect.html
DoFillRectangle fpg_base/tfpgcanvasbase.dofillrectangle.html
DoXORFillRectangle fpg_base/tfpgcanvasbase.doxorfillrectangle.html
DoFillTriangle fpg_base/tfpgcanvasbase.dofilltriangle.html
DoDrawRectangle fpg_base/tfpgcanvasbase.dodrawrectangle.html
DoDrawLine fpg_base/tfpgcanvasbase.dodrawline.html
DoDrawImagePart fpg_base/tfpgcanvasbase.dodrawimagepart.html
DoDrawString fpg_base/tfpgcanvasbase.dodrawstring.html
DoSetClipRect fpg_base/tfpgcanvasbase.dosetcliprect.html
DoGetClipRect fpg_base/tfpgcanvasbase.dogetcliprect.html
DoAddClipRect fpg_base/tfpgcanvasbase.doaddcliprect.html
DoClearClipRect fpg_base/tfpgcanvasbase.doclearcliprect.html
DoBeginDraw fpg_base/tfpgcanvasbase.dobegindraw.html
DoPutBufferToScreen fpg_base/tfpgcanvasbase.doputbuffertoscreen.html
DoEndDraw fpg_base/tfpgcanvasbase.doenddraw.html
GetPixel fpg_base/tfpgcanvasbase.getpixel.html
SetPixel fpg_base/tfpgcanvasbase.setpixel.html
DoDrawArc fpg_base/tfpgcanvasbase.dodrawarc.html
DoFillArc fpg_base/tfpgcanvasbase.dofillarc.html
DoDrawPolygon fpg_base/tfpgcanvasbase.dodrawpolygon.html
Create fpg_base/tfpgcanvasbase.create.html
Destroy fpg_base/tfpgcanvasbase.destroy.html
DrawRectangle fpg_base/tfpgcanvasbase.drawrectangle.html
DrawLine fpg_base/tfpgcanvasbase.drawline.html
DrawLineClipped fpg_base/tfpgcanvasbase.drawlineclipped.html
ClipLine fpg_base/tfpgcanvasbase.clipline.html
DrawImage fpg_base/tfpgcanvasbase.drawimage.html
DrawImagePart fpg_base/tfpgcanvasbase.drawimagepart.html
DrawArc fpg_base/tfpgcanvasbase.drawarc.html
DrawPolygon fpg_base/tfpgcanvasbase.drawpolygon.html
StretchDraw fpg_base/tfpgcanvasbase.stretchdraw.html
CopyRect fpg_base/tfpgcanvasbase.copyrect.html
DrawString fpg_base/tfpgcanvasbase.drawstring.html
FillRectangle fpg_base/tfpgcanvasbase.fillrectangle.html
FillTriangle fpg_base/tfpgcanvasbase.filltriangle.html
FillArc fpg_base/tfpgcanvasbase.fillarc.html
GradientFill fpg_base/tfpgcanvasbase.gradientfill.html
XORFillRectangle fpg_base/tfpgcanvasbase.xorfillrectangle.html
SetClipRect fpg_base/tfpgcanvasbase.setcliprect.html
GetClipRect fpg_base/tfpgcanvasbase.getcliprect.html
AddClipRect fpg_base/tfpgcanvasbase.addcliprect.html
ClearClipRect fpg_base/tfpgcanvasbase.clearcliprect.html
Clear fpg_base/tfpgcanvasbase.clear.html
GetWinRect fpg_base/tfpgcanvasbase.getwinrect.html
SetColor fpg_base/tfpgcanvasbase.setcolor.html
SetTextColor fpg_base/tfpgcanvasbase.settextcolor.html
SetLineStyle fpg_base/tfpgcanvasbase.setlinestyle.html
SetFont fpg_base/tfpgcanvasbase.setfont.html
BeginDraw fpg_base/tfpgcanvasbase.begindraw.html
EndDraw fpg_base/tfpgcanvasbase.enddraw.html
FreeResources fpg_base/tfpgcanvasbase.freeresources.html
Color fpg_base/tfpgcanvasbase.color.html
TextColor fpg_base/tfpgcanvasbase.textcolor.html
Font fpg_base/tfpgcanvasbase.font.html
Pixels fpg_base/tfpgcanvasbase.pixels.html
InterpolationFilter fpg_base/tfpgcanvasbase.interpolationfilter.html
FastDoubleBuffer fpg_base/tfpgcanvasbase.fastdoublebuffer.html
LineStyle fpg_base/tfpgcanvasbase.linestyle.html
LineWidth fpg_base/tfpgcanvasbase.linewidth.html
TfpgComponent fpg_base/tfpgcomponent.html
TagPointer fpg_base/tfpgcomponent.tagpointer.html
TfpgWindowBase fpg_base/tfpgwindowbase.html
FMouseCursor fpg_base/tfpgwindowbase.fmousecursor.html
FWindowType fpg_base/tfpgwindowbase.fwindowtype.html
FWindowAttributes fpg_base/tfpgwindowbase.fwindowattributes.html
FTop fpg_base/tfpgwindowbase.ftop.html
FLeft fpg_base/tfpgwindowbase.fleft.html
FWidth fpg_base/tfpgwindowbase.fwidth.html
FHeight fpg_base/tfpgwindowbase.fheight.html
FPrevTop fpg_base/tfpgwindowbase.fprevtop.html
FPrevLeft fpg_base/tfpgwindowbase.fprevleft.html
FPrevWidth fpg_base/tfpgwindowbase.fprevwidth.html
FPrevHeight fpg_base/tfpgwindowbase.fprevheight.html
FMinWidth fpg_base/tfpgwindowbase.fminwidth.html
FMinHeight fpg_base/tfpgwindowbase.fminheight.html
FMaxHeight fpg_base/tfpgwindowbase.fmaxheight.html
FMaxWidth fpg_base/tfpgwindowbase.fmaxwidth.html
FCanvas fpg_base/tfpgwindowbase.fcanvas.html
FSizeIsDirty fpg_base/tfpgwindowbase.fsizeisdirty.html
FPosIsDirty fpg_base/tfpgwindowbase.fposisdirty.html
HandleIsValid fpg_base/tfpgwindowbase.handleisvalid.html
DoUpdateWindowPosition fpg_base/tfpgwindowbase.doupdatewindowposition.html
DoAllocateWindowHandle fpg_base/tfpgwindowbase.doallocatewindowhandle.html
DoReleaseWindowHandle fpg_base/tfpgwindowbase.doreleasewindowhandle.html
DoRemoveWindowLookup fpg_base/tfpgwindowbase.doremovewindowlookup.html
DoSetWindowVisible fpg_base/tfpgwindowbase.dosetwindowvisible.html
DoMoveWindow fpg_base/tfpgwindowbase.domovewindow.html
DoWindowToScreen fpg_base/tfpgwindowbase.dowindowtoscreen.html
DoSetWindowTitle fpg_base/tfpgwindowbase.dosetwindowtitle.html
DoSetMouseCursor fpg_base/tfpgwindowbase.dosetmousecursor.html
SetParent fpg_base/tfpgwindowbase.setparent.html
GetParent fpg_base/tfpgwindowbase.getparent.html
GetCanvas fpg_base/tfpgwindowbase.getcanvas.html
AllocateWindowHandle fpg_base/tfpgwindowbase.allocatewindowhandle.html
ReleaseWindowHandle fpg_base/tfpgwindowbase.releasewindowhandle.html
SetWindowTitle fpg_base/tfpgwindowbase.setwindowtitle.html
SetTop fpg_base/tfpgwindowbase.settop.html
SetLeft fpg_base/tfpgwindowbase.setleft.html
SetHeight fpg_base/tfpgwindowbase.setheight.html
SetWidth fpg_base/tfpgwindowbase.setwidth.html
HandleMove fpg_base/tfpgwindowbase.handlemove.html
HandleResize fpg_base/tfpgwindowbase.handleresize.html
Create fpg_base/tfpgwindowbase.create.html
AfterConstruction fpg_base/tfpgwindowbase.afterconstruction.html
AdjustWindowStyle fpg_base/tfpgwindowbase.adjustwindowstyle.html
SetWindowParameters fpg_base/tfpgwindowbase.setwindowparameters.html
Right fpg_base/tfpgwindowbase.right.html
Bottom fpg_base/tfpgwindowbase.bottom.html
UpdateWindowPosition fpg_base/tfpgwindowbase.updatewindowposition.html
MoveWindow fpg_base/tfpgwindowbase.movewindow.html
WindowToScreen fpg_base/tfpgwindowbase.windowtoscreen.html
HasParent fpg_base/tfpgwindowbase.hasparent.html
ActivateWindow fpg_base/tfpgwindowbase.activatewindow.html
CaptureMouse fpg_base/tfpgwindowbase.capturemouse.html
ReleaseMouse fpg_base/tfpgwindowbase.releasemouse.html
SetFullscreen fpg_base/tfpgwindowbase.setfullscreen.html
HasHandle fpg_base/tfpgwindowbase.hashandle.html
WindowType fpg_base/tfpgwindowbase.windowtype.html
WindowAttributes fpg_base/tfpgwindowbase.windowattributes.html
Left fpg_base/tfpgwindowbase.left.html
Top fpg_base/tfpgwindowbase.top.html
Width fpg_base/tfpgwindowbase.width.html
Height fpg_base/tfpgwindowbase.height.html
MinWidth fpg_base/tfpgwindowbase.minwidth.html
MinHeight fpg_base/tfpgwindowbase.minheight.html
MaxWidth fpg_base/tfpgwindowbase.maxwidth.html
MaxHeight fpg_base/tfpgwindowbase.maxheight.html
Canvas fpg_base/tfpgwindowbase.canvas.html
Parent fpg_base/tfpgwindowbase.parent.html
MouseCursor fpg_base/tfpgwindowbase.mousecursor.html
TfpgApplicationBase fpg_base/tfpgapplicationbase.html
FOnIdle fpg_base/tfpgapplicationbase.fonidle.html
FIsInitialized fpg_base/tfpgapplicationbase.fisinitialized.html
FModalFormStack fpg_base/tfpgapplicationbase.fmodalformstack.html
DoGetFontFaceList fpg_base/tfpgapplicationbase.dogetfontfacelist.html
Create fpg_base/tfpgapplicationbase.create.html
Destroy fpg_base/tfpgapplicationbase.destroy.html
GetFontFaceList fpg_base/tfpgapplicationbase.getfontfacelist.html
PushModalForm fpg_base/tfpgapplicationbase.pushmodalform.html
PopModalForm fpg_base/tfpgapplicationbase.popmodalform.html
PrevModalForm fpg_base/tfpgapplicationbase.prevmodalform.html
RemoveWindowFromModalStack fpg_base/tfpgapplicationbase.removewindowfrommodalstack.html
CreateForm fpg_base/tfpgapplicationbase.createform.html
GetScreenWidth fpg_base/tfpgapplicationbase.getscreenwidth.html
GetScreenHeight fpg_base/tfpgapplicationbase.getscreenheight.html
Screen_dpi_x fpg_base/tfpgapplicationbase.screen_dpi_x.html
Screen_dpi_y fpg_base/tfpgapplicationbase.screen_dpi_y.html
Screen_dpi fpg_base/tfpgapplicationbase.screen_dpi.html
Terminate fpg_base/tfpgapplicationbase.terminate.html
Lock fpg_base/tfpgapplicationbase.lock.html
Unlock fpg_base/tfpgapplicationbase.unlock.html
FormCount fpg_base/tfpgapplicationbase.formcount.html
Forms fpg_base/tfpgapplicationbase.forms.html
IsInitialized fpg_base/tfpgapplicationbase.isinitialized.html
TopModalForm fpg_base/tfpgapplicationbase.topmodalform.html
MainForm fpg_base/tfpgapplicationbase.mainform.html
Terminated fpg_base/tfpgapplicationbase.terminated.html
OnIdle fpg_base/tfpgapplicationbase.onidle.html
TfpgClipboardBase fpg_base/tfpgclipboardbase.html
FClipboardWndHandle fpg_base/tfpgclipboardbase.fclipboardwndhandle.html
DoGetText fpg_base/tfpgclipboardbase.dogettext.html
DoSetText fpg_base/tfpgclipboardbase.dosettext.html
InitClipboard fpg_base/tfpgclipboardbase.initclipboard.html
Create fpg_base/tfpgclipboardbase.create.html
Text fpg_base/tfpgclipboardbase.text.html
TFileEntry fpg_base/tfileentry.html
Create fpg_base/tfileentry.create.html
Name fpg_base/tfileentry.name.html
Extension fpg_base/tfileentry.extension.html
Size fpg_base/tfileentry.size.html
EntryType fpg_base/tfileentry.entrytype.html
IsLink fpg_base/tfileentry.islink.html
LinkTarget fpg_base/tfileentry.linktarget.html
IsExecutable fpg_base/tfileentry.isexecutable.html
ModTime fpg_base/tfileentry.modtime.html
Mode fpg_base/tfileentry.mode.html
Owner fpg_base/tfileentry.owner.html
Group fpg_base/tfileentry.group.html
Attributes fpg_base/tfileentry.attributes.html
TfpgFileListBase fpg_base/tfpgfilelistbase.html
FSpecialDirs fpg_base/tfpgfilelistbase.fspecialdirs.html
FHasFileMode fpg_base/tfpgfilelistbase.fhasfilemode.html
InitializeEntry fpg_base/tfpgfilelistbase.initializeentry.html
PopulateSpecialDirs fpg_base/tfpgfilelistbase.populatespecialdirs.html
Create fpg_base/tfpgfilelistbase.create.html
Destroy fpg_base/tfpgfilelistbase.destroy.html
Count fpg_base/tfpgfilelistbase.count.html
CurrentSpecialDir fpg_base/tfpgfilelistbase.currentspecialdir.html
ReadDirectory fpg_base/tfpgfilelistbase.readdirectory.html
Clear fpg_base/tfpgfilelistbase.clear.html
Sort fpg_base/tfpgfilelistbase.sort.html
DirectoryName fpg_base/tfpgfilelistbase.directoryname.html
Entry fpg_base/tfpgfilelistbase.entry.html
FileMask fpg_base/tfpgfilelistbase.filemask.html
HasFileMode fpg_base/tfpgfilelistbase.hasfilemode.html
ShowHidden fpg_base/tfpgfilelistbase.showhidden.html
SpecialDirs fpg_base/tfpgfilelistbase.specialdirs.html
KeycodeToText fpg_base/keycodetotext.html
CheckClipboardKey fpg_base/checkclipboardkey.html
fpgColorToRGBTriple fpg_base/fpgcolortorgbtriple.html
RGBTripleTofpgColor fpg_base/rgbtripletofpgcolor.html
fpgGetRed fpg_base/fpggetred.html
fpgGetGreen fpg_base/fpggetgreen.html
fpgGetBlue fpg_base/fpggetblue.html
fpgGetAlpha fpg_base/fpggetalpha.html
fpgGetAvgColor fpg_base/fpggetavgcolor.html
PtInRect fpg_base/ptinrect.html
SortRect fpg_base/sortrect.html
FPG_DEFAULT_FONT_DESC fpg_base/fpg_default_font_desc.html
fpg_x11 fpg_x11/index.html
IconBitmapWidth fpg_x11/iconbitmapwidth.html
IconBitmapHeight fpg_x11/iconbitmapheight.html
IconBitmapBits fpg_x11/iconbitmapbits.html
MWM_HINTS_FUNCTIONS fpg_x11/mwm_hints_functions.html
MWM_HINTS_DECORATIONS fpg_x11/mwm_hints_decorations.html
MWM_HINTS_INPUT_MODE fpg_x11/mwm_hints_input_mode.html
MWM_HINTS_STATUS fpg_x11/mwm_hints_status.html
MWM_FUNC_ALL fpg_x11/mwm_func_all.html
MWM_FUNC_RESIZE fpg_x11/mwm_func_resize.html
MWM_FUNC_MOVE fpg_x11/mwm_func_move.html
MWM_FUNC_MINIMIZE fpg_x11/mwm_func_minimize.html
MWM_FUNC_MAXIMIZE fpg_x11/mwm_func_maximize.html
MWM_FUNC_CLOSE fpg_x11/mwm_func_close.html
MWM_DECOR_ALL fpg_x11/mwm_decor_all.html
MWM_DECOR_BORDER fpg_x11/mwm_decor_border.html
MWM_DECOR_RESIZEH fpg_x11/mwm_decor_resizeh.html
MWM_DECOR_TITLE fpg_x11/mwm_decor_title.html
MWM_DECOR_MENU fpg_x11/mwm_decor_menu.html
MWM_DECOR_MINIMIZE fpg_x11/mwm_decor_minimize.html
MWM_DECOR_MAXIMIZE fpg_x11/mwm_decor_maximize.html
MWM_INPUT_MODELESS fpg_x11/mwm_input_modeless.html
MWM_INPUT_PRIMARY_APPLICATION_MODAL fpg_x11/mwm_input_primary_application_modal.html
MWM_INPUT_SYSTEM_MODAL fpg_x11/mwm_input_system_modal.html
MWM_INPUT_FULL_APPLICATION_MODAL fpg_x11/mwm_input_full_application_modal.html
PROP_MWM_HINTS_ELEMENTS fpg_x11/prop_mwm_hints_elements.html
TfpgGContext fpg_x11/tfpggcontext.html
PInt fpg_x11/pint.html
TXIC fpg_x11/txic.html
PXIC fpg_x11/pxic.html
TXIM fpg_x11/txim.html
PXIM fpg_x11/pxim.html
TXdbeSwapInfo fpg_x11/txdbeswapinfo.html
PXdbeSwapInfo fpg_x11/pxdbeswapinfo.html
TMWMHints fpg_x11/tmwmhints.html
TXWindowStateFlag fpg_x11/txwindowstateflag.html
TXWindowStateFlags fpg_x11/txwindowstateflags.html
TX11EventFilter fpg_x11/tx11eventfilter.html
TfpgFontResourceImpl fpg_x11/tfpgfontresourceimpl.html
Handle fpg_x11/tfpgfontresourceimpl.handle.html
Create fpg_x11/tfpgfontresourceimpl.create.html
Destroy fpg_x11/tfpgfontresourceimpl.destroy.html
HandleIsValid fpg_x11/tfpgfontresourceimpl.handleisvalid.html
GetAscent fpg_base/tfpgfontresourcebase.getascent.html
GetDescent fpg_base/tfpgfontresourcebase.getdescent.html
GetHeight fpg_base/tfpgfontresourcebase.getheight.html
GetTextWidth fpg_base/tfpgfontresourcebase.gettextwidth.html
TfpgImageImpl fpg_x11/tfpgimageimpl.html
DoFreeImage fpg_base/tfpgimagebase.dofreeimage.html
DoInitImage fpg_base/tfpgimagebase.doinitimage.html
DoInitImageMask fpg_base/tfpgimagebase.doinitimagemask.html
Create fpg_base/tfpgimagebase.create.html
TfpgCanvasImpl fpg_x11/tfpgcanvasimpl.html
DoSetFontRes fpg_base/tfpgcanvasbase.dosetfontres.html
DoSetTextColor fpg_base/tfpgcanvasbase.dosettextcolor.html
DoSetColor fpg_base/tfpgcanvasbase.dosetcolor.html
DoSetLineStyle fpg_base/tfpgcanvasbase.dosetlinestyle.html
DoGetWinRect fpg_base/tfpgcanvasbase.dogetwinrect.html
DoFillRectangle fpg_base/tfpgcanvasbase.dofillrectangle.html
DoXORFillRectangle fpg_base/tfpgcanvasbase.doxorfillrectangle.html
DoFillTriangle fpg_base/tfpgcanvasbase.dofilltriangle.html
DoDrawRectangle fpg_base/tfpgcanvasbase.dodrawrectangle.html
DoDrawLine fpg_base/tfpgcanvasbase.dodrawline.html
DoDrawImagePart fpg_base/tfpgcanvasbase.dodrawimagepart.html
DoDrawString fpg_base/tfpgcanvasbase.dodrawstring.html
DoSetClipRect fpg_base/tfpgcanvasbase.dosetcliprect.html
DoGetClipRect fpg_base/tfpgcanvasbase.dogetcliprect.html
DoAddClipRect fpg_base/tfpgcanvasbase.doaddcliprect.html
DoClearClipRect fpg_base/tfpgcanvasbase.doclearcliprect.html
DoBeginDraw fpg_base/tfpgcanvasbase.dobegindraw.html
DoPutBufferToScreen fpg_base/tfpgcanvasbase.doputbuffertoscreen.html
DoEndDraw fpg_base/tfpgcanvasbase.doenddraw.html
GetPixel fpg_base/tfpgcanvasbase.getpixel.html
SetPixel fpg_base/tfpgcanvasbase.setpixel.html
DoDrawArc fpg_base/tfpgcanvasbase.dodrawarc.html
DoFillArc fpg_base/tfpgcanvasbase.dofillarc.html
DoDrawPolygon fpg_x11/tfpgcanvasimpl.dodrawpolygon.html
DCHandle fpg_x11/tfpgcanvasimpl.dchandle.html
Create fpg_base/tfpgcanvasbase.create.html
Destroy fpg_base/tfpgcanvasbase.destroy.html
TfpgWindowImpl fpg_x11/tfpgwindowimpl.html
FWinFlags fpg_x11/tfpgwindowimpl.fwinflags.html
FWinHandle fpg_x11/tfpgwindowimpl.fwinhandle.html
FBackupWinHandle fpg_x11/tfpgwindowimpl.fbackupwinhandle.html
FModalForWin fpg_x11/tfpgwindowimpl.fmodalforwin.html
DoAllocateWindowHandle fpg_base/tfpgwindowbase.doallocatewindowhandle.html
DoReleaseWindowHandle fpg_base/tfpgwindowbase.doreleasewindowhandle.html
DoRemoveWindowLookup fpg_x11/tfpgwindowimpl.doremovewindowlookup.html
DoSetWindowVisible fpg_base/tfpgwindowbase.dosetwindowvisible.html
HandleIsValid fpg_base/tfpgwindowbase.handleisvalid.html
DoSetWindowTitle fpg_base/tfpgwindowbase.dosetwindowtitle.html
DoMoveWindow fpg_base/tfpgwindowbase.domovewindow.html
DoWindowToScreen fpg_base/tfpgwindowbase.dowindowtoscreen.html
DoUpdateWindowPosition fpg_base/tfpgwindowbase.doupdatewindowposition.html
DoSetMouseCursor fpg_base/tfpgwindowbase.dosetmousecursor.html
WinHandle fpg_x11/tfpgwindowimpl.winhandle.html
Create fpg_base/tfpgwindowbase.create.html
ActivateWindow fpg_x11/tfpgwindowimpl.activatewindow.html
CaptureMouse fpg_base/tfpgwindowbase.capturemouse.html
ReleaseMouse fpg_base/tfpgwindowbase.releasemouse.html
SetFullscreen fpg_x11/tfpgwindowimpl.setfullscreen.html
TfpgApplicationImpl fpg_x11/tfpgapplicationimpl.html
FDisplay fpg_x11/tfpgapplicationimpl.fdisplay.html
DisplayDepth fpg_x11/tfpgapplicationimpl.displaydepth.html
DefaultBackground fpg_x11/tfpgapplicationimpl.defaultbackground.html
DefaultForeground fpg_x11/tfpgapplicationimpl.defaultforeground.html
DefaultScreen fpg_x11/tfpgapplicationimpl.defaultscreen.html
DefaultVisual fpg_x11/tfpgapplicationimpl.defaultvisual.html
DefaultColorMap fpg_x11/tfpgapplicationimpl.defaultcolormap.html
FRootWindow fpg_x11/tfpgapplicationimpl.frootwindow.html
xia_clipboard fpg_x11/tfpgapplicationimpl.xia_clipboard.html
xia_motif_wm_hints fpg_x11/tfpgapplicationimpl.xia_motif_wm_hints.html
xia_wm_protocols fpg_x11/tfpgapplicationimpl.xia_wm_protocols.html
xia_wm_delete_window fpg_x11/tfpgapplicationimpl.xia_wm_delete_window.html
netlayer fpg_x11/tfpgapplicationimpl.netlayer.html
xia_targets fpg_x11/tfpgapplicationimpl.xia_targets.html
InputMethod fpg_x11/tfpgapplicationimpl.inputmethod.html
InputContext fpg_x11/tfpgapplicationimpl.inputcontext.html
FLastKeySym fpg_x11/tfpgapplicationimpl.flastkeysym.html
DoGetFontFaceList fpg_base/tfpgapplicationbase.dogetfontfacelist.html
Create fpg_base/tfpgapplicationbase.create.html
Destroy fpg_x11/tfpgapplicationimpl.destroy.html
DoMessagesPending fpg_x11/tfpgapplicationimpl.domessagespending.html
DoWaitWindowMessage fpg_x11/tfpgapplicationimpl.dowaitwindowmessage.html
DoFlush fpg_x11/tfpgapplicationimpl.doflush.html
GetScreenWidth fpg_x11/tfpgapplicationimpl.getscreenwidth.html
GetScreenHeight fpg_x11/tfpgapplicationimpl.getscreenheight.html
Screen_dpi_x fpg_x11/tfpgapplicationimpl.screen_dpi_x.html
Screen_dpi_y fpg_x11/tfpgapplicationimpl.screen_dpi_y.html
Screen_dpi fpg_x11/tfpgapplicationimpl.screen_dpi.html
Display fpg_x11/tfpgapplicationimpl.display.html
RootWindow fpg_x11/tfpgapplicationimpl.rootwindow.html
EventFilter fpg_x11/tfpgapplicationimpl.eventfilter.html
TfpgClipboardImpl fpg_x11/tfpgclipboardimpl.html
FClipboardText fpg_x11/tfpgclipboardimpl.fclipboardtext.html
DoGetText fpg_x11/tfpgclipboardimpl.dogettext.html
DoSetText fpg_x11/tfpgclipboardimpl.dosettext.html
InitClipboard fpg_x11/tfpgclipboardimpl.initclipboard.html
TfpgFileListImpl fpg_x11/tfpgfilelistimpl.html
EncodeModeString fpg_x11/tfpgfilelistimpl.encodemodestring.html
Create fpg_x11/tfpgfilelistimpl.create.html
InitializeEntry fpg_x11/tfpgfilelistimpl.initializeentry.html
PopulateSpecialDirs fpg_x11/tfpgfilelistimpl.populatespecialdirs.html
fpgColorToX fpg_x11/fpgcolortox.html
fpg_gdi fpg_gdi/index.html
WM_MOUSEWHEEL fpg_gdi/wm_mousewheel.html
VER_PLATFORM_WIN32_CE fpg_gdi/ver_platform_win32_ce.html
CLEARTYPE_QUALITY fpg_gdi/cleartype_quality.html
TfpgFontResourceImpl fpg_gdi/tfpgfontresourceimpl.html
OpenFontByDesc fpg_gdi/tfpgfontresourceimpl.openfontbydesc.html
Handle fpg_gdi/tfpgfontresourceimpl.handle.html
Create fpg_gdi/tfpgfontresourceimpl.create.html
Destroy fpg_gdi/tfpgfontresourceimpl.destroy.html
HandleIsValid fpg_gdi/tfpgfontresourceimpl.handleisvalid.html
GetAscent fpg_base/tfpgfontresourcebase.getascent.html
GetDescent fpg_base/tfpgfontresourcebase.getdescent.html
GetHeight fpg_base/tfpgfontresourcebase.getheight.html
GetTextWidth fpg_base/tfpgfontresourcebase.gettextwidth.html
TfpgFontImpl fpg_gdi/tfpgfontimpl.html
TfpgImageImpl fpg_gdi/tfpgimageimpl.html
DoFreeImage fpg_base/tfpgimagebase.dofreeimage.html
DoInitImage fpg_base/tfpgimagebase.doinitimage.html
DoInitImageMask fpg_base/tfpgimagebase.doinitimagemask.html
Create fpg_base/tfpgimagebase.create.html
TfpgCanvasImpl fpg_gdi/tfpgcanvasimpl.html
DoSetFontRes fpg_base/tfpgcanvasbase.dosetfontres.html
DoSetTextColor fpg_base/tfpgcanvasbase.dosettextcolor.html
DoSetColor fpg_base/tfpgcanvasbase.dosetcolor.html
DoSetLineStyle fpg_base/tfpgcanvasbase.dosetlinestyle.html
DoGetWinRect fpg_base/tfpgcanvasbase.dogetwinrect.html
DoFillRectangle fpg_base/tfpgcanvasbase.dofillrectangle.html
DoXORFillRectangle fpg_base/tfpgcanvasbase.doxorfillrectangle.html
DoFillTriangle fpg_base/tfpgcanvasbase.dofilltriangle.html
DoDrawRectangle fpg_base/tfpgcanvasbase.dodrawrectangle.html
DoDrawLine fpg_base/tfpgcanvasbase.dodrawline.html
DoDrawImagePart fpg_base/tfpgcanvasbase.dodrawimagepart.html
DoDrawString fpg_base/tfpgcanvasbase.dodrawstring.html
DoSetClipRect fpg_base/tfpgcanvasbase.dosetcliprect.html
DoGetClipRect fpg_base/tfpgcanvasbase.dogetcliprect.html
DoAddClipRect fpg_base/tfpgcanvasbase.doaddcliprect.html
DoClearClipRect fpg_base/tfpgcanvasbase.doclearcliprect.html
DoBeginDraw fpg_base/tfpgcanvasbase.dobegindraw.html
DoPutBufferToScreen fpg_base/tfpgcanvasbase.doputbuffertoscreen.html
DoEndDraw fpg_base/tfpgcanvasbase.doenddraw.html
GetPixel fpg_base/tfpgcanvasbase.getpixel.html
SetPixel fpg_base/tfpgcanvasbase.setpixel.html
DoDrawArc fpg_base/tfpgcanvasbase.dodrawarc.html
DoFillArc fpg_base/tfpgcanvasbase.dofillarc.html
DoDrawPolygon fpg_gdi/tfpgcanvasimpl.dodrawpolygon.html
DCHandle fpg_gdi/tfpgcanvasimpl.dchandle.html
Create fpg_base/tfpgcanvasbase.create.html
Destroy fpg_base/tfpgcanvasbase.destroy.html
TfpgWindowImpl fpg_gdi/tfpgwindowimpl.html
FWinHandle fpg_gdi/tfpgwindowimpl.fwinhandle.html
FModalForWin fpg_gdi/tfpgwindowimpl.fmodalforwin.html
FWinStyle fpg_gdi/tfpgwindowimpl.fwinstyle.html
FWinStyleEx fpg_gdi/tfpgwindowimpl.fwinstyleex.html
FParentWinHandle fpg_gdi/tfpgwindowimpl.fparentwinhandle.html
DoAllocateWindowHandle fpg_base/tfpgwindowbase.doallocatewindowhandle.html
DoReleaseWindowHandle fpg_base/tfpgwindowbase.doreleasewindowhandle.html
DoRemoveWindowLookup fpg_gdi/tfpgwindowimpl.doremovewindowlookup.html
DoSetWindowVisible fpg_base/tfpgwindowbase.dosetwindowvisible.html
HandleIsValid fpg_base/tfpgwindowbase.handleisvalid.html
DoUpdateWindowPosition fpg_base/tfpgwindowbase.doupdatewindowposition.html
DoMoveWindow fpg_base/tfpgwindowbase.domovewindow.html
DoWindowToScreen fpg_base/tfpgwindowbase.dowindowtoscreen.html
DoSetWindowTitle fpg_base/tfpgwindowbase.dosetwindowtitle.html
DoSetMouseCursor fpg_base/tfpgwindowbase.dosetmousecursor.html
WinHandle fpg_gdi/tfpgwindowimpl.winhandle.html
Create fpg_base/tfpgwindowbase.create.html
ActivateWindow fpg_gdi/tfpgwindowimpl.activatewindow.html
CaptureMouse fpg_base/tfpgwindowbase.capturemouse.html
ReleaseMouse fpg_base/tfpgwindowbase.releasemouse.html
SetFullscreen fpg_gdi/tfpgwindowimpl.setfullscreen.html
TfpgApplicationImpl fpg_gdi/tfpgapplicationimpl.html
FDisplay fpg_gdi/tfpgapplicationimpl.fdisplay.html
WindowClass fpg_gdi/tfpgapplicationimpl.windowclass.html
WidgetClass fpg_gdi/tfpgapplicationimpl.widgetclass.html
hcr_default fpg_gdi/tfpgapplicationimpl.hcr_default.html
hcr_dir_ew fpg_gdi/tfpgapplicationimpl.hcr_dir_ew.html
hcr_dir_ns fpg_gdi/tfpgapplicationimpl.hcr_dir_ns.html
hcr_edit fpg_gdi/tfpgapplicationimpl.hcr_edit.html
hcr_dir_nwse fpg_gdi/tfpgapplicationimpl.hcr_dir_nwse.html
hcr_dir_nesw fpg_gdi/tfpgapplicationimpl.hcr_dir_nesw.html
hcr_move fpg_gdi/tfpgapplicationimpl.hcr_move.html
hcr_crosshair fpg_gdi/tfpgapplicationimpl.hcr_crosshair.html
hcr_wait fpg_gdi/tfpgapplicationimpl.hcr_wait.html
hcr_hand fpg_gdi/tfpgapplicationimpl.hcr_hand.html
FFocusedWindow fpg_gdi/tfpgapplicationimpl.ffocusedwindow.html
FHiddenWindow fpg_gdi/tfpgapplicationimpl.fhiddenwindow.html
HiddenWndClass fpg_gdi/tfpgapplicationimpl.hiddenwndclass.html
ActivationHook fpg_gdi/tfpgapplicationimpl.activationhook.html
GetHiddenWindow fpg_gdi/tfpgapplicationimpl.gethiddenwindow.html
DoGetFontFaceList fpg_base/tfpgapplicationbase.dogetfontfacelist.html
Create fpg_base/tfpgapplicationbase.create.html
Destroy fpg_gdi/tfpgapplicationimpl.destroy.html
DoMessagesPending fpg_gdi/tfpgapplicationimpl.domessagespending.html
DoWaitWindowMessage fpg_gdi/tfpgapplicationimpl.dowaitwindowmessage.html
DoFlush fpg_gdi/tfpgapplicationimpl.doflush.html
GetScreenWidth fpg_gdi/tfpgapplicationimpl.getscreenwidth.html
GetScreenHeight fpg_gdi/tfpgapplicationimpl.getscreenheight.html
Screen_dpi_x fpg_gdi/tfpgapplicationimpl.screen_dpi_x.html
Screen_dpi_y fpg_gdi/tfpgapplicationimpl.screen_dpi_y.html
Screen_dpi fpg_gdi/tfpgapplicationimpl.screen_dpi.html
Display fpg_gdi/tfpgapplicationimpl.display.html
TfpgClipboardImpl fpg_gdi/tfpgclipboardimpl.html
FClipboardText fpg_gdi/tfpgclipboardimpl.fclipboardtext.html
DoGetText fpg_gdi/tfpgclipboardimpl.dogettext.html
DoSetText fpg_gdi/tfpgclipboardimpl.dosettext.html
InitClipboard fpg_gdi/tfpgclipboardimpl.initclipboard.html
TfpgFileListImpl fpg_gdi/tfpgfilelistimpl.html
EncodeAttributesString fpg_gdi/tfpgfilelistimpl.encodeattributesstring.html
Create fpg_gdi/tfpgfilelistimpl.create.html
InitializeEntry fpg_gdi/tfpgfilelistimpl.initializeentry.html
PopulateSpecialDirs fpg_gdi/tfpgfilelistimpl.populatespecialdirs.html
UnicodeEnabledOS fpg_gdi/unicodeenabledos.html
WinVersion fpg_gdi/winversion.html
FontSmoothingType fpg_gdi/fontsmoothingtype.html
fpg_main fpg_main/index.html
AllAnchors fpg_main/allanchors.html
TextFlagsDflt fpg_main/textflagsdflt.html
cMessageQueueSize fpg_main/cmessagequeuesize.html
fpGUIVersion fpg_main/fpguiversion.html
fpGUIName fpg_main/fpguiname.html
txtWordDelims fpg_main/txtworddelims.html
TOrientation fpg_main/torientation.html
TAlign fpg_main/talign.html
TLayout fpg_main/tlayout.html
TBoxLayout fpg_main/tboxlayout.html
TAnchor fpg_main/tanchor.html
TAnchors fpg_main/tanchors.html
TFButtonFlags fpg_main/tfbuttonflags.html
TFTextFlags fpg_main/tftextflags.html
TMouseButton fpg_main/tmousebutton.html
TArrowDirection fpg_main/tarrowdirection.html
TIntKeyPressEvent fpg_main/tintkeypressevent.html
TIntMouseEvent fpg_main/tintmouseevent.html
TKeyEvent fpg_main/tkeyevent.html
TKeyCharEvent fpg_main/tkeycharevent.html
TKeyPressEvent fpg_main/tkeypressevent.html
TMouseButtonEvent fpg_main/tmousebuttonevent.html
TMouseMoveEvent fpg_main/tmousemoveevent.html
TMouseWheelEvent fpg_main/tmousewheelevent.html
TPaintEvent fpg_main/tpaintevent.html
TExceptionEvent fpg_main/texceptionevent.html
TSizeParams fpg_main/tsizeparams.html
TfpgFontResource fpg_main/tfpgfontresource.html
FFontDesc fpg_main/tfpgfontresource.ffontdesc.html
FRefCount fpg_main/tfpgfontresource.frefcount.html
Create fpg_main/tfpgfontresource.create.html
IncRefCount fpg_main/tfpgfontresource.increfcount.html
DecRefCount fpg_main/tfpgfontresource.decrefcount.html
FontDesc fpg_main/tfpgfontresource.fontdesc.html
TfpgFont fpg_main/tfpgfont.html
Create fpg_main/tfpgfont.create.html
Destroy fpg_main/tfpgfont.destroy.html
TfpgWindow fpg_main/tfpgwindow.html
SetParent fpg_main/tfpgwindow.setparent.html
GetParent fpg_main/tfpgwindow.getparent.html
GetCanvas fpg_main/tfpgwindow.getcanvas.html
Create fpg_main/tfpgwindow.create.html
Destroy fpg_main/tfpgwindow.destroy.html
Parent fpg_main/tfpgwindow.parent.html
Canvas fpg_main/tfpgwindow.canvas.html
WinHandle fpg_main/tfpgwindow.winhandle.html
TfpgImage fpg_main/tfpgimage.html
ImageFromRect fpg_main/tfpgimage.imagefromrect.html
TfpgImages fpg_main/tfpgimages.html
Create fpg_main/tfpgimages.create.html
Destroy fpg_main/tfpgimages.destroy.html
AddImage fpg_main/tfpgimages.addimage.html
DeleteImage fpg_main/tfpgimages.deleteimage.html
GetImage fpg_main/tfpgimages.getimage.html
AddBMP fpg_main/tfpgimages.addbmp.html
AddMaskedBMP fpg_main/tfpgimages.addmaskedbmp.html
ListImages fpg_main/tfpgimages.listimages.html
TfpgCanvas fpg_main/tfpgcanvas.html
Create fpg_main/tfpgcanvas.create.html
Destroy fpg_main/tfpgcanvas.destroy.html
DrawButtonFace fpg_main/tfpgcanvas.drawbuttonface.html
DrawControlFrame fpg_main/tfpgcanvas.drawcontrolframe.html
DrawDirectionArrow fpg_main/tfpgcanvas.drawdirectionarrow.html
DrawFocusRect fpg_main/tfpgcanvas.drawfocusrect.html
DrawText fpg_main/tfpgcanvas.drawtext.html
TfpgStyle fpg_main/tfpgstyle.html
DefaultFont fpg_main/tfpgstyle.defaultfont.html
MenuFont fpg_main/tfpgstyle.menufont.html
MenuAccelFont fpg_main/tfpgstyle.menuaccelfont.html
MenuDisabledFont fpg_main/tfpgstyle.menudisabledfont.html
Create fpg_main/tfpgstyle.create.html
Destroy fpg_main/tfpgstyle.destroy.html
DrawButtonFace fpg_main/tfpgstyle.drawbuttonface.html
DrawControlFrame fpg_main/tfpgstyle.drawcontrolframe.html
DrawDirectionArrow fpg_main/tfpgstyle.drawdirectionarrow.html
DrawString fpg_main/tfpgstyle.drawstring.html
DrawFocusRect fpg_main/tfpgstyle.drawfocusrect.html
TMsgHookItem fpg_main/tmsghookitem.html
Dest fpg_main/tmsghookitem.dest.html
Listener fpg_main/tmsghookitem.listener.html
MsgCode fpg_main/tmsghookitem.msgcode.html
TfpgApplication fpg_main/tfpgapplication.html
FDisplayParams fpg_main/tfpgapplication.fdisplayparams.html
FScreenWidth fpg_main/tfpgapplication.fscreenwidth.html
FScreenHeight fpg_main/tfpgapplication.fscreenheight.html
FDefaultFont fpg_main/tfpgapplication.fdefaultfont.html
FFontResList fpg_main/tfpgapplication.ffontreslist.html
FMessageHookList fpg_main/tfpgapplication.fmessagehooklist.html
FreeFontRes fpg_main/tfpgapplication.freefontres.html
InternalInit fpg_main/tfpgapplication.internalinit.html
RunMessageLoop fpg_main/tfpgapplication.runmessageloop.html
WaitWindowMessage fpg_main/tfpgapplication.waitwindowmessage.html
Create fpg_main/tfpgapplication.create.html
Destroy fpg_main/tfpgapplication.destroy.html
GetFont fpg_main/tfpgapplication.getfont.html
ActivateHint fpg_main/tfpgapplication.activatehint.html
Flush fpg_main/tfpgapplication.flush.html
HandleException fpg_main/tfpgapplication.handleexception.html
HideHint fpg_main/tfpgapplication.hidehint.html
Initialize fpg_main/tfpgapplication.initialize.html
ProcessMessages fpg_main/tfpgapplication.processmessages.html
Run fpg_main/tfpgapplication.run.html
SetMessageHook fpg_main/tfpgapplication.setmessagehook.html
ShowException fpg_main/tfpgapplication.showexception.html
UnsetMessageHook fpg_main/tfpgapplication.unsetmessagehook.html
DefaultFont fpg_main/tfpgapplication.defaultfont.html
HintPause fpg_main/tfpgapplication.hintpause.html
HintWindow fpg_main/tfpgapplication.hintwindow.html
ScreenWidth fpg_main/tfpgapplication.screenwidth.html
ScreenHeight fpg_main/tfpgapplication.screenheight.html
ShowHint fpg_main/tfpgapplication.showhint.html
StopOnException fpg_main/tfpgapplication.stoponexception.html
OnException fpg_main/tfpgapplication.onexception.html
TfpgTimer fpg_main/tfpgtimer.html
Create fpg_main/tfpgtimer.create.html
Destroy fpg_main/tfpgtimer.destroy.html
CheckAlarm fpg_main/tfpgtimer.checkalarm.html
Reset fpg_main/tfpgtimer.reset.html
Enabled fpg_main/tfpgtimer.enabled.html
NextAlarm fpg_main/tfpgtimer.nextalarm.html
Interval fpg_main/tfpgtimer.interval.html
OnTimer fpg_main/tfpgtimer.ontimer.html
TfpgCaret fpg_main/tfpgcaret.html
Create fpg_main/tfpgcaret.create.html
Destroy fpg_main/tfpgcaret.destroy.html
SetCaret fpg_main/tfpgcaret.setcaret.html
UnSetCaret fpg_main/tfpgcaret.unsetcaret.html
InvertCaret fpg_main/tfpgcaret.invertcaret.html
Width fpg_main/tfpgcaret.width.html
Height fpg_main/tfpgcaret.height.html
TfpgClipboard fpg_main/tfpgclipboard.html
TfpgFileList fpg_main/tfpgfilelist.html
fpgApplication fpg_main/fpgapplication.html
fpgClipboard fpg_main/fpgclipboard.html
fpgGetFont fpg_main/fpggetfont.html
fpgWaitWindowMessage fpg_main/fpgwaitwindowmessage.html
fpgPostMessage fpg_main/fpgpostmessage.html
fpgSendMessage fpg_main/fpgsendmessage.html
fpgDeliverMessage fpg_main/fpgdelivermessage.html
fpgDeliverMessages fpg_main/fpgdelivermessages.html
fpgGetFirstMessage fpg_main/fpggetfirstmessage.html
fpgDeleteFirstMessage fpg_main/fpgdeletefirstmessage.html
fpgColorToRGB fpg_main/fpgcolortorgb.html
fpgGetNamedColor fpg_main/fpggetnamedcolor.html
fpgSetNamedColor fpg_main/fpgsetnamedcolor.html
fpgGetNamedFontDesc fpg_main/fpggetnamedfontdesc.html
fpgSetNamedFont fpg_main/fpgsetnamedfont.html
fpgGetNamedFontList fpg_main/fpggetnamedfontlist.html
fpgInitTimers fpg_main/fpginittimers.html
fpgCheckTimers fpg_main/fpgchecktimers.html
fpgClosestTimer fpg_main/fpgclosesttimer.html
fpgGetTickCount fpg_main/fpggettickcount.html
InflateRect fpg_main/inflaterect.html
OffsetRect fpg_main/offsetrect.html
CenterPoint fpg_main/centerpoint.html
fpgRect fpg_main/fpgrect.html
fpgRectToRect fpg_main/fpgrecttorect.html
PrintRect fpg_main/printrect.html
PrintCoord fpg_main/printcoord.html
PrintCallTrace fpg_main/printcalltrace.html
PrintCallTraceDbgLn fpg_main/printcalltracedbgln.html
DumpStack fpg_main/dumpstack.html
DebugLn fpg_main/debugln.html
fpgStyle fpg_main/fpgstyle.html
fpgCaret fpg_main/fpgcaret.html
fpgImages fpg_main/fpgimages.html
fpg_cmdlineparams fpg_cmdlineparams/index.html
ctiCommandLineParamPrefix fpg_cmdlineparams/cticommandlineparamprefix.html
TGfxCommandLineParams fpg_cmdlineparams/tgfxcommandlineparams.html
Create fpg_cmdlineparams/tgfxcommandlineparams.create.html
Destroy fpg_cmdlineparams/tgfxcommandlineparams.destroy.html
IsParam fpg_cmdlineparams/tgfxcommandlineparams.isparam.html
GetParam fpg_cmdlineparams/tgfxcommandlineparams.getparam.html
Params fpg_cmdlineparams/tgfxcommandlineparams.params.html
AsString fpg_cmdlineparams/tgfxcommandlineparams.asstring.html
gCommandLineParams fpg_cmdlineparams/gcommandlineparams.html
fpg_extinterpolation fpg_extinterpolation/index.html
TBlackmanInterpolation fpg_extinterpolation/tblackmaninterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TBlackmanSincInterpolation fpg_extinterpolation/tblackmansincinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TBlackmanBesselInterpolation fpg_extinterpolation/tblackmanbesselinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TGaussianInterpolation fpg_extinterpolation/tgaussianinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TBoxInterpolation fpg_extinterpolation/tboxinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
THermiteInterpolation fpg_extinterpolation/thermiteinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TLanczosInterpolation fpg_extinterpolation/tlanczosinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TQuadraticInterpolation fpg_extinterpolation/tquadraticinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TCubicInterpolation fpg_extinterpolation/tcubicinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TCatromInterpolation fpg_extinterpolation/tcatrominterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TBilinearInterpolation fpg_extinterpolation/tbilinearinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
THanningInterpolation fpg_extinterpolation/thanninginterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
THammingInterpolation fpg_extinterpolation/thamminginterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TBSplineInterpolation fpg_extinterpolation/tbsplineinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
TBellInterpolation fpg_extinterpolation/tbellinterpolation.html
Filter fpg_base/tfpgbaseinterpolation.filter.html
MaxSupport fpg_base/tfpgbaseinterpolation.maxsupport.html
fpg_imgfmt_bmp fpg_imgfmt_bmp/index.html
ReadImage_BMP fpg_imgfmt_bmp/readimage_bmp.html
LoadImage_BMP fpg_imgfmt_bmp/loadimage_bmp.html
CreateImage_BMP fpg_imgfmt_bmp/createimage_bmp.html
fpg_stdimages fpg_stdimages/index.html
fpgCreateStandardImages fpg_stdimages/fpgcreatestandardimages.html
fpg_stringutils fpg_stringutils/index.html
UTF8CharacterLength fpg_stringutils/utf8characterlength.html
UTF8CharStart fpg_stringutils/utf8charstart.html
UTF8Copy fpg_stringutils/utf8copy.html
UTF8CStringToUTF8String fpg_stringutils/utf8cstringtoutf8string.html
UTF8Length fpg_stringutils/utf8length.html
UTF8Pos fpg_stringutils/utf8pos.html
UTF8Delete fpg_stringutils/utf8delete.html
UTF8Insert fpg_stringutils/utf8insert.html
UTF8CharAtByte fpg_stringutils/utf8charatbyte.html
Copy8 fpg_stringutils/copy8.html
Length8 fpg_stringutils/length8.html
Pos8 fpg_stringutils/pos8.html
Delete8 fpg_stringutils/delete8.html
Insert8 fpg_stringutils/insert8.html
fpgCharAt fpg_stringutils/fpgcharat.html
fpg_widget fpg_widget/index.html
TFocusSearchDirection fpg_widget/tfocussearchdirection.html
TfpgWidget fpg_widget/tfpgwidget.html
MsgPaint fpg_widget/tfpgwidget.msgpaint.html
MsgResize fpg_widget/tfpgwidget.msgresize.html
MsgMove fpg_widget/tfpgwidget.msgmove.html
MsgKeyChar fpg_widget/tfpgwidget.msgkeychar.html
MsgKeyPress fpg_widget/tfpgwidget.msgkeypress.html
MsgKeyRelease fpg_widget/tfpgwidget.msgkeyrelease.html
MsgMouseDown fpg_widget/tfpgwidget.msgmousedown.html
MsgMouseUp fpg_widget/tfpgwidget.msgmouseup.html
MsgMouseMove fpg_widget/tfpgwidget.msgmousemove.html
MsgDoubleClick fpg_widget/tfpgwidget.msgdoubleclick.html
MsgMouseEnter fpg_widget/tfpgwidget.msgmouseenter.html
MsgMouseExit fpg_widget/tfpgwidget.msgmouseexit.html
MsgMouseScroll fpg_widget/tfpgwidget.msgmousescroll.html
FFormDesigner fpg_widget/tfpgwidget.fformdesigner.html
FVisible fpg_widget/tfpgwidget.fvisible.html
FEnabled fpg_widget/tfpgwidget.fenabled.html
FFocusable fpg_widget/tfpgwidget.ffocusable.html
FFocused fpg_widget/tfpgwidget.ffocused.html
FTabOrder fpg_widget/tfpgwidget.ftaborder.html
FAnchors fpg_widget/tfpgwidget.fanchors.html
FActiveWidget fpg_widget/tfpgwidget.factivewidget.html
FAlign fpg_widget/tfpgwidget.falign.html
FHint fpg_widget/tfpgwidget.fhint.html
FShowHint fpg_widget/tfpgwidget.fshowhint.html
FParentShowHint fpg_widget/tfpgwidget.fparentshowhint.html
FBackgroundColor fpg_widget/tfpgwidget.fbackgroundcolor.html
FTextColor fpg_widget/tfpgwidget.ftextcolor.html
FIsContainer fpg_widget/tfpgwidget.fiscontainer.html
SetBackgroundColor fpg_widget/tfpgwidget.setbackgroundcolor.html
SetTextColor fpg_widget/tfpgwidget.settextcolor.html
GetParent fpg_widget/tfpgwidget.getparent.html
SetParent fpg_widget/tfpgwidget.setparent.html
SetEnabled fpg_widget/tfpgwidget.setenabled.html
SetVisible fpg_widget/tfpgwidget.setvisible.html
SetShowHint fpg_widget/tfpgwidget.setshowhint.html
SetParentShowHint fpg_widget/tfpgwidget.setparentshowhint.html
DoUpdateWindowPosition fpg_widget/tfpgwidget.doupdatewindowposition.html
DoAlign fpg_widget/tfpgwidget.doalign.html
DoResize fpg_widget/tfpgwidget.doresize.html
HandlePaint fpg_widget/tfpgwidget.handlepaint.html
HandleKeyChar fpg_widget/tfpgwidget.handlekeychar.html
HandleKeyPress fpg_widget/tfpgwidget.handlekeypress.html
HandleKeyRelease fpg_widget/tfpgwidget.handlekeyrelease.html
HandleSetFocus fpg_widget/tfpgwidget.handlesetfocus.html
HandleKillFocus fpg_widget/tfpgwidget.handlekillfocus.html
HandleLMouseDown fpg_widget/tfpgwidget.handlelmousedown.html
HandleRMouseDown fpg_widget/tfpgwidget.handlermousedown.html
HandleLMouseUp fpg_widget/tfpgwidget.handlelmouseup.html
HandleRMouseUp fpg_widget/tfpgwidget.handlermouseup.html
HandleMouseMove fpg_widget/tfpgwidget.handlemousemove.html
HandleDoubleClick fpg_widget/tfpgwidget.handledoubleclick.html
HandleMouseEnter fpg_widget/tfpgwidget.handlemouseenter.html
HandleMouseExit fpg_widget/tfpgwidget.handlemouseexit.html
HandleMouseScroll fpg_widget/tfpgwidget.handlemousescroll.html
FindFocusWidget fpg_widget/tfpgwidget.findfocuswidget.html
HandleAlignments fpg_widget/tfpgwidget.handlealignments.html
HandleShow fpg_widget/tfpgwidget.handleshow.html
InternalHandleShow fpg_widget/tfpgwidget.internalhandleshow.html
HandleHide fpg_widget/tfpgwidget.handlehide.html
MoveAndResize fpg_widget/tfpgwidget.moveandresize.html
RePaint fpg_widget/tfpgwidget.repaint.html
OnClick fpg_widget/tfpgwidget.onclick.html
OnDoubleClick fpg_widget/tfpgwidget.ondoubleclick.html
OnEnter fpg_widget/tfpgwidget.onenter.html
OnExit fpg_widget/tfpgwidget.onexit.html
OnKeyPress fpg_widget/tfpgwidget.onkeypress.html
OnMouseDown fpg_widget/tfpgwidget.onmousedown.html
OnMouseEnter fpg_widget/tfpgwidget.onmouseenter.html
OnMouseExit fpg_widget/tfpgwidget.onmouseexit.html
OnMouseMove fpg_widget/tfpgwidget.onmousemove.html
OnMouseUp fpg_widget/tfpgwidget.onmouseup.html
OnPaint fpg_widget/tfpgwidget.onpaint.html
OnResize fpg_widget/tfpgwidget.onresize.html
Create fpg_widget/tfpgwidget.create.html
Destroy fpg_widget/tfpgwidget.destroy.html
GetClientRect fpg_widget/tfpgwidget.getclientrect.html
GetBoundsRect fpg_widget/tfpgwidget.getboundsrect.html
Realign fpg_widget/tfpgwidget.realign.html
SetFocus fpg_widget/tfpgwidget.setfocus.html
KillFocus fpg_widget/tfpgwidget.killfocus.html
MoveAndResizeBy fpg_widget/tfpgwidget.moveandresizeby.html
SetPosition fpg_widget/tfpgwidget.setposition.html
Invalidate fpg_widget/tfpgwidget.invalidate.html
FormDesigner fpg_widget/tfpgwidget.formdesigner.html
Parent fpg_widget/tfpgwidget.parent.html
ActiveWidget fpg_widget/tfpgwidget.activewidget.html
IsContainer fpg_widget/tfpgwidget.iscontainer.html
Visible fpg_widget/tfpgwidget.visible.html
Enabled fpg_widget/tfpgwidget.enabled.html
TabOrder fpg_widget/tfpgwidget.taborder.html
Focusable fpg_widget/tfpgwidget.focusable.html
Focused fpg_widget/tfpgwidget.focused.html
Anchors fpg_widget/tfpgwidget.anchors.html
Align fpg_widget/tfpgwidget.align.html
Hint fpg_widget/tfpgwidget.hint.html
ShowHint fpg_widget/tfpgwidget.showhint.html
ParentShowHint fpg_widget/tfpgwidget.parentshowhint.html
BackgroundColor fpg_widget/tfpgwidget.backgroundcolor.html
TextColor fpg_widget/tfpgwidget.textcolor.html
FindKeyboardFocus fpg_widget/findkeyboardfocus.html
FocusRootWidget fpg_widget/focusrootwidget.html
fpg_utils fpg_utils/index.html
fpgToOSEncoding fpg_utils/fpgtoosencoding.html
fpgFromOSEncoding fpg_utils/fpgfromosencoding.html
fpgOpenURL fpg_utils/fpgopenurl.html
fpgAddTrailingValue fpg_utils/fpgaddtrailingvalue.html
fpgAppendPathDelim fpg_utils/fpgappendpathdelim.html
fpgHasSubDirs fpg_utils/fpghassubdirs.html
fpgAllFilesMask fpg_utils/fpgallfilesmask.html
fpgConvertLineEndings fpg_utils/fpgconvertlineendings.html
fpgFindFirst fpg_utils/fpgfindfirst.html
fpgFindNext fpg_utils/fpgfindnext.html
fpgGetCurrentDir fpg_utils/fpggetcurrentdir.html
fpgSetCurrentDir fpg_utils/fpgsetcurrentdir.html
fpgExpandFileName fpg_utils/fpgexpandfilename.html
fpgFileExists fpg_utils/fpgfileexists.html
fpgDirectoryExists fpg_utils/fpgdirectoryexists.html
fpgExtractFileDir fpg_utils/fpgextractfiledir.html
fpg_popupwindow fpg_popupwindow/index.html
TfpgPopupWindow fpg_popupwindow/tfpgpopupwindow.html
MsgClose fpg_popupwindow/tfpgpopupwindow.msgclose.html
AdjustWindowStyle fpg_popupwindow/tfpgpopupwindow.adjustwindowstyle.html
HandleClose fpg_popupwindow/tfpgpopupwindow.handleclose.html
ProcessPopupFrame fpg_popupwindow/tfpgpopupwindow.processpopupframe.html
DoPaintPopupFrame fpg_popupwindow/tfpgpopupwindow.dopaintpopupframe.html
DoOnClose fpg_popupwindow/tfpgpopupwindow.doonclose.html
Create fpg_popupwindow/tfpgpopupwindow.create.html
ShowAt fpg_popupwindow/tfpgpopupwindow.showat.html
Close fpg_popupwindow/tfpgpopupwindow.close.html
DontCloseWidget fpg_popupwindow/tfpgpopupwindow.dontclosewidget.html
PopupFrame fpg_popupwindow/tfpgpopupwindow.popupframe.html
OnClose fpg_popupwindow/tfpgpopupwindow.onclose.html
ClosePopups fpg_popupwindow/closepopups.html
PopupListFirst fpg_popupwindow/popuplistfirst.html
PopupListFind fpg_popupwindow/popuplistfind.html
PopupDontCloseWidget fpg_popupwindow/popupdontclosewidget.html
fpg_wuline fpg_wuline/index.html
WuLine fpg_wuline/wuline.html
DrawWuCircle fpg_wuline/drawwucircle.html
fpg_imagelist fpg_imagelist/index.html
EItemExists fpg_imagelist/eitemexists.html
TfpgImageItem fpg_imagelist/tfpgimageitem.html
Create fpg_imagelist/tfpgimageitem.create.html
Destroy fpg_imagelist/tfpgimageitem.destroy.html
Index fpg_imagelist/tfpgimageitem.index.html
Image fpg_imagelist/tfpgimageitem.image.html
ImageList fpg_imagelist/tfpgimageitem.imagelist.html
LoadFromFile fpg_imagelist/tfpgimageitem.loadfromfile.html
TfpgImageList fpg_imagelist/tfpgimagelist.html
Create fpg_imagelist/tfpgimagelist.create.html
Destroy fpg_imagelist/tfpgimagelist.destroy.html
AddItemFromFile fpg_imagelist/tfpgimagelist.additemfromfile.html
AddImage fpg_imagelist/tfpgimagelist.addimage.html
RemoveIndex fpg_imagelist/tfpgimagelist.removeindex.html
GetMaxItem fpg_imagelist/tfpgimagelist.getmaxitem.html
Item fpg_imagelist/tfpgimagelist.item.html
fpg_constants fpg_constants/index.html
rserrnotassigned fpg_constants/index-1.html#rserrnotassigned
rsnewitemdetected fpg_constants/index-1.html#rsnewitemdetected
rsabort fpg_constants/index-1.html#rsabort
rsabout fpg_constants/index-1.html#rsabout
rsall fpg_constants/index-1.html#rsall
rsallfiles fpg_constants/index-1.html#rsallfiles
rscollectionallfonts fpg_constants/index-1.html#rscollectionallfonts
rsantialiasing fpg_constants/index-1.html#rsantialiasing
rsshortapr fpg_constants/index-1.html#rsshortapr
rslongapr fpg_constants/index-1.html#rslongapr
rsfileattributes fpg_constants/index-1.html#rsfileattributes
rsshortaug fpg_constants/index-1.html#rsshortaug
rslongaug fpg_constants/index-1.html#rslongaug
rsbold fpg_constants/index-1.html#rsbold
rscancel fpg_constants/index-1.html#rscancel
rscannotcreatedir fpg_constants/index-1.html#rscannotcreatedir
rschange fpg_constants/index-1.html#rschange
rsclose fpg_constants/index-1.html#rsclose
rscollection fpg_constants/index-1.html#rscollection
rsconfirm fpg_constants/index-1.html#rsconfirm
rsconfirmation fpg_constants/index-1.html#rsconfirmation
rscopy fpg_constants/index-1.html#rscopy
rserrcouldnotopendir fpg_constants/index-1.html#rserrcouldnotopendir
rscreate fpg_constants/index-1.html#rscreate
rscreatedirectory fpg_constants/index-1.html#rscreatedirectory
rscriticalerror fpg_constants/index-1.html#rscriticalerror
rscut fpg_constants/index-1.html#rscut
rsdatabase fpg_constants/index-1.html#rsdatabase
rsshortdec fpg_constants/index-1.html#rsshortdec
rslongdec fpg_constants/index-1.html#rslongdec
rsdelete fpg_constants/index-1.html#rsdelete
rsdirectories fpg_constants/index-1.html#rsdirectories
rsdrive fpg_constants/index-1.html#rsdrive
rsedit fpg_constants/index-1.html#rsedit
rslanguage fpg_constants/index-1.html#rslanguage
rsenternewdirectory fpg_constants/index-1.html#rsenternewdirectory
rserror fpg_constants/index-1.html#rserror
rsexampletext fpg_constants/index-1.html#rsexampletext
rsexit fpg_constants/index-1.html#rsexit
rserrfailedtocreatedir fpg_constants/index-1.html#rserrfailedtocreatedir
rsfalse fpg_constants/index-1.html#rsfalse
rscollectionfavourites fpg_constants/index-1.html#rscollectionfavourites
rsshortfeb fpg_constants/index-1.html#rsshortfeb
rslongfeb fpg_constants/index-1.html#rslongfeb
rsfileselection fpg_constants/index-1.html#rsfileselection
rsfilename fpg_constants/index-1.html#rsfilename
rsfiles fpg_constants/index-1.html#rsfiles
rsfind fpg_constants/index-1.html#rsfind
rscollectionfixedwidth fpg_constants/index-1.html#rscollectionfixedwidth
rscollectionfontaliases fpg_constants/index-1.html#rscollectionfontaliases
rsshortfri fpg_constants/index-1.html#rsshortfri
rslongfri fpg_constants/index-1.html#rslongfri
rsfilegroup fpg_constants/index-1.html#rsfilegroup
rshelp fpg_constants/index-1.html#rshelp
rsignore fpg_constants/index-1.html#rsignore
rsinformation fpg_constants/index-1.html#rsinformation
rsinsert fpg_constants/index-1.html#rsinsert
rsitalic fpg_constants/index-1.html#rsitalic
rserritemofwrongtype fpg_constants/index-1.html#rserritemofwrongtype
rsshortjan fpg_constants/index-1.html#rsshortjan
rslongjan fpg_constants/index-1.html#rslongjan
rsshortjul fpg_constants/index-1.html#rsshortjul
rslongjul fpg_constants/index-1.html#rslongjul
rsshortjun fpg_constants/index-1.html#rsshortjun
rslongjun fpg_constants/index-1.html#rslongjun
rserrlistmustbeempty fpg_constants/index-1.html#rserrlistmustbeempty
rsshortmar fpg_constants/index-1.html#rsshortmar
rslongmar fpg_constants/index-1.html#rslongmar
rsshortmay fpg_constants/index-1.html#rsshortmay
rsLongMay fpg_constants/index-1.html#rslongmay
rsmessage fpg_constants/index-1.html#rsmessage
rsfilemodifiedtime fpg_constants/index-1.html#rsfilemodifiedtime
rsshortmon fpg_constants/index-1.html#rsshortmon
rslongmon fpg_constants/index-1.html#rslongmon
rsname fpg_constants/index-1.html#rsname
rsno fpg_constants/index-1.html#rsno
rsnotoall fpg_constants/index-1.html#rsnotoall
rsshortnov fpg_constants/index-1.html#rsshortnov
rslongnov fpg_constants/index-1.html#rslongnov
rsok fpg_constants/index-1.html#rsok
rsshortoct fpg_constants/index-1.html#rsshortoct
rslongoct fpg_constants/index-1.html#rslongoct
rsopen fpg_constants/index-1.html#rsopen
rsopenafile fpg_constants/index-1.html#rsopenafile
rsfileowner fpg_constants/index-1.html#rsfileowner
rspassword fpg_constants/index-1.html#rspassword
rspaste fpg_constants/index-1.html#rspaste
rscollectionrecentlyused fpg_constants/index-1.html#rscollectionrecentlyused
rsreplace fpg_constants/index-1.html#rsreplace
rsretry fpg_constants/index-1.html#rsretry
rsfilerights fpg_constants/index-1.html#rsfilerights
rscollectionsans fpg_constants/index-1.html#rscollectionsans
rsshortsat fpg_constants/index-1.html#rsshortsat
rslongsat fpg_constants/index-1.html#rslongsat
rssave fpg_constants/index-1.html#rssave
rssaveafile fpg_constants/index-1.html#rssaveafile
rssearch fpg_constants/index-1.html#rssearch
rsselect fpg_constants/index-1.html#rsselect
rsselectafont fpg_constants/index-1.html#rsselectafont
rsshortsep fpg_constants/index-1.html#rsshortsep
rslongsep fpg_constants/index-1.html#rslongsep
rscollectionserif fpg_constants/index-1.html#rscollectionserif
rsshowhidden fpg_constants/index-1.html#rsshowhidden
rssize fpg_constants/index-1.html#rssize
rsstyle fpg_constants/index-1.html#rsstyle
rsshortsun fpg_constants/index-1.html#rsshortsun
rslongsun fpg_constants/index-1.html#rslongsun
rsshortthu fpg_constants/index-1.html#rsshortthu
rslongthu fpg_constants/index-1.html#rslongthu
rstoday fpg_constants/index-1.html#rstoday
rstrue fpg_constants/index-1.html#rstrue
rsshorttue fpg_constants/index-1.html#rsshorttue
rslongtue fpg_constants/index-1.html#rslongtue
rsfiletype fpg_constants/index-1.html#rsfiletype
rstypeface fpg_constants/index-1.html#rstypeface
rsunderscore fpg_constants/index-1.html#rsunderscore
rsusername fpg_constants/index-1.html#rsusername
rswarning fpg_constants/index-1.html#rswarning
rsshortwed fpg_constants/index-1.html#rsshortwed
rslongwed fpg_constants/index-1.html#rslongwed
rsaddnewitem fpg_constants/index-1.html#rsaddnewitem
rsyes fpg_constants/index-1.html#rsyes
rsyestoall fpg_constants/index-1.html#rsyestoall
DOUBLECLICK_MS fpg_constants/doubleclick_ms.html
DOUBLECLICK_DISTANCE fpg_constants/doubleclick_distance.html
ONE_MILISEC fpg_constants/one_milisec.html
DEFAULT_HINT_PAUSE fpg_constants/default_hint_pause.html
fpgAddColon fpg_constants/fpgaddcolon.html
fpg_pofiles fpg_pofiles/index.html
TPOFileItem fpg_pofiles/tpofileitem.html
Identifier fpg_pofiles/tpofileitem.identifier.html
Original fpg_pofiles/tpofileitem.original.html
Translation fpg_pofiles/tpofileitem.translation.html
Create fpg_pofiles/tpofileitem.create.html
TPOFile fpg_pofiles/tpofile.html
FItems fpg_pofiles/tpofile.fitems.html
FIdentifierToItem fpg_pofiles/tpofile.fidentifiertoitem.html
FOriginalToItem fpg_pofiles/tpofile.foriginaltoitem.html
Create fpg_pofiles/tpofile.create.html
Destroy fpg_pofiles/tpofile.destroy.html
ReadPOText fpg_pofiles/tpofile.readpotext.html
Add fpg_pofiles/tpofile.add.html
Translate fpg_pofiles/tpofile.translate.html
AppendFile fpg_pofiles/tpofile.appendfile.html
EPOFileError fpg_pofiles/epofileerror.html
TranslateUnitResourceStrings fpg_pofiles/translateunitresourcestrings.html
UTF8ToSystemCharSet fpg_pofiles/utf8tosystemcharset.html
SystemCharSetIsUTF8 fpg_pofiles/systemcharsetisutf8.html
fpg_translations fpg_translations/index.html
PTranslation fpg_translations/ptranslation.html
TTranslation fpg_translations/ttranslation.html
ID fpg_translations/ttranslation.id.html
TTranslationList fpg_translations/ttranslationlist.html
Destroy fpg_translations/ttranslationlist.destroy.html
IndexOf fpg_translations/ttranslationlist.indexof.html
Add fpg_translations/ttranslationlist.add.html
Clear fpg_translations/ttranslationlist.clear.html
Count fpg_translations/ttranslationlist.count.html
Items fpg_translations/ttranslationlist.items.html
TranslateResourceStrings fpg_translations/translateresourcestrings.html
fpg_stringhashlist fpg_stringhashlist/index.html
PStringHashItem fpg_stringhashlist/pstringhashitem.html
TStringHashItem fpg_stringhashlist/tstringhashitem.html
PStringHashItemList fpg_stringhashlist/pstringhashitemlist.html
TStringHashList fpg_stringhashlist/tstringhashlist.html
HashOf fpg_stringhashlist/tstringhashlist.hashof.html
Insert fpg_stringhashlist/tstringhashlist.insert.html
Create fpg_stringhashlist/tstringhashlist.create.html
Destroy fpg_stringhashlist/tstringhashlist.destroy.html
Add fpg_stringhashlist/tstringhashlist.add.html
Clear fpg_stringhashlist/tstringhashlist.clear.html
Find fpg_stringhashlist/tstringhashlist.find.html
Remove fpg_stringhashlist/tstringhashlist.remove.html
CaseSensitive fpg_stringhashlist/tstringhashlist.casesensitive.html
Count fpg_stringhashlist/tstringhashlist.count.html
Data fpg_stringhashlist/tstringhashlist.data.html
List fpg_stringhashlist/tstringhashlist.list.html
:classes
#CoreLib.fpg_base.TfpgRect 0VTop
0VLeft
0VWidth
0VHeight
0MSetRect
0MBottom
0MRight
0MSetBottom
0MSetRight
#CoreLib.fpg_base.TfpgImageBase TObject
1MGetColor
1MSetColor
2VFWidth
2VFHeight
2VFColorDepth
2VFMasked
2VFImageData
2VFImageDataSize
2VFMaskData
2VFMaskDataSize
2MDoFreeImage
2MDoInitImage
2MDoInitImageMask
3MCreate
3MDestroy
3MInvert
3MFreeImage
3MAllocateImage
3MAllocateMask
3MCreateMaskFromSample
3MUpdateImage
3PImageData r
3PImageDataSize r
3PMaskData r
3PMaskDataSize r
3PWidth r
3PHeight r
3PColorDepth r
3PMasked r
3PColors rw
#CoreLib.fpg_base.TfpgFontResourceBase TObject
3MGetAscent
3MGetDescent
3MGetHeight
3MGetTextWidth
#CoreLib.fpg_base.TfpgFontBase TObject
2VFFontDesc
2VFFontRes
3MTextWidth
3MAscent
3MDescent
3MHeight
3PFontDesc r
3PFontRes r
3PHandle r
#CoreLib.fpg_base.TfpgCustomInterpolation TObject
1VFCanvas
1VFImage
2MInitialize
2MExecute
3PCanvas r
3PImage r
#CoreLib.fpg_base.TfpgBaseInterpolation #CoreLib.fpg_base.TfpgCustomInterpolation
1Vxfactor
1Vyfactor
1Vxsupport
1Vysupport
1Vtempimage
1MHorizontal
1MVertical
2MExecute
2MFilter
2MMaxSupport
3MDestroy
#CoreLib.fpg_base.TfpgMitchelInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_base.TfpgCanvasBase TObject
1VFFastDoubleBuffer
1VFInterpolation
1MSetInterpolation
2VFBufferedDraw
2VFBeginDrawCount
2VFWindow
2VFColor
2VFTextColor
2VFLineWidth
2VFLineStyle
2VFFont
2VFPersistentResources
2MDoSetFontRes
2MDoSetTextColor
2MDoSetColor
2MDoSetLineStyle
2MDoGetWinRect
2MDoFillRectangle
2MDoXORFillRectangle
2MDoFillTriangle
2MDoDrawRectangle
2MDoDrawLine
2MDoDrawImagePart
2MDoDrawString
2MDoSetClipRect
2MDoGetClipRect
2MDoAddClipRect
2MDoClearClipRect
2MDoBeginDraw
2MDoPutBufferToScreen
2MDoEndDraw
2MGetPixel
2MSetPixel
2MDoDrawArc
2MDoFillArc
2MDoDrawPolygon
3MCreate
3MDestroy
3MDrawRectangle
3MDrawLine
3MDrawLineClipped
3MClipLine
3MDrawImage
3MDrawImagePart
3MDrawArc
3MDrawPolygon
3MStretchDraw
3MCopyRect
3MDrawString
3MFillRectangle
3MFillTriangle
3MFillArc
3MGradientFill
3MXORFillRectangle
3MSetClipRect
3MGetClipRect
3MAddClipRect
3MClearClipRect
3MClear
3MGetWinRect
3MSetColor
3MSetTextColor
3MSetLineStyle
3MSetFont
3MBeginDraw
3MEndDraw
3MFreeResources
3PColor rw
3PTextColor rw
3PFont rw
3PPixels rw
3PInterpolationFilter rw
3PFastDoubleBuffer rw
3PLineStyle r
3PLineWidth r
#CoreLib.fpg_base.TfpgComponent TComponent
1VFTagPointer
3PTagPointer rw
#CoreLib.fpg_base.TfpgWindowBase #CoreLib.fpg_base.TfpgComponent
1VFParent
1MSetMouseCursor
1MConstraintWidth
1MConstraintHeight
2VFMouseCursor
2VFWindowType
2VFWindowAttributes
2VFTop
2VFLeft
2VFWidth
2VFHeight
2VFPrevTop
2VFPrevLeft
2VFPrevWidth
2VFPrevHeight
2VFMinWidth
2VFMinHeight
2VFMaxHeight
2VFMaxWidth
2VFCanvas
2VFSizeIsDirty
2VFPosIsDirty
2MHandleIsValid
2MDoUpdateWindowPosition
2MDoAllocateWindowHandle
2MDoReleaseWindowHandle
2MDoRemoveWindowLookup
2MDoSetWindowVisible
2MDoMoveWindow
2MDoWindowToScreen
2MDoSetWindowTitle
2MDoSetMouseCursor
2MSetParent
2MGetParent
2MGetCanvas
2MAllocateWindowHandle
2MReleaseWindowHandle
2MSetWindowTitle
2MSetTop
2MSetLeft
2MSetHeight
2MSetWidth
2MHandleMove
2MHandleResize
3MCreate
3MAfterConstruction
3MAdjustWindowStyle
3MSetWindowParameters
3MRight
3MBottom
3MUpdateWindowPosition
3MMoveWindow
3MWindowToScreen
3MHasParent
3MActivateWindow
3MCaptureMouse
3MReleaseMouse
3MSetFullscreen
3PHasHandle r
3PWindowType rw
3PWindowAttributes rw
3PLeft rw
3PTop rw
3PWidth rw
3PHeight rw
3PMinWidth rw
3PMinHeight rw
3PMaxWidth rw
3PMaxHeight rw
3PCanvas r
3PParent rw
3PMouseCursor rw
#CoreLib.fpg_base.TfpgApplicationBase TComponent
1VFMainForm
1VFTerminated
1VFCritSect
1MGetForm
1MGetFormCount
1MGetTopModalForm
2VFOnIdle
2VFIsInitialized
2VFModalFormStack
2MDoGetFontFaceList
3MCreate
3MDestroy
3MGetFontFaceList
3MPushModalForm
3MPopModalForm
3MPrevModalForm
3MRemoveWindowFromModalStack
3MCreateForm
3MGetScreenWidth
3MGetScreenHeight
3MScreen_dpi_x
3MScreen_dpi_y
3MScreen_dpi
3MTerminate
3MLock
3MUnlock
3PFormCount r
3PForms r
3PIsInitialized r
3PTopModalForm r
3PMainForm rw
3PTerminated rw
3POnIdle rw
#CoreLib.fpg_base.TfpgClipboardBase TObject
2VFClipboardWndHandle
2MDoGetText
2MDoSetText
2MInitClipboard
3MCreate
3PText rw
#CoreLib.fpg_base.TFileEntry TObject
1VFEntryType
1VFExtension
1VFName
1VFModTime
1VFSize
1VFIsLink
1VFLinkTarget
1VFIsExecutable
1VFModeString
1VFOwner
1VFGroup
1VFAttrString
3MCreate
3PName rw
3PExtension rw
3PSize rw
3PEntryType rw
3PIsLink rw
3PLinkTarget rw
3PIsExecutable rw
3PModTime rw
3PMode rw
3POwner rw
3PGroup rw
3PAttributes rw
#CoreLib.fpg_base.TfpgFileListBase TObject
1VFEntries
1VFDirectoryName
1VFFileMask
1VFShowHidden
1VFCurrentSpecialDir
1MAddEntry
1MGetEntry
1MHasAttrib
2VFSpecialDirs
2VFHasFileMode
2MInitializeEntry
2MPopulateSpecialDirs
3MCreate
3MDestroy
3MCount
3MCurrentSpecialDir
3MReadDirectory
3MClear
3MSort
3PDirectoryName r
3PEntry r
3PFileMask rw
3PHasFileMode r
3PShowHidden rw
3PSpecialDirs r
#CoreLib.fpg_x11.TfpgFontResourceImpl #CoreLib.fpg_base.TfpgFontResourceBase
1VFFontData
1MDoGetTextWidthClassic
1MDoGetTextWidthWorkaround
2PHandle r
3MCreate
3MDestroy
3MHandleIsValid
3MGetAscent
3MGetDescent
3MGetHeight
3MGetTextWidth
#CoreLib.fpg_x11.TfpgImageImpl #CoreLib.fpg_base.TfpgImageBase
1VFXimg
1VFXimgmask
1MXImage
1MXImageMask
2MDoFreeImage
2MDoInitImage
2MDoInitImageMask
3MCreate
#CoreLib.fpg_x11.TfpgCanvasImpl #CoreLib.fpg_base.TfpgCanvasBase
1VFDrawing
1VFDrawWindow
1VFBufferPixmap
1VFDrawHandle
1VFgc
1VFCurFontRes
1VFClipRect
1VFClipRectSet
1VFXftDraw
1VFColorTextXft
1VFClipRegion
1VFPixHeight
1VFPixWidth
1VFBufferFreeTimer
1MBufferFreeTimer
1MTryFreePixmap
2MDoSetFontRes
2MDoSetTextColor
2MDoSetColor
2MDoSetLineStyle
2MDoGetWinRect
2MDoFillRectangle
2MDoXORFillRectangle
2MDoFillTriangle
2MDoDrawRectangle
2MDoDrawLine
2MDoDrawImagePart
2MDoDrawString
2MDoSetClipRect
2MDoGetClipRect
2MDoAddClipRect
2MDoClearClipRect
2MDoBeginDraw
2MDoPutBufferToScreen
2MDoEndDraw
2MGetPixel
2MSetPixel
2MDoDrawArc
2MDoFillArc
2MDoDrawPolygon
2PDCHandle r
3MCreate
3MDestroy
#CoreLib.fpg_x11.TfpgWindowImpl #CoreLib.fpg_base.TfpgWindowBase
2VFWinFlags
2VFWinHandle
2VFBackupWinHandle
2VFModalForWin
2MDoAllocateWindowHandle
2MDoReleaseWindowHandle
2MDoRemoveWindowLookup
2MDoSetWindowVisible
2MHandleIsValid
2MDoSetWindowTitle
2MDoMoveWindow
2MDoWindowToScreen
2MDoUpdateWindowPosition
2MDoSetMouseCursor
2PWinHandle r
3MCreate
3MActivateWindow
3MCaptureMouse
3MReleaseMouse
3MSetFullscreen
#CoreLib.fpg_x11.TfpgApplicationImpl #CoreLib.fpg_base.TfpgApplicationBase
1VFComposeBuffer
1VFComposeStatus
1VFEventFilter
1MConvertShiftState
1MKeySymToKeycode
1MStartComposing
2VFDisplay
2VDisplayDepth
2VDefaultBackground
2VDefaultForeground
2VDefaultScreen
2VDefaultVisual
2VDefaultColorMap
2VFRootWindow
2Vxia_clipboard
2Vxia_motif_wm_hints
2Vxia_wm_protocols
2Vxia_wm_delete_window
2Vnetlayer
2Vxia_targets
2VInputMethod
2VInputContext
2VFLastKeySym
2MDoGetFontFaceList
3MCreate
3MDestroy
3MDoMessagesPending
3MDoWaitWindowMessage
3MDoFlush
3MGetScreenWidth
3MGetScreenHeight
3MScreen_dpi_x
3MScreen_dpi_y
3MScreen_dpi
3PDisplay r
3PRootWindow r
3PEventFilter rw
#CoreLib.fpg_x11.TfpgClipboardImpl #CoreLib.fpg_base.TfpgClipboardBase
1VFWaitingForSelection
2VFClipboardText
2MDoGetText
2MDoSetText
2MInitClipboard
#CoreLib.fpg_x11.TfpgFileListImpl #CoreLib.fpg_base.TfpgFileListBase
0MEncodeModeString
0MCreate
0MInitializeEntry
0MPopulateSpecialDirs
#CoreLib.fpg_gdi.TfpgFontResourceImpl #CoreLib.fpg_base.TfpgFontResourceBase
1VFFontData
1VFMetrics
2MOpenFontByDesc
2PHandle r
3MCreate
3MDestroy
3MHandleIsValid
3MGetAscent
3MGetDescent
3MGetHeight
3MGetTextWidth
#CoreLib.fpg_gdi.TfpgFontImpl #CoreLib.fpg_base.TfpgFontBase
#CoreLib.fpg_gdi.TfpgImageImpl #CoreLib.fpg_base.TfpgImageBase
1VFBMPHandle
1VFMaskHandle
1VFIsTwoColor
1PBMPHandle r
1PMaskHandle r
2MDoFreeImage
2MDoInitImage
2MDoInitImageMask
3MCreate
#CoreLib.fpg_gdi.TfpgCanvasImpl #CoreLib.fpg_base.TfpgCanvasBase
1VFDrawing
1VFBufferBitmap
1VFDrawWindow
1VFgc
1VFBufgc
1VFWinGC
1VFBackgroundColor
1VFCurFontRes
1VFClipRect
1VFClipRectSet
1VFWindowsColor
1VFBrush
1VFPen
1VFClipRegion
1VFIntLineStyle
1VFBufWidth
1VFBufHeight
1MTryFreeBackBuffer
2MDoSetFontRes
2MDoSetTextColor
2MDoSetColor
2MDoSetLineStyle
2MDoGetWinRect
2MDoFillRectangle
2MDoXORFillRectangle
2MDoFillTriangle
2MDoDrawRectangle
2MDoDrawLine
2MDoDrawImagePart
2MDoDrawString
2MDoSetClipRect
2MDoGetClipRect
2MDoAddClipRect
2MDoClearClipRect
2MDoBeginDraw
2MDoPutBufferToScreen
2MDoEndDraw
2MGetPixel
2MSetPixel
2MDoDrawArc
2MDoFillArc
2MDoDrawPolygon
2PDCHandle r
3MCreate
3MDestroy
#CoreLib.fpg_gdi.TfpgWindowImpl #CoreLib.fpg_base.TfpgWindowBase
1VFMouseInWindow
1VFNonFullscreenRect
1VFNonFullscreenStyle
1VFFullscreenIsSet
1VFSkipResizeMessage
1MDoMouseEnterLeaveCheck
1MWindowSetFullscreen
2VFWinHandle
2VFModalForWin
2VFWinStyle
2VFWinStyleEx
2VFParentWinHandle
2MDoAllocateWindowHandle
2MDoReleaseWindowHandle
2MDoRemoveWindowLookup
2MDoSetWindowVisible
2MHandleIsValid
2MDoUpdateWindowPosition
2MDoMoveWindow
2MDoWindowToScreen
2MDoSetWindowTitle
2MDoSetMouseCursor
2PWinHandle r
3MCreate
3MActivateWindow
3MCaptureMouse
3MReleaseMouse
3MSetFullscreen
#CoreLib.fpg_gdi.TfpgApplicationImpl #CoreLib.fpg_base.TfpgApplicationBase
2VFDisplay
2VWindowClass
2VWidgetClass
2Vhcr_default
2Vhcr_dir_ew
2Vhcr_dir_ns
2Vhcr_edit
2Vhcr_dir_nwse
2Vhcr_dir_nesw
2Vhcr_move
2Vhcr_crosshair
2Vhcr_wait
2Vhcr_hand
2VFFocusedWindow
2VFHiddenWindow
2VHiddenWndClass
2VActivationHook
2MGetHiddenWindow
2MDoGetFontFaceList
3MCreate
3MDestroy
3MDoMessagesPending
3MDoWaitWindowMessage
3MDoFlush
3MGetScreenWidth
3MGetScreenHeight
3MScreen_dpi_x
3MScreen_dpi_y
3MScreen_dpi
3PDisplay r
#CoreLib.fpg_gdi.TfpgClipboardImpl #CoreLib.fpg_base.TfpgClipboardBase
2VFClipboardText
2MDoGetText
2MDoSetText
2MInitClipboard
#CoreLib.fpg_gdi.TfpgFileListImpl #CoreLib.fpg_base.TfpgFileListBase
0MEncodeAttributesString
0MCreate
0MInitializeEntry
0MPopulateSpecialDirs
#CoreLib.fpg_main.TfpgFontResource #CoreLib.fpg_x11.TfpgFontResourceImpl
2VFFontDesc
2VFRefCount
3MCreate
3MIncRefCount
3MDecRefCount
3PFontDesc r
#CoreLib.fpg_main.TfpgFont #CoreLib.fpg_base.TfpgFontBase
3MCreate
3MDestroy
#CoreLib.fpg_main.TfpgWindow #CoreLib.fpg_x11.TfpgWindowImpl
2MSetParent
2MGetParent
2MGetCanvas
3MCreate
3MDestroy
3PParent rw
3PCanvas r
3PWinHandle
#CoreLib.fpg_main.TfpgImage #CoreLib.fpg_x11.TfpgImageImpl
3MImageFromRect
#CoreLib.fpg_main.TfpgImages .TObject
1VFImages
3MCreate
3MDestroy
3MAddImage
3MDeleteImage
3MGetImage
3MAddBMP
3MAddMaskedBMP
3MListImages
#CoreLib.fpg_main.TfpgCanvas #CoreLib.fpg_x11.TfpgCanvasImpl
1MAddLineBreaks
3MCreate
3MDestroy
3MDrawButtonFace
3MDrawControlFrame
3MDrawDirectionArrow
3MDrawFocusRect
3MDrawText
#CoreLib.fpg_main.TfpgStyle .TObject
3VDefaultFont
3VMenuFont
3VMenuAccelFont
3VMenuDisabledFont
3MCreate
3MDestroy
3MDrawButtonFace
3MDrawControlFrame
3MDrawDirectionArrow
3MDrawString
3MDrawFocusRect
#CoreLib.fpg_main.TMsgHookItem .TObject
0VDest
0VListener
0VMsgCode
#CoreLib.fpg_main.TfpgApplication #CoreLib.fpg_x11.TfpgApplicationImpl
1VFHintPause
1VFShowHint
1VFOnException
1VFStopOnException
1VFHintWindow
1VFHintTimer
1VFHintWidget
1VFHintPos
1MSetHintPause
1MSetupLocalizationStrings
1MInternalMsgClose
1MInternalMsgHintTimer
1MCreateHintWindow
1MHintTimerFired
1MSetShowHint
2VFDisplayParams
2VFScreenWidth
2VFScreenHeight
2VFDefaultFont
2VFFontResList
2VFMessageHookList
2MFreeFontRes
2MInternalInit
2MRunMessageLoop
2MWaitWindowMessage
3MCreate
3MDestroy
3MGetFont
3MActivateHint
3MFlush
3MHandleException
3MHideHint
3MInitialize
3MProcessMessages
3MRun
3MSetMessageHook
3MShowException
3MUnsetMessageHook
3PDefaultFont r
3PHintPause rw
3PHintWindow r
3PScreenWidth r
3PScreenHeight r
3PShowHint rw
3PStopOnException rw
3POnException rw
#CoreLib.fpg_main.TfpgTimer TObject
1VFEnabled
1VFNextAlarm
1VFInterval
1VFOnTimer
1MSetEnabled
1MSetInterval
3MCreate
3MDestroy
3MCheckAlarm
3MReset
3PEnabled rw
3PNextAlarm r
3PInterval rw
3POnTimer rw
#CoreLib.fpg_main.TfpgCaret TObject
1VFEnabled
1VFVisible
1VFInterval
1VFCanvas
1VFTop
1VFLeft
1VFWidth
1VFHeight
1VFTimer
1MOnTimerTime
3MCreate
3MDestroy
3MSetCaret
3MUnSetCaret
3MInvertCaret
3PWidth r
3PHeight r
#CoreLib.fpg_main.TfpgClipboard #CoreLib.fpg_x11.TfpgClipboardImpl
#CoreLib.fpg_main.TfpgFileList #CoreLib.fpg_x11.TfpgFileListImpl
#CoreLib.fpg_cmdlineparams.TGfxCommandLineParams TObject
1VFsParams
1VFslParams
1MReadParams
1MWordExtract
1MWordCount
1MWordPosition
1MExtractChar
1MCharInStr
1MStripLeadingDelims
1MStripTrailingDelims
1MNumToken
1MToken
1MStrTran
3MCreate
3MDestroy
3MIsParam
3MGetParam
3PParams r
3PAsString r
#CoreLib.fpg_extinterpolation.TBlackmanInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TBlackmanSincInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TBlackmanBesselInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TGaussianInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TBoxInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.THermiteInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TLanczosInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TQuadraticInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TCubicInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TCatromInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TBilinearInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.THanningInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.THammingInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TBSplineInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_extinterpolation.TBellInterpolation #CoreLib.fpg_base.TfpgBaseInterpolation
2MFilter
2MMaxSupport
#CoreLib.fpg_widget.TfpgWidget #CoreLib.fpg_main.TfpgWindow
1VFAlignRect
1VFOnClick
1VFOnDoubleClick
1VFOnEnter
1VFOnExit
1VFOnMouseDown
1VFOnMouseEnter
1VFOnMouseExit
1VFOnMouseMove
1VFOnMouseUp
1VFOnPaint
1VFOnKeyPress
1VFOnResize
1VFOnScreen
1MSetActiveWidget
1MIsShowHintStored
2MMsgPaint
2MMsgResize
2MMsgMove
2MMsgKeyChar
2MMsgKeyPress
2MMsgKeyRelease
2MMsgMouseDown
2MMsgMouseUp
2MMsgMouseMove
2MMsgDoubleClick
2MMsgMouseEnter
2MMsgMouseExit
2MMsgMouseScroll
2VFFormDesigner
2VFVisible
2VFEnabled
2VFFocusable
2VFFocused
2VFTabOrder
2VFAnchors
2VFActiveWidget
2VFAlign
2VFHint
2VFShowHint
2VFParentShowHint
2VFBackgroundColor
2VFTextColor
2VFIsContainer
2MSetBackgroundColor
2MSetTextColor
2MGetParent
2MSetParent
2MSetEnabled
2MSetVisible
2MSetShowHint
2MSetParentShowHint
2MDoUpdateWindowPosition
2MDoAlign
2MDoResize
2MHandlePaint
2MHandleKeyChar
2MHandleKeyPress
2MHandleKeyRelease
2MHandleSetFocus
2MHandleKillFocus
2MHandleLMouseDown
2MHandleRMouseDown
2MHandleLMouseUp
2MHandleRMouseUp
2MHandleMouseMove
2MHandleDoubleClick
2MHandleMouseEnter
2MHandleMouseExit
2MHandleMouseScroll
2MFindFocusWidget
2MHandleAlignments
2MHandleShow
2MInternalHandleShow
2MHandleHide
2MMoveAndResize
2MRePaint
2POnClick rw
2POnDoubleClick rw
2POnEnter rw
2POnExit rw
2POnKeyPress rw
2POnMouseDown rw
2POnMouseEnter rw
2POnMouseExit rw
2POnMouseMove rw
2POnMouseUp rw
2POnPaint rw
2POnResize rw
3MCreate
3MDestroy
3MGetClientRect
3MGetBoundsRect
3MRealign
3MSetFocus
3MKillFocus
3MMoveAndResizeBy
3MSetPosition
3MInvalidate
3PFormDesigner rw
3PParent rw
3PActiveWidget rw
3PIsContainer r
3PVisible rw
3PEnabled rw
3PTabOrder rw
3PFocusable rw
3PFocused rw
3PAnchors rw
3PAlign rw
3PHint rw
3PShowHint rws
3PParentShowHint rw
3PBackgroundColor rw
3PTextColor rw
#CoreLib.fpg_popupwindow.TfpgPopupWindow #CoreLib.fpg_widget.TfpgWidget
1VFDontCloseWidget
1VFOnClose
1VFPopupFrame
1MSetPopupFrame
2MMsgClose
2MAdjustWindowStyle
2MHandleClose
2MProcessPopupFrame
2MDoPaintPopupFrame
2MDoOnClose
3MCreate
3MShowAt
3MClose
3PDontCloseWidget rw
3PPopupFrame rw
3POnClose rw
#CoreLib.fpg_imagelist.EItemExists Exception
#CoreLib.fpg_imagelist.TfpgImageItem TObject
1VFImage
1VFIndex
1VFImageList
1MSetImageList
1MSetIndex
1MSetImage
3MCreate
3MDestroy
3PIndex rw
3PImage rw
3PImageList rw
3MLoadFromFile
#CoreLib.fpg_imagelist.TfpgImageList TObject
1VFList
1MGetFListIndex
1MGetItem
1MSetItem
3MCreate
3MDestroy
3MAddItemFromFile
3MAddImage
3MRemoveIndex
3MGetMaxItem
3PItem rw
#CoreLib.fpg_pofiles.TPOFileItem TObject
3VIdentifier
3VOriginal
3VTranslation
3MCreate
#CoreLib.fpg_pofiles.TPOFile TObject
2VFItems
2VFIdentifierToItem
2VFOriginalToItem
3MCreate
3MDestroy
3MReadPOText
3MAdd
3MTranslate
3MAppendFile
#CoreLib.fpg_pofiles.EPOFileError Exception
#CoreLib.fpg_translations.TTranslation TObject
1VFID
3PID r
#CoreLib.fpg_translations.TTranslationList TObject
1VFCount
1VFItems
1MGetItems
3MDestroy
3MIndexOf
3MAdd
3MClear
3PCount r
3PItems r
#CoreLib.fpg_stringhashlist.TStringHashList TObject
1VFList
1VFCount
1VfCaseSensitive
1MCompareString
1MCompareValue
1MGetData
1MSetCaseSensitive
1MDelete
1MSetData
2MHashOf
2MInsert
3MCreate
3MDestroy
3MAdd
3MClear
3MFind
3MRemove
3PCaseSensitive rw
3PCount r
3PData rw
3PList r
|