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