1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848
|
<sect1 id="sect-gui-menus">
<title>Menus</title>
<!-- TODO: add explanation of how to use a menu. -->
<!-- TODO: go over sub-menus and treat consistently. -->
<!-- TODO: add xref to each menu entry for other section of the manual. -->
<para>
This section of the manual describes the use of the menubar and
the menus themselves. It then explains each entry in every
&gnum; menu, submenu or context menu.
</para>
<sect2 id="menu-nav">
<title>Using Menus</title>
<para>
A menu is a graphical element within a program which appears with
a list of options. For instance, almost all applications have a
<guimenu>File</guimenu> menu through which the user can access the
computer's filesystem to open or save their work. The main menus
are on the menubar. The use of these menus is discussed in <xref
linkend="menu-bars" />.
</para>
<para>
&gnum; also uses context menus to
give users a quick way to access certain commands. The context
menu will open up right under the mouse pointer when one of the
secondary mouse buttons, usually the rightmost, is clicked. This
menu is called a context menu because the entries in the menu are
different depending on the location of the mouse pointer. The
<guilabel>context</guilabel> menus are discussed in <xref
linkend="context-menu" />.
</para>
<para>
Both the main menus, on the menubar, and context menus may have
submenus. A submenu is indicated by a small right-pointing
arrow. To access a submenu, move the pointer
down to the submenu entry. When the submenu opens,
move the pointer directly across into the submenu.
When there is not enough room to the right
of the currently open menu, submenus may open to the
left. Note that the submenu will
close if the mouse pointer moves into any other menu entry.
</para>
<para>
You can also use the keyboard to navigate menus and submenus.
See <xref linkend="menu-bars" /> to access the main menus using the keyboard.
Once a menu is displayed, menu entries can be highlighted by pressing the
down and up arrow keys. When a submenu opens, pressing the right
arrow key moves the highlight to the first entry of the submenu. When
a submenu entry is highlighted, pressing the left arrow key removes
the highlight from the submenu. Pressing the space bar or the <keycap>Enter</keycap>
key activates the highlighted menu entry.
</para>
<para>
Menu entries ending with an ellipsis (three dots) open a dialog window which
asks for more choices.
</para>
</sect2>
<sect2 id="menu-bars">
<title>Menubar</title>
<para>
The default location of the menubar is at the top of the
application window. The menus provide quick and organized access
to all major commands such as opening files, saving files,
printing and quitting the application.
</para>
<figure id="menubar.png">
<title>The Gnumeric menubar.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menubar.png" />
</imageobject>
<textobject>
<phrase>An image of the &gnum; menubar.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
To open a &gnum; menu, click on the name of the menu in the menu bar.
Once clicked, the menu will stay open.
If the mouse pointer is moved to the name of another menu on the
menubar, the first menu will close and the new menu open up. This is a useful way
to look in each menu to hunt for a commands. Menus can also be
opened through the keyboard.
Pressing and holding the <keycap>Alt</keycap> key causes
one of the letters in each menu name to be underlined.
Press-and-hold <keycap>Alt</keycap> and press the underlined letter
to open the associated menu.
Using the keyboard for menu activation or navigation causes
a letter of each menu or submenu item label to be underlined.
Press that letter key to activate the menu item.
Once a menu is open, the arrow keys can be used to move between
menus or select an entry in a particular menu.
To close an open menu, click over any other area of the application
or of the desktop or press the Escape key, <keysym>Esc</keysym>.
</para>
<para>
Many menu entries are followed by a series of key names. These
keys can be used to perform the menu action without having to
open the menu. These are often combinations of keys involving
the control key which is labeled as <keycap>Ctrl</keycap>, the
shift key which is labeled <keycap>Shift</keycap> and the
function keys which are labeled with an <keycap>F</keycap> and
then a number. For example, to quickly cut a selection
(accessible through the <guimenu>Edit</guimenu> menu), the user
can make a selection and then type the control key and the "x"
key at the same time.
</para>
</sect2>
<!-- ************************ FILE MENU *************************** -->
<sect2 id="File-Menu">
<title>File Menu</title>
<para>
The <guimenu>File</guimenu> menu is the most important menu in
&gnum; because it gives the user
the ability to interact with the computer operating system. This
menu allows the user to create files containing all the work
they have done. It also enables users to print the results of
their work. Finally, the <guimenu>File</guimenu> menu is the
best way to close &gnum;.
</para>
<figure id="menu-file-labelled.png">
<title>The <guimenu>File</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-file-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the File menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The menu choices are grouped into the following groups:
</para>
<para>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Workbook creation operations.
</term>
<listitem>
<para>These menu items perform operations on files. Each item is
presented below. File operations are critical and are therefore
discussed in their own section latter in this manual in <xref
linkend="chapter-files" />. </para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>New</guimenuitem> — Create a new
workbook. This opens a new workbook in a new
window. By default the workbook will be named "Book1"
or another number if there is already a worksheet with
that name open. Note that the opened file has not yet
been saved.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>New From Template</guimenuitem> — This
menu item brings up a submenu from which a template can be selected.
Rather than creating a new empty workbook, the template
specifies some standard content. The new workbook is opened in a new
window. The name named of the workbook is determined by the name
of the template. Note that the opened file has not yet
been saved.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Open</guimenuitem> — The
<guimenuitem>Open</guimenuitem> menu item opens the
file chooser dialog to allow the user to pick an
existing workbook for &gnum; to open. Files in many
different spreadsheet formats can be opened.
To open files in a non-spreadsheet format,
use the <guimenuitem>Data</guimenuitem> menu described in
<xref linkend="Data-Menu"/>. See <xref
linkend="sect-file-formats" /> for details. The
<guimenuitem>Open</guimenuitem> menu item creates a
new window containing the selected file. A more
extensive discussion is presented in <xref
linkend="sect-file-open" />.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
File creation operations.
</term>
<listitem>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Save</guimenuitem> — The
<guimenuitem>Save</guimenuitem> menu item saves the
current worksheet. If the file has been named and
saved before, this will silently save the file to the
current filename. If it has not been saved before,
this will act as if the <guimenuitem>Save
As...</guimenuitem> menu item had been called and
prompt the user for a filename.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Save As...</guimenuitem> — The
<guimenuitem>Save As...</guimenuitem> menu item allows
users to save a file which has not yet been named to a
named file. This is always used when a user saves a
file which &gnum; has named by default. This menu
item can also be used to save a newly created file or
to save an existing file to a new and different
name. To export data from &gnum; to a non-spreadsheet format,
use the <guimenuitem>Data</guimenuitem> menu described in
<xref linkend="Data-Menu"/>.
For an explanation of the file formats which
&gnum; supports see <xref linkend="sect-file-save"/>.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">3</emphasis>
Printing operations.
</term>
<listitem>
<para>
These menu items enable
&gnum; to print. Each item is
presented below and printing issues are discussed fully in
<xref linkend="chapter-printing" />.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Page Setup...</guimenuitem> — The
<guimenuitem>Page Setup...</guimenuitem> menu item
call the <guilabel>Page Setup</guilabel> dialog. This
dialog allows the user to set various printing options
such as paper type, margin sizes and running header
and footer formats. This dialog is explained in detail
in <xref linkend="sect-printing-setup" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Print Area</guimenuitem> — The
<guimenuitem>Print Area</guimenuitem> menu item
opens the submenu shown in <xref linkend="menu-file-printarea.png" />.
The items in this submenu allow the print area to be set,
shown or cleared; and manual page breaks to be set or cleared.
The print area of a sheet is that range
of the sheet that should be printed. Items outside of the
print area are usually omitted when printing. When printing
&gnum; will usually choose the appropriate page breaks. Manual
page breaks can be used to force &gnum; to insert a page break
prematurely.
</para>
<figure id="menu-file-printarea.png">
<title>The <guimenu>Print Area</guimenu> submenu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-file-printarea.png" />
</imageobject>
<textobject>
<phrase>An image of the Print Area submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
</listitem>
<listitem>
<para>
<guimenuitem>Print...</guimenuitem> — The
<guimenuitem>Print...</guimenuitem> menu item allows a
user to print one or all of the worksheets in a
workbook. &gnum; can send files directly to a
printer or can print to PostScript or portable
document format files. The <guilabel>Print</guilabel>
dialog is explained further in <xref
linkend="sect-printing" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Print Preview...</guimenuitem> — The
<guimenuitem>Print Preview...</guimenuitem> menu item
calls a dialog which presents the current workbook as
it would be printed with the current <guilabel>Page
Setup</guilabel> settings. The dialog also permits the
user to print. This dialog is explained in <xref
linkend="sect-printing-preview" />.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<!-- summary -->
<varlistentry>
<term>
<emphasis role="bold">4</emphasis>
Miscellaneous Operations.
</term>
<listitem>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Send To...</guimenuitem> — The
<guimenuitem>Send To...</guimenuitem> menu item call
the <guilabel>Send To</guilabel> dialog. This dialog
allows the user to send a &gnum; workbook as an
attachment to an email message. This dialog is
explained in detail in <xref
linkend="sect-files-email" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Document Properties...</guimenuitem> — The
<guimenuitem>Document Properties...</guimenuitem> menu item calls
the <guilabel>Document Properties</guilabel> dialog, a
dialog with several tabs that allow many document specific
settings to be adjusted. The dialog is described in detail in
<xref linkend="chapter-workbooks" />.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<!-- recent files -->
<varlistentry>
<term>
<emphasis role="bold">5</emphasis>
Recently used files.
</term>
<listitem>
<itemizedlist>
<listitem>
<para>
The first three menu entries in this section are shortcuts to
re-open recently used
files. The list will change dynamically as new workbooks
are opened and created. Clicking on a file name listed
here is the same as using the
<guimenuitem>Open</guimenuitem> menu entry and finding the
file in the <guilabel>Find File</guilabel> dialog. Note
that if the file has been moved since
&gnum; last saved it,
&gnum; will not find the
file. To access any recent file not listed, one can use the
<guimenuitem>Full History...</guimenuitem> menu item below.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Full History...</guimenuitem> — The
<guimenuitem>Full History...</guimenuitem> menu item opens a dialog
that shows all recently used files.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">6</emphasis>
The Close and Quit operations.
</term>
<listitem>
<para>
These menu items either close the current worksheet,
<guimenuitem>Close</guimenuitem>, or close all open
worksheets, <guimenuitem>Quit</guimenuitem>. &gnum; will
prompt the user with a <guilabel>Save
Workbook..</guilabel> dialog for any workbooks that have
been changed since the last time they were opened or
saved.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Close</guimenuitem> — The
<guimenuitem>Close</guimenuitem> menu item allows the
user to close the current workbook. If this is the only
workbook which this instance of
&gnum; has open, the close
operation will also quit
&gnum;. If other workbooks
are open, this workbook will close without affecting
the others. If the workbook has unsaved changes,
&gnum; will ask the user
if he wants to save the file.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Quit</guimenuitem> — The
<guimenuitem>Quit</guimenuitem> menu item will close
all the workbooks currently being used by
&gnum; and quit the
program. &gnum; will
prompt the user asking if he wants to save any
workbooks which has changes which have not been saved.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
</para>
</sect2>
<!-- ******************************** EDIT MENU ******************** -->
<sect2 id="Edit-Menu">
<title>Edit Menu</title>
<para>
The <guimenu>Edit</guimenu> menu is mostly used for operations
on a worksheet or between worksheets. This menu gives users
powerful editing operations such as the ability to undo recent
changes, the ability to cut and paste selections of cells and
the ability to search for specific cell contents.
</para>
<figure id="menu-edit-labelled.png">
<title>The <guimenu>Edit</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-edit-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Edit menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The menu choices are grouped into the following groups:
</para>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Change History.
</term>
<listitem>
<para>
These menu items allow the user to remove recent changes to
a worksheet or re-introduce changes which have been
undone. These options give the user control over recent
edits. This functionality is often called the "change
history" of an application. </para>
<para>
The type of edit has no importance. An edit which deletes
the contents of a cell is treated in the same way as an edit
which adds contents to a cell. The change history is session
specific. The user will not be able to undo changes through
the change history if the file is saved and then
re-opened. Note also that the list only covers the last few
dozen operations. The number of operations which &gnum;
tracks in its history depends on the size and complexity of
those operations. You can customize this number using the preference
facility described in <xref linkend="chapter-configuring" />.
There are a few unusual operations which
are not yet tracked in this way.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Undo</guimenuitem> — The
<guimenuitem>Undo</guimenuitem> menu item is used to
remove the last few edits from a workbook. The edits
must be undone in order. This menu item removes only the
last edit from the workbook. The user can also access
the undo list through one of the toolbar buttons and its
associated menu. With this menu, the user can undo
several operations at once. This is explained in section
<xref linkend="std-toolbar" />. </para> </listitem>
<listitem>
<para>
<guimenuitem>Redo</guimenuitem> — The
<guimenuitem>Redo</guimenuitem> menu item is used after
an undo operation to restore the change that was undone.
The menu item only restores the last undone
operation. Users can also restore edit using a button on
the standard toolbar and through the associated
menu. The menu allows several operations to be redone at
once. It is explained in <xref linkend="std-toolbar" />.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<!-- Cut, Copy, Paste, Paste Special... -->
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
Operations on selected areas.
</term>
<listitem>
<para>
These menu items enable selected cell contents to be moved
around a spreadsheet, moved between worksheets or between
workbooks. Selections are areas of the spreadsheet that have
been chosen, usually with the mouse, and are usually colored
pale blue. Selections are explained in greater detail in <xref
linkend="sect-data-selections" />.
&gnum; currently only allows
single range selections for these operations.
</para>
<para>
To use these menu items, the user must first select the range
of the cut or copy area. When the user then picks these
menu items, the contents of the selected areas will be
entered into the &gnum;
clipboard and into the X clipboard. The
contents of the &gnum;
clipboard can then be inserted into a new region of the
spreadsheet, into another worksheet or into a new
workbook. The X clipboard holds the space delimited results
of each cell: either the text or the result of any
calculation. The X clipboard can be pasted into any text
area.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Cut</guimenuitem> — The
<guimenuitem>Cut</guimenuitem> menu item is used to
remove a selection from the selected area of a currently
open workbook. When the menu item is chosen, the
selected area will be outlined with a moving dotted
line. This is the area which will be moved. The
selection will only be removed after it is moved to the
new location. Until then cut has not had an effect on
the worksheet.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Copy</guimenuitem> — The
<guimenuitem>Copy</guimenuitem> menu item allows a user
to duplicate a selection. The original data remains
where it was and the &gnum;
clipboard (and the X clipboard) has a copy which can be
inserted elsewhere.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Paste</guimenuitem> — The
<guimenuitem>Paste</guimenuitem> menu item is used to
paste the contents of a selection which has been cut or
copied. If the selection was cut, it is pasted into the
new location unchanged. Cell references will not change
in that they will still point to the same cells.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Paste Special...</guimenuitem> — The
<guimenuitem>Paste Special...</guimenuitem> is used to
paste a selection while altering certain
characteristics. The <guimenuitem>Paste
Special...</guimenuitem> menu item opens a dialog with
three categories. The defaults make <guimenuitem>Paste
Special...</guimenuitem> act as if it were the
<guimenuitem>Paste</guimenuitem> menu item.
</para>
<figure id="menu-edit-paste-special.png">
<title>The Paste Special Dialog</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-edit-paste-special.png" />
</imageobject>
<textobject>
<phrase>An image of the Paste Special Dialog.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The first set of choices allow the user to control the
data pasted.The user can chose to limit the pasting to
only the cell contents (no cell formatting is copied) or ---
the opposite --- only cell formats copied (no
contents). Furthermore, the user can insert the
selection while transforming all the contents into
values only. In this case, formulae will not be copied, only the
results will be.
</para>
<para>
A second set of choices allows the user to perform
simple mathematical transformations during the
paste. The data in the cells being pasted into are
modified by the cell contents. For instance, using the
divide operation will result in each cell in the zone
pasted into being divided by the equivalent cell which
was copied originally.
</para>
<para>
The third set of choices allow the transposition or flip of the
original selection. The
<guilabel>transpose</guilabel> choice will change the
selection by flipping it about the diagonal from top left to
bottom right. Similarly, <guilabel>flip horizontally</guilabel> and
<guilabel>flip vertically</guilabel> paste the selection accordingly.
</para>
<para>The <guilabel>skip
blanks</guilabel> check box prevents
&gnum; from taking any
action for the cells in the selection that are
blank. Normally &gnum; will modify formulae that use relative
addressing to cells outside the selection. The <guilabel>do not
change formulae</guilabel> checkbox suppresses this change. (Note that
references to cells within the selection are always preserved.)
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">3</emphasis>
Data entry and removal operations.
</term>
<listitem>
<para>These operations add or remove data from the worksheet. They
differ in the type of data modified or removed and the possible
re-arrangement of remaining data, as explained below. With one
exception noted below, these operations are like the previous group
in acting based on the selected cells.
</para>
<itemizedlist>
<listitem>
<!-- Do NOT introduce any whitespace AROUND the <anchor>. -->
<para><anchor id="edit-menu-clear-links"
xreflabel="Clear ▶ Formats & Hyperlinks"
/><guimenuitem>Clear</guimenuitem> opens a submenu
with eight choices, organized into two sets of four.
The first group affects all cells in the selection.
The second group applies the same actions to just the
selected cells that are in rows selected by the filter.
See <xref linkend="sect-data-filter" />
for details of setting up a filter.
</para>
<para>
Choose <guimenuitem>All</guimenuitem> to clear all
the elements of the cells in the selection: the formats and hyperlinks,
the comments, and the contents.
Choose <guimenuitem>Formats & Hyperlinks</guimenuitem>
to clear the formats and hyperlinks while leaving the data or
formula in the cell intact.
This removes any borders, re-sets the cell alignments, changes the
background colour to white and the text colour to black,
resets the number format to <guilabel>General</guilabel>, and removes
the hyperlink associated with each cell, if any.
Choose <guimenuitem>Comments</guimenuitem> to delete the
comments for the cells in the selection.
Choose <guimenuitem>Contents</guimenuitem> to leave the
cell's formatting in place but remove the formula or data
contents of the cell.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Delete</guimenuitem> opens a submenu
with five choices. They permit deleting a range of rows or
columns, deleting just the
selected cells, or deleting just the comments or hyperlinks
associated with the selected cells.
</para>
<para>
Choose <guimenuitem>Columns</guimenuitem> or
<guimenuitem>Rows</guimenuitem> to delete the columns or rows,
respectively, that cover the cells in the selection.
Selecting <guimenuitem>Rows</guimenuitem> when the selection
is one or more columns or <guimenuitem>Columns</guimenuitem>
when the selection is one or more rows deletes all cells in the
worksheet.
The space left by deleted rows is filled by moving lower rows up.
The space left by deleted columns is filled by moving to the
left columns which were right of the selection.
For example, if columns D and E are deleted,
&gnum; will move the contents of all columns from F onwards two
columns to the left.
</para>
<para>
<guimenuitem>Cells...</guimenuitem>: If the selection is one or more
columns or one or more rows, <guimenuitem>Cells...</guimenuitem>
deletes the selected columns or rows as described above.
If the selection is a block of cells, <guimenuitem>Cells...</guimenuitem>
opens a dialog asking how to fill in the deleted cells. Blocks of
cells can be filled in by the columns of cells below the block
selection or by the rows on the right of the block.
</para>
<figure id="menu-edit-delete-cells.png">
<title>The Delete Cells Dialog</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-edit-delete-cells.png" />
</imageobject>
<textobject>
<phrase>An image of the Delete Cells Dialog.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
For example, if the
block of cells from E6:G8 is deleted, those cells would be
filled in by the cells below E8, F8 and G8 if the <guilabel>Shift cells
up</guilabel> option were chosen. The cells to the right
of G6, G7 and G8 would fill in the space from the right if the
<guilabel>Shift cells left</guilabel> option were chosen. The
two <guilabel>Delete</guilabel> choices are the same as
<guimenuitem>Edit ▶ Delete ▶ Rows</guimenuitem> and
<guimenuitem>Edit ▶ Delete ▶ Columns</guimenuitem>.
</para>
<para>
<guimenuitem>Comments</guimenuitem>: This is the same as
<guimenuitem>Edit ▶ Clear ▶ Comments</guimenuitem>,
described above.
</para>
<para>
<guimenuitem>Hyperlinks</guimenuitem>: This is similar
to <guimenuitem>Edit ▶ Clear ▶ Formats &
Hyperlinks</guimenuitem>, as described above, except
that existing cell formats are not disturbed.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Modify</guimenuitem> opens a submenu with three choices:
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Comment...</guimenuitem> opens the
<guimenu>Edit Cell Comment</guimenu> dialog.
This is the same as the dialog for
<guimenuitem>Comment...</guimenuitem> on the
<xref linkend="Insert-Menu" />.
See <xref linkend="sect-data-comment" /> for more information.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hyperlink...</guimenuitem> opens the
<guimenu>Hyperlink</guimenu> dialog.
This is the same as the dialog for
<guimenuitem>Hyperlink...</guimenuitem> on the
<xref linkend="Insert-Menu" />.
See <xref linkend="sect-data-link" /> for more information.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Names...</guimenuitem> opens the
<guimenu>Define Names</guimenu> dialog.
<xref linkend="sect-data-names" />
explains names and describes the dialog.
</para>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">4</emphasis>
Search and replace operations.
</term>
<listitem>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Search...</guimenuitem> — The
<guimenuitem>Search...</guimenuitem> menu item opens a dialog
to search for cells with particular content. The dialog has
three tabs. In the first the user can enter the information
the user wants to find and some constraints on the search. The
second tab gives some extra choices for the search. When the
user has picked the options they prefer, pushing the search
button on the first tab will run the search. The third tab
will show which cells match the search.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Search & Replace...</guimenuitem> — The
<guimenuitem>Search & Replace..</guimenuitem> menu item
will launch a dialog to find cells with particular
characteristics and replace them all with a common content.
This dialog is similar to the <guilabel>Search</guilabel>
dialog.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">5</emphasis>
Other operations on worksheets.
</term>
<listitem>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Sheet</guimenuitem> — From the
<guimenuitem>Sheet</guimenuitem> submenu you can perform operations
on the worksheet as a whole. These functions are also available
from the worksheet tab context menu. You can create, duplicate,
rename, re-order, or delete worksheets. These functions are
described in detail in
<xref linkend="sect-worksheets-managing-process-contextmenu" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Select</guimenuitem> — The
<guimenuitem>Select</guimenuitem> menu item allows the user
to select various portions of the worksheet. When selected
it opens a submenu.
</para>
<figure id="menu-edit-select.png">
<title>The Select Submenu</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-edit-select.png" />
</imageobject>
<textobject>
<phrase>An image of the Select Submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<itemizedlist>
<listitem>
<para>The
<guimenuitem>All</guimenuitem> item provides a quick way to
select the entire worksheet.
</para>
</listitem>
<listitem>
<para>
The <guimenuitem>Row</guimenuitem> and <guimenuitem>Column
</guimenuitem>
items allow the user to select all the rows or columns
spanned by the current selection.
</para>
</listitem>
<listitem>
<para>
The <guimenuitem>Array</guimenuitem> menu item allows a
user to select all the cells which are part of the same array
as the current cell.
</para>
</listitem>
<listitem>
<para>
The <guimenuitem>Depends
</guimenuitem>
menu item selects all the cells which contain formula that
reference data in the current cell.
</para>
</listitem>
<listitem>
<para>
Similarly, the <guimenuitem>Inputs
</guimenuitem>
menu item selects all the cells whose data is referenced
by the formula in the current cell.
</para>
</listitem>
<listitem>
<para>
The <guimenuitem>Next Object
</guimenuitem>
menu item selects the next sheet object on the current sheet.
If no object is selected it will select the object locate at
the front.
</para>
</listitem>
<listitem>
<para>
The <guimenuitem>Go to Top</guimenuitem>,
<guimenuitem>Go to Bottom</guimenuitem>,
<guimenuitem>Go to the First</guimenuitem>,
<guimenuitem>Go to the Last</guimenuitem>,
menu items move the selection within a rectangular block of data cells.
the front.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Goto cell...</guimenuitem> — The
<guimenuitem>Goto cell...</guimenuitem> menu item opens up a
dialog which allows the user to type the name or address of
a cell in
the worksheet. The current view will then change to ensure
that the selected cell is in the current view and the
selection will cover that cell.
</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>
<guimenuitem>Recalculate</guimenuitem> — The
<guimenuitem>Recalculate</guimenuitem> menu item forces
the workbook to recalculate its results. This is useful
if a formula in the current worksheet depends on a cell in
a different workbook. &gnum; will not necessarily know
when that data has been updated so a user can force
&gnum; to recalculate all the cells in the current
workbook.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">6</emphasis>
General Configuration of
&gnum;.
</term>
<listitem>
<para>
<guimenuitem>Preferences...</guimenuitem> — The
<guimenuitem>Preference...</guimenuitem> menu item calls
the <guilabel>&gnum; Preferences</guilabel> dialog
explained in detail in <xref linkend="chapter-configuring" />
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<!-- *************************** View Menu *********** -->
<sect2 id="View-Menu">
<title>View Menu</title>
<para>
The <guimenu>View</guimenu> menu is
</para>
<figure id="menu-view-labelled.png">
<title>The <guimenu>View</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-view-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the View menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The menu choices are grouped into the following groups:
</para>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Alternative views of the current document.
</term>
<listitem>
<para>
These menu items allow the user to open multiple views of
the same document.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>New View...</guimenuitem> — The
<guimenuitem>New View...</guimenuitem> menu item opens
up a new window with the current workbook visible.
and where both windows are open to the same section of
the workbook. If the user starts editing a different
part of the sheet in one view, the other view moves
automatically to that portion of the
worksheet. Similarly, if the user changes to a
different worksheet in one view, the other view
changes also.
<!-- TODO: are views 'shared' or 'unshared'? To what extent? -->
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Freeze Panes</guimenuitem> — The
<guimenuitem>Freeze Panes</guimenuitem> menu item is
used to freeze the top-most and leftmost visible
portion of the worksheet. This is useful to be able to
line up portions of the worksheet which are not
usually together. For instance, if a user had a very
large table with the titles of each column of data on
row 12, the user could select row 13 and select this
menu item. If the user scrolled through each data
row, the data would line up underneath each header.
</para>
<para> There are 3 ways to determine which rows and/or
columns should be frozen.
</para>
<itemizedlist>
<listitem>
<para>
If the selection is at least partially visible and does
not include the cell
A1, &gnum; freezes the
portion of the worksheet above or to the left of the
current selection.
</para>
</listitem>
<listitem>
<para>
If the selection is at least partially visible,
includes cell A1, and does not consist
of whole rows or columns,
&gnum; freezes all rows or columns intersecting the
selection.
</para>
</listitem>
<listitem>
<para>
If the selection is at least partially visible,
includes cell A1, and consists
of whole rows or columns,
&gnum; freezes those rows or columns.
</para>
</listitem>
<listitem>
<para>If the
selection is not visible at all, then &gnum; freezes those
rows and columns to the left or above the sixth visible column
and tenth visible row.
</para>
</listitem>
</itemizedlist>
<para>In all cases, the region of the worksheet above or to the left
of the currently visible region will become inaccessible until the
view is unfrozen.
</para>
<!-- TODO: menu elements, freeze only row/col. -->
</listitem>
<listitem>
<para>
<guimenuitem>Windows</guimenuitem> — The
<guimenuitem>Windows</guimenuitem> menu item provides
access to a submenu which lists all of the windows
which are currently open. This provides an easy way to
jump between all the different instances and views of
&gnum; documents.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
Changes to the current view.
</term>
<listitem>
<para>
These menu items alter the display of the current view.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Toolbars</guimenuitem> — The
<guimenuitem>Toolbars</guimenuitem> menu item provides
a submenu which lists each &gnum; toolbar. The
toolbars in this submenu which have a check mark in
front of their name will be shown. The display status
of each toolbar can be changed by selecting the menu
item with that toolbar's name.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>View Statusbar</guimenuitem> — The
<guimenuitem>View Statusbar</guimenuitem> menu item
determines whether to display the status bar and
information area at the bottom of each
worksheets. Selecting the menu item toggles the check
mark in front. When this menu item has the checkmark,
&gnum; will display the statusbar.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Full Screen</guimenuitem> — The
<guimenuitem>Full Screen</guimenuitem> menu item
changes the display of &gnum; from a window based
display to a display which occupies the whole
screen. In full screen mode, the window borders will
not be displayed nor will the toolbars. The key
<keysym>F11</keysym> toggles between full screen and
regular display mode. When this menu item has the checkmark,
&gnum; is in <guimenuitem>Full Screen</guimenuitem> mode.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>View Properties...</guimenuitem> — The
<guimenuitem>View Properties...</guimenuitem> menu item opens the
<guimenuitem>View Properties</guimenuitem> dialog.
</para>
<figure id="menu-view-properties-dialog.png">
<title>The <guimenu>View Properties</guimenu> dialog</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-view-properties-dialog.png" />
</imageobject>
<textobject>
<phrase>An image of the View Properties dialog.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>The <guimenu>View Properties</guimenu> dialog has four tabs.
<guimenu>Auto Completion </guimenu>is described in
<xref linkend="sect-worksheets-settings" />,
<guimenu>Protection</guimenu> in
<xref linkend="sect-worksheets-settings-protection" />.
</para>
<figure id="menu-view-properties-dialog-cm.png">
<title>The <guimenu>View Properties</guimenu> dialog, <guimenu>Cell Markers</guimenu> tab</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-view-properties-dialog-cm.png" />
</imageobject>
<textobject>
<phrase>An image of the Cell Markers tab of the View Properties dialog.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>The check boxes on the <guimenu>Cell Markers</guimenu> tab shown in
<xref linkend="menu-view-properties-dialog-cm.png" /> determine
whether cells are shown with indicators that they contain formulae and/or
that they have clipped content.
</para>
<para>The check boxes on the <guimenu>Widget</guimenu> tab shown in
<xref linkend="menu-view-properties-dialog.png" /> determine
whether the notebook tabs, the horizontal scrollbar and/or
the vertical scrollbars are shown in this view.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">3</emphasis>
</term>
<listitem>
<para>
<guimenuitem>Zoom...</guimenuitem> opens a dialog where you can set
the magnification of one or more worksheets in the current workbook.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<!-- *********************************** INSERT MENU ********************* -->
<sect2 id="Insert-Menu">
<title>Insert Menu</title>
<para>
The <guimenu>Insert</guimenu> menu is
</para>
<figure id="menu-insert-labelled.png">
<title>The <guimenu>Insert</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-insert-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Insert menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The menu choices are grouped into the following groups:
</para>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Insert into workbook.
</term>
<listitem>
<para>
These menu items alter the cells available in a workbook.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Cells...</guimenuitem> — The
<guimenuitem>Cells...</guimenuitem> menu item opens a
dialog asking the user how the sheet should be altered
when new cells are inserted. The dialog lists four
choices. The user can choose one of these by clicking
the mouse pointer on one of the four dots. Only one
choice is possible and the currently selected choice
has a black dot in front.
</para>
<para>
The <guilabel>Shift cells right</guilabel> will insert
a region of new cells of the size of the current
selection. Cells which are on the same row as the
selection and within or to the right of the selection
will shift over to the right to accommodate the new
cells. The <guilabel>Shift cells down</guilabel> choice
will also insert a region of new cells the same size as
the current selection. With this choice, cells which
are in the selection or below the selection will move
down to accommodate the new cells. The two other
choices will act as if the user had chosen to insert
rows or columns. These actions are explained above.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Columns</guimenuitem> — The
<guimenuitem>Columns</guimenuitem> menu item will
insert columns to the left of the current
selection. The number of columns inserted will equal
the number of columns spanned by the current selection.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Rows</guimenuitem> — The
<guimenuitem>Rows</guimenuitem> menu item will insert
rows above the current selection. The number of rows
inserted will be equal to the number of rows spanned by
the current selection.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Sheet</guimenuitem> — The
<guimenuitem>Sheet</guimenuitem> menu item allows the
user to insert a worksheet immediately following the
current sheet.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<!-- TODO: add a separtor to insert menu. Sep. sheet obj. from cell content. -->
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
Insert an object into the worksheet or content into the current cell.
</term>
<listitem>
<para>
The menu items insert sheet objects into the worksheet or
insert content into the current cell.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Graph...</guimenuitem> — The
<guimenuitem>Graph...</guimenuitem> menu item will
allow a user to insert a graphic plot of data. This
menu item will launch the graph druid. Graphing in
&gnum; is explained in
<xref linkend="chapter-graphs" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Image...</guimenuitem> — The
<guimenuitem>Image...</guimenuitem> menu item will
allow a user to insert a graphic object containing the
image from an external file. The use of images in
&gnum; is explained in
<xref linkend="sect-graphics-images" />.
</para>
</listitem>
<!-- TODO: bonobo build where are insert obj/ins. shaped obj. ? -->
<!--
<listitem>
<para>
<guimenuitem>Object...</guimenuitem> — The
<guimenuitem>Object...</guimenuitem> menu item launches
a dialog with the objects which
&gnum; is currently able
to embed in a worksheet. The user simply picks one of
the objects in the list, and then inserts the object
into the worksheet. These objects are not part of
&gnum; but are provided by
other programs in the GNOME project.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Shaped Object...</guimenuitem> — The
<guimenuitem>Shaped Object...</guimenuitem> menu item
allows user to insert more complicated objects into a
worksheet. This is currently not used but will provide
more extended functionality for the future.
</para>
</listitem>
-->
<listitem>
<para>
<guimenuitem>Function</guimenuitem> — This menu item
opens a dialog to allow the user to enter a
mathematical formula into the cell. The function
dialog includes the names and a brief explanation of
all the available functions.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Function Wrapper</guimenuitem> —
Selecting an item from the submenu shown in <xref linkend="menu-insert-fw.png"/>
replaces every rectangular region in the current selection with an array function
in which the appropriate function is wrapped around an array version of the
current content. This can be used to create a self-sorting data region.
</para>
<figure id="menu-insert-fw.png">
<title>The <guimenu>Function Wrapper</guimenu> submenu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-insert-fw.png" />
</imageobject>
<textobject>
<phrase>An image of the Function Wrapper submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
</listitem>
<listitem>
<para>
<guimenuitem>Name...</guimenuitem> opens a dialog with a
list of all defined names that can be pasted into
the current cell.
The dialog is similar to the <guimenu>Define Names</guimenu> dialog
opened by choosing <guimenuitem>Modify ▶ Names...</guimenuitem>
from the <xref linkend="Edit-Menu" />.
See <xref linkend="sect-data-formulas-names" /> for details.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Comment...</guimenuitem> opens a dialog where
you can enter or edit a comment for the active cell.
The dialog is described in <xref linkend="sect-data-comment" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hyperlink...</guimenuitem> opens a dialog for entering the
location of a link. The dialog is described in <xref linkend="sect-data-link" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Special</guimenuitem> opens a submenu from which
you can insert predefined content into a cell.
You can insert the current date, the current time, or both.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<!-- ************************************FORMAT MENU ********************* -->
<sect2 id="Format-Menu">
<title>Format Menu</title>
<para>
The <guimenu>Format</guimenu> menu allows users to control the
formats of cells, columns, rows, worksheets and the
workbook. This menu also gives users access to templates of
standard formats.
</para>
<figure id="menu-format-labelled.png">
<title>The <guimenu>Format</guimenu> Menu and Its <guimenu>Cells</guimenu>
Submenu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-format-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Format menu and its Cells submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<!-- the list of format menu items -->
<variablelist>
<varlistentry>
<term><guimenu>The Format Menu</guimenu> offers these menuitems:</term>
<listitem>
<para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Cells</guimenuitem> — The
<guimenuitem>Cells...</guimenuitem> menu item opens a submenu
with choices to allows the user to modify the formatting of the
selected cells.
</para>
<para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Format...</guimenuitem> — The
<guimenuitem>Format...</guimenuitem> menu item opens the
cell format dialog. This dialog is used to set cell data
types and formats. It is explained in <xref
linkend="sect-data-format" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Conditional Formatting...</guimenuitem> — The
<guimenuitem>Conditional Formatting...</guimenuitem> menu item
opens the
conditional format dialog. This dialog is used to set cell data
types and formats that depend on values in the workbook.
It is explained in <xref
linkend="sect-data-format-conditional" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Merge</guimenuitem> —
This menu item combines the current selection into a single
large cell.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Unmerge</guimenuitem> —
This menu item divides a merged selection into the original
cells.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Auto Fit Height</guimenuitem> —
This menu item makes &gnum;
automatically choose the optimal row heights to display
all of the text in the current selection.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Auto Fit Width</guimenuitem> —
This menu item makes &gnum;
automatically choose the optimal column widths to display
all of the text in the current selection.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Column</guimenuitem> — The
<guimenuitem>Column</guimenuitem> menu item opens a submenu
with choices to allows the user to modify the view of the
selected columns.
</para>
<figure id="menu-format-column.png">
<title>The <guimenu>Column</guimenu> Submenu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-format-column.png" />
</imageobject>
<textobject>
<phrase>An image of the Column submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Width...</guimenuitem> — The
<guimenuitem>Width...</guimenuitem> menu item opens a
dialog to enable the user to adjust the size of the
columns which hold the current selection. The dialog has
a single entry box in which the user can change the
current size of the column in points.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Auto Fit Width</guimenuitem> —
This menu item makes &gnum;
automatically choose the optimal column size to display
all of the text in the current selection.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hide</guimenuitem> — The
<guimenuitem>Hide</guimenuitem> menu item will hide the
columns containing the current
selection. &gnum; still
holds these columns in memory and will save them to a
file but will not display those columns. The only
indication that a user has that columns have been hidden
is that the column header names are not sequential.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Unhide</guimenuitem> — This menu item
will show columns which are hidden if the selection spans
the two columns on either side of the selection. If
columns D, E, and F have been hidden, the selection must
span at least across columns C and G for this menu item
to unhide columns D, E, and F.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Standard Width</guimenuitem> — This
menu item allows the user to resize the columns which
hold the selection to the standard size. At 100 percent
zoom this is 48 points or 64 pixels.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Row</guimenuitem> — The
<guimenuitem>Row</guimenuitem>
menu item provides the same functions as the
<guimenuitem>Column</guimenuitem>
menu item but operates on rows.
<itemizedlist>
<listitem>
<para>
<guimenuitem>Height...</guimenuitem> — This menu item
opens a
dialog which allows the user to type in a row height in pixels.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Auto Fit Height</guimenuitem> — This menu
item
changes the rows which hold the selection to the optimal height
to hold the text in the selection.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hide</guimenuitem> — The
<guimenuitem>Hide</guimenuitem> menu item will hide the rows
in the selection. The workbook still contains the data in the
hidden rows but those rows are not shown.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Unhide</guimenuitem> — This menu item will
make
hidden rows visible. The selection must span the rows which are
hidden for this menu item to unhide the hidden rows.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Standard Height</guimenuitem> — This menu item
resizes the rows back to the default height of 12.75 points or
17 pixels (at 100 percent zoom).
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<!-- Do NOT introduce any whitespace AROUND the <anchor>. -->
<para><anchor id="format-menu-sheet"
xreflabel="Format ▶ Sheet"
/><guimenuitem>Sheet</guimenuitem> opens a submenu where you can change
properties of the current worksheet.
With the exception of <guimenuitem>Manage Sheets...</guimenuitem> and
<guimenuitem>Zoom...</guimenuitem>,
all operations on this submenu apply to just the current worksheet.
</para>
<figure id="menu-format-sheet.png">
<title><guimenu>Sheet</guimenu> Submenu</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-format-sheet.png" />
</imageobject>
<textobject>
<phrase>An image of the Sheet submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Sheet Management
</term>
<listitem>
<para>
These items are also on the worksheet tab context menu, accessed
by clicking
(usually with the right mouse button) on one of the
worksheet tabs.
</para>
<para>
<guimenuitem>Manage Sheets...</guimenuitem> opens a dialog from
which the names and many properties of all the sheets can be
managed. Properties that can be managed from this dialog include
locking, worksheet visibility, column display order (left to right
or right to left), sheet name, sheet order, and sheet tab appearance.
From this dialog you can also add new worksheets and duplicate
or remove existing worksheets.
For more information, see <xref linkend="sect-worksheets-managing-process-dialog" />.
</para>
<para>
<guimenuitem>Rename...</guimenuitem> opens the <guilabel>Rename
Sheet</guilabel> dialog. Edit the sheet name in the <guilabel>New
Name:</guilabel> field and press <keysym>Enter</keysym> or click
<guibutton>OK</guibutton> to change the worksheet name.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
Sheet Display Toggles
</term>
<listitem>
<para>The second section contains various toggles that control how
a worksheet is displayed.
If a toggle is enabled, a small check mark is displayed to the left
of the menu item.
</para>
<para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Display Formulas</guimenuitem> — When this property
is enabled, the worksheet will show the actual formulae for all cells
with formulae, instead of showing the calculated result.
You can use this property to quickly determine which cells contain data
and which contain formulae.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Use R1C1 Notation</guimenuitem> — When this property
is enabled, &gnum; uses R1C1-style notation to address cells,
rather than A1 notation.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hide Zeros</guimenuitem> — When this property
is enabled, &gnum; displays all cells which would display a zero
value as empty cells.
This can be used to more easily find cells with non-zero data in
sheets with many zero results.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hide Gridlines</guimenuitem> — When this property
is enabled, &gnum; does not draw the grid lines that ordinarily separate
cells.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hide Column Headers</guimenuitem> — When this property
is enabled, &gnum; does not display the column headers, which leaves room
in the cell grid for roughly one more row of cells of default height.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Hide Row Header</guimenuitem> — When this property
is enabled, &gnum; does not display the row headers, which leaves
slightly more room to display the contents of cells.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Direction</guimenuitem> — When this menu item
is selected, &gnum; switches between left-to-right sheets and
right-to-left sheets. If row headers are displayed, they are moved
to the right-hand side of the cell grid when the worksheet
is displayed right to left.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">3</emphasis>
Zoom...
</term>
<listitem>
<para>
<guimenuitem>Zoom...</guimenuitem> opens a dialog where you can set
the magnification of one or more worksheets in the current workbook.
</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
<listitem>
<para>
<guimenuitem>Autoformat...</guimenuitem> — This menu item
opens the autoformat dialog to give user access to a list
of format templates. Format templates are useful for users
who are often filling out tables in a particular
format. The user picks an area of the worksheet into which
they want to apply the template. Most templates define
headers and footers so the selection area must be big
enough to fit those template elements and the user's
data. The template will not affect data which has already
been input into a worksheet.
</para>
<para>
The dialog has two tabs: <guilabel>Preview</guilabel> and
<guilabel>Template Details</guilabel>. The details are
simply information about the template. The
<guilabel>Preview</guilabel> tab has three main options: a
<guilabel>Settings</guilabel> menu, an
<guilabel>Edit</guilabel> menu and a category chooser. The
settings menu allows a user to pick what parts of the
template they want to copy into the worksheet. The edit
menu will be used to create new templates. Currently
templates are written as text into an extensible markup
language (XML) format. The category chooser gives the user
access to different groups of templates. Templates in each
category are displayed in the middle area of the
dialog. Users select the template they want to use by
clicking on it. The currently selected template is
highlighted with a red boundary which may be hard to see.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<!-- ********************* TOOLS MENU ************ -->
<sect2 id="Tools-Menu">
<title>Tools Menu</title>
<para>The <guimenu>Tools</guimenu> menu is </para>
<figure id="menu-tools-labelled.png">
<title>The <guimenu>Tools</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-tools-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Tools menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>The menu choices are grouped into the following groups:</para>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Automatic tools
</term>
<listitem>
<para>These two tools allow the user to make
&gnum; automatically correct
typing or automatically save workbooks at periodic
intervals.</para>
<itemizedlist>
<listitem>
<para><guimenuitem>Auto Correct...</guimenuitem> —
The <guimenuitem>Auto Correct...</guimenuitem> menu
item opens a dialog which allows the user to configure
the way in which &gnum; automatically corrects text
which is being entered. The dialog presents the user
with three tabs. Each of these tabs allows the user to
correct one type of common spelling mistake, while
allowing the user to add exceptions to the
rules. &gnum; can
automatically capitalize the names of week
days. &gnum; can
automatically change an entry which starts with two
capital letters to only start with one and
&gnum; can change a
sentence entry to start with a capital letter.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Auto Save</guimenuitem> — The
<guimenuitem>Auto Save</guimenuitem> menu item opens
a dialog which allows the user to have
&gnum; automatically
save the current workbook after a fixed interval of
time. The user can also have
&gnum; ask for
confirmation before saving so that the user always
remains aware of the state the workbook was in when
it was saved.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<!-- TODO: Split lp and scenarios when the 2 chpt. are written. -->
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
Linear programming, scenario generation, simulation and statistical
analysis tools
</term>
<listitem>
<para>
&gnum; can be used to solve
systems of linear equations and other mathematical
problems. These two dialogs enable access to these
tools. A full discussion of these tools is presented in
<xref linkend="sect-advanced-analysis-solver" />.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Goal Seek</guimenuitem> — The
<guimenuitem>Goal Seek</guimenuitem> menu item opens a
dialog through which the user can configure
&gnum; to iteratively
search for a numeric value which solves a formula. This
dialog is explained in <xref
linkend="sect-advanced-analysis-goalseek" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Solver</guimenuitem> — The
<guimenuitem>Solver</guimenuitem> menu item opens a
dialog through which the user can configure
&gnum; to solve linear
systems of equations. This is explained in <xref
linkend="sect-advanced-analysis-solver" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Scenarios</guimenuitem> — The
<guimenuitem>Scenarios</guimenuitem> menu item displays
a submenu with two entries. The
<guimenuitem>View...</guimenuitem> menu item opens a
dialog in which the user can select previously defined
scenarios. The <guimenuitem>Add...</guimenuitem> menu
item opens a dialog in which the user can define the
contents of a new scenario.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Simulation</guimenuitem> — The
<guimenuitem>Simulation</guimenuitem> menu item opens a
multipaned dialog allowing the user to configure the
parameters for a simulation using linear modeling
constraints.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">3</emphasis>
The Plug-ins dialog.
</term>
<listitem>
<para>This entry launches the plug-in management
dialog. Plug-ins are programs which are separate from
&gnum; but provide useful
functionality. Some of the core parts of &gnum;, such as
Excel file format support, are actually plugins. This means
that a user who never uses Excel files can remove this
module from &gnum; and make
&gnum; use less memory.<!--
<xref linkend="Plugins" /> explains plug-ins in greater
detail.--></para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<!-- ********************* Statistics MENU ************ -->
<sect2 id="Statistics-Menu">
<title>Statistics Menu</title>
<para>The <guimenu>Statistics</guimenu> menu is </para>
<figure id="menu-statistics-labelled.png">
<title>The <guimenu>Statistics</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-statistics-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Statistics menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>The
<guimenuitem>Statistics</guimenuitem> menu and its submenus contain
all available statistical analysis tools. These tools
are explained in <xref linkend="chapter-stat-analysis" />.</para>
</sect2>
<!-- ******************* THE DATA MENU ************** -->
<sect2 id="Data-Menu">
<title>Data Menu</title>
<para>
The <guimenu>Data</guimenu> menu is
</para>
<figure id="menu-data-labelled.png">
<title>The <guimenu>Data</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-data-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Data menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The menu choices are grouped into the following groups:
</para>
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Data Field tools.
</term>
<listitem>
<para>
These menu items allow the user to re-organize data.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Sort...</guimenuitem> — The
<guimenuitem>Sort...</guimenuitem> menu item opens a
dialog which allows users to sort a selection
according to defined criteria. By default
&gnum; sorts the rows in
a selected area
depending on the contents of the cells in a particular
column of each row. The sort criteria can be extended
to calculate on the basis of the cells in several
columns. &gnum; can sort
a selection using any number of rules. Rules can be
added using the <guibutton>Add</guibutton>
button. Rules with no column entered will be ignored
or the user can remove these rules with the
<guibutton>Remove</guibutton> button.
</para>
<para>
For each rule, the dialog has an entry box in
which the column to be sorted must be entered. The
dropdown box (the little down pointing arrow) will
show a list of appropriate columns. The user can
determine a sort order for the selection. The
<guibutton>Advanced</guibutton> button allows the user
to further characterize the sort criteria..
</para>
<para> If the first row of the selection is a header,
&gnum; can be told not to
shuffle this row during the
sort. &gnum; can also
sort columns based on the contents of cells in
specified rows, instead of shuffling rows on the basis
of columns, if the user toggles the
<guilabel>Sort</guilabel> to act right-left instead of
top-down.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Shuffle...</guimenuitem> — The
<guimenuitem>Shuffle...</guimenuitem> menu item opens a
dialog that allows users to shuffle a selection. Shuffling
means to rearrange the cells in the selection into a random
order. The dialog allows users to shuffle the data within a
column, within a row, or within an area.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Fill</guimenuitem> — The
<guimenuitem>Fill</guimenuitem> menu item opens a
submenu that allows various forms of data to be created.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Filter</guimenuitem> — The
<guimenuitem>Filter</guimenuitem> menu item opens a
submenu with three entries: <guimenuitem>Add Auto
Filter</guimenuitem>, <guimenuitem>Show
All</guimenuitem>, and <guimenuitem>Advanced
Filter</guimenuitem> entry. Filters are explained in
<xref linkend="sect-data-filter" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Validate...</guimenuitem> — The
<guimenuitem>Validate...</guimenuitem> menu item opens
the cell format dialog to the validation
tab. Validation is a means of constraining the
contents of a cell either to have a certain value or
to fall within a certain range.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Consolidate...</guimenuitem> — The
<guimenuitem>Consolidate...</guimenuitem> menu item
opens a dialog box through which a user can create
derived information based on data in other worksheets.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Table...</guimenuitem> —
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Group and Outline</guimenuitem> — The
<guimenuitem>Group and Outline</guimenuitem> menu item
provides a submenu through which users can group rows
or columns into units which can be collapsed to be
hidden from view. These entries also allow users to
alter the display of the grouping handles on the
borders of the worksheet.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
Data Modifications or Import.
</term>
<listitem>
<para>
These entries allow user to convert data already in a worksheet or to
import external
data directly into a worksheet.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Text to Columns...</guimenuitem> — The
<guimenuitem>Text to Columns...</guimenuitem> menu item
opens a dialog box through which a user can create
derived information based on data in other worksheets.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Import Data</guimenuitem> — The
<guimenuitem>Import Data</guimenuitem> menu item
provides the following submenu:
</para>
<figure id="menu-data-import.png">
<title>The <guimenu>Import Data</guimenu> submenu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-data-import.png" />
</imageobject>
<textobject>
<phrase>An image of the Import Data submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The items in this submenu allow the user to import data
from various non-spreadsheet formats. To open files in a
spreadsheet format,
use the <guimenuitem>Open</guimenuitem> menu described in
<xref linkend="File-Menu"/>. See <xref
linkend="sect-file-formats" /> for details. These
submenu items create a
new window containing the selected file. A more
extensive discussion is presented in <xref
linkend="sect-file-open" />.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Export Data</guimenuitem> — The
<guimenuitem>Export Data</guimenuitem> menu item
provides the following submenu:
</para>
<figure id="menu-data-export.png">
<title>The <guimenu>Export Data</guimenu> submenu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-data-export.png" />
</imageobject>
<textobject>
<phrase>An image of the Export Data submenu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The items in this submenu allows users to export the current
file or sheet to a non-spreadsheet format. The
<guimenuitem>Repeat Export</guimenuitem> menu item repeats
the last
export in the current session or, if the file was recently
imported, exports the file to the original source.
To save data from &gnum; in a spreadsheet format,
use the <guimenuitem>Save As...</guimenuitem> menu described in
<xref linkend="File-Menu"/>.
For an explanation of the file formats which
&gnum; supports see <xref linkend="sect-file-save"/>.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<!-- *********************** HELP MENU *****************-->
<sect2 id="Help-Menu">
<title>Help Menu</title>
<para>
The <guimenu>Help</guimenu> menu is quite simple.
</para>
<figure id="menu-help-labelled.png">
<title>The <guimenu>Help</guimenu> menu.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-help-labelled.png" />
</imageobject>
<textobject>
<phrase>An image of the Help menu.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The <guimenu>Help</guimenu> menu connects users to this manual,
to the list of functions available for use in
&gnum; and to the list of people
who created this wonderful application.
</para>
<!-- TODO: Split help from bug report. -->
<!-- the help menu list -->
<variablelist>
<varlistentry>
<term>
<emphasis role="bold">1</emphasis>
Entries to find help and report a problem with &gnum;
</term>
<listitem>
<para>
These menu items allow the user to obtain help from
several sources or to report a problem with the program.
</para>
<itemizedlist>
<listitem>
<para>
<guimenuitem>Contents</guimenuitem> — This menu
entry allows the user to launch the local help system
and display this manual.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>&gnum; on the Web</guimenuitem> —
This menu entry allows the user to launch a web
browser and explore the web site dedicated to &gnum;
on the server used by the GNOME project.
</para>
</listitem>
<listitem>
<para>
<guimenuitem>Live Assistance</guimenuitem> —
This menu entry allows the user to launch an Internet
Relay Chat (IRC) client to join the GIMPnet network
and the #&gnum; channel. This channel is used by the
&gnum; developers. There is generally someone around
who will, after a few minutes, notice a nice question
and attempt to answer it.
</para>
<warning>
<para>
Live assistance is provided on a purely voluntary
basis. There are no guarantees that your question
will be answered or that the answer will be
correct. We generally try our best to answer
questions when they are asked politely and when the
user shows that they have at least looked in the
User Manual for an answer.
</para>
</warning>
</listitem>
<listitem>
<para>
<guimenuitem>Report a Problem</guimenuitem> —
This menu entry allows the user to launch a web
browser and open the page on GNOME's GitLab issue/
bug entry system for the &gnum; program. This page
includes instructions on submitting reports of
problems. The first time a user reports a problem,
they will be asked to login to the system.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<emphasis role="bold">2</emphasis>
The <interface>About &gnum;</interface> dialog.
</term>
<listitem>
<para>
<guimenuitem>About</guimenuitem> —Shows basic
information about &gnum;, such
as the authors' names and the application version number.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
<!-- *********************** CONTEXT MENUS *****************-->
<sect1 id="context-menu">
<title>Context Menus</title>
<!-- TODO: add info area context menu. -->
<!-- TODO: add text entry context menu. -->
<para>Context menus are menus which open up under the mouse pointer and are
therefore detached from the format graphical structure
of the application. These menus provide an extra and convenient way to access
&gnum; commands. All of the commands in context menus are available
through the regular menu system. Context menus provide different commands
depending on the position of the pointer.</para>
<para>To activate a context menu, a user simply positions the pointer over
the appropriate area and clicks one of the buttons on their mouse. Since this
button is configurable and users have mice with different buttons, it may be a
different button on any given machine or may even require the combination of a
keyboard key and a mouse buttons. The user will have to find how to do this
themselves.</para>
<para>
Currently &gnum; provides five different context menus. The
context menu that is called in the central grid area is discussed
next in <xref linkend="menu-context-grid" />. The Context menu
that appears when the pointer is over the row headers or column
headers is presented in <xref
linkend="menu-context-col-row-header" />. Another context menu
relates to the worksheet tabs and is explained in <xref
linkend="menu-context-tabs" />. Yet another context menu applies
to embedded objects or shaped components such as a plot. These are
shown in <xref linkend="menu-context-object" />.
</para>
<sect2 id="menu-context-grid">
<title>The Context Menu for the Cell Grid Area</title>
<para>
The context menu in the cell grid area appears when the pointer
is over the cell grid area. This menu applies to the cells that
have been selected, not necessarily the cell underneath the
mouse pointer.
</para>
<figure id="menu-context-grid.png">
<title>The Context Menu for the Cell Grid Area.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-grid.png" />
</imageobject>
<textobject>
<phrase>An image of the context menu in the cell grid area.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The grid context menu merely provides an extra way to access &gnum;
commands. The <guimenuitem>Cut</guimenuitem>, <guimenuitem>Copy</guimenuitem>,
<guimenuitem>Paste</guimenuitem>, <guimenuitem>Paste Special</guimenuitem>,
<guimenuitem>Delete Cells...</guimenuitem>,
<guimenuitem>Clear Contents</guimenuitem>,
<guimenuitem>Remove Comment</guimenuitem>, <guimenuitem>Edit Hyperlink</guimenuitem>,
and <guimenuitem>Remove Link</guimenuitem>
commands are taken from the <guimenu>Edit</guimenu> menu and its submenus and are
explained in <xref linkend="Edit-Menu" />. The
<guimenuitem>Insert Cells...</guimenuitem> and <guimenuitem>Add Comment</guimenuitem>
menu items are explained in the section on the <guimenu>Insert</guimenu> menu
in <xref linkend="Insert-Menu" />. The <guimenuitem>Format Cells...</guimenuitem>,
<guimenuitem>Conditional Formatting...</guimenuitem> items as well as the items
on the
<guimenu>Cell</guimenu>, <guimenu>Column</guimenu>, and <guimenu>Row</guimenu>
submenus are explained in the manual section on the <guimenu>Format</guimenu> menu
in <xref linkend="Format-Menu" />.
</para>
</sect2>
<sect2 id="menu-context-col-row-header">
<title>The Context Menu for Column and Row Headers</title>
<para>The Context Menu for Column and Row Headers</para>
<figure id="menu-context-col-row-header.png">
<title>The Context Menu of a Row Header</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-col-row-header.png" />
</imageobject>
<textobject>
<phrase>An image of the context menu on a row header.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>The context menu which relates to column or row headers is similar to
the context menu for the grid area. Both insert and delete operations are
modified to operate explicitly on rows or on columns.
</para>
</sect2>
<sect2 id="menu-context-tabs">
<title>Context Menu for Worksheet Tabs</title>
<para>
The context menu for worksheet tabs provides access to functions
that manipulate worksheets as a whole, rather than their contents.
</para>
<figure id="menu-context-tabs.png">
<title>The Context Menu for Worksheet Tabs</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-sheet-tabs.png" />
</imageobject>
<textobject>
<phrase>An image of the context menu of the worksheet tabs.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The context menu for the worksheet tabs provides the same functions as the
<guimenuitem>Sheet</guimenuitem> submenu of the <guimenu>Edit</guimenu>
menu. These functions are explained in
<xref linkend="sect-worksheets-managing-process-contextmenu" />.
There are also two submenus where you can select one of the
existing sheets, whether its tab is currently visible or not.
The first submenu lists the sheets in their current order,
the second submenu lists them alphabetically.
</para>
</sect2>
<sect2 id="menu-context-object">
<title>The Context Menu for Embedded Objects and Components</title>
<para>
The Context Menu for Embedded Objects and Components.
</para>
<figure id="menu-context-object.png">
<title>The Context Menu for Graphical Objects</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-object.png" />
</imageobject>
<textobject>
<phrase>An image of the context menu on embedded objects.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
All embedded objects, such as drawing elements, graphs and
images, have a context menu which can be invoked by placing the
mouse pointer over the element and clicking with one of the
secondary mouse buttons.
</para>
<para>
The first menu entry, labeled
<guimenuitem>Properties</guimenuitem>, will open a dialog
specific to the type of element selected in which the user can
configure the properties of the element.
</para>
<para>
The menu entry labeled
<guimenuitem>Size & Position</guimenuitem>, will open a dialog
that permits the user to adjust the size and position of the embedded object.
</para>
<para>
The menu entry labeled
<guimenuitem>Snap to Grid</guimenuitem>, enlarges the object such that all of
its corners are located at cell corners.
</para>
<para>
The menu entry labeled <guimenuitem>Order</guimenuitem>,
opens a submenu which allows the user to change the visual order
in which the graphical elements are placed. This order will
affect the way in which the graphical elements obscure each other.
</para>
<figure id="menu-context-object-order.png">
<title>The Context Submenu for Graphical Object Order</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-object-order.png" />
</imageobject>
<textobject>
<phrase>An image of the context submenu allowing the
re-ordering of graphical objects.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The menu entries labeled <guimenuitem>Cut</guimenuitem>,
<guimenuitem>Copy</guimenuitem>, and
<guimenuitem>Delete</guimenuitem>, allow the user to operate on
the whole object at once. The <guimenuitem>Cut</guimenuitem>
menu item allows the user to remove the element from its current
position and then paste the object in a different location on
the same sheet, in a different worksheet, in a different
&gnum; file, or in a file from a different program entirely. The
<guimenuitem>Copy</guimenuitem> menu item provides the same
functionality while leaving the original item in place. The
<guimenuitem>Delete</guimenuitem> allows the user to remove the
graphical element entirely.
</para>
<para>
The remaining menu item, <guimenuitem>Print</guimenuitem>, allows just the
selected object to be printed.
</para>
<para>
For certain types of objects, a menu entry labeled <guimenuitem>Save
As Image...</guimenuitem>
allows the object to be saved as an image file. This menu item
is not present in <xref linkend="menu-context-object.png"/> but is shown in
<xref linkend="menu-context-graph.png"/> .
</para>
<figure id="menu-context-graph.png">
<title>The Context Menu for Graphs and Images</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-graph.png" />
</imageobject>
<textobject>
<phrase>An image of the context menu for graphs and images.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
Graphs have a context menu that also contains menu entries labeled <guimenuitem>Open in
New Window</guimenuitem> and <guimenuitem>Copy to New Graph Sheet</guimenuitem>.
The <guimenuitem>Open in New Window</guimenuitem> menu item shows the graph by
itself in a window. The <guimenuitem>Copy to New Graph Sheet</guimenuitem> copies
the graph to a special sheet in the current workbook that contains only a single graph.
</para>
</sect2>
<sect2 id="menu-context-toolbars">
<title>The Context Menu for Toolbars</title>
<para>The Context Menu for Toolbars</para>
<figure id="menu-context-toolbars.png">
<title>The Context Menu for Toolbars.</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/menu-context-toolbars.png" />
</imageobject>
<textobject>
<phrase>An image of the context menu on the toolbars.</phrase>
</textobject>
</mediaobject>
</screenshot>
</figure>
<para>
The context menu for toolbars allows the user to configure toolbars.
Each toolbar can be displayed above the sheets, to the left of the sheets,
or to the right of the sheets. The context menu can also be used to hide a
toolbar. The toolbar can be made visible again via the
<guimenuitem>Toolbars</guimenuitem> submenu of the <guimenu>View</guimenu>
menu. See <xref linkend="View-Menu"/>.
</para>
</sect2>
</sect1>
|