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
|
object frmHelpGenerator: TfrmHelpGenerator
Left = 535
Height = 707
Top = 42
Width = 1095
HelpType = htKeyword
HelpKeyword = 'PasDocGui'
HorzScrollBar.Page = 739
VertScrollBar.Page = 415
ActiveControl = PanelLeft
AutoSize = True
Caption = 'pasdoc gui'
ClientHeight = 672
ClientWidth = 1095
DesignTimePPI = 140
KeyPreview = True
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
Position = poScreenCenter
ShowHint = True
LCLVersion = '1.8.0.6'
object NotebookMain: TNotebook
Left = 208
Height = 672
Top = 0
Width = 887
PageIndex = 5
Align = alClient
TabOrder = 0
TabStop = True
object pageOptions: TPage
Hint = 'Options'
object LabelTitle: TLabel
Left = 8
Height = 27
Top = 8
Width = 39
HelpType = htKeyword
Caption = 'Title'
FocusControl = edTitle
ParentColor = False
end
object LabelOutputType: TLabel
AnchorSideTop.Control = edTitle
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 72
Width = 114
HelpType = htKeyword
Caption = 'Output Type'
FocusControl = comboGenerateFormat
ParentColor = False
end
object LabelProjectName: TLabel
AnchorSideTop.Control = EditOutputDirectory
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 204
Width = 455
HelpType = htKeyword
Caption = 'Output filename (without directory; not for HTML)'
FocusControl = edProjectName
ParentColor = False
end
object LabelLanguages: TLabel
AnchorSideTop.Control = edProjectName
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 268
Width = 91
HelpType = htKeyword
Caption = 'Language'
FocusControl = comboLanguages
ParentColor = False
end
object LabelOutputDirectory: TLabel
AnchorSideTop.Control = comboGenerateFormat
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 140
Width = 152
HelpType = htKeyword
Caption = 'Output directory'
ParentColor = False
end
object CheckAutoAbstract: TCheckBox
AnchorSideTop.Control = CheckUseTipueSearch
AnchorSideTop.Side = asrBottom
Left = 8
Height = 31
Hint = 'If this is checked, the 1st sentence of each description'#10'will be treated as the abstract of that description'#10'(unless you override it by using the @abstract tag).'
Top = 398
Width = 758
HelpType = htKeyword
HelpKeyword = 'AutoAbstractOption'
Caption = 'Automatically deduce @abstract description from the 1st sentence of description'
OnChange = SomethingChanged
TabOrder = 0
end
object CheckUseTipueSearch: TCheckBox
AnchorSideTop.Control = CheckWriteUsesList
AnchorSideTop.Side = asrBottom
Left = 8
Height = 31
Hint = 'Check this to get working "Search" button in your HTML documentation.'
Top = 367
Width = 390
HelpType = htKeyword
HelpKeyword = 'UseTipueSearchOption'
Caption = 'Use tipue search engine in HTML output'
OnChange = SomethingChanged
TabOrder = 1
end
object edTitle: TEdit
AnchorSideTop.Control = LabelTitle
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Hint = 'Title for your documentation. In HTML output, this appears in the web browser caption.'
Top = 35
Width = 274
HelpType = htKeyword
HelpKeyword = 'DocumentationTitle'
OnChange = SomethingChanged
TabOrder = 2
end
object comboGenerateFormat: TComboBox
AnchorSideTop.Control = LabelOutputType
AnchorSideTop.Side = asrBottom
Left = 8
Height = 41
Top = 99
Width = 254
HelpType = htKeyword
ItemHeight = 0
Items.Strings = (
'HTML'
'HTML Help Workshop'
'LaTeX'
'LaTeX for latex2rtf'
)
OnChange = comboGenerateFormatChange
Style = csDropDownList
TabOrder = 3
end
object edProjectName: TEdit
AnchorSideTop.Control = LabelProjectName
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Hint = 'The project name is used to specify the main part of '#10'the output file name for HtmlHelp or LaTeX output.'
Top = 231
Width = 274
HelpType = htKeyword
HelpKeyword = 'NameOption'
OnChange = SomethingChanged
TabOrder = 4
end
object comboLanguages: TComboBox
AnchorSideTop.Control = LabelLanguages
AnchorSideTop.Side = asrBottom
Left = 8
Height = 41
Top = 295
Width = 533
HelpType = htKeyword
HelpKeyword = 'OutputLanguage'
Anchors = [akTop, akLeft, akRight]
ItemHeight = 0
OnChange = comboLanguagesChange
Style = csDropDownList
TabOrder = 5
end
object CheckHandleMacros: TCheckBox
AnchorSideTop.Control = CheckAutoAbstract
AnchorSideTop.Side = asrBottom
Left = 8
Height = 31
Top = 429
Width = 421
HelpType = htKeyword
HelpKeyword = 'NoMacroOption'
Caption = 'Recognize FPC macros syntax when parsing'
Checked = True
OnChange = SomethingChanged
State = cbChecked
TabOrder = 6
end
object CheckStoreRelativePaths: TCheckBox
AnchorSideTop.Control = CheckHandleMacros
AnchorSideTop.Side = asrBottom
Left = 8
Height = 31
Top = 460
Width = 370
HelpType = htKeyword
HelpKeyword = 'PasDocGui/StoreRelativePaths'
Caption = 'Store only relative paths in project file'
Checked = True
OnChange = SomethingChanged
State = cbChecked
TabOrder = 7
end
object CheckWriteUsesList: TCheckBox
AnchorSideTop.Control = comboLanguages
AnchorSideTop.Side = asrBottom
Left = 8
Height = 31
Top = 336
Width = 201
HelpType = htKeyword
HelpKeyword = 'WriteUsesList'
Caption = 'Show units uses list'
OnChange = SomethingChanged
TabOrder = 8
end
object EditOutputDirectory: TDirectoryEdit
AnchorSideTop.Control = LabelOutputDirectory
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Top = 167
Width = 483
HelpType = htKeyword
HelpKeyword = 'OutputOption'
DialogTitle = 'Select output directory'
ShowHidden = False
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
TabOrder = 9
OnChange = SomethingChanged
end
end
object pageSourceFiles: TPage
Hint = 'Source Files'
object Label8: TLabel
Left = 8
Height = 81
Top = 8
Width = 822
HelpType = htKeyword
Align = alCustom
Anchors = [akTop, akLeft, akRight]
Caption = 'Add the filenames of source files you wish to include in your project. The directories for each file will be automatically added to the "Include" directories if you use the "Browse" button to add the source files.'
FocusControl = memoFiles
ParentColor = False
WordWrap = True
end
object memoFiles: TMemo
AnchorSideTop.Control = btnBrowseSourceFiles
AnchorSideTop.Side = asrBottom
Left = 8
Height = 403
Top = 146
Width = 840
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 10
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
object btnBrowseSourceFiles: TButton
AnchorSideTop.Control = Label8
AnchorSideTop.Side = asrBottom
Left = 8
Height = 47
Top = 89
Width = 840
Align = alCustom
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'Browse'
OnClick = btnBrowseSourceFilesClick
TabOrder = 1
end
end
object pageIncludeDirectories: TPage
Hint = 'Include Directories'
object PanelIncludeDirectoriesTop: TPanel
Left = 0
Height = 121
Top = 0
Width = 860
Align = alTop
AutoSize = True
BevelOuter = bvNone
BorderWidth = 10
ClientHeight = 121
ClientWidth = 860
FullRepaint = False
TabOrder = 1
object Label9: TLabel
Left = 10
Height = 54
Top = 10
Width = 840
HelpType = htKeyword
Align = alTop
Caption = 'The directories where PasDoc can find include files.'#10'(If you use $I, $INCLUDE compiler directives.)'
FocusControl = memoIncludeDirectories
ParentColor = False
WordWrap = True
end
object btnBrowseIncludeDirectory: TButton
Left = 10
Height = 47
Top = 64
Width = 840
Align = alTop
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'Browse'
OnClick = btnBrowseIncludeDirectoryClick
TabOrder = 0
end
end
object memoIncludeDirectories: TMemo
Left = 10
Height = 432
Top = 131
Width = 840
HelpType = htKeyword
HelpKeyword = 'IncludeInSearchPath'
Align = alClient
BorderSpacing.Around = 10
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
end
object pageDefines: TPage
Hint = 'Defines'
object Label12: TLabel
Left = 10
Height = 162
Top = 10
Width = 840
Align = alTop
BorderSpacing.Around = 10
Caption = 'Put here any symbols that you want to have defined at the start, just as if they would be defined by $DEFINE at the beginning of each unit.'#10#10'Note that your compiler may define some symbols by default (for example, "FPC" by FreePascal, "VER150" by Delphi 7, target OS and architecture like "UNIX", "MSWINDOWS" etc.) --- you may want to define some of these for pasdoc too.'
FocusControl = memoDefines
ParentColor = False
WordWrap = True
end
object memoDefines: TMemo
Left = 10
Height = 381
Top = 182
Width = 840
HelpType = htKeyword
HelpKeyword = 'ConditionalDefines'
Align = alClient
BorderSpacing.Around = 10
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
end
object PageVisibleMembers: TPage
Hint = 'Visible members'
ChildSizing.LeftRightSpacing = 10
ChildSizing.TopBottomSpacing = 10
ChildSizing.VerticalSpacing = 10
object LabelVisibleMembers: TLabel
Left = 10
Height = 54
Top = 10
Width = 840
HelpType = htKeyword
Align = alTop
Caption = 'Structures (classes etc.) members (properties, methods, events, fields) to show in documentation :'
FocusControl = CheckListVisibleMembers
ParentColor = False
WordWrap = True
end
object CheckListVisibleMembers: TCheckListBox
Left = 10
Height = 130
Top = 74
Width = 840
HelpType = htKeyword
HelpKeyword = 'IncludeByVisibility'
Align = alTop
Items.Strings = (
'Published'
'Public'
'Protected'
'Private'
'Automated'
'Implicit'
)
ItemHeight = 33
OnClick = CheckListVisibleMembersClick
TabOrder = 0
Data = {
06000000000000000000
}
end
object RadioImplicitVisibility: TRadioGroup
Left = 10
Height = 134
Top = 214
Width = 840
HelpType = htKeyword
HelpKeyword = 'ImplicitVisibilityOption'
Align = alTop
AutoFill = True
AutoSize = True
Caption = 'Default visibility of class members'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 105
ClientWidth = 836
ItemIndex = 0
Items.Strings = (
'"Public", unless the class is declared within {$M+} state, then it''s "published"'
'Always "published"'
'Always "implicit"'
)
OnClick = SomethingChanged
TabOrder = 1
end
end
object pageCustomFiles: TPage
Hint = 'Custom Files'
ChildSizing.LeftRightSpacing = 10
ChildSizing.TopBottomSpacing = 10
ChildSizing.HorizontalSpacing = 10
ChildSizing.ControlsPerLine = 1
object LabelConclusionFile: TLabel
AnchorSideTop.Control = EditIntroductionFileName
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 146
Width = 133
HelpType = htKeyword
Caption = 'Conclusion file'
FocusControl = EditConclusionFileName
ParentColor = False
end
object LabelIntroductionFile: TLabel
AnchorSideTop.Control = EditCssFileName
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 82
Width = 148
HelpType = htKeyword
BorderSpacing.Top = 10
Caption = 'Introduction file'
FocusControl = EditIntroductionFileName
ParentColor = False
end
object LabelCssFileName: TLabel
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Hint = 'Custom CSS file. Leave empty to use default pasdoc.css.'
Top = 8
Width = 311
HelpType = htKeyword
Caption = 'Custom CSS file (for HTML output)'
FocusControl = EditCssFileName
ParentColor = False
end
object EditConclusionFileName: TFileNameEdit
AnchorSideTop.Control = LabelConclusionFile
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Hint = 'Optional file used as a conclusion to your project.'
Top = 173
Width = 744
HelpType = htKeyword
HelpKeyword = 'IntroductionAndConclusion'
DialogTitle = 'Choose conclusion file'
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 0
OnChange = SomethingChanged
end
object EditIntroductionFileName: TFileNameEdit
AnchorSideTop.Control = LabelIntroductionFile
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Hint = 'Optional file used as an introduction to your project.'
Top = 109
Width = 744
HelpType = htKeyword
HelpKeyword = 'IntroductionAndConclusion'
DialogTitle = 'Choose introduction file'
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 1
OnChange = SomethingChanged
end
object EditCssFileName: TFileNameEdit
AnchorSideTop.Control = LabelCssFileName
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Top = 35
Width = 744
HelpType = htKeyword
HelpKeyword = 'CssOption'
DialogTitle = 'Choose custom CSS file'
DialogOptions = []
Filter = 'Cascading Style Sheets (*.css)|*.css'
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 2
OnChange = SomethingChanged
end
object LabelHtmlHead: TLabel
AnchorSideTop.Control = EditConclusionFileName
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 220
Width = 299
HelpType = htKeyword
BorderSpacing.Top = 10
Caption = 'Additional HTML <head> content'
FocusControl = EditHtmlHead
ParentColor = False
end
object EditHtmlHead: TFileNameEdit
AnchorSideTop.Control = LabelHtmlHead
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Top = 247
Width = 744
HelpType = htKeyword
HelpKeyword = 'HtmlHeadBodyBeginEndOptions'
DialogTitle = 'Choose HTML file'
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 3
OnChange = SomethingChanged
end
object LabelHtmlBodyBegin: TLabel
AnchorSideTop.Control = EditHtmlHead
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 284
Width = 397
HelpType = htKeyword
Caption = 'Additional HTML content right after <body>'
FocusControl = EditHtmlBodyBegin
ParentColor = False
end
object EditHtmlBodyBegin: TFileNameEdit
AnchorSideTop.Control = LabelHtmlBodyBegin
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Top = 311
Width = 744
HelpType = htKeyword
HelpKeyword = 'HtmlHeadBodyBeginEndOptions'
DialogTitle = 'Choose HTML file'
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 4
OnChange = SomethingChanged
end
object LabelHtmlBodyEnd: TLabel
AnchorSideTop.Control = EditHtmlBodyBegin
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 348
Width = 421
HelpType = htKeyword
Caption = 'Additional HTML content right before</body>'
FocusControl = EditHtmlBodyEnd
ParentColor = False
end
object EditHtmlBodyEnd: TFileNameEdit
AnchorSideTop.Control = LabelHtmlBodyEnd
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Top = 375
Width = 744
HelpType = htKeyword
HelpKeyword = 'HtmlHeadBodyBeginEndOptions'
DialogTitle = 'Choose HTML file'
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 5
OnChange = SomethingChanged
end
object LabelExternalDescriptions: TLabel
AnchorSideTop.Control = EditHtmlBodyEnd
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Hint = 'Additional descriptions, added to the of comments present in Pascal source files.'
Top = 422
Width = 191
HelpType = htKeyword
BorderSpacing.Top = 10
Caption = 'External descriptions'
FocusControl = EditExternalDescriptions
ParentColor = False
end
object EditExternalDescriptions: TFileNameEdit
AnchorSideTop.Control = LabelExternalDescriptions
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Hint = 'Optional file with external descriptions'
Top = 449
Width = 744
HelpType = htKeyword
HelpKeyword = 'ReadDescriptionFromFile'
DialogTitle = 'Choose introduction file'
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 6
OnChange = SomethingChanged
end
object MemoAdditionalFiles: TMemo
AnchorSideTop.Control = LabelAdditionalFiles
AnchorSideTop.Side = asrBottom
Left = 8
Height = 125
Hint = 'Path to additional files to be added to the documentation '
Top = 523
Width = 715
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight, akBottom]
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 7
WordWrap = False
end
object LabelAdditionalFiles: TLabel
AnchorSideTop.Control = EditExternalDescriptions
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 496
Width = 135
BorderSpacing.Top = 10
Caption = 'Additional files'
FocusControl = MemoAdditionalFiles
ParentColor = False
end
object BtnBrowseAdditionalFiles: TButton
AnchorSideLeft.Control = MemoAdditionalFiles
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = MemoAdditionalFiles
Left = 733
Height = 47
Top = 523
Width = 78
Align = alCustom
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Left = 10
BorderSpacing.InnerBorder = 4
Caption = 'Browse'
OnClick = BtnBrowseAdditionalFilesClick
TabOrder = 8
end
end
object pageLatexOptions: TPage
Hint = 'LaTeX Options'
object LabelLatexGraphicsPackage: TLabel
AnchorSideTop.Control = rgLineBreakQuality
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 103
Width = 214
Caption = 'LateX graphics package'
FocusControl = comboLatexGraphicsPackage
ParentColor = False
end
object LabelHyphenatedWords: TLabel
Left = 8
Height = 54
Top = 173
Width = 838
HelpType = htKeyword
Align = alCustom
Anchors = [akTop, akLeft, akRight]
Caption = 'You can specify how you want words to be hyphenated here. Just enter the word (one per line) with hyphens in the correct places. Only English letters are allowed.'
ParentColor = False
WordWrap = True
end
object rgLineBreakQuality: TRadioGroup
Left = 0
Height = 103
Top = 0
Width = 860
HelpType = htKeyword
HelpKeyword = 'PasDocGui/LatexLineBreaks'
Align = alTop
AutoFill = True
AutoSize = True
Caption = 'Line Breaks'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 74
ClientWidth = 856
ItemIndex = 0
Items.Strings = (
'strict'
'sloppy'
)
OnClick = SomethingChanged
TabOrder = 1
end
object comboLatexGraphicsPackage: TComboBox
AnchorSideTop.Control = LabelLatexGraphicsPackage
AnchorSideTop.Side = asrBottom
Left = 8
Height = 37
Hint = 'If you use graphics in LaTeX, you have to specify '#10'the graphics package in the header for the LaTeX file.'#10'This option allows you to specify which one to use.'
Top = 130
Width = 148
Enabled = False
ItemHeight = 0
ItemIndex = 0
Items.Strings = (
'None'
'PDF'
'DVI'
)
OnChange = SomethingChanged
Style = csDropDownList
TabOrder = 0
Text = 'None'
end
object memoHyphenatedWords: TMemo
AnchorSideTop.Control = LabelHyphenatedWords
AnchorSideTop.Side = asrBottom
Left = 8
Height = 331
Top = 227
Width = 824
Align = alCustom
Anchors = [akTop, akLeft, akRight, akBottom]
OnChange = SomethingChanged
TabOrder = 2
end
end
object pageHeadFoot: TPage
Hint = 'Header / Footer'
object PanelHeaderHidden: TPanel
Left = 0
Height = 179
Top = 0
Width = 860
Align = alTop
BevelOuter = bvNone
BorderWidth = 10
ClientHeight = 179
ClientWidth = 860
TabOrder = 0
object LabelHeader: TLabel
Left = 10
Height = 27
Top = 10
Width = 840
HelpType = htKeyword
Align = alTop
Caption = '&Header (Will appear at the top of every web page)'
FocusControl = memoHeader
ParentColor = False
end
object memoHeader: TMemo
Left = 10
Height = 132
Top = 37
Width = 840
HelpType = htKeyword
HelpKeyword = 'FileAsHeaderOrFooter'
Align = alClient
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
end
object Splitter2: TSplitter
Cursor = crVSplit
Left = 0
Height = 9
Top = 179
Width = 860
Align = alTop
ResizeAnchor = akTop
end
object PanelFooterHidden: TPanel
Left = 0
Height = 385
Top = 188
Width = 860
Align = alClient
BevelOuter = bvNone
BorderWidth = 10
ClientHeight = 385
ClientWidth = 860
TabOrder = 1
object LabelFooter: TLabel
Left = 10
Height = 27
Top = 10
Width = 840
HelpType = htKeyword
Align = alTop
Caption = '&Footer (Will appear at the bottom of every page)'
FocusControl = memoFooter
ParentColor = False
end
object memoFooter: TMemo
Left = 10
Height = 338
Top = 37
Width = 840
HelpType = htKeyword
HelpKeyword = 'FileAsHeaderOrFooter'
Align = alClient
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
end
end
object pageGraphs: TPage
Hint = 'Graphs'
object Label22: TLabel
AnchorSideTop.Control = cbVizGraphUses
AnchorSideTop.Side = asrBottom
Left = 14
Height = 54
Top = 88
Width = 388
BorderSpacing.Top = 20
Caption = 'You will have to generate graphs yourself. '#10'Use the "dot" program from GraphViz:'
ParentColor = False
end
object cbVizGraphUses: TCheckBox
AnchorSideTop.Control = cbVizGraphClasses
AnchorSideTop.Side = asrBottom
Left = 8
Height = 29
Top = 39
Width = 295
HelpType = htKeyword
HelpKeyword = 'GraphVizSupport'
Caption = 'Generate and use Uses graph'
OnChange = SomethingChanged
TabOrder = 0
end
object cbVizGraphClasses: TCheckBox
Left = 8
Height = 29
Top = 10
Width = 318
HelpType = htKeyword
HelpKeyword = 'GraphVizSupport'
Caption = 'Generate and use Classes graph'
OnChange = SomethingChanged
TabOrder = 1
end
object ButtonGraphVizURL: TButton
AnchorSideTop.Control = Label22
AnchorSideTop.Side = asrBottom
Left = 14
Height = 45
Top = 142
Width = 247
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'http://www.graphviz.org/'
OnClick = ButtonURLClick
TabOrder = 2
end
end
object pageSpellChecking: TPage
Hint = 'Spell Checking'
object PanelSpellCheckingTop1: TPanel
Left = 0
Height = 175
Top = 0
Width = 860
Align = alTop
AutoSize = True
BevelOuter = bvNone
BorderWidth = 10
ClientHeight = 175
ClientWidth = 860
FullRepaint = False
TabOrder = 1
object Label20: TLabel
AnchorSideTop.Control = ButtonAspellURL
AnchorSideTop.Side = asrBottom
Left = 12
Height = 54
Top = 111
Width = 576
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight]
Caption = 'Enter words that should be ignored when spell-checking below.'#10'One word per line.'
FocusControl = memoSpellCheckingIgnore
ParentColor = False
WordWrap = True
end
object Label23: TLabel
AnchorSideTop.Control = cbCheckSpelling
AnchorSideTop.Side = asrBottom
Left = 10
Height = 27
Top = 39
Width = 655
Anchors = [akTop, akLeft, akRight]
Caption = 'GNU Aspell must be installed and available on $PATH for spell checking :'
ParentColor = False
WordWrap = True
end
object cbCheckSpelling: TCheckBox
Left = 10
Height = 29
Top = 10
Width = 157
HelpType = htKeyword
HelpKeyword = 'SpellChecking'
Caption = 'Check Spelling'
OnChange = cbCheckSpellingChange
TabOrder = 0
end
object ButtonAspellURL: TButton
AnchorSideTop.Control = Label23
AnchorSideTop.Side = asrBottom
Left = 10
Height = 45
Top = 66
Width = 170
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'http://aspell.net/'
OnClick = ButtonURLClick
TabOrder = 1
end
end
object memoSpellCheckingIgnore: TMemo
Left = 10
Height = 382
Top = 185
Width = 840
HelpType = htKeyword
HelpKeyword = 'SpellChecking'
Align = alClient
BorderSpacing.Around = 10
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
end
object pageMarkers: TPage
Hint = 'Markers'
object LabelCommentMarkers: TLabel
AnchorSideTop.Control = rgCommentMarkers
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Top = 142
Width = 170
HelpType = htKeyword
BorderSpacing.Top = 8
Caption = 'Comment markers'
FocusControl = memoCommentMarkers
ParentColor = False
end
object memoCommentMarkers: TMemo
AnchorSideTop.Control = LabelCommentMarkers
AnchorSideTop.Side = asrBottom
Left = 10
Height = 380
Top = 179
Width = 818
HelpType = htKeyword
HelpKeyword = 'CommentMarker'
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 10
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 0
end
object rgCommentMarkers: TRadioGroup
Left = 0
Height = 134
Top = 0
Width = 707
HelpType = htKeyword
HelpKeyword = 'CommentMarker'
AutoFill = True
AutoSize = True
Caption = 'Comment marker treatment'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 105
ClientWidth = 703
ItemIndex = 1
Items.Strings = (
'Include all comments'
'Include all comments but remove the comment markers listed below'
'Include only comments that start with the comment markers listed below'
)
OnClick = rgCommentMarkersClick
TabOrder = 1
end
end
object pageAutoLink: TPage
Hint = 'Auto Linking'
object CheckAutoLink: TCheckBox
AnchorSideTop.Side = asrBottom
Left = 8
Height = 31
Top = 16
Width = 663
HelpType = htKeyword
HelpKeyword = 'AutoLinkOption'
Caption = 'Automatically turn identifiers into links, without the need for @link tag'
OnChange = SomethingChanged
TabOrder = 0
end
object MemoAutoLinkExclude: TMemo
AnchorSideTop.Side = asrBottom
Left = 8
Height = 468
Top = 96
Width = 840
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 10
OnChange = SomethingChanged
ScrollBars = ssAutoBoth
TabOrder = 1
WordWrap = False
end
object LabelAutoLinkExclude: TLabel
Left = 8
Height = 27
Top = 64
Width = 616
Caption = 'Exclude these identifiers from being automatically turned into links:'
ParentColor = False
end
end
object PageSort: TPage
Hint = 'Sort'
object LabelItemsToSort: TLabel
Left = 8
Height = 27
Top = 8
Width = 248
HelpType = htKeyword
Caption = 'Items to sort alphabetically'
ParentColor = False
end
object clbSorting: TCheckListBox
AnchorSideTop.Control = LabelItemsToSort
AnchorSideTop.Side = asrBottom
Left = 8
Height = 484
Hint = 'Which items will be sorted alphabetically '#10'and which will be displayed in their declared order.'
Top = 35
Width = 823
HelpType = htKeyword
HelpKeyword = 'SortOption'
Anchors = [akTop, akLeft, akRight, akBottom]
Items.Strings = (
'structures'
'constants'
'global functions'
'types'
'variables'
'uses-clauses'
'record-fields'
'non-record-fields'
'methods'
'properties'
)
ItemHeight = 33
OnClick = SomethingChanged
TabOrder = 0
Data = {
0A00000000000000000000000000
}
end
end
object pageGenerate: TPage
Hint = 'Generate'
object PanelGenerateTop: TPanel
Left = 0
Height = 112
Top = 0
Width = 860
Align = alTop
Alignment = taLeftJustify
BevelOuter = bvNone
BorderWidth = 10
ClientHeight = 112
ClientWidth = 860
FullRepaint = False
TabOrder = 1
object Label7: TLabel
AnchorSideLeft.Control = seVerbosity
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = seVerbosity
AnchorSideTop.Side = asrCenter
Left = 82
Height = 27
Top = 13
Width = 250
HelpType = htKeyword
BorderSpacing.Left = 8
Caption = 'Verbosity level (default is 2)'
ParentColor = False
end
object seVerbosity: TSpinEdit
Left = 10
Height = 37
Hint = 'The higher the message level, the more messages will be shown.'
Top = 8
Width = 64
HelpType = htKeyword
MaxValue = 6
OnChange = SomethingChanged
TabOrder = 0
Value = 2
end
object ButtonGenerateDocs: TButton
Left = 10
Height = 39
Top = 72
Width = 840
Align = alBottom
AutoSize = True
Caption = 'Generate documentation'
OnClick = ButtonGenerateDocsClick
TabOrder = 2
end
object CheckOpenHTML: TCheckBox
Left = 12
Height = 24
Top = 40
Width = 175
Caption = 'Open generated HTML'
OnChange = SomethingChanged
TabOrder = 1
end
end
object memoMessages: TMemo
Left = 10
Height = 451
Top = 121
Width = 840
HelpType = htKeyword
Align = alClient
BorderSpacing.Around = 10
ScrollBars = ssAutoBoth
TabOrder = 0
end
end
object pageDisplayComments: TPage
Hint = 'Display Comments'
object tvUnits: TTreeView
Left = 0
Height = 349
Top = 28
Width = 860
Align = alClient
TabOrder = 0
OnClick = tvUnitsClick
end
inline seComment: TSynEdit
Left = 0
Height = 191
Top = 382
Width = 860
Align = alBottom
Font.Height = -13
Font.Name = 'Courier New'
Font.Pitch = fpFixed
Font.Quality = fqNonAntialiased
ParentColor = False
ParentFont = False
TabOrder = 1
Gutter.Width = 63
Gutter.MouseActions = <
item
ClickCount = ccAny
ClickDir = cdDown
Command = emcOnMainGutterClick
end
item
Button = mbRight
Command = emcContextMenu
end>
RightGutter.Width = 0
RightGutter.MouseActions = <>
Keystrokes = <
item
Command = ecUp
ShortCut = 38
end
item
Command = ecSelUp
ShortCut = 8230
end
item
Command = ecScrollUp
ShortCut = 16422
end
item
Command = ecDown
ShortCut = 40
end
item
Command = ecSelDown
ShortCut = 8232
end
item
Command = ecScrollDown
ShortCut = 16424
end
item
Command = ecLeft
ShortCut = 37
end
item
Command = ecSelLeft
ShortCut = 8229
end
item
Command = ecWordLeft
ShortCut = 16421
end
item
Command = ecSelWordLeft
ShortCut = 24613
end
item
Command = ecRight
ShortCut = 39
end
item
Command = ecSelRight
ShortCut = 8231
end
item
Command = ecWordRight
ShortCut = 16423
end
item
Command = ecSelWordRight
ShortCut = 24615
end
item
Command = ecPageDown
ShortCut = 34
end
item
Command = ecSelPageDown
ShortCut = 8226
end
item
Command = ecPageBottom
ShortCut = 16418
end
item
Command = ecSelPageBottom
ShortCut = 24610
end
item
Command = ecPageUp
ShortCut = 33
end
item
Command = ecSelPageUp
ShortCut = 8225
end
item
Command = ecPageTop
ShortCut = 16417
end
item
Command = ecSelPageTop
ShortCut = 24609
end
item
Command = ecLineStart
ShortCut = 36
end
item
Command = ecSelLineStart
ShortCut = 8228
end
item
Command = ecEditorTop
ShortCut = 16420
end
item
Command = ecSelEditorTop
ShortCut = 24612
end
item
Command = ecLineEnd
ShortCut = 35
end
item
Command = ecSelLineEnd
ShortCut = 8227
end
item
Command = ecEditorBottom
ShortCut = 16419
end
item
Command = ecSelEditorBottom
ShortCut = 24611
end
item
Command = ecToggleMode
ShortCut = 45
end
item
Command = ecCopy
ShortCut = 16429
end
item
Command = ecPaste
ShortCut = 8237
end
item
Command = ecDeleteChar
ShortCut = 46
end
item
Command = ecCut
ShortCut = 8238
end
item
Command = ecDeleteLastChar
ShortCut = 8
end
item
Command = ecDeleteLastChar
ShortCut = 8200
end
item
Command = ecDeleteLastWord
ShortCut = 16392
end
item
Command = ecUndo
ShortCut = 32776
end
item
Command = ecRedo
ShortCut = 40968
end
item
Command = ecLineBreak
ShortCut = 13
end
item
Command = ecSelectAll
ShortCut = 16449
end
item
Command = ecCopy
ShortCut = 16451
end
item
Command = ecBlockIndent
ShortCut = 24649
end
item
Command = ecLineBreak
ShortCut = 16461
end
item
Command = ecInsertLine
ShortCut = 16462
end
item
Command = ecDeleteWord
ShortCut = 16468
end
item
Command = ecBlockUnindent
ShortCut = 24661
end
item
Command = ecPaste
ShortCut = 16470
end
item
Command = ecCut
ShortCut = 16472
end
item
Command = ecDeleteLine
ShortCut = 16473
end
item
Command = ecDeleteEOL
ShortCut = 24665
end
item
Command = ecUndo
ShortCut = 16474
end
item
Command = ecRedo
ShortCut = 24666
end
item
Command = ecGotoMarker0
ShortCut = 16432
end
item
Command = ecGotoMarker1
ShortCut = 16433
end
item
Command = ecGotoMarker2
ShortCut = 16434
end
item
Command = ecGotoMarker3
ShortCut = 16435
end
item
Command = ecGotoMarker4
ShortCut = 16436
end
item
Command = ecGotoMarker5
ShortCut = 16437
end
item
Command = ecGotoMarker6
ShortCut = 16438
end
item
Command = ecGotoMarker7
ShortCut = 16439
end
item
Command = ecGotoMarker8
ShortCut = 16440
end
item
Command = ecGotoMarker9
ShortCut = 16441
end
item
Command = ecSetMarker0
ShortCut = 24624
end
item
Command = ecSetMarker1
ShortCut = 24625
end
item
Command = ecSetMarker2
ShortCut = 24626
end
item
Command = ecSetMarker3
ShortCut = 24627
end
item
Command = ecSetMarker4
ShortCut = 24628
end
item
Command = ecSetMarker5
ShortCut = 24629
end
item
Command = ecSetMarker6
ShortCut = 24630
end
item
Command = ecSetMarker7
ShortCut = 24631
end
item
Command = ecSetMarker8
ShortCut = 24632
end
item
Command = ecSetMarker9
ShortCut = 24633
end
item
Command = ecNormalSelect
ShortCut = 24654
end
item
Command = ecColumnSelect
ShortCut = 24643
end
item
Command = ecLineSelect
ShortCut = 24652
end
item
Command = ecTab
ShortCut = 9
end
item
Command = ecShiftTab
ShortCut = 8201
end
item
Command = ecMatchBracket
ShortCut = 24642
end>
MouseActions = <
item
ShiftMask = [ssShift, ssAlt]
ClickDir = cdDown
Command = emcStartSelections
MoveCaret = True
end
item
Shift = [ssShift]
ShiftMask = [ssShift, ssAlt]
ClickDir = cdDown
Command = emcStartSelections
MoveCaret = True
Option = 1
end
item
Shift = [ssAlt]
ShiftMask = [ssShift, ssAlt]
ClickDir = cdDown
Command = emcStartColumnSelections
MoveCaret = True
end
item
Shift = [ssShift, ssAlt]
ShiftMask = [ssShift, ssAlt]
ClickDir = cdDown
Command = emcStartColumnSelections
MoveCaret = True
Option = 1
end
item
Button = mbRight
Command = emcContextMenu
end
item
ClickCount = ccDouble
ClickDir = cdDown
Command = emcSelectWord
MoveCaret = True
end
item
ClickCount = ccTriple
ClickDir = cdDown
Command = emcSelectLine
MoveCaret = True
end
item
ClickCount = ccQuad
ClickDir = cdDown
Command = emcSelectPara
MoveCaret = True
end
item
Button = mbMiddle
ClickDir = cdDown
Command = emcPasteSelection
MoveCaret = True
end
item
Shift = [ssCtrl]
ShiftMask = [ssShift, ssAlt, ssCtrl]
Command = emcMouseLink
end>
MouseTextActions = <>
MouseSelActions = <
item
ClickDir = cdDown
Command = emcStartDragMove
end>
VisibleSpecialChars = [vscSpace, vscTabAtLast]
SelectedColor.BackPriority = 50
SelectedColor.ForePriority = 50
SelectedColor.FramePriority = 50
SelectedColor.BoldPriority = 50
SelectedColor.ItalicPriority = 50
SelectedColor.UnderlinePriority = 50
SelectedColor.StrikeOutPriority = 50
BracketHighlightStyle = sbhsBoth
BracketMatchColor.Background = clNone
BracketMatchColor.Foreground = clNone
BracketMatchColor.Style = [fsBold]
FoldedCodeColor.Background = clNone
FoldedCodeColor.Foreground = clGray
FoldedCodeColor.FrameColor = clGray
MouseLinkColor.Background = clNone
MouseLinkColor.Foreground = clBlue
LineHighlightColor.Background = clNone
LineHighlightColor.Foreground = clNone
inline TSynGutterPartList
object TSynGutterMarks
Width = 24
MouseActions = <>
end
object TSynGutterLineNumber
Width = 23
MouseActions = <>
MarkupInfo.Background = clBtnFace
MarkupInfo.Foreground = clNone
DigitCount = 2
ShowOnlyLineNumbersMultiplesOf = 1
ZeroStart = False
LeadingZeros = False
end
object TSynGutterChanges
Width = 4
MouseActions = <>
ModifiedColor = 59900
SavedColor = clGreen
end
object TSynGutterSeparator
Width = 2
MouseActions = <>
MarkupInfo.Background = clWhite
MarkupInfo.Foreground = clGray
end
object TSynGutterCodeFolding
MouseActions = <
item
Button = mbRight
Command = emcCodeFoldContextMenu
end
item
ShiftMask = [ssShift]
Button = mbMiddle
ClickCount = ccAny
ClickDir = cdDown
Command = emcCodeFoldCollaps
end
item
Shift = [ssShift]
ShiftMask = [ssShift]
Button = mbMiddle
ClickCount = ccAny
ClickDir = cdDown
Command = emcCodeFoldCollaps
Option = 1
end
item
ClickCount = ccAny
ClickDir = cdDown
Command = emcNone
end>
MarkupInfo.Background = clNone
MarkupInfo.Foreground = clGray
MouseActionsExpanded = <
item
ClickCount = ccAny
ClickDir = cdDown
Command = emcCodeFoldCollaps
end>
MouseActionsCollapsed = <
item
Shift = [ssCtrl]
ShiftMask = [ssCtrl]
ClickCount = ccAny
ClickDir = cdDown
Command = emcCodeFoldExpand
end
item
ShiftMask = [ssCtrl]
ClickCount = ccAny
ClickDir = cdDown
Command = emcCodeFoldExpand
Option = 1
end>
end
end
end
object Splitter1: TSplitter
Cursor = crVSplit
Left = 0
Height = 5
Top = 377
Width = 860
Align = alBottom
ResizeAnchor = akBottom
end
object pnlEditCommentInstructions: TPanel
Left = 0
Height = 28
Top = 0
Width = 860
Align = alTop
Caption = 'Click on an item in the tree view to see its comment.'
FullRepaint = False
TabOrder = 2
end
end
end
object PanelLeft: TPanel
Left = 0
Height = 672
Top = 0
Width = 208
Align = alLeft
BevelOuter = bvNone
ClientHeight = 672
ClientWidth = 208
TabOrder = 1
object lbNavigation: TListBox
Left = 0
Height = 613
Top = 59
Width = 208
Align = alClient
ItemHeight = 0
OnClick = lbNavigationClick
ScrollWidth = 206
TabOrder = 0
TopIndex = -1
end
object ButtonGenerate: TBitBtn
Left = 10
Height = 39
Hint = 'Generate documentation (F9)'
Top = 10
Width = 188
Align = alTop
AutoSize = True
BorderSpacing.Around = 10
Caption = 'Generate'
OnClick = MenuGenerateRunClick
TabOrder = 1
end
end
object PasDoc1: TPasDoc
OnMessage = PasDoc1Warning
MarkerOptional = True
Generator = HtmlDocGenerator
ShowVisibilities = []
left = 536
top = 584
end
object HtmlDocGenerator: THTMLDocGenerator
CSS = 'body { font-family: Verdana,Arial; '#10' color: black; background-color: white; '#10' font-size: 12px; }'#10'body.navigationframe { font-family: Verdana,Arial; '#10' color: white; background-color: #787878; '#10' font-size: 12px; }'#10#10'img { border:0px; }'#10#10'a:link {color:#C91E0C; text-decoration: none; }'#10'a:visited {color:#7E5C31; text-decoration: none; }'#10'a:hover {text-decoration: underline; }'#10'a:active {text-decoration: underline; }'#10#10'a.navigation:link { color: white; text-decoration: none; font-size: 12px;}'#10'a.navigation:visited { color: white; text-decoration: none; font-size: 12px;}'#10'a.navigation:hover { color: white; font-weight: bold; '#10' text-decoration: none; font-size: 12px; }'#10'a.navigation:active { color: white; text-decoration: none; font-size: 12px;}'#10#10'a.bold:link {color:#C91E0C; text-decoration: none; font-weight:bold; }'#10'a.bold:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }'#10'a.bold:hover {text-decoration: underline; font-weight:bold; }'#10'a.bold:active {text-decoration: underline; font-weight:bold; }'#10#10'a.section {color: green; text-decoration: none; font-weight: bold; }'#10'a.section:hover {color: green; text-decoration: underline; font-weight: bold; }'#10#10'ul.useslist a:link {color:#C91E0C; text-decoration: none; font-weight:bold; }'#10'ul.useslist a:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }'#10'ul.useslist a:hover {text-decoration: underline; font-weight:bold; }'#10'ul.useslist a:active {text-decoration: underline; font-weight:bold; }'#10#10'ul.hierarchy { list-style-type:none; }'#10'ul.hierarchylevel { list-style-type:none; }'#10#10'p.unitlink a:link {color:#C91E0C; text-decoration: none; font-weight:bold; }'#10'p.unitlink a:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }'#10'p.unitlink a:hover {text-decoration: underline; font-weight:bold; }'#10'p.unitlink a:active {text-decoration: underline; font-weight:bold; }'#10#10'tr.list { background: #FFBF44; }'#10'tr.list2 { background: #FFC982; }'#10'tr.listheader { background: #C91E0C; color: white; }'#10#10'table { border-spacing:2px; padding:4px; width:100%; }'#10#10'table.markerlegend { width:auto; }'#10'table.markerlegend td.legendmarker { text-align:center; }'#10#10'table.sections { background:white; }'#10'table.sections td {background:lightgray; }'#10#10'table.summary td.itemcode { width:100%; }'#10'table.detail td.itemcode { width:100%; }'#10#10'td { vertical-align:top; padding:4px; }'#10#10'td.itemname {white-space:nowrap; }'#10'td.itemunit {white-space:nowrap; }'#10'td.itemdesc { width:100%; }'#10#10'div.nodescription {color:red;}'#10'dl.parameters {;}'#10'dl.parameters dt {color:blue;}'#10'dl.parameters dd {;}'#10#10'/* Style applied to Pascal code in documentation '#10' (e.g. produced by @longcode tag) } */'#10'span.pascal_string { color: #000080; }'#10'span.pascal_keyword { font-weight: bolder; }'#10'span.pascal_comment { color: #000080; font-style: italic; }'#10'span.pascal_compiler_comment { color: #008000; }'#10'span.pascal_numeric { }'#10'span.pascal_hex { }'#10#10'p.hint_directive { color: red; }'#10#10'input#search_text { }'#10'input#search_submit_button { }'#10#10'acronym.mispelling { background-color: #ffa; }'#10
left = 608
top = 584
end
object OpenDialog1: TOpenDialog
Filter = 'Delphi source files *.pas|*.pas|Free Pascal source files *.pp|*.pp|All Pascal source files *.pas, *.pp|*.pas;*.pp|All Files *.*|*.*'
FilterIndex = 3
Options = [ofHideReadOnly, ofAllowMultiSelect, ofFileMustExist, ofEnableSizing]
left = 248
top = 584
end
object SaveDialog1: TSaveDialog
DefaultExt = '.pds'
Filter = 'PasDoc GUI Settings (*.pds)|*.pds'
FilterIndex = 0
left = 472
top = 584
end
object OpenDialog2: TOpenDialog
DefaultExt = '.pds'
Filter = 'PasDoc GUI Settings (*.pds)|*.pds'
FilterIndex = 0
left = 400
top = 584
end
object OpenDialog3: TOpenDialog
Filter = 'All Files *.*|*.*'
FilterIndex = 0
Options = [ofHideReadOnly, ofAllowMultiSelect, ofFileMustExist, ofEnableSizing]
left = 821
top = 584
end
object MainMenu1: TMainMenu
left = 328
top = 584
object MenuFile: TMenuItem
Caption = '&File'
object MenuNew: TMenuItem
Caption = '&New'
OnClick = MenuNewClick
end
object MenuOpen: TMenuItem
Caption = '&Open ...'
OnClick = btnOpenClick
end
object MenuSave: TMenuItem
Caption = 'Save'
OnClick = MenuSaveClick
end
object MenuSaveAs: TMenuItem
Caption = '&Save as...'
OnClick = MenuSaveAsClick
end
object MenuExit: TMenuItem
Caption = '&Exit'
OnClick = Exit1Click
end
end
object MenuEdit: TMenuItem
Caption = 'Edit'
object MenuPreferences: TMenuItem
Caption = 'Preferences'
OnClick = MenuPreferencesClick
end
end
object MenuGenerate: TMenuItem
Caption = 'Generate'
object MenuGenerateRun: TMenuItem
Caption = 'Generate documentation'
OnClick = MenuGenerateRunClick
end
end
object MenuHelp: TMenuItem
Caption = '&Help'
object MenuContextHelp: TMenuItem
Caption = 'Online Help'
OnClick = MenuContextHelpClick
end
object MenuAbout: TMenuItem
Caption = '&About'
OnClick = MenuAboutClick
end
end
end
object TexDocGenerator: TTexDocGenerator
left = 672
top = 584
end
object HtmlHelpDocGenerator: THTMLHelpDocGenerator
CSS = 'body { font-family: Verdana,Arial; '#10' color: black; background-color: white; '#10' font-size: 12px; }'#10'body.navigationframe { font-family: Verdana,Arial; '#10' color: white; background-color: #787878; '#10' font-size: 12px; }'#10#10'img { border:0px; }'#10#10'a:link {color:#C91E0C; text-decoration: none; }'#10'a:visited {color:#7E5C31; text-decoration: none; }'#10'a:hover {text-decoration: underline; }'#10'a:active {text-decoration: underline; }'#10#10'a.navigation:link { color: white; text-decoration: none; font-size: 12px;}'#10'a.navigation:visited { color: white; text-decoration: none; font-size: 12px;}'#10'a.navigation:hover { color: white; font-weight: bold; '#10' text-decoration: none; font-size: 12px; }'#10'a.navigation:active { color: white; text-decoration: none; font-size: 12px;}'#10#10'a.bold:link {color:#C91E0C; text-decoration: none; font-weight:bold; }'#10'a.bold:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }'#10'a.bold:hover {text-decoration: underline; font-weight:bold; }'#10'a.bold:active {text-decoration: underline; font-weight:bold; }'#10#10'a.section {color: green; text-decoration: none; font-weight: bold; }'#10'a.section:hover {color: green; text-decoration: underline; font-weight: bold; }'#10#10'ul.useslist a:link {color:#C91E0C; text-decoration: none; font-weight:bold; }'#10'ul.useslist a:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }'#10'ul.useslist a:hover {text-decoration: underline; font-weight:bold; }'#10'ul.useslist a:active {text-decoration: underline; font-weight:bold; }'#10#10'ul.hierarchy { list-style-type:none; }'#10'ul.hierarchylevel { list-style-type:none; }'#10#10'p.unitlink a:link {color:#C91E0C; text-decoration: none; font-weight:bold; }'#10'p.unitlink a:visited {color:#7E5C31; text-decoration: none; font-weight:bold; }'#10'p.unitlink a:hover {text-decoration: underline; font-weight:bold; }'#10'p.unitlink a:active {text-decoration: underline; font-weight:bold; }'#10#10'tr.list { background: #FFBF44; }'#10'tr.list2 { background: #FFC982; }'#10'tr.listheader { background: #C91E0C; color: white; }'#10#10'table { border-spacing:2px; padding:4px; width:100%; }'#10#10'table.markerlegend { width:auto; }'#10'table.markerlegend td.legendmarker { text-align:center; }'#10#10'table.sections { background:white; }'#10'table.sections td {background:lightgray; }'#10#10'table.summary td.itemcode { width:100%; }'#10'table.detail td.itemcode { width:100%; }'#10#10'td { vertical-align:top; padding:4px; }'#10#10'td.itemname {white-space:nowrap; }'#10'td.itemunit {white-space:nowrap; }'#10'td.itemdesc { width:100%; }'#10#10'div.nodescription {color:red;}'#10'dl.parameters {;}'#10'dl.parameters dt {color:blue;}'#10'dl.parameters dd {;}'#10#10'/* Style applied to Pascal code in documentation '#10' (e.g. produced by @longcode tag) } */'#10'span.pascal_string { color: #000080; }'#10'span.pascal_keyword { font-weight: bolder; }'#10'span.pascal_comment { color: #000080; font-style: italic; }'#10'span.pascal_compiler_comment { color: #008000; }'#10'span.pascal_numeric { }'#10'span.pascal_hex { }'#10#10'p.hint_directive { color: red; }'#10#10'input#search_text { }'#10'input#search_submit_button { }'#10#10'acronym.mispelling { background-color: #ffa; }'#10
left = 752
top = 584
end
end
|