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
|
## Copyright (C) 2014-2018 Pantxo Diribarne
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING. If not, see
## <https://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {} {@var{retval} =} genpropdoc (@var{OBJNAME}, @var{FILENAME})
##
## Print FILENAME texinfo source file associated to OBJNAME objects. This
## function is meant to be run for generating octave documentation
## (see doc/interpreter/graphics_properties.mk).
##
## All the hard coded documentation is written in getdoc function. See the
## comments in getdoc bellow for instruction on how to document a graphics
## property.
##
## @seealso{}
## @end deftypefn
function genpropdoc (objname, fname)
objnames = {"root", "figure", "axes", "line", ...
"text", "image", "patch", "surface", "light", ...
"uimenu", "uibuttongroup", "uicontextmenu", "uipanel", ...
"uicontrol", "uitoolbar", "uipushtool", "uitoggletool"};
## Base properties
base = getstructure ("base");
## Object properties
if (any (strcmp (objname, objnames)))
obj = getstructure (objname, base);
else
error ("genpropdoc: unknown object %s", objname);
endif
## Docstring
str = printdoc (objname, obj);
if (nargin == 2)
fid = fopen (fname, "w+");
if (fid < 0)
error ("genpropdoc: couldn't open %s.", fname);
endif
else
fid = stdout;
endif
fprintf (fid, str);
if (nargin == 2)
fclose (fid);
endif
endfunction
function s = getdoc (objname, field, base)
## Properties are represented by a struct with fields :
##
## -"doc": string to be printed verbatim after being expanded
## through expand_doc function. Special keywords are:
## "__objname__" : replaced by the current object name;
## "__prop__" : replaced by the current property name;
## "__modemsg__" : replaced by a message explaining that
## the propmode will be toggled to "manual".
## You may also cross reference properties using the label format
## OBJNAMEPROPERTY, e.g, "@xref{XREFaxescolor, , axes color property}."
##
## -"valid": string that describes valid values for the current property.
## Use "packopt" function to join options with " | " separator
## and "markdef" to mark default among valid values between curly braces.
## If not provided, valid values for radio properties are automatically
## retrieved using set function.
##
## -"default": string. If not provided the default value is automatically
## retrieved using get function.
##
## -"printdefault": a boolean (def. true) that specifies whether the
## default value should be printed. It is useful for properties
## like root "screendepth" that default to screen dependant values.
packopt = @(c) strjoin (c, " | ");
markdef = @(s) ["@{" s "@}"];
## Some generic templates:
valid_color = "colorspec";
valid_handle = "graphics handle";
valid_string = "string";
valid_fcn = packopt ({"string", "function handle"});
valid_cellstring = packopt ({"string", "cell array of strings"});
valid_2elvec = "two-element vector";
valid_3elvec = "three-element vector";
valid_4elvec = "four-element vector";
valid_vecmat = packopt ({"vector", "matrix"});
valid_scalmat = packopt ({"scalar", "matrix"});
doc_notimpl = "%s is not yet implemented for __objname__ objects. \
__prop__ is unused.";
doc_unused = "__prop__ is unused.";
doc_fontangle = "Control whether the font is italic or normal.";
doc_fontsize = "Size of the font used for text rendering. \
@xref{XREF__objname__fontunits, , fontunits property}.";
doc_fontname = "Name of font used for text rendering. When setting \
this property, the text rendering engine will search for a matching \
font in your system. If none is found then text is rendered using a \
default sans serif font (same as the default @qcode{\"*\"} value).";
doc_fontunits = "Units used to interpret the @qcode{\"fontsize\"} property.";
doc_fontweight = "Control the variant of the base font used for \
text rendering.";
## Initialize structure
if (isfield (base, field))
s = base.(field);
else
s = struct ("valid", "", "default", "", "doc", "", "printdefault", true);
endif
## Base properties: Write generic documentation because it will be included
## in the list of each graphics object. If a given graphics object
## interprets the property differently than others, then the doc will have
## to be rewritten for this object.
if (strcmp (objname, "base"))
switch (field)
case "beingdeleted"
case "busyaction"
s.doc = "Define how Octave handles the execution of this object's \
callback properties when it is unable to interrupt another object's \
executing callback. This is only relevant when the currently executing \
callback object has its @code{interruptible} property set to \
\@qcode{\"off\"}. The __prop__ property of the interrupting callback object \
indicates whether the interrupting callback is queued (@qcode{\"queue\"} \
(default)) or discarded (@qcode{\"cancel\"}).\n\
@xref{Callbacks, , @w{Callbacks section}}.";
case "buttondownfcn"
s.doc = "__fcnmsg__";
s.valid = valid_fcn;
case "children"
s.doc = "Graphics handles of the __objname__'s children.";
s.valid = "vector of graphics handles";
case "clipping"
s.doc = "If __prop__ is @qcode{\"on\"}, the __objname__ is \
clipped in its parent axes limits.";
case "createfcn"
s.doc = "Callback function executed immediately after __objname__ \
has been created. Function is set by using default property on root object, \
e.g., @code{set (groot, \"default__objname__createfcn\", \
'disp (\"__objname__ created!\")')}.\n\n__fcnmsg__";
s.valid = valid_fcn;
case "deletefcn"
s.doc = "Callback function executed immediately before __objname__ \
is deleted.\n\n__fcnmsg__";
s.valid = valid_fcn;
case "handlevisibility"
s.doc = "If __prop__ is @qcode{\"off\"}, the __objname__'s \
handle is not visible in its parent's \"children\" property.";
case "hittest"
s.doc = "Specify whether __objname__ processes mouse events \
or passes them to ancestors of the object. When enabled, the object may \
respond to mouse clicks by evaluating the @qcode{\"buttondownfcn\"}, showing \
the uicontextmenu, and eventually becoming the root \
@qcode{\"currentobject\"}. This property is only relevant when the object \
can accept mouse clicks which is determined by the @qcode{\"pickableparts\"} \
property. @xref{XREF__objname__pickableparts, , @w{pickableparts property}}.";
case "interruptible"
s.doc = "Specify whether this object's callback functions may be \
interrupted by other callbacks. By default __prop__ is @qcode{\"on\"} \
and callbacks that make use of @code{drawnow}, @code{figure}, @code{waitfor}, \
@code{getframe} or @code{pause} functions are eventually interrupted.\n\
@xref{Callbacks, , @w{Callbacks section}}.";
case "parent"
s.doc = "Handle of the parent graphics object.";
s.valid = valid_handle;
case "pickableparts"
s.doc = "Specify whether __objname__ will accept mouse clicks. \
By default, __prop__ is @qcode{\"visible\"} and only visible parts of the \
__objname__ or its children may react to mouse clicks. When __prop__ is \
@qcode{\"all\"} both visible and invisible parts (or children) may react to \
mouse clicks. When __prop__ is @qcode{\"none\"} mouse clicks on the object \
are ignored and transmitted to any objects underneath this one. When an \
object is configured to accept mouse clicks the @qcode{\"hittest\"} property \
will determine how they are processed. \
@xref{XREF__objname__hittest, , @w{hittest property}}.";
case "selected"
case "selectionhighlight"
case "tag"
s.doc = "A user-defined string to label the graphics object.";
s.valid = valid_string;
case "type"
s.doc = "Class name of the graphics object. __prop__ is \
always @qcode{\"__objname__\"}";
s.valid = valid_string;
s.printdefault = false;
case "uicontextmenu"
s.doc = "Graphics handle of the uicontextmenu object that is \
currently associated to this __objname__ object.";
s.valid = valid_handle;
case "userdata"
s.doc = "User-defined data to associate with the graphics object.";
s.valid = "Any Octave data";
case "visible"
s.doc = "If __prop__ is @qcode{\"off\"}, the __objname__ is \
not rendered on screen.";
endswitch
## Root properties:
elseif (strcmp (objname, "root"))
switch (field)
## Overridden shared properties
case {"beingdeleted", "busyaction", "buttondownfcn", ...
"clipping", "createfcn", "deletefcn", "handlevisibility", ...
"hittest", "interruptible", "selected", ...
"selectionhighlight", "uicontextmenu", "visible"}
s.doc = doc_unused;
case "parent"
s.doc = "Root figure has no parent graphics object. __prop__ \
is always empty.";
case "hittest"
s.doc = doc_unused;
case "pickableparts"
s.doc = doc_unused;
## Specific properties
case "callbackobject"
s.doc = "Graphics handle of the current object whose callback is executing.";
s.valid = valid_handle;
case "currentfigure"
s.doc = "Graphics handle of the current figure.";
s.valid = valid_handle;
case "diary"
s.doc = "If __prop__ is @qcode{\"on\"}, the Octave command window \
session is saved to file. @xref{XREFrootdiaryfile, , @w{diaryfile property}}.";
case "diaryfile"
s.doc = "The name of the diary file. \
@xref{XREFdiary, , @w{diary function}}.";
s.valid = valid_string;
case "echo"
s.doc = "Control whether Octave displays commands executed from \
scripts. @xref{XREFecho, , @w{echo function}}.";
case "errormessage"
s.doc = "The last error message raised. \
@xref{XREFlasterr, , @w{lasterr function}}.";
s.valid = valid_string;
case "fixedwidthfontname"
s.valid = valid_string;
case "format"
s.doc = "This property is a wrapper around the @code{format} function.\
@xref{XREFformat, , @w{format function}}.";
case "formatspacing"
s.doc = "This property is a wrapper around the @code{format} function.\
@xref{XREFformat, , @w{format function}}.";
case "language"
s.valid = valid_string;
case "monitorpositions"
s.doc = doc_unused;
s.printdefault = false;
case "pointerlocation"
s.doc = doc_unused;
s.valid = valid_2elvec;
case "pointerwindow"
s.doc = doc_unused;
s.valid = valid_handle;
case "recursionlimit"
s.doc = "The maximum number of times a function can be called \
recursively. \
@xref{XREFmax_recursion_depth, , @w{max_recursion_depth function}}.";
s.valid = "double";
case "screendepth"
s.valid = "double";
s.printdefault = false;
case "screenpixelsperinch"
s.valid = "double";
s.printdefault = false;
case "screensize"
s.valid = valid_4elvec;
s.printdefault = false;
case "showhiddenhandles"
s.doc = "If __prop__ is @qcode{\"on\"}, all graphics objects handles \
are visible in their parents' children list, regardless of the value of their \
@code{handlevisibility} property.";
case "units"
endswitch
## Figure properties
elseif (strcmp (objname, "figure"))
switch (field)
## Overridden shared properties
case "clipping"
s.doc = doc_unused;
case "pickableparts"
s.doc = doc_unused;
## Specific properties
case "alphamap"
s.doc = sprintf (doc_notimpl, "Transparency");
case "closerequestfcn"
s.doc = "Function that is executed when a figure is deleted. \
@xref{XREFclosereq, , closereq function}.\n\n__fcnmsg__";
s.valid = valid_fcn;
case "color"
s.doc = "Color of the figure background. \
@xref{Colors, , colorspec}.";
s.valid = valid_color;
case "colormap"
s.doc = "A matrix containing the RGB color map for the current axes.";
s.valid = "N-by-3 matrix";
case "currentaxes"
s.doc = "Handle to the graphics object of the current axes.";
s.valid = valid_handle;
case "currentcharacter"
s.doc = doc_unused;
case "currentobject"
s.valid = valid_handle;
case "currentpoint"
s.doc = "A 1-by-2 matrix which holds the coordinates of the point \
over which the mouse pointer was when a mouse event occurred. The X and Y \
coordinates are in units defined by the figure's @code{units} property \
and their origin is the lower left corner of the plotting area.\n\
\n\
Events which set @code{currentpoint} are\n\
@table @asis\n\
@item A mouse button was pressed\n\
always\n\
@item A mouse button was released\n\
only if the figure's callback @code{windowbuttonupfcn} is defined\n\
@item The pointer was moved while pressing the mouse button (drag)\n\
only if the figure's callback @code{windowbuttonmotionfcn} is defined\n\
@end table";
s.valid = valid_2elvec;
case "dockcontrols"
s.doc = doc_unused;
case "filename"
s.doc = "The filename used when saving the plot figure.";
s.valid = valid_string;
case "graphicssmoothing"
s.doc = "Use smoothing techniques to reduce the appearance of jagged lines.";
case "integerhandle"
s.doc = "Assign the next lowest unused integer as the Figure number.";
case "inverthardcopy"
s.doc = "Replace the figure and axes background color with white when printing.";
case "keypressfcn"
s.doc = "Callback function executed when a keystroke event \
happens while the figure has focus. The actual key that was pressed \
can be retrieved using the second argument 'evt' of the function. __fcnmsg__";
s.valid = valid_fcn;
case "keyreleasefcn"
s.doc = "With @code{keypressfcn}, the keyboard callback functions. \
These callback functions are called when a key is pressed/released \
respectively. The functions are called with two input arguments. The first \
argument holds the handle of the calling figure. The second argument holds \
an event structure which has the following members:\n\
@table @code\n\
@item Character:\n\
The ASCII value of the key\n\
@item Key:\n\
Lowercase value of the key\n\
@item Modifier:\n\
A cell array containing strings representing the modifiers pressed with the \
key.\n\
@end table\
\n\n__fcnmsg__";
s.valid = valid_fcn;
case "menubar"
s.doc = "Control the display of the figure menu bar at the top \
of the figure.";
case "name"
s.doc = "Name to be displayed in the figure title bar. The name is \
displayed to the right of any title determined by the @code{numbertitle} \
property.";
s.valid = valid_string;
## FIXME: Uncomment when support added in graphics.in.h
#case "number"
# s.doc = "Number of current figure (RO).";
case "nextplot"
s.doc = "__prop__ is used by high level plotting functions to \
decide what to do with axes already present in the figure. \
@xref{XREFnewplot, , @w{newplot function}}.";
case "numbertitle"
s.doc = "Display \"Figure\" followed by the numerical figure handle \
value in the figure title bar.";
case "outerposition"
s.doc = "Specify the position and size of the figure including \
the top menubar and the bottom status bar. \
The four elements of the vector are the coordinates of the lower left corner \
and width and height of the figure. \
@xref{XREFfigureunits, , @w{units property}}.";
s.valid = valid_4elvec;
case "paperorientation"
s.doc = "The value for the @code{papersize}, and @code{paperposition} \
properties depends upon __prop__. The horizontal and vertical values for \
@code{papersize} and @code{paperposition} reverse order \
when __prop__ is switched between @code{\"portrait\"} and \
@code{\"landscape\"}.";
case "paperposition"
s.doc = "Vector @code{[left bottom width height]} defining the \
position and size of the figure (in @code{paperunits} units) on the printed \
page. The position @code{[left bottom]} defines the lower left corner of the \
figure on the page, and the size is defined by @code{[width height]}. For \
output formats not implicitly rendered on paper, @code{width} and \
@code{height} define the size of the image and the position information is \
ignored. \
__modemsg__.";
s.valid = valid_4elvec;
case "paperpositionmode"
s.doc = "If __prop__ is set to @qcode{\"auto\"}, the \
@code{paperposition} property is automatically computed: the printed \
figure will have the same size as the on-screen figure and will be centered \
on the output page. Setting the __prop__ to @code{\"auto\"} does not modify \
the value of the @code{paperposition} property.";
case "papersize"
s.doc = "Vector @code{[width height]} defining the size of the \
paper for printing. Setting the __prop__ property to a value, not associated \
with one of the defined @code{papertypes} and consistent with the setting for \
@code{paperorientation}, forces the @code{papertype} property to the value \
@qcode{\"<custom>\"}. If __prop__ is set to a value associated with a \
supported @code{papertype} and consistent with the @code{paperorientation}, \
the @code{papertype} value is modified to the associated value.";
s.valid = valid_2elvec;
case "papertype"
s.doc = "Name of the paper used for printed output. \
Setting __prop__ also changes @code{papersize}, while maintaining consistency \
with the @code{paperorientation} property.";
case "paperunits"
s.doc = "The unit used to compute the @code{paperposition} property. \
For __prop__ set to @code{\"pixels\"}, the conversion between physical \
units (ex: @code{\"inches\"}) and @code{\"pixels\"} is dependent on the \
@code{screenpixelsperinch} property of the root object.";
case "pointer"
s.doc = doc_unused;
case "pointershapecdata"
s.doc = doc_unused;
case "pointershapehotspot"
s.doc = doc_unused;
case "position"
s.doc = "Specify the position and size of the figure canvas. \
The four elements of the vector are the coordinates of the lower left corner \
and width and height of the figure. \
@xref{XREFfigureunits, , @w{units property}}.";
s.valid = valid_4elvec;
case "renderer"
s.doc = doc_unused;
case "renderermode"
s.doc = doc_unused;
case "resize"
s.doc = doc_unused;
case "resizefcn"
s.doc = "__prop__ is deprecated. Use @code{sizechangedfcn} instead.";
s.valid = valid_fcn;
case "selectiontype"
## FIXME: docstring explaining what "{normal}|open|alt|extend" mean.
case "sizechangedfcn"
s.doc = "Callback triggered when the figure window size is changed.\
\n\n__fcnmsg__";
s.valid = valid_fcn;
case "toolbar"
s.doc = "Control the display of the toolbar (along the bottom of the \
menubar) and the status bar. When set to @qcode{\"auto\"}, the display is based on the value of the @code{menubar} property.";
case "units"
s.doc = "The unit used to compute the @code{position} and \
@code{outerposition} properties.";
case "windowbuttondownfcn"
s.doc = "@xref{XREFfigurewindowbuttonupfcn, , \
@w{windowbuttonupfcn property}}.";
s.valid = valid_fcn;
case "windowbuttonmotionfcn"
s.doc = "@xref{XREFfigurewindowbuttonupfcn, , \
@w{windowbuttonupfcn property}}.";
s.valid = valid_fcn;
case "windowbuttonupfcn"
s.doc = "With @code{windowbuttondownfcn} and \
@code{windowbuttonmotionfcn}, the mouse callback functions. These \
callback functions are called when a mouse button is pressed, dragged, or \
released respectively. When these callback functions are executed, the \
@code{currentpoint} property holds the current coordinates of the cursor.\
\n\n__fcnmsg__";
s.valid = valid_fcn;
case "windowkeypressfcn"
s.doc = "Function that is executed when a key is pressed and \
the figure has focus.\n\n__fcnmsg__";
s.valid = valid_fcn;
case "windowkeyreleasefcn"
s.doc = "Function that is executed when a key is released and \
the figure has focus.\n\n__fcnmsg__";
s.valid = valid_fcn;
case "windowscrollwheelfcn"
s.doc = doc_unused;
s.valid = valid_fcn;
case "windowstyle"
s.doc = "The window style of a figure. One of the following values:\n\
@table @code\n\
@item normal\n\
Set the window style as non modal.\n\
@item modal\n\
Set the window as modal so that it will stay on top of all normal figures.\n\
@item docked\n\
Setting the window style as docked currently does not dock the window.\n\
@end table\n\
\n\
Changing modes of a visible figure may cause the figure to close and reopen.";
endswitch
## Axes properties
elseif (strcmp (objname, "axes"))
switch (field)
## Overridden shared properties
case "clipping"
s.doc = doc_unused;
## Specific properties
case "activepositionproperty"
s.doc = "Specify which of @qcode{\"position\"} or \
@qcode{\"outerposition\"} properties takes precedence when axes \
annotations extent changes. @xref{XREFaxesposition, , @w{position property}}, \
and @ref{XREFaxesposition, , @w{outerposition property}}.";
case "alim"
s.doc = sprintf (doc_notimpl, "Transparency");
case "alimmode"
case "ambientlightcolor"
s.doc = doc_unused;
case "box"
s.doc = "Control whether the axes has a surrounding box.";
case "boxstyle"
s.doc = "For 3-D axes, control whether the @qcode{\"full\"} \
box is drawn or only the 3 @qcode{\"back\"} axes";
case "cameraposition"
s.valid = valid_3elvec;
case "camerapositionmode"
case "cameratarget"
s.valid = valid_3elvec;
case "cameratargetmode"
case "cameraupvector"
s.valid = valid_3elvec;
case "cameraupvectormode"
case "cameraviewangle"
s.valid = "scalar";
case "cameraviewanglemode"
case "clim"
s.doc = "Define the limits for the color axis of image children. \
__modemsg__. @xref{XREFpcolor, , @w{pcolor function}}.";
s.valid = valid_2elvec;
case "climmode"
case "clippingstyle"
s.doc = doc_unused;
case "color"
s.doc = "Color of the axes background. @xref{Colors, , colorspec}.";
s.valid = valid_color;
case "colororder"
s.doc = "RGB values used by plot function for automatic line \
coloring.";
s.valid = "N-by-3 RGB matrix";
case "colororderindex"
s.doc = doc_unused;
case "currentpoint"
s.doc = "Matrix @code{[xf, yf, zf; xb, yb, zb]} which holds the \
coordinates (in axes data units) of the point over which the mouse pointer \
was when the mouse button was pressed. If a mouse callback function is \
defined, @code{currentpoint} holds the pointer coordinates at the time \
the mouse button was pressed. For 3-D plots, the first row of the returned \
matrix specifies the point nearest to the current camera position and the \
second row the furthest point. The two points forms a line which is \
perpendicular to the screen.";
s.valid = "2-by-3 matrix";
case "dataaspectratio"
s.doc = "Specify the relative height and width of the data \
displayed in the axes. Setting @code{dataaspectratio} to \
@w{@code{[1, 2]}} causes the length of one unit as displayed on the x-axis \
to be the same as the length of 2 units on the y-axis. \
@xref{XREFdaspect, , daspect function}. __modemsg__.";
s.valid = valid_3elvec;
case "dataaspectratiomode"
case "fontangle"
s.doc = doc_fontangle;
case "fontname"
s.doc = doc_fontname;
s.valid = valid_string;
case "fontsize"
s.doc = doc_fontsize;
s.valid = "scalar";
case "fontunits"
s.doc = doc_fontunits;
case "fontsmoothing"
s.doc = doc_unused;
case "fontweight"
s.doc = doc_fontweight;
case "gridalpha"
s.doc = sprintf (doc_notimpl, "Transparency");
case "gridalphamode"
s.doc = doc_unused;
case "gridcolor"
s.doc = doc_unused;
case "gridcolormode"
s.doc = doc_unused;
case "gridlinestyle"
case "labelfontsizemultiplier"
s.doc = "Ratio between the x/y/zlabel fontsize and the tick \
label fontsize";
case "layer"
s.doc = "Control whether the axes is drawn below child graphics \
objects (ticks, labels, etc.@: covered by plotted objects) or above.";
case "linestyleorder"
s.doc = doc_unused;
case "linestyleorderindex"
s.doc = doc_unused;
case "linewidth"
s.doc = "Width of the main axes lines";
case "minorgridalpha"
s.doc = sprintf (doc_notimpl, "Transparency");
case "minorgridalphamode"
s.doc = doc_unused;
case "minorgridcolor"
s.doc = doc_unused;
case "minorgridcolormode"
s.doc = doc_unused;
case "minorgridlinestyle"
case "mousewheelzoom"
s.doc = "Fraction of axes limits to zoom for each wheel movement.";
s.valid = "scalar in the range (0, 1)";
case "nextplot"
s.doc = "__prop__ is used by high level plotting functions to \
decide what to do with graphics objects already present in the axes. \
@xref{XREFnewplot, , @w{newplot function}}. The state of __prop__ \
is typically controlled using the @code{hold} function. \
@xref{XREFhold, , @w{hold function}}.";
case "outerposition"
s.doc = "Specify the position of the plot including titles, \
axes, and legend. The four elements of the vector are the \
coordinates of the lower left corner and width and height of the \
plot, in units normalized to the width and height of the plot \
window. For example, @code{[0.2, 0.3, 0.4, 0.5]} sets the lower \
left corner of the axes at @math{(0.2, 0.3)} and the width and \
height to be 0.4 and 0.5 respectively. \
@xref{XREFaxesposition, , @w{position property}}.";
s.valid = valid_4elvec;
case "plotboxaspectratio"
s.doc = "@xref{XREFpbaspect, , pbaspect function}. \
__modemsg__.";
case "plotboxaspectratiomode"
case "position"
s.doc = "Specify the position of the plot excluding titles, \
axes, and legend. The four elements of the vector are the \
coordinates of the lower left corner and width and height of the \
plot, in units normalized to the width and height of the plot \
window. For example, @code{[0.2, 0.3, 0.4, 0.5]} sets the lower \
left corner of the axes at @math{(0.2, 0.3)} and the width and \
height to be 0.4 and 0.5 respectively. \
@xref{XREFaxesouterposition, , @w{outerposition property}}.";
s.valid = valid_4elvec;
case "projection"
s.doc = doc_unused;
case "sortmethod"
s.doc = doc_unused;
case "tickdir"
s.doc = "Control whether axes tick marks project \"in\" to the plot \
box or \"out\". __modemsg__.";
case "tickdirmode"
case "ticklabelinterpreter"
s.doc = "Control the way x/y/zticklabel properties are interpreted.\n\
@xref{XREFinterpreterusage, , @w{Use of the interpreter property}}.";
case "ticklength"
s.doc = "Two-element vector @code{[2Dlen 3Dlen]} specifying the \
length of the tickmarks relative to the longest visible axis.";
s.valid = valid_2elvec;
case "tightinset"
s.doc = "Size of the @code{[left bottom right top]} margins \
around the axes that enclose labels and title annotations.";
s.valid = valid_4elvec;
case "title"
s.doc = "Graphics handle of the title text object.";
s.valid = valid_handle;
case "titlefontsizemultiplier"
s.doc = "Ratio between the title fontsize and the tick \
label fontsize";
s.valid = "positive scalar";
case "titlefontweight"
s.doc = "Control variant of base font used for the axes title.";
case "units"
s.doc = "Units used to interpret the @qcode{\"position\"}, \
@qcode{\"outerposition\"}, and @qcode{\"tightinset\"} properties.";
case "view"
s.doc = "Two-element vector @code{[azimuth elevation]} specifying \
the viewpoint for three-dimensional plots";
s.valid = valid_2elvec;
case "xaxislocation"
s.doc = "Control the x axis location.";
case "xcolor"
s.doc = "Color of the x-axis. @xref{Colors, , colorspec}. \
__modemsg__.";
s.valid = packopt ({markdef(valid_color), "@qcode{\"none\"}"});
case "xcolormode"
case "xdir"
s.doc = "Direction of the x axis: @qcode{\"normal\"} is left \
to right.";
case "xgrid"
s.doc = "Control whether major x grid lines are displayed.";
case "xlabel"
s.doc = "Graphics handle of the x label text object.";
s.valid = valid_handle;
case "xlim"
s.doc = "Two-element vector @code{[xmin xmax]} specifying the limits \
for the x-axis. __modemsg__. @xref{XREFxlim, , @w{xlim function}}.";
s.valid = valid_2elvec;
case "xlimmode"
case "xminorgrid"
s.doc = "Control whether minor x grid lines are displayed.";
case "xminortick"
case "xscale"
case "xtick"
s.doc = "Position of x tick marks. __modemsg__.";
s.valid = "vector";
s.printdefault = false;
case "xticklabel"
s.doc = "Labels of x tick marks. __modemsg__.";
s.valid = valid_cellstring;
case "xticklabelmode"
case "xticklabelrotation"
s.doc = doc_unused;
case "xtickmode"
case "yaxislocation"
s.doc = "Control the y-axis location.";
case "ycolor"
s.doc = "Color of the y-axis. @xref{Colors, , colorspec}.";
s.valid = packopt ({markdef(valid_color), "@qcode{\"none\"}"});
case "ycolormode"
case "ydir"
s.doc = "Direction of the y-axis: @qcode{\"normal\"} is bottom \
to top.";
case "ygrid"
s.doc = "Control whether major y grid lines are displayed.";
case "ylabel"
s.doc = "Graphics handle of the y label text object.";
s.valid = valid_handle;
case "ylim"
s.doc = "Two-element vector @code{[ymin ymax]} specifying the limits \
for the y-axis. __modemsg__. @xref{XREFylim, , @w{ylim function}}.";
s.valid = valid_2elvec;
case "ylimmode"
case "yminorgrid"
s.doc = "Control whether minor y grid lines are displayed.";
case "yminortick"
case "yscale"
case "ytick"
s.doc = "Position of y tick marks. __modemsg__.";
s.valid = "vector";
s.printdefault = false;
case "yticklabel"
s.doc = "Labels of y tick marks. __modemsg__.";
s.valid = valid_cellstring;
case "yticklabelmode"
case "yticklabelrotation"
s.doc = doc_unused;
case "ytickmode"
case "zcolor"
s.doc = "Color of the z-axis. @xref{Colors, , colorspec}.";
s.valid = packopt ({markdef(valid_color), "@qcode{\"none\"}"});
case "zcolormode"
case "zdir"
case "zgrid"
s.doc = "Control whether major z grid lines are displayed.";
case "zlabel"
s.doc = "Graphics handle of the z label text object.";
s.valid = valid_handle;
case "zlim"
s.doc = "Two-element vector @code{[zmin zmaz]} specifying the limits \
for the z-axis. __modemsg__. @xref{XREFzlim, , @w{zlim function}}.";
s.valid = valid_2elvec;
case "zlimmode"
case "zminorgrid"
s.doc = "Control whether minor z grid lines are displayed.";
case "zminortick"
case "zscale"
case "ztick"
s.doc = "Position of z tick marks. __modemsg__.";
s.valid = "vector";
s.printdefault = false;
case "zticklabel"
s.doc = "Labels of z tick marks. __modemsg__.";
s.valid = valid_cellstring;
case "zticklabelmode"
case "zticklabelrotation"
s.doc = doc_unused;
case "ztickmode"
endswitch
## Line properties
elseif (strcmp (objname, "line"))
switch (field)
## Overridden shared properties
case "children"
s.doc = doc_unused;
## Specific properties
case "color"
s.doc = "Color of the line object. @xref{Colors, , colorspec}.";
s.valid = valid_color;
case "displayname"
s.doc = "Text for the legend entry corresponding to this line.";
s.valid = valid_cellstring;
case "interpreter"
case "linestyle"
s.doc = "@xref{Line Styles}.";
case "linewidth"
s.doc = "Width of the line object measured in points.";
case "linejoin"
s.doc = "Control the shape of the junction of line segments. \
This property currently only affects the printed output.";
case "marker"
s.doc = "Shape of the marker for each data point. \
@xref{Marker Styles}.";
case "markeredgecolor"
s.doc = "Color of the edge of the markers. When set to \
@qcode{\"auto\"}, the marker edges have the same color as the line. If set \
to @qcode{\"none\"}, no marker edges are displayed. This property can also \
be set to any color. @xref{Colors, , colorspec}.";
case "markerfacecolor"
s.doc = "Color of the face of the markers. When set to \
@qcode{\"auto\"}, the marker faces have the same color as the line. If set \
to @qcode{\"none\"}, the marker faces are not displayed. This property \
can also be set to any color. @xref{Colors, , colorspec}.";
case "markersize"
s.doc = "Size of the markers measured in points.";
s.valid = "scalar";
case "xdata"
s.doc = "Vector of x data to be plotted.";
s.valid = "vector";
case "xdatasource"
s.doc = "Name of a vector in the current base workspace to use as \
x data.";
s.valid = valid_string;
case "ydata"
s.doc = "Vector of y data to be plotted.";
s.valid = "vector";
case "ydatasource"
s.doc = "Name of a vector in the current base workspace to use as \
y data.";
s.valid = valid_string;
case "zdata"
s.doc = "Vector of z data to be plotted.";
s.valid = "vector";
case "zdatasource"
s.doc = "Name of a vector in the current base workspace to use as \
z data.";
s.valid = valid_string;
endswitch
## Text properties
elseif (strcmp (objname, "text"))
switch (field)
## Overridden shared properties
case "children"
s.doc = doc_unused;
## Specific properties
case "backgroundcolor"
s.doc = "Color of the background area. \
@xref{Colors, , colorspec}.";
s.valid = valid_color;
case "color"
s.doc = "Color of the text. @xref{Colors, ,colorspec}.";
s.valid = valid_color;
case "displayname"
case "edgecolor"
s.doc = "Color of the outline of the background area. \
@xref{Colors, , colorspec}.";
s.valid = valid_color;
case "editing"
s.doc = doc_unused;
case "extent"
s.doc = "Vector @code{[x0 y0 width height]} indicating the size \
and location of the text string.";
s.valid = valid_4elvec;
case "fontangle"
s.doc = doc_fontangle;
case "fontname"
s.doc = doc_fontname;
s.valid = valid_string;
case "fontsize"
s.doc = doc_fontsize;
s.valid = "scalar";
case "fontunits"
s.doc = doc_fontunits;
case "fontweight"
s.doc = doc_fontweight;
case "horizontalalignment"
case "interpreter"
s.doc = "Control the way the @qcode{\"string\"} property is \
interpreted.\n\
@xref{XREFinterpreterusage, , @w{Use of the interpreter property}}.";
case "linestyle"
s.doc = "Style of the outline. @xref{Line Styles}.";
case "linewidth"
s.doc = "Width of the outline.";
s.valid = "scalar";
case "margin"
s.doc = "Margins between the borders of the background area \
and the texts. The value is currently interpreted as pixels, regardless \
of the @qcode{\"fontunits\"} property.";
s.valid = "scalar";
case "position"
s.doc = "Vector @code{[X0 Y0 Z0]} where X0, Y0 and Z0 indicate the \
position of the text anchor as defined by @code{verticalalignment} and \
@code{horizontalalignment}.";
s.valid = valid_4elvec;
case "rotation"
s.doc = "The angle of rotation for the displayed text, \
measured in degrees.";
s.valid = "scalar";
case "string"
s.doc = "The text object string content.";
s.valid = valid_string;
case "units"
case "verticalalignment"
endswitch
## Image properties
elseif (strcmp (objname, "image"))
switch (field)
## Overridden shared properties
case "children"
s.doc = doc_unused;
## Specific properties
case "alphadata"
s.doc = sprintf (doc_notimpl, "Transparency");
s.valid = valid_scalmat;
case "alphadatamapping"
s.doc = sprintf (doc_notimpl, "Transparency");
case "cdata"
s.valid = "matrix";
case "cdatamapping"
case "displayname"
s.doc = "Text for the legend entry corresponding to this image.";
s.valid = valid_cellstring;
case "xdata"
s.doc = "Two-element vector @code{[xmin xmax]} specifying the x \
coordinates of the first and last columns of the image.\n\
\n\
Setting @code{xdata} to the empty matrix ([]) will restore the default value \
of @code{[1 columns(image)]}.";
s.valid = valid_2elvec;
case "ydata"
s.doc = "Two-element vector @code{[ymin ymax]} specifying the y \
coordinates of the first and last rows of the image.\n\
\n\
Setting @code{ydata} to the empty matrix ([]) will restore the default value \
of @code{[1 rows(image)]}.";
s.valid = valid_2elvec;
endswitch
## Surface properties
elseif (strcmp (objname, "surface"))
switch (field)
## Overridden shared properties
case "children"
s.doc = doc_unused;
## Specific properties
case "alphadata"
s.doc = sprintf (doc_notimpl, "Transparency");
s.valid = valid_scalmat;
case "alphadatamapping"
s.doc = sprintf (doc_notimpl, "Transparency");
case "ambientstrength"
s.doc = "Strength of the ambient light. Value between 0.0 and 1.0";
s.valid = "scalar";
case "backfacelighting"
s.doc = "@qcode{\"lit\"}: The normals are used as is for lighting. \
@qcode{\"reverselit\"}: The normals are always oriented towards the point of view. \
@qcode{\"unlit\"}: Faces with normals pointing away from the point of view are unlit.";
case "cdata"
s.valid = "matrix";
case "cdatamapping"
case "cdatasource"
case "diffusestrength"
s.doc = "Strength of the diffuse reflex. Value between 0.0 (no \
diffuse reflex) and 1.0 (full diffuse reflex).";
s.valid = "scalar";
case "displayname"
s.doc = "Text for the legend entry corresponding to this surface.";
case "edgealpha"
s.doc = sprintf (doc_notimpl, "Transparency");
s.valid = "scalar";
case "edgecolor"
case "edgelighting"
s.doc = "When set to a value other than @qcode{\"none\"}, the edges \
of the object are drawn with light and shadow effects. Supported values are \
@qcode{\"none\"} (no lighting effects), @qcode{\"flat\"} (facetted look) and \
@qcode{\"gouraud\"} (linear interpolation of the lighting effects between \
the vertices). @qcode{\"phong\"} is deprecated and has the same effect as \
@qcode{\"gouraud\"}.";
case "facealpha"
s.doc = "Transparency level of the faces of the surface object. Only \
double values are supported at present where a value of 0 means complete \
transparency and a value of 1 means solid faces without transparency. Setting \
the property to @qcode{\"flat\"}, @qcode{\"interp\"} or @qcode{\"texturemap\"} \
causes the faces to not being rendered. Additionally, the faces are not sorted \
from back to front which might lead to unexpected results when rendering \
layered transparent faces.";
s.valid = packopt ({"scalar", ...
"@qcode{\"flat\"}", ...
"@qcode{\"interp\"}", ...
"@qcode{\"texturemap\"}"});
case "facecolor"
case "facelighting"
s.doc = "When set to a value other than @qcode{\"none\"}, the faces \
of the object are drawn with light and shadow effects. Supported values are \
@qcode{\"none\"} (no lighting effects), @qcode{\"flat\"} (facetted look) and \
@qcode{\"gouraud\"} (linear interpolation of the lighting effects between \
the vertices). @qcode{\"phong\"} is deprecated and has the same effect as \
@qcode{\"gouraud\"}.";
case "interpreter"
case "linestyle"
s.doc = "@xref{Line Styles}.";
case "linewidth"
s.doc = "@xref{XREFlinelinewidth, , @w{line linewidth property}}.";
case "marker"
s.doc = "@xref{Marker Styles}.";
case "markeredgecolor"
s.doc = "@xref{XREFlinemarkeredgecolor, , \
@w{line markeredgecolor property}}.";
case "markerfacecolor"
s.doc = "@xref{XREFlinemarkerfacecolor, , \
@w{line markerfacecolor property}}.";
case "markersize"
s.doc = "@xref{XREFlinemarkersize, , \
@w{line markersize property}}.";
s.valid = "scalar";
case "meshstyle"
case "normalmode"
case "specularcolorreflectance"
s.doc = "Reflectance for specular color. Value between 0.0 (color \
of underlying face) and 1.0 (color of light source).";
s.valid = "scalar";
case "specularexponent"
s.doc = "Exponent for the specular reflex. The lower the value, \
the more the reflex is spread out.";
s.valid = "scalar";
case "specularstrength"
s.doc = "Strength of the specular reflex. Value between 0.0 (no \
specular reflex) and 1.0 (full specular reflex).";
s.valid = "scalar";
case "vertexnormals"
case "xdata"
s.valid = "matrix";
case "xdatasource"
case "ydata"
s.valid = "matrix";
case "ydatasource"
case "zdata"
s.valid = "matrix";
case "zdatasource"
endswitch
## Patch properties
elseif (strcmp (objname, "patch"))
switch (field)
## Overridden shared properties
case "children"
s.doc = doc_unused;
## Specific properties
case "alphadatamapping"
s.doc = sprintf (doc_notimpl, "Transparency");
case "ambientstrength"
s.doc = "Strength of the ambient light. Value between 0.0 and 1.0";
s.valid = "scalar";
case "backfacelighting"
s.doc = "@qcode{\"lit\"}: The normals are used as is for lighting. \
@qcode{\"reverselit\"}: The normals are always oriented towards the point of view. \
@qcode{\"unlit\"}: Faces with normals pointing away from the point of view are unlit.";
case "cdata"
s.doc = "Data defining the patch object color.\n\
Patch color can be defined for faces or for vertices.\n\
\n\
If @code{cdata} is a scalar index into the current colormap or a RGB triplet, \
it defines the color of all faces.\n\
\n\
If @code{cdata} is an N-by-1 vector of indices or an N-by-3 (RGB) matrix, \
it defines the color of each one of the N faces.\n\
\n\
If @code{cdata} is an N-by-M or an N-by-M-by-3 (RGB) matrix, \
it defines the color at each vertex.";
s.valid = valid_scalmat;
case "diffusestrength"
s.doc = "Strength of the diffuse reflex. Value between 0.0 (no \
diffuse reflex) and 1.0 (full diffuse reflex).";
s.valid = "scalar";
case "displayname"
s.doc = "Text of the legend entry corresponding to this patch.";
case "edgealpha"
s.doc = sprintf (doc_notimpl, "Transparency");
s.valid = valid_scalmat;
case "edgecolor"
case "edgelighting"
s.doc = "When set to a value other than @qcode{\"none\"}, the edges \
of the object are drawn with light and shadow effects. Supported values are \
@qcode{\"none\"} (no lighting effects), @qcode{\"flat\"} (facetted look) and \
@qcode{\"gouraud\"} (linear interpolation of the lighting effects between \
the vertices). @qcode{\"phong\"} is deprecated and has the same effect as \
@qcode{\"gouraud\"}.";
case "facealpha"
s.doc = "Transparency level of the faces of the patch object. Only \
double values are supported at present where a value of 0 means complete \
transparency and a value of 1 means solid faces without transparency. Setting \
the property to @qcode{\"flat\"} or @qcode{\"interp\"} causes the faces to not \
being rendered. Additionally, the faces are not sorted from back to front \
which might lead to unexpected results when rendering layered transparent \
faces.";
s.valid = packopt ({"scalar", ...
"@qcode{\"flat\"}", ...
"@qcode{\"interp\"}"});
case "facecolor"
## Don't provide a default value, and mark colorspec with
## braces, this forces the default rgb triplet to be displayed
s.valid = packopt ({markdef(valid_color), ...
"@qcode{\"none\"}", ...
"@qcode{\"flat\"}", ...
"@qcode{\"interp\"}"});
case "facelighting"
s.doc = "When set to a value other than @qcode{\"none\"}, the faces \
of the object are drawn with light and shadow effects. Supported values are \
@qcode{\"none\"} (no lighting effects), @qcode{\"flat\"} (facetted look) and \
@qcode{\"gouraud\"} (linear interpolation of the lighting effects between \
the vertices). @qcode{\"phong\"} is deprecated and has the same effect as \
@qcode{\"gouraud\"}.";
case "faces"
case "xdata"
s.valid = valid_vecmat;
case "facevertexalphadata"
s.doc = sprintf (doc_notimpl, "Transparency");
s.valid = valid_scalmat;
case "facevertexcdata"
case "interpreter"
s.doc = doc_unused;
case "linestyle"
case "linewidth"
case "marker"
s.doc = "@xref{XREFlinemarker, , @w{line marker property}}.";
case "markeredgecolor"
s.doc = "@xref{XREFlinemarkeredgecolor, , \
@w{line markeredgecolor property}}.";
case "markerfacecolor"
s.doc = "@xref{XREFlinemarkerfacecolor, , \
@w{line markerfacecolor property}}.";
case "markersize"
s.doc = "@xref{XREFlinemarkersize, , @w{line markersize property}}.";
s.valid = "scalar";
case "normalmode"
case "specularcolorreflectance"
s.doc = "Reflectance for specular color. Value between 0.0 (color \
of underlying face) and 1.0 (color of light source).";
s.valid = "scalar";
case "specularexponent"
s.doc = "Exponent for the specular reflex. The lower the value, \
the more the reflex is spread out.";
s.valid = "scalar";
case "specularstrength"
s.doc = "Strength of the specular reflex. Value between 0.0 (no \
specular reflex) and 1.0 (full specular reflex).";
s.valid = "scalar";
case "vertexnormals"
case "vertices"
s.valid = valid_vecmat;
case "xdata"
s.valid = valid_vecmat;
case "ydata"
s.valid = valid_vecmat;
case "zdata"
s.valid = valid_vecmat;
endswitch
## Light properties
elseif (strcmp (objname, "light"))
switch (field)
## Overridden shared properties
case "children"
s.doc = doc_unused;
## Specific properties
case "color"
s.doc = "Color of the light source. @xref{Colors, ,colorspec}.";
s.valid = valid_color;
case "position"
s.doc = "Position of the light source.";
case "style"
s.doc = "This string defines whether the light emanates from a \
light source at infinite distance (@qcode{\"infinite\"}) or from a local \
point source (@qcode{\"local\"}).";
endswitch
## uimenu properties
elseif (strcmp (objname, "uimenu"))
switch (field)
## Overridden shared properties
case "buttondownfcn"
s.doc = doc_unused;
## Specific properties
case "accelerator"
case "callback"
case "checked"
case "enable"
case "foregroundcolor"
case "label"
case "position"
case "separator"
endswitch
## uicontextmenu properties
elseif (strcmp (objname, "uicontextmenu"))
switch (field)
## Overridden shared properties
case "buttondownfcn"
s.doc = doc_unused;
## Specific properties
case "callback"
case "position"
endswitch
## uipanel properties
elseif (strcmp (objname, "uipanel"))
switch (field)
## Overridden shared properties
## Specific properties
case "backgroundcolor"
case "bordertype"
case "borderwidth"
case "fontangle"
s.doc = doc_fontangle;
case "fontname"
s.doc = doc_fontname;
s.valid = valid_string;
case "fontsize"
s.doc = doc_fontsize;
s.valid = "scalar";
case "fontunits"
s.doc = doc_fontunits;
case "fontweight"
s.doc = doc_fontweight;
case "foregroundcolor"
case "highlightcolor"
case "position"
case "resizefcn"
case "shadowcolor"
case "title"
case "titleposition"
case "units"
endswitch
## uibuttongroup properties
elseif (strcmp (objname, "uibuttongroup"))
switch (field)
## Overridden shared properties
## Specific properties
case "backgroundcolor"
case "bordertype"
case "borderwidth"
case "fontangle"
s.doc = doc_fontangle;
case "fontname"
s.doc = doc_fontname;
s.valid = valid_string;
case "fontsize"
s.doc = doc_fontsize;
s.valid = "scalar";
case "fontunits"
s.doc = doc_fontunits;
case "fontweight"
s.doc = doc_fontweight;
case "foregroundcolor"
case "highlightcolor"
case "position"
case "resizefcn"
case "selectedobject"
case "selectionchangedfcn"
case "shadowcolor"
case "title"
case "titleposition"
case "units"
endswitch
## uicontrol properties
elseif (strcmp (objname, "uicontrol"))
switch (field)
## Overridden shared properties
## Specific properties
case "backgroundcolor"
case "callback"
case "cdata"
case "enable"
case "extent"
case "fontangle"
s.doc = doc_fontangle;
case "fontname"
s.doc = doc_fontname;
s.valid = valid_string;
case "fontsize"
s.doc = doc_fontsize;
s.valid = "scalar";
case "fontunits"
s.doc = doc_fontunits;
case "fontweight"
s.doc = doc_fontweight;
case "foregroundcolor"
case "horizontalalignment"
case "keypressfcn"
case "listboxtop"
case "max"
case "min"
case "position"
case "sliderstep"
case "string"
case "style"
case "tooltipstring"
case "units"
case "value"
case "verticalalignment"
endswitch
## uitoolbar properties
elseif (strcmp (objname, "uitoolbar"))
switch (field)
## Overridden shared properties
case "buttondownfcn"
s.doc = doc_unused;
endswitch
## uipushtool properties
elseif (strcmp (objname, "uipushtool"))
switch (field)
## Overridden shared properties
case "buttondownfcn"
s.doc = doc_unused;
## Specific properties
case "cdata"
case "clickedcallback"
case "enable"
case "separator"
case "tooltipstring"
endswitch
## uitoggletool properties
elseif (strcmp (objname, "uitoggletool"))
switch (field)
## Overridden shared properties
case "buttondownfcn"
s.doc = doc_unused;
## Specific properties
case "cdata"
case "clickedcallback"
case "enable"
case "offcallback"
case "oncallback"
case "separator"
case "state"
case "tooltipstring"
endswitch
endif
## Replace keywords
if (! isempty (s.doc) && ! strcmp (objname, "base"))
s.doc = expand_doc (s.doc, field, objname);
endif
endfunction
function strout = expand_doc (strin, field, objname)
strout = strrep (strin, "__objname__", objname);
strout = strrep (strout, "__prop__", ["@code{" field "}"]);
modemsg = "Setting @code{%s} also forces the @code{%smode} \
property to be set to @qcode{\"manual\"}";
modemsg = sprintf (modemsg, field, field);
strout = strrep (strout, "__modemsg__", modemsg);
fcnmsg = "For information on how to write graphics listener \
functions see @ref{Callbacks, , @w{Callbacks section}}.";
strout = strrep (strout, "__fcnmsg__", fcnmsg);
endfunction
function s = getstructure (objname, base = [])
hf = [];
if (! strcmp (objname, "root"))
## Use an improbable number to avoid ishghandle to return true for 1
hf = figure (2265465, "visible", "off");
endif
## Build a default object to extract its properties list and default values.
if (strcmp (objname, "base"))
## Base properties are extracted from hggroup that only have 1 additional
## regular (non-hidden) property, "displayname".
h = hggroup ();
elseif (strcmp (objname, "root"))
h = 0;
elseif (strcmp (objname, "figure"))
h = hf;
else
eval (["h = " objname " ();"]);
endif
gprop = get (h);
sprop = set (h);
fields = fieldnames (gprop);
nf = numel (fields);
args = cell (2*nf, 1);
for ii = 1:nf
field = fields{ii};
## Get hard coded documentation
val = getdoc (objname, field, base);
## Extract the default values that are not hard coded in getdoc
if (isempty (val.default) && val.printdefault)
val.default = getdefault (h, objname, field);
endif
val.isreadonly = ! isfield (sprop, field);
## Extract the valid values that are not hard coded in getdoc
if (! val.isreadonly && isempty (val.valid))
val.valid = sprop.(field);
if (! isempty (val.valid) && iscellstr (val.valid))
## Add double quotes around string radio properties
val.valid = cellfun (@(s) ["@qcode{\"" s "\"}"], val.valid,
"uniformoutput", false);
val.valid = strjoin (val.valid, " | ");
endif
endif
args{2*(ii-1)+1} = field;
args{2*ii} = val;
endfor
## Build struct and remove unused fields in base properties
s = struct (args{:});
if (strcmp (objname, "base"))
s = rmfield (s, "displayname");
endif
if (isfigure (hf))
close (hf)
endif
endfunction
function def = getdefault (h, objname, field)
## This function is meant to be run without initialization file so
## that the properties we get are the default.
def = get (h, field);
## Don't print default values for graphics handles
if (isscalar (def) && def != 0 && ishghandle (def))
def = "";
else
if (ischar (def))
def = ['@qcode{"' def '"}'];
else
if ((isvector (def) && numel (def) < 5) || isempty (def))
## Use disp to print the default value for short vectors and
## empty values
str = disp (def);
str(end) = []; # remove linefeed
str = strtrim (str); # remove leading space
## Add [] around vector values
if (ismatrix (def) && numel (def) > 1)
str = ["[" str "]"];
## Add ";" between columns vector values
if (rows (def) != 1)
str = strrep (str, "\n", "; ");
endif
endif
## Replace texinfo reserved characters
def = strrep (str, "{", "@{");
def = strrep (def, "}", "@}");
def = strrep (def, "@", "@@");
def = ["@code{" def "}"];
else
args = arrayfun (@(x) num2str (x), size (def), "uniformoutput", false);
def = [strjoin(args, "-by-") " " class(def)];
endif
endif
endif
endfunction
function str = printdoc (objname, obj)
## Sort fields so that they appear in alphabetic order in the manual
fields = sort (fieldnames (obj));
nf = numel (fields);
## File header and begining of properties table
str = [warn_autogen() "\n\n@table @asis"];
for ii = 1:nf
field = fields{ii};
str = sprintf ("%s\n\n", str);
## @anchor: cross reference using XREFobjnamefield label
## Concept index: call info from octave with 'doc ("objname field")'
str = sprintf ("%s@anchor{XREF%s%s}\n@prindex %s %s\n",
str, objname, field, objname, field);
## Item
str = sprintf ("%s@item @code{%s}", str, field);
## Mark item read-only if needed
if (obj.(field).isreadonly)
str = sprintf ("%s (read-only):", str);
else
str = sprintf ("%s:", str);
endif
## Print valid and default values
tmp = print_options (obj.(field).valid,
obj.(field).default);
if (! isempty (tmp))
str = sprintf ("%s %s\n", str, tmp);
else
str = sprintf ("%s\n", str);
endif
## Print documentation
str = sprintf ("%s%s\n", str, obj.(field).doc);
endfor
## End of properties table
str = sprintf ("%s\n@end table", str);
endfunction
function str = warn_autogen ()
str = "@c DO NOT EDIT! Generated automatically by genpropdoc.m.\n\
\n\
@c Copyright (C) 2014-2018 Pantxo Diribarne\n\
@c\n\
@c This file is part of Octave.\n\
@c\n\
@c Octave is free software: you can redistribute it and/or modify it\n\
@c under the terms of the GNU General Public License as published by\n\
@c the Free Software Foundation, either version 3 of the License, or\n\
@c (at your option) any later version.\n\
@c\n\
@c Octave is distributed in the hope that it will be useful, but\n\
@c WITHOUT ANY WARRANTY; without even the implied warranty of\n\
@c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\
@c GNU General Public License for more details.\n\
@c\n\
@c You should have received a copy of the GNU General Public License\n\
@c along with Octave; see the file COPYING. If not, see\n\
@c <https://www.gnu.org/licenses/>.";
endfunction
function str = print_options (val, default)
str = "";
if (! isempty (val))
tmp = strrep (val, default, ["@{" default "@}"]);
if (length (tmp) == length (val) && ! isempty (default))
str = [tmp ", def. " default];
else
str = tmp;
endif
elseif (! isempty (default))
str = ["def. " default];
endif
endfunction
|