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 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193
|
;;; printing.el --- printing utilities -*- lexical-binding:t -*-
;; Copyright (C) 2000-2025 Free Software Foundation, Inc.
;; Author: Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>
;; Keywords: text, print, PostScript
;; Old-Version: 6.9.3
;; URL: https://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Introduction
;; ------------
;;
;; With `printing' you can preview or print a PostScript file. You can also
;; print a text file using PostScript, and preview or print buffers that use
;; certain special modes like mh-folder-mode, rmail-summary-mode,
;; gnus-summary-mode, etc. This package also includes a PostScript/text
;; printer database.
;;
;; There are two user interfaces:
;;
;; * Menu interface:
;; The `printing' menu replaces the usual print options in the menu bar.
;; This is the default user interface.
;;
;; * Buffer interface:
;; You can use a buffer interface instead of menus. It looks like a
;; customization buffer. Basically, it has the same options found in the
;; menu and some extra options, all this on a buffer.
;;
;; `printing' is prepared to run on GNU, Unix and NT systems.
;; On GNU or Unix system, `printing' depends on gs and gv utilities.
;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe).
;; To obtain ghostscript, ghostview and GSview see the URL
;; `https://www.gnu.org/software/ghostscript/ghostscript.html'.
;;
;; `printing' depends on ps-print package to generate PostScript files, to
;; spool and to despool PostScript buffer. So, `printing' provides an
;; interface to ps-print package and it also provides some extra stuff.
;;
;; `printing' was inspired by:
;;
;; print-nt.el Frederic Corne <frederic.corne@erli.fr>
;; Special printing functions for Windows NT
;;
;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu>
;; PS-print for mail messages
;;
;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com>
;; PostScript printing with ghostscript
;;
;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de>
;; Graphical front end for ps-print and previewing
;;
;;
;; Log Messages
;; ------------
;;
;; The buffer *Printing Command Output* is where the `printing' log messages
;; are inserted. All program called by `printing' has a log entry in the
;; buffer *Printing Command Output*. A log entry has the following form:
;;
;; PROGRAM (ARG...)
;; MESSAGE
;; Exit status: CODE
;;
;; Where
;; PROGRAM is the program activated by `printing',
;; ARG is an argument passed to PROGRAM (it can have more than one argument),
;; MESSAGE is an error message returned by PROGRAM (it can have no message, if
;; PROGRAM is successful),
;; and CODE is a numeric exit status or a signal description string.
;;
;; For example, after previewing a PostScript file, *Printing Command Output*
;; will have the following entry:
;;
;; /usr/bin/gv ("/home/user/example/file.ps")
;; Exit status: 0
;;
;; In the example above, the previewing was successful. If during previewing,
;; you quit gv execution (by typing C-g during Emacs session), the log entry
;; would be:
;;
;; /usr/bin/gv ("/home/user/example/file.ps")
;; Exit status: Quit
;;
;; So, if something goes wrong, a good place to take a look is the buffer
;; *Printing Command Output*. Don't forget to see also the buffer *Messages*,
;; it can help.
;;
;;
;; Novices (First Users)
;; ---------------------
;;
;; First of all, see printing documentation only to get an idea of what
;; `printing' is capable.
;;
;; Then try to set the variables: `pr-ps-name', `pr-ps-printer-alist',
;; `pr-txt-name', `pr-txt-printer-alist' and `pr-path-alist'. These variables
;; are the main variables for printing processing.
;;
;; Now, please, see these variables documentation deeper. You can do this by
;; typing C-h v pr-ps-name RET (for example) if you already loaded printing
;; package, or by browsing printing.el source file.
;;
;; If the documentation isn't clear or if you find a way to improve the
;; documentation, please, send an email to maintainer. All printing users
;; will thank you.
;;
;; One way to set variables is by calling `pr-customize', customize all
;; variables and save the customization by future sessions (see Options
;; section). Other way is by adding code to your init file; see below
;; for a first setting template that it should be inserted on your
;; init file:
;;
;; * Example of setting for Windows system:
;;
;; (require 'printing) ; load printing package
;; (setq pr-path-alist
;; '((windows "c:/applications/executables" PATH ghostview mpage)
;; (ghostview "c:/gs/gsview-dir")
;; (mpage "c:/mpage-dir")
;; ))
;; (setq pr-txt-name 'prt_06a)
;; (setq pr-txt-printer-alist
;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
;; (PRN "" nil "PRN")
;; (standard "redpr.exe" nil "")
;; ))
;; (setq pr-ps-name 'lps_06b)
;; (setq pr-ps-printer-alist
;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
;; (LPT1 "" nil "" "LPT1:")
;; (PRN "" nil "" "PRN")
;; (standard "redpr.exe" nil "" "")
;; ))
;; (pr-update-menus t) ; update now printer and utility menus
;;
;; * Example of setting for GNU or Unix system:
;;
;; (require 'printing) ; load printing package
;; (setq pr-path-alist
;; '((unix "." "~/bin" ghostview mpage PATH)
;; (ghostview "$HOME/bin/gsview-dir")
;; (mpage "$HOME/bin/mpage-dir")
;; ))
;; (setq pr-txt-name 'prt_06a)
;; (setq pr-txt-printer-alist
;; '((prt_06a "lpr" nil "prt_06a")
;; (prt_07c nil nil "prt_07c")
;; ))
;; (setq pr-ps-name 'lps_06b)
;; (setq pr-ps-printer-alist
;; '((lps_06b "lpr" nil "-P" "lps_06b")
;; (lps_07c "lpr" nil nil "lps_07c")
;; (lps_08c nil nil nil "lps_08c")
;; ))
;; (pr-update-menus t) ; update now printer and utility menus
;;
;;
;; NOTE 1: Don't forget to download and install ghostscript utilities (see
;; Utilities section).
;;
;; NOTE 2: The `printer-name' and `ps-printer-name' variables don't need to be
;; set, as they are implicit set by `pr-ps-printer-alist' and
;; `pr-txt-printer-alist'.
;;
;; NOTE 3: The duplex feature will only work on PostScript printers that
;; support this feature.
;; You can check if your PostScript printer supports duplex feature
;; by checking the printer manual. Or you can try these steps:
;; 1. Open a buffer (or use the *scratch* buffer).
;; 2. Type:
;; First line (on first page)
;; ^L
;; Second line (on second page)
;; 3. Print this buffer with duplex turned on.
;; If it's printed 2 (two) sheets of paper, then your PostScript
;; printer doesn't have duplex feature; otherwise, it's ok, your
;; printer does have duplex feature.
;;
;; NOTE 4: See Tips section.
;;
;;
;; Tips
;; ----
;;
;; 1. If you have a local printer, that is, a printer which is connected
;; directly to your computer, don't forget to connect the printer to your
;; computer before printing.
;;
;; 2. If you try to print a file and it seems that the file was printed, but
;; there is no paper in the printer, then try to set `pr-delete-temp-file'
;; to nil. Probably `printing' is deleting the temporary file before your
;; local system can get it to send to the printer.
;;
;; 3. Don't try to print a dynamic buffer, that is, a buffer which is
;; modifying while `printing' tries to print. Eventually you got an error
;; message. Instead, save the dynamic buffer to a file or copy it in
;; another buffer and, then, print the file or the new static buffer.
;; An example of dynamic buffer is the *Messages* buffer.
;;
;; 4. When running Emacs on Windows (with or without cygwin), check if your
;; printer is a text printer or not by typing in a DOS window:
;;
;; print /D:\\host\printer somefile.txt
;;
;; Where, `host' is the machine where the printer is directly connected,
;; `printer' is the printer name and `somefile.txt' is a text file.
;;
;; If the printer `\\host\printer' doesn't print the content of
;; `somefile.txt' or, instead, it returns the following message:
;;
;; PostScript Error Handler
;; Offending Command = CCC
;; Stack =
;;
;; Where `CCC' is whatever is at the beginning of the text to be printed.
;;
;; Therefore, the printer `\\host\printer' is not a text printer, but a
;; PostScript printer. So, please, don't include this printer in
;; `pr-txt-printer-alist' (which see).
;;
;; 5. You can use gsprint instead of ghostscript to print monochrome PostScript
;; files in Windows. The gsprint utility documentation says that it is more
;; efficient than ghostscript to print monochrome PostScript.
;;
;; To print non-monochrome PostScript file, the efficiency of ghostscript
;; is similar to gsprint.
;;
;; Also the gsprint utility comes together with gsview distribution.
;;
;; For more information about gsprint see
;; `https://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
;;
;; As an example of gsprint declaration:
;;
;; (setq pr-ps-printer-alist
;; '((A "gsprint" ("-all" "-twoup") "-printer " "my-b/w-printer-name")
;; (B "gsprint" ("-all" "-twoup") nil "-printer my-b/w-printer-name")
;; ;; some other printer declaration
;; ))
;;
;; The example above declares that printer A prints all pages (-all) and two
;; pages per sheet (-twoup). The printer B declaration does the same as the
;; printer A declaration, the only difference is the printer name selection.
;;
;; There are other command line options like:
;;
;; -mono Render in monochrome as 1bit/pixel (only black and white).
;; -grey Render in greyscale as 8bits/pixel.
;; -color Render in color as 24bits/pixel.
;;
;; The default is `-mono'. So, printer A and B in the example above are
;; using implicitly the `-mono' option. Note that in `-mono' no gray tone
;; or color is printed, this includes the zebra stripes, that is, in `-mono'
;; the zebra stripes are not printed.
;;
;; See also documentation for `pr-ps-printer-alist'.
;;
;;
;; Using `printing'
;; ----------------
;;
;; To use `printing' insert in your init file:
;;
;; (require 'printing)
;; ;; ...some user settings...
;; (pr-update-menus t)
;;
;; During `pr-update-menus' evaluation:
;; * On Emacs 20:
;; it replaces the Tools/Print menu by Tools/Printing menu.
;; * On Emacs 21:
;; it replaces the File/Print* menu entries by File/Print menu.
;; Please, see section Menu Layout below for menu explanation.
;;
;; To use `printing' utilities you can use the Printing menu options, type M-x
;; followed by one of the commands below, or type a key associated with the
;; command you want (if there is a key binding).
;;
;; `printing' has the following commands:
;;
;; pr-interface
;; pr-ps-directory-preview
;; pr-ps-directory-using-ghostscript
;; pr-ps-directory-print
;; pr-ps-directory-ps-print
;; pr-ps-buffer-preview
;; pr-ps-buffer-using-ghostscript
;; pr-ps-buffer-print
;; pr-ps-buffer-ps-print
;; pr-ps-region-preview
;; pr-ps-region-using-ghostscript
;; pr-ps-region-print
;; pr-ps-region-ps-print
;; pr-ps-mode-preview
;; pr-ps-mode-using-ghostscript
;; pr-ps-mode-print
;; pr-ps-mode-ps-print
;; pr-ps-file-preview
;; pr-ps-file-up-preview
;; pr-ps-file-using-ghostscript
;; pr-ps-file-print
;; pr-ps-file-ps-print
;; pr-ps-file-up-ps-print
;; pr-ps-fast-fire
;; pr-despool-preview
;; pr-despool-using-ghostscript
;; pr-despool-print
;; pr-despool-ps-print
;; pr-printify-directory
;; pr-printify-buffer
;; pr-printify-region
;; pr-txt-directory
;; pr-txt-buffer
;; pr-txt-region
;; pr-txt-mode
;; pr-txt-fast-fire
;; pr-toggle-file-duplex
;; pr-toggle-file-tumble
;; pr-toggle-file-landscape
;; pr-toggle-ghostscript
;; pr-toggle-faces
;; pr-toggle-spool
;; pr-toggle-duplex
;; pr-toggle-tumble
;; pr-toggle-landscape
;; pr-toggle-upside-down
;; pr-toggle-line
;; pr-toggle-zebra
;; pr-toggle-header
;; pr-toggle-lock
;; pr-toggle-region
;; pr-toggle-mode
;; pr-customize
;; lpr-customize
;; pr-help
;; pr-ps-name
;; pr-txt-name
;; pr-ps-utility
;; pr-show-ps-setup
;; pr-show-pr-setup
;; pr-show-lpr-setup
;;
;; The general meanings of above commands are:
;;
;; PREFIX:
;; `pr-interface' buffer interface for printing package.
;; `pr-help' help for printing package.
;; `pr-ps-name' interactively select a PostScript printer.
;; `pr-txt-name' interactively select a text printer.
;; `pr-ps-utility' interactively select a PostScript utility.
;; `pr-show-*-setup' show current settings.
;; `pr-ps-*' deal with PostScript code generation.
;; `pr-txt-*' deal with text generation.
;; `pr-toggle-*' toggle on/off some boolean variable.
;; `pr-despool-*' despool the PostScript spooling buffer.
;; `pr-printify-*' replace nonprintable ASCII by printable ASCII
;; representation.
;;
;; SUFFIX:
;; `*-customize' customization.
;; `*-preview' preview a PostScript file.
;; `*-using-ghostscript' use ghostscript to print.
;; `*-fast-fire' fast fire command (see it for documentation).
;; `*-print' send PostScript directly to printer.
;; `*-ps-print' send PostScript directly to printer or use
;; ghostscript to print. It depends on
;; `pr-print-using-ghostscript' option.
;;
;; INFIX/SUFFIX:
;; `*-directory*' process a directory.
;; `*-buffer*' process a buffer.
;; `*-region*' process a region.
;; `*-mode*' process a major mode (see explanation below).
;; `*-file-*' process a PostScript file.
;; `*-file-up-*' process a PostScript file using a filter utility.
;;
;; Here are some examples:
;;
;; `pr-ps-buffer-using-ghostscript'
;; Use ghostscript to print a buffer.
;;
;; `pr-ps-file-print'
;; Print a PostScript file.
;;
;; `pr-toggle-spool'
;; Toggle spooling buffer.
;;
;; So you can preview through ghostview, use ghostscript to print (if you don't
;; have a PostScript printer) or send directly to printer a PostScript code
;; generated by `ps-print' package.
;;
;; Besides operating one buffer or region each time, you also can postpone
;; previewing or printing by saving the PostScript code generated in a
;; temporary Emacs buffer. This way you can save banner pages between
;; successive printing. You can toggle on/off spooling by invoking
;; `pr-toggle-spool' interactively or through menu bar.
;;
;; If you type, for example:
;;
;; C-u M-x pr-ps-buffer-print RET
;;
;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and
;; a file name, and save the PostScript code generated to the file name instead
;; of sending to printer.
;;
;; This behavior is similar with the commands that deal with PostScript code
;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If
;; spooling is on, only `pr-despool-*' commands prompt for a file name and save
;; the PostScript code spooled in this file.
;;
;; Besides the behavior described above, the `*-directory*' commands also
;; prompt for a directory and a file name regexp. So, it's possible to process
;; all or certain files on a directory at once (see also documentation for
;; `pr-list-directory').
;;
;; `printing' has also a special way to handle some major mode through
;; `*-mode*' commands. So it's possible to customize a major mode printing,
;; it's only needed to declare the customization in `pr-mode-alist' (see
;; section Options) and invoke some of `*-mode*' commands. An example for
;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and
;; you're in the *Summary* buffer, if you forget to switch to the *Article*
;; buffer before printing, you'll get a nicely formatted list of article
;; subjects shows up at the printer. With major mode printing you don't need
;; to switch from gnus *Summary* buffer first.
;;
;; Current global keyboard mapping is:
;;
;; (global-set-key [print] 'pr-ps-fast-fire)
;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
;; (global-set-key [S-print] 'pr-ps-mode-using-ghostscript)
;; (global-set-key [C-print] 'pr-txt-fast-fire)
;; (global-set-key [C-M-print] 'pr-txt-fast-fire)
;;
;; As a suggestion of global keyboard mapping for some `printing' commands:
;;
;; (global-set-key "\C-ci" 'pr-interface)
;; (global-set-key "\C-cbp" 'pr-ps-buffer-print)
;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
;; (global-set-key "\C-crp" 'pr-ps-region-print)
;; (global-set-key "\C-crx" 'pr-ps-region-preview)
;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
;;
;;
;; Options
;; -------
;;
;; Below it's shown a brief description of `printing' options, please, see the
;; options declaration in the code for a long documentation.
;;
;; `pr-filename-style' Specify which filename style to use for external
;; commands.
;;
;; `pr-path-alist' Specify an alist for command paths.
;;
;; `pr-txt-name' Specify a printer for printing a text file.
;;
;; `pr-txt-printer-alist' Specify an alist of all text printers.
;;
;; `pr-ps-name' Specify a printer for printing a PostScript
;; file.
;;
;; `pr-ps-printer-alist' Specify an alist for all PostScript printers.
;;
;; `pr-temp-dir' Specify a directory for temporary files during
;; printing.
;;
;; `pr-ps-temp-file' Specify PostScript temporary file name prefix.
;;
;; `pr-file-modes' Specify the file permission bits for newly
;; created files.
;;
;; `pr-gv-command' Specify path and name of the gsview/gv
;; utility.
;;
;; `pr-gs-command' Specify path and name of the ghostscript
;; utility.
;;
;; `pr-gs-switches' Specify ghostscript switches.
;;
;; `pr-gs-device' Specify ghostscript device switch value.
;;
;; `pr-gs-resolution' Specify ghostscript resolution switch value.
;;
;; `pr-print-using-ghostscript' Non-nil means print using ghostscript.
;;
;; `pr-faces-p' Non-nil means print with face attributes.
;;
;; `pr-spool-p' Non-nil means spool printing in a buffer.
;;
;; `pr-file-landscape' Non-nil means print PostScript file in
;; landscape orientation.
;;
;; `pr-file-duplex' Non-nil means print PostScript file in duplex
;; mode.
;;
;; `pr-file-tumble' Non-nil means print PostScript file in tumble
;; mode.
;;
;; `pr-auto-region' Non-nil means region is automagically detected.
;;
;; `pr-auto-mode' Non-nil means major-mode specific printing is
;; preferred over normal printing.
;;
;; `pr-mode-alist' Specify an alist for a major-mode and printing
;; function.
;;
;; `pr-ps-utility' Specify PostScript utility processing.
;;
;; `pr-ps-utility-alist' Specify an alist for PostScript utility
;; processing.
;;
;; `pr-menu-lock' Non-nil means menu is locked while selecting
;; toggle options.
;;
;; `pr-menu-char-height' Specify menu char height in pixels.
;;
;; `pr-menu-char-width' Specify menu char width in pixels.
;;
;; `pr-setting-database' Specify an alist for settings in general.
;;
;; `pr-visible-entry-list' Specify a list of Printing menu visible
;; entries.
;;
;; `pr-delete-temp-file' Non-nil means delete temporary files.
;;
;; `pr-list-directory' Non-nil means list directory when processing a
;; directory.
;;
;; `pr-buffer-name' Specify the name of the buffer interface for
;; printing package.
;;
;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be
;; ignored in interface buffer.
;;
;; `pr-buffer-verbose' Non-nil means to be verbose when editing a
;; field in interface buffer.
;;
;; To set the above options you may:
;;
;; a) insert the code in your ~/.emacs, like:
;;
;; (setq pr-faces-p t)
;;
;; This way always keep your default settings when you enter a new Emacs
;; session.
;;
;; b) or use `set-variable' in your Emacs session, like:
;;
;; M-x set-variable RET pr-faces-p RET t RET
;;
;; This way keep your settings only during the current Emacs session.
;;
;; c) or use customization, for example:
;; click on menu-bar *Help* option,
;; then click on *Customize*,
;; then click on *Browse Customization Groups*,
;; expand *PostScript* group,
;; expand *Printing* group
;; and then customize `printing' options.
;; Through this way, you may choose if the settings are kept or not when
;; you leave out the current Emacs session.
;;
;; d) or see the option value:
;;
;; C-h v pr-faces-p RET
;;
;; and click the *customize* hypertext button.
;; Through this way, you may choose if the settings are kept or not when
;; you leave out the current Emacs session.
;;
;; e) or invoke:
;;
;; M-x pr-customize RET
;;
;; and then customize `printing' options.
;; Through this way, you may choose if the settings are kept or not when
;; you leave out the current Emacs session.
;;
;; f) or use menu bar, for example:
;; click on menu-bar *File* option,
;; then click on *Printing*,
;; then click on *Customize*,
;; then click on *printing*
;; and then customize `printing' options.
;; Through this way, you may choose if the settings are kept or not when
;; you leave out the current Emacs session.
;;
;;
;; Menu Layout
;; -----------
;;
;; The `printing' menu (Tools/Printing or File/Print) has the following layout:
;;
;; +-----------------------------+
;; A 0 | Printing Interface |
;; +-----------------------------+ +-A---------+ +-B------+
;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
;; +-----------------------------+ |Mode >|-- B |Other...|
;; II 4 | Printify >|-----\ |File >|--\ +--------+
;; 5 | Print >|---\ | |Despool... | |
;; 6 | Text Printer: name >|-\ | | +-----------+ |
;; +-----------------------------+ | | | +---------+ +------------+
;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
;; 10 |[ ]Line Number | | | +---------+ +------------+
;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
;; 12 |[ ]Duplex | | \---|Directory| | 2-up... |
;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... |
;; 14 |[ ]Upside-Down | | |Region | | Other... |
;; 15 | Print All Pages >|--\ | |Mode | +------------+
;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id
;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
;; 17 |[ ]Print with faces | | \--|( )name A| |[ ]Tumble | If
;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
;; +-----------------------------+ | |... |
;; V 19 |[ ]Auto Region | | |(*)name |
;; 20 |[ ]Auto Mode | | |... |
;; 21 |[ ]Menu Lock | | +---------+ +--------------+
;; +-----------------------------+ \------------------|(*)All Pages |
;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
;; 23 | Show Settings >|-------|printing| |( )Odd Pages |
;; 24 | Help | |ps-print| |( )Even Sheets|
;; +-----------------------------+ |lpr | |( )Odd Sheets |
;; +--------+ +--------------+
;;
;; See `pr-visible-entry-list' for hiding some parts of the menu.
;;
;; The menu has the following sections:
;;
;; A. Interface:
;;
;; 0. You can use a buffer interface instead of menus. It looks like the
;; customization buffer. Basically, it has the same options found in the
;; menu and some extra options, all this on a buffer.
;;
;; I. PostScript printing:
;;
;; 1. You can generate a PostScript file (if you type C-u before activating
;; menu) or PostScript temporary file for a directory, a buffer, a region
;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
;; after file generation, ghostview is activated using the file generated
;; as argument. This option is disabled if spooling is on (option 16).
;; Also, if you already have a PostScript file you can preview it.
;; Instead of previewing each buffer, region or major mode at once, you
;; can save temporarily the PostScript code generated in a buffer and
;; preview it later. The option `Despool...' despools the PostScript
;; spooling buffer in a temporary file and uses ghostview to preview it.
;; If you type C-u before choosing this option, the PostScript code
;; generated is saved in a file instead of saving in a temporary file.
;; To spool the PostScript code generated you need to turn on the option
;; 16. The option `Despool...' is enabled if spooling is on (option
;; 16).
;;
;; NOTE 1: It's possible to customize a major mode printing, just declare
;; the customization in `pr-mode-alist' and invoke some of
;; `*-mode*' commands or select Mode option in Printing menu. An
;; example for major mode usage is when you're using gnus (or mh,
;; or rmail, etc.) and you're in the *Summary* buffer, if you
;; forget to switch to the *Article* buffer before printing,
;; you'll get a nicely formatted list of article subjects shows
;; up at the printer. With major mode printing you don't need to
;; switch from gnus *Summary* buffer first.
;;
;; NOTE 2: There are the following options for PostScript file
;; processing:
;; Ia. Print the file *No Preprocessing*, that is, send it
;; directly to PostScript printer.
;; Ib. PostScript utility processing selection.
;; See `pr-ps-utility-alist' and `pr-setting-database' for
;; documentation.
;; Ic. Do n-up processing before printing.
;; Id. Toggle on/off landscape for PostScript file processing.
;; Ie. Toggle on/off duplex for PostScript file processing.
;; If. Toggle on/off tumble for PostScript file processing.
;;
;; NOTE 3: Don't forget to download and install the utilities declared on
;; `pr-ps-utility-alist'.
;;
;; 2. Operate the same way as option 1, but it sends directly the PostScript
;; code (or put in a file, if you've typed C-u) or it uses ghostscript to
;; print the PostScript file generated. It depends on option 18, if it's
;; turned on, it uses ghostscript; otherwise, it sends directly to
;; printer. If spooling is on (option 16), the PostScript code is saved
;; temporarily in a buffer instead of printing it or saving it in a file.
;; Also, if you already have a PostScript file you can print it. Instead
;; of printing each buffer, region or major mode at once, you can save
;; temporarily the PostScript code generated in a buffer and print it
;; later. The option `Despool...' despools the PostScript spooling
;; buffer directly on a printer. If you type C-u before choosing this
;; option, the PostScript code generated is saved in a file instead of
;; sending to printer. To spool the PostScript code generated you need
;; to turn on the option 16. This option is enabled if spooling is on
;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
;;
;; 3. You can select a new PostScript printer to send PostScript code
;; generated. For selection it's used all PostScript printers defined
;; in `pr-ps-printer-alist' variable (see it for documentation).
;; See also `pr-setting-database'.
;;
;; II. Text printing:
;;
;; 4. If you have control characters (character code from \000 to \037) in a
;; buffer and you want to print them in a text printer, select this
;; option. All control characters in your buffer or region will be
;; replaced by a printable representation. The printable representations
;; use ^ (for ASCII control characters) or hex. The characters tab,
;; linefeed, space, return and formfeed are not affected. You don't need
;; to select this option if you use any option of section I, the
;; PostScript engine treats control characters properly.
;;
;; 5. If you want to print a directory, buffer, region or major mode in a
;; text printer, select this option. See also the NOTE 1 on option 1.
;;
;; 6. You can select a new text printer to send text generated. For
;; selection it's used all text printers defined in
;; `pr-txt-printer-alist' variable (see it for documentation).
;; See also `pr-setting-database'.
;;
;; III. PostScript page toggle options:
;;
;; 7. If you want a PostScript landscape printing, turn on this option.
;;
;; 8. If you want to have a header in each page in your PostScript code,
;; turn on this option.
;;
;; 9. If you want to draw a gaudy frame around the header, turn on this
;; option. This option is enabled if print header is on (option 8).
;;
;; 10. If you want that the line number is printed in your PostScript code,
;; turn on this option.
;;
;; 11. If you want background zebra stripes in your PostScript code, turn on
;; this option.
;;
;; 12. If you want a duplex printing and your PostScript printer has this
;; feature, turn on this option.
;;
;; 13. If you turned on duplex printing, you can choose if you want to have
;; a printing suitable for binding on the left or right (tumble off), or
;; to have a printing suitable for binding at top or bottom (tumble on).
;; This option is enabled if duplex is on (option 12).
;;
;; 14. If you want a PostScript upside-down printing, turn on this option.
;;
;; 15. With this option, you can choose if you want to print all pages, odd
;; pages, even pages, odd sheets or even sheets.
;; See also `ps-even-or-odd-pages'.
;;
;; IV. PostScript processing toggle options:
;;
;; 16. If you want to spool the PostScript code generated, turn on this
;; option. To spool the PostScript code generated use option 2. You
;; can despool later by choosing option 1 or 2, sub-option `Despool...'.
;;
;; 17. If you use colors in your buffers and want to see these colors on
;; your PostScript code generated, turn on this option. If you have a
;; black/white PostScript printer, these colors are displayed in gray
;; scale by PostScript printer interpreter.
;;
;; 18. If you don't have a PostScript printer to send PostScript files, turn
;; on this option. When this option is on, the ghostscript is used to
;; print PostScript files. In GNU or Unix system, if ghostscript is set
;; as a PostScript filter, you don't need to turn on this option.
;;
;; V. Printing customization:
;;
;; 19. If you want that region is automagically detected, turn on this
;; option. Note that this will only work if you're using transient mark
;; mode. When this option is on, the `*-buffer*' commands will behave
;; like `*-region*' commands, that is, `*-buffer*' commands will print
;; only the region marked instead of all buffer.
;;
;; 20. Turn this option on if you want that when current major-mode is
;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
;; behave like `*-mode*' commands.
;;
;; 21. If you want that Printing menu stays open while you are setting
;; toggle options, turn on this option. The variables
;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
;; menu position, so don't forget to adjust these variables if menu
;; position is not ok.
;;
;; VI. Customization:
;;
;; 22. Besides all options in section III, IV and V, you can customize much
;; more PostScript options in `ps-print' option. Or you can customize
;; some `lpr' options for text printing. Or customize `printing'
;; options.
;;
;; 23. Show current settings for `printing', `ps-print' or `lpr'.
;;
;; 24. Quick help for printing menu layout.
;;
;;
;; Option Settings
;; ---------------
;;
;; Below it's shown only the main options that affect all `printing' package.
;; Check all the settings below *BEFORE* running `printing' commands.
;;
;; * Example of setting for GNU or Unix system:
;;
;; (require 'printing)
;; (setq pr-path-alist
;; '((unix "." "~/bin" ghostview mpage PATH)
;; (ghostview "$HOME/bin/gsview-dir")
;; (mpage "$HOME/bin/mpage-dir")
;; ))
;; (setq pr-txt-name 'prt_06a)
;; (setq pr-txt-printer-alist
;; '((prt_06a "lpr" nil "prt_06a")
;; (prt_07c nil nil "prt_07c")
;; ))
;; (setq pr-ps-name 'lps_06b)
;; (setq pr-ps-printer-alist
;; '((lps_06b "lpr" nil "-P" "lps_06b")
;; (lps_07c "lpr" nil nil "lps_07c")
;; (lps_08c nil nil nil "lps_08c")
;; ))
;; (setq pr-temp-dir "/tmp/")
;; (setq pr-gv-command "gv")
;; (setq pr-gs-command "gs")
;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
;; (setq pr-gs-device "uniprint")
;; (setq pr-gs-resolution 300)
;; (setq pr-ps-utility 'mpage)
;; (setq pr-ps-utility-alist
;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
;; (inherits-from: . no-duplex))
;; ))
;; (setq pr-setting-database
;; '((no-duplex
;; nil nil nil
;; (pr-file-duplex . nil)
;; (pr-file-tumble . nil))
;; ))
;; (pr-update-menus t) ; update now printer and utility menus
;;
;; * Example of setting for Windows system:
;;
;; (require 'printing)
;; (setq pr-path-alist
;; '((windows "c:/applications/executables" PATH ghostview mpage)
;; (ghostview "c:/gs/gsview-dir")
;; (mpage "c:/mpage-dir")
;; ))
;; (setq pr-txt-name 'prt_06a)
;; (setq pr-txt-printer-alist
;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
;; (PRN "" nil "PRN")
;; (standard "redpr.exe" nil "")
;; ))
;; (setq pr-ps-name 'lps_06b)
;; (setq pr-ps-printer-alist
;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
;; (LPT1 "" nil "" "LPT1:")
;; (PRN "" nil "" "PRN")
;; (standard "redpr.exe" nil "" "")
;; ))
;; (setq pr-temp-dir "C:/WINDOWS/TEMP/")
;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe")
;; (setq pr-gs-command "c:/gs/gswin32.exe")
;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts"))
;; (setq pr-gs-device "mswinpr2")
;; (setq pr-gs-resolution 300)
;; (setq pr-ps-utility 'psnup)
;; (setq pr-ps-utility-alist
;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " "
;; nil (inherits-from: . no-duplex))
;; ))
;; (setq pr-setting-database
;; '((no-duplex
;; nil nil nil
;; (pr-file-duplex . nil)
;; (pr-file-tumble . nil))
;; ))
;; (pr-update-menus t) ; update now printer and utility menus
;;
;; NOTE: Don't forget to download and install the utilities declared on
;; `pr-ps-utility-alist'.
;;
;;
;; Utilities
;; ---------
;;
;; `printing' package has the following utilities:
;;
;; `pr-setup' Return the current `printing' setup.
;;
;; `lpr-setup' Return the current `lpr' setup.
;;
;; `pr-update-menus' Update utility, PostScript and text printer menus.
;;
;; `pr-menu-bind' Install `printing' menu in the menubar.
;;
;;
;; Below are some URL where you can find good utilities.
;;
;; * For GNU or Unix system:
;;
;; gs, gv `https://www.gnu.org/software/ghostscript/ghostscript.html'
;; enscript `https://people.ssh.fi/mtr/genscript/'
;; psnup `http://www.knackered.org/angus/psutils/'
;; mpage `https://www.mesa.nl/pub/mpage/'
;;
;; * For Windows system:
;;
;; gswin32, gsview32
;; `https://www.gnu.org/software/ghostscript/ghostscript.html'
;; gsprint `https://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
;; enscript `https://people.ssh.fi/mtr/genscript/'
;; psnup `https://gnuwin32.sourceforge.net/packages/psutils.htm'
;; redmon `http://www.ghostgum.com.au/software/redmon.htm'
;;
;;
;; Acknowledgments
;; ---------------
;;
;; Thanks to Stefan Monnier <monnier@iro.umontreal.ca> for GNU Emacs and XEmacs
;; printing menu (in `pr-menu-spec') merging suggestion.
;;
;; Thanks to Lennart Borgman <lennart.borgman.073@student.lu.se> for gsprint
;; suggestion (see tip 5 in section Tips).
;;
;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
;; - directory processing.
;; - `pr-path-alist' variable.
;; - doc fix.
;; - a lot of tests on Windows.
;;
;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests.
;;
;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging
;; and for suggestions:
;; - even/odd pages printing.
;; - ghostscript parameters for `pr-ps-printer-alist'.
;; - default printer name.
;; - completion functions.
;; - automagic region detection.
;; - menu entry hiding.
;; - fast fire PostScript printing command.
;; - `pr-filename-style' variable.
;;
;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions:
;; - PostScript Print and PostScript Print Preview merge.
;; - Tools/Printing menu.
;; - replace *-using-preview by *-using-ghostscript.
;; - printer selection.
;; - extra parameters for `pr-ps-printer-alist'.
;;
;; Thanks to:
;; Frederic Corne <frederic.corne@erli.fr> print-nt.el
;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el
;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el
;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el
;; And to all people who contributed with them.
;;
;;
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Code:
(require 'lpr)
(require 'ps-print)
(defconst pr-cygwin-system
(and lpr-windows-system (getenv "OSTYPE")
(string-match "cygwin" (getenv "OSTYPE"))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; To avoid compilation gripes
;; User Interface --- declared here to avoid compiler warnings
(define-obsolete-variable-alias 'pr-path-style 'pr-filename-style "27.1")
(defvar pr-filename-style)
(defvar pr-auto-region)
(defvar pr-menu-char-height)
(defvar pr-menu-char-width)
(defvar pr-menu-lock)
(defvar pr-ps-printer-alist)
(defvar pr-txt-printer-alist)
(defvar pr-ps-utility-alist)
;; Internal Vars --- defined here to avoid compiler warnings
(defvar pr-menu-print-item "print"
"Non-nil means that menu binding was not done.
Used by `pr-menu-bind' and `pr-update-menus'.")
(defvar pr-ps-printer-menu-modified t
"Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.")
(defvar pr-txt-printer-menu-modified t
"Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.")
(defvar pr-ps-utility-menu-modified t
"Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.")
(defconst pr-even-or-odd-alist
'((nil . "Print All Pages")
(even-page . "Print Even Pages")
(odd-page . "Print Odd Pages")
(even-sheet . "Print Even Sheets")
(odd-sheet . "Print Odd Sheets")))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; GNU Emacs Definitions
(defun pr-keep-region-active ()
(setq deactivate-mark nil))
(defun pr-region-active-p ()
(and pr-auto-region (use-region-p)))
;; Menu binding
;; Replace existing "print" item by "Printing" item.
;; If you're changing this file, you'll load it a second,
;; third... time, but "print" item exists only in the first load.
(defvar pr-menu-bar nil
"Specify Printing menu-bar entry.")
(defun pr-global-menubar (menu-spec)
(let ((menu-file '("menu-bar" "file"))
(submenu-path [menu-bar file Print])
(submenu (easy-menu-create-menu "Print" menu-spec)))
(cond (pr-menu-print-item
(easy-menu-add-item global-map menu-file submenu "Print")
(easy-menu-remove-item global-map menu-file "print")
(setq pr-menu-print-item nil
pr-menu-bar submenu-path))
(t (easy-menu-add-item global-map menu-file submenu)))))
(defun pr-menu-position (entry index horizontal)
(let ((pos (cdr (mouse-pixel-position))))
(list
(list (- (or (car pos) 0) ; X
(if lpr-windows-system
0 ;; GNU Emacs for Windows 9x/NT
(* horizontal pr-menu-char-width)))
(- (or (cdr pos) 0) ; Y
(* (pr-menu-index entry index) pr-menu-char-height)))
(selected-frame)))) ; frame
(defvar pr-menu-position nil)
(defvar pr-menu-state nil)
(defun pr-menu-lookup (path)
(lookup-key global-map
(if path
(vconcat pr-menu-bar
(mapcar #'easy-menu-intern
(if (listp path)
path
(list path))))
pr-menu-bar)))
(defun pr-menu-lock (entry index horizontal state path)
(when pr-menu-lock
(or (and pr-menu-position (eq state pr-menu-state))
(setq pr-menu-position (pr-menu-position entry index horizontal)
pr-menu-state state))
(let* ((menu (pr-menu-lookup path))
(result (x-popup-menu pr-menu-position menu)))
(and result
(let ((command (lookup-key menu (vconcat result))))
(if (fboundp command)
(funcall command)
(eval command)))))
(setq pr-menu-position nil)))
(defun pr-do-update-menus (&optional force)
(pr-menu-alist pr-ps-printer-alist
'pr-ps-name
#'pr-menu-set-ps-title
"PostScript Printers"
'pr-ps-printer-menu-modified
force
"PostScript Printers"
'postscript 2)
(pr-menu-alist pr-txt-printer-alist
'pr-txt-name
#'pr-menu-set-txt-title
"Text Printers"
'pr-txt-printer-menu-modified
force
"Text Printers"
'text 2)
(defvar pr--save-var)
(let ((pr--save-var pr-ps-utility-menu-modified))
(pr-menu-alist pr-ps-utility-alist
'pr-ps-utility
#'pr-menu-set-utility-title
'("PostScript Print" "File" "PostScript Utility")
'pr--save-var
force
"PostScript Utility"
nil 1))
(pr-menu-alist pr-ps-utility-alist
'pr-ps-utility
#'pr-menu-set-utility-title
'("PostScript Preview" "File" "PostScript Utility")
'pr-ps-utility-menu-modified
force
"PostScript Utility"
nil 1)
(pr-even-or-odd-pages ps-even-or-odd-pages force))
(defun pr-menu-get-item (name-list)
;; NAME-LIST is a string or a list of strings.
(setq name-list (ensure-list name-list))
(and name-list
(let* ((reversed (reverse name-list))
(name (easy-menu-intern (car reversed)))
(path (nreverse (cdr reversed)))
(menu (lookup-key
global-map
(vconcat pr-menu-bar
(mapcar #'easy-menu-intern path)))))
(assq name (nthcdr 2 menu)))))
(defvar pr-temp-menu nil)
(defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
entry index)
(when (and alist (or force (symbol-value modified-sym)))
(easy-menu-define pr-temp-menu nil ""
(pr-menu-create name alist var-sym fun entry index))
(let ((item (pr-menu-get-item menu-path)))
(and item
(progn
(setf (nth 3 item) pr-temp-menu)
(funcall fun (symbol-value var-sym) item))))
(set modified-sym nil)))
(defun pr-menu-set-item-name (item name)
(and item
(setcar (nthcdr 2 item) name))) ; ITEM-NAME
(defun pr-menu-set-ps-title (value &optional item entry index)
(pr-menu-set-item-name (or item
(pr-menu-get-item "PostScript Printers"))
(format "PostScript Printer: %s" value))
(pr-ps-set-printer value)
(and index
(pr-menu-lock entry index 12 'toggle nil)))
(defun pr-menu-set-txt-title (value &optional item entry index)
(pr-menu-set-item-name (or item
(pr-menu-get-item "Text Printers"))
(format "Text Printer: %s" value))
(pr-txt-set-printer value)
(and index
(pr-menu-lock entry index 12 'toggle nil)))
(defun pr-menu-set-utility-title (value &optional item entry index)
(let ((name (symbol-name value)))
(if item
(pr-menu-set-item-name item name)
(pr-menu-set-item-name
(pr-menu-get-item
'("PostScript Print" "File" "PostScript Utility"))
name)
(pr-menu-set-item-name
(pr-menu-get-item
'("PostScript Preview" "File" "PostScript Utility"))
name)))
(pr-ps-set-utility value)
(and index
(pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
(defun pr-even-or-odd-pages (value &optional no-lock)
(pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
(cdr (assq value pr-even-or-odd-alist)))
(setq ps-even-or-odd-pages value)
(or no-lock
(pr-menu-lock 'postscript-options 8 12 'toggle nil)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Internal Functions (I)
(defun pr-dosify-file-name (filename)
"Replace unix-style directory separator character with dos/windows one."
(if (eq pr-filename-style 'windows)
(subst-char-in-string ?/ ?\\ filename)
filename))
(defun pr-standard-file-name (filename)
"Ensure the proper directory separator depending on the OS.
That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory
separator; otherwise, ensure unix-style directory separator."
;; FIXME: Why not use pr-dosify-file-name?
(if (or pr-cygwin-system lpr-windows-system)
(subst-char-in-string ?/ ?\\ filename)
filename))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Customization Functions
(defun pr-alist-custom-set (symbol value)
"Set the value of custom variables for printer & utility selection."
(set symbol value)
(and (featurep 'printing) ; update only after printing is loaded
(pr-update-menus t)))
(defun pr-ps-utility-custom-set (symbol value)
"Update utility menu entry."
(set symbol value)
(and (featurep 'printing) ; update only after printing is loaded
(pr-menu-set-utility-title value)))
(defun pr-ps-name-custom-set (symbol value)
"Update `PostScript Printer:' menu entry."
(set symbol value)
(and (featurep 'printing) ; update only after printing is loaded
(pr-menu-set-ps-title value)))
(defun pr-txt-name-custom-set (symbol value)
"Update `Text Printer:' menu entry."
(set symbol value)
(and (featurep 'printing) ; update only after printing is loaded
(pr-menu-set-txt-title value)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; User Interface
(defgroup printing nil
"Printing Utilities group."
:tag "Printing Utilities"
:link '(emacs-library-link :tag "Source Lisp File" "printing.el")
:prefix "pr-"
:version "22.1"
:group 'text
:group 'postscript)
(defcustom pr-filename-style
(if (and (not pr-cygwin-system)
lpr-windows-system)
'windows
'unix)
"Specify which filename style to use for external commands.
Valid values are:
windows Windows 9x/NT style (\\)
unix Unix style (/)"
:type '(choice :tag "Filename style"
(const :tag "Windows 9x/NT Style (\\)" :value windows)
(const :tag "Unix Style (/)" :value unix)))
(defcustom pr-path-alist
'((unix PATH)
(cygwin PATH)
(windows PATH))
"Specify an alist for command paths.
It's used to find commands used for printing package, like gv, gs, gsview.exe,
mpage, print.exe, etc. See also `pr-command' function.
Each element has the form:
(ENTRY DIRECTORY...)
Where:
ENTRY It's a symbol, used to identify this entry.
There must exist at least one of the following entries:
`unix' this entry is used when Emacs is running on GNU or
Unix system.
`cygwin' this entry is used when Emacs is running on Windows
98/NT/2000 with Cygwin.
`windows' this entry is used when Emacs is running on Windows
98/NT/2000.
DIRECTORY It should be a string or a symbol. If it's a symbol, it should
exist an equal entry in `pr-path-alist'. If it's a string,
it's considered a directory specification.
The directory specification may contain:
$var environment variable expansion
~/ tilde expansion
./ current directory
../ previous directory
For example, let's say the home directory is /home/my and the
current directory is /home/my/dir, so:
THE ENTRY IS EXPANDED TO
~/entry /home/my/entry
./entry /home/my/dir/entry
../entry /home/my/entry
$HOME/entry /home/my/entry
$HOME/~/other/../my/entry /home/my/entry
SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
list and there isn't a `PATH' entry in `pr-path-alist' or the
`PATH' entry has a null directory list, the PATH environment
variable is used.
Examples:
* On GNU or Unix system:
((unix \".\" \"~/bin\" ghostview mpage PATH)
(ghostview \"$HOME/bin/gsview-dir\")
(mpage \"$HOME/bin/mpage-dir\")
)
* On Windows system:
((windows \"c:/applications/executables\" PATH ghostview mpage)
(ghostview \"c:/gs/gsview-dir\")
(mpage \"c:/mpage-dir\")
)"
:type '(repeat
(cons :tag ""
(symbol :tag "Identifier ")
(repeat :tag "Directory List"
(choice :menu-tag "Directory"
:tag "Directory"
(string :value "")
(symbol :value symbol))))))
(defcustom pr-txt-name 'default
"Specify a printer for printing a text file.
The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
documentation).
This variable should be modified by customization engine. If this variable is
modified by other means (for example, a Lisp function), use `pr-update-menus'
function (see it for documentation) to update text printer menu."
:type 'symbol
:set 'pr-txt-name-custom-set)
(defcustom pr-txt-printer-alist
(list (list 'default lpr-command nil
(cond ((boundp 'printer-name) printer-name)
(lpr-windows-system "PRN")
(t nil)
)))
;; Examples:
;; * On GNU or Unix system:
;; '((prt_06a "lpr" nil "prt_06a")
;; (prt_07c nil nil "prt_07c")
;; )
;; * On Windows system:
;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
;; (PRN "" nil "PRN")
;; (standard "redpr.exe" nil "")
;; )
"Specify an alist of all text printers (text printer database).
The alist element has the form:
(SYMBOL COMMAND SWITCHES NAME)
Where:
SYMBOL It's a symbol to identify a text printer. It's for
setting option `pr-txt-name' and for menu selection.
Examples:
prt_06a
my_printer
COMMAND Name of the program for printing a text file. On MS-DOS and
MS-Windows systems, if the value is an empty string, then Emacs
will write directly to the printer port given by NAME (see text
below), that is, the NAME should be something like \"PRN\" or
\"LPT1:\".
If NAME is something like \"\\\\\\\\host\\\\share-name\" then
COMMAND shouldn't be an empty string.
The programs `print' and `nprint' (the standard print programs
on Windows NT and Novell Netware respectively) are handled
specially, using NAME as the destination for output; any other
program is treated like `lpr' except that an explicit filename
is given as the last argument.
If COMMAND is nil, it's used the default printing program:
`print' for Windows system, `lp' for lp system and `lpr' for
all other systems. See also `pr-path-alist'.
Examples:
\"print\"
\"lpr\"
\"lp\"
SWITCHES List of sexp's to pass as extra options for text printer
program. It is recommended to set NAME (see text below)
instead of including an explicit switch on this list.
Example:
. for lpr
(\"-#3\" \"-l\")
nil
NAME A string that specifies a text printer name.
On Unix-like systems, a string value should be a name
understood by lpr's -P option (or lp's -d option).
On MS-DOS and MS-Windows systems, it is the name of a printer
device or port. Typical non-default settings would be \"LPT1:\"
to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
\"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
(or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
printer. You can also set it to a name of a file, in which
case the output gets appended to that file. If you want to
discard the printed output, set this to \"NUL\".
Examples:
. for print.exe
\"/D:\\\\\\\\host\\\\share-name\"
\"LPT1:\"
\"PRN\"
. for lpr or lp
\"share-name\"
This variable should be modified by customization engine. If this variable is
modified by other means (for example, a Lisp function), use `pr-update-menus'
function (see it for documentation) to update text printer menu.
Examples:
* On GNU or Unix system:
((prt_06a \"lpr\" nil \"prt_06a\")
(prt_07c nil nil \"prt_07c\")
)
* On Windows system:
((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
(prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
(PRN \"\" nil \"PRN\")
(standard \"redpr.exe\" nil \"\")
)
Useful links:
* Information about the print command (print.exe)
`https://www.computerhope.com/printhlp.htm'
* RedMon - Redirection Port Monitor (redpr.exe)
`http://www.ghostgum.com.au/software/redmon.htm'
* Redirection Port Monitor (redpr.exe on-line help)
`https://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
* UNIX man pages: lpr (or type `man lpr')
`https://linux.die.net/man/1/lpr-cups'
* UNIX man pages: lp (or type `man lp')
`https://linux.die.net/man/1/lp'"
:type '(repeat
(list :tag "Text Printer"
(symbol :tag "Printer Symbol Name")
(string :tag "Printer Command")
(repeat :tag "Printer Switches"
(sexp :tag "Switch" :value ""))
(choice :menu-tag "Printer Name"
:tag "Printer Name"
(const :tag "None" nil)
string)))
:set 'pr-alist-custom-set)
(defcustom pr-ps-name 'default
"Specify a printer for printing a PostScript file.
This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
documentation).
This variable should be modified by customization engine. If this variable is
modified by other means (for example, a Lisp function), use `pr-update-menus'
function (see it for documentation) to update PostScript printer menu."
:type 'symbol
:set 'pr-ps-name-custom-set)
(defcustom pr-ps-printer-alist
(list (list 'default lpr-command nil
(cond (lpr-windows-system nil)
(lpr-lp-system "-d")
(t "-P"))
(or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))
;; Examples:
;; * On GNU or Unix system:
;; '((lps_06b "lpr" nil "-P" "lps_06b")
;; (lps_07c "lpr" nil nil "lps_07c")
;; (lps_08c nil nil nil "lps_08c")
;; )
;; * On Windows system:
;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
;; (LPT1 "" nil "" "LPT1:")
;; (PRN "" nil "" "PRN")
;; (standard "redpr.exe" nil "" "")
;; )
"Specify an alist for all PostScript printers (PostScript printer database).
The alist element has the form:
(SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
Where:
SYMBOL It's a symbol to identify a PostScript printer. It's for
setting option `pr-ps-name' and for menu selection.
Examples:
prt_06a
my_printer
COMMAND Name of the program for printing a PostScript file. On MS-DOS
and MS-Windows systems, if the value is an empty string then
Emacs will write directly to the printer port given by NAME
(see text below), that is, the NAME should be something like
\"PRN\" or \"LPT1:\".
If NAME is something like \"\\\\\\\\host\\\\share-name\" then
COMMAND shouldn't be an empty string.
The programs `print' and `nprint' (the standard print programs
on Windows NT and Novell Netware respectively) are handled
specially, using NAME as the destination for output; any other
program is treated like `lpr' except that an explicit filename
is given as the last argument.
If COMMAND is nil, it's used the default printing program:
`print' for Windows system, `lp' for lp system and `lpr' for
all other systems. See also `pr-path-alist'.
Examples:
\"print\"
\"lpr\"
\"lp\"
\"cp\"
\"gsprint\"
SWITCHES List of sexp's to pass as extra options for PostScript printer
program. It is recommended to set NAME (see text below)
instead of including an explicit switch on this list.
Example:
. for lpr
(\"-#3\" \"-l\")
nil
. for gsprint.exe
(\"-all\" \"-twoup\")
PRINTER-SWITCH A string that specifies PostScript printer name switch. If
it's necessary to have a space between PRINTER-SWITCH and NAME,
it should be inserted at the end of PRINTER-SWITCH string.
If PRINTER-SWITCH is nil, it's used the default printer name
switch: `/D:' for Windows system, `-d' for lp system and `-P'
for all other systems.
Examples:
. for lpr
\"-P \"
. for lp
\"-d \"
. for print.exe
\"/D:\"
. for gsprint.exe
\"-printer \"
NAME A string that specifies a PostScript printer name.
On Unix-like systems, a string value should be a name
understood by lpr's -P option (or lp's -d option).
On MS-DOS and MS-Windows systems, it is the name of a printer
device or port. Typical non-default settings would be \"LPT1:\"
to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
\"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
(or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
printer. You can also set it to a name of a file, in which
case the output gets appended to that file. If you want to
discard the printed output, set this to \"NUL\".
Examples:
. for cp.exe
\"\\\\\\\\host\\\\share-name\"
. for print.exe or gsprint.exe
\"/D:\\\\\\\\host\\\\share-name\"
\"\\\\\\\\host\\\\share-name\"
\"LPT1:\"
\"PRN\"
. for lpr or lp
\"share-name\"
DEFAULT It's a way to set default values when this entry is selected.
It's a cons like:
(VARIABLE . VALUE)
Which associates VARIABLE with VALUE. When this entry is
selected, it's executed the following command:
(set VARIABLE (eval VALUE))
Note that VALUE can be any valid Lisp expression. So, don't
forget to quote symbols and constant lists.
If VARIABLE is the special keyword `inherits-from:', VALUE must
be a symbol name setting defined in `pr-setting-database' from
which the current setting inherits the context. Take care with
circular inheritance.
Examples:
(ps-landscape-mode . nil)
(ps-spool-duplex . t)
(pr-gs-device . (my-gs-device t))
This variable should be modified by customization engine. If this variable is
modified by other means (for example, a Lisp function), use `pr-update-menus'
function (see it for documentation) to update PostScript printer menu.
Examples:
* On GNU or Unix system:
((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
(lps_07c \"lpr\" nil nil \"lps_07c\")
(lps_08c nil nil nil \"lps_08c\")
)
* On Windows system:
((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
(lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
(lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
(lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
(b/w1 \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"b/w-pr-name\")
(b/w2 \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer \\\\\\\\printers\\\\lps_06a\")
(LPT1 \"\" nil \"\" \"LPT1:\")
(PRN \"\" nil \"\" \"PRN\")
(standard \"redpr.exe\" nil \"\" \"\")
)
gsprint:
You can use gsprint instead of ghostscript to print monochrome PostScript files
in Windows. The gsprint utility documentation says that it is more efficient
than ghostscript to print monochrome PostScript.
To print non-monochrome PostScript file, the efficiency of ghostscript is
similar to gsprint.
Also the gsprint utility comes together with gsview distribution.
As an example of gsprint declaration:
(setq pr-ps-printer-alist
\\='((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\")
(B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\")
;; some other printer declaration
))
The example above declares that printer A prints all pages (-all) and two pages
per sheet (-twoup). The printer B declaration does the same as the printer A
declaration, the only difference is the printer name selection.
There are other command line options like:
-mono Render in monochrome as 1bit/pixel (only black and white).
-grey Render in greyscale as 8bits/pixel.
-color Render in color as 24bits/pixel.
The default is `-mono'. So, printer A and B in the example above are using
implicitly the `-mono' option. Note that in `-mono' no gray tone or color is
printed, this includes the zebra stripes, that is, in `-mono' the zebra stripes
are not printed.
Useful links:
* GSPRINT - Ghostscript print to Windows printer
`https://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'
* Introduction to Ghostscript
`https://www.cs.wisc.edu/~ghost/doc/intro.htm'
* How to use Ghostscript
`https://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
* Information about the print command (print.exe)
`https://www.computerhope.com/printhlp.htm'
* RedMon - Redirection Port Monitor (redpr.exe)
`http://www.ghostgum.com.au/software/redmon.htm'
* Redirection Port Monitor (redpr.exe on-line help)
`https://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
* UNIX man pages: lpr (or type `man lpr')
`https://linux.die.net/man/1/lpr-cups'
* UNIX man pages: lp (or type `man lp')
`https://linux.die.net/man/1/lp'
* GNU utilities for w32 (cp.exe)
`https://unxutils.sourceforge.net/'"
:type '(repeat
(list
:tag "PostScript Printer"
(symbol :tag "Printer Symbol Name")
(string :tag "Printer Command")
(repeat :tag "Printer Switches"
(sexp :tag "Switch" :value ""))
(choice :menu-tag "Printer Name Switch"
:tag "Printer Name Switch"
(const :tag "None" nil)
string)
(choice :menu-tag "Printer Name"
:tag "Printer Name"
(const :tag "None" nil)
string)
(repeat
:tag "Default Value List"
:inline t
(cons
:tag ""
(choice
:menu-tag "Variable"
:tag "Variable"
(const :tag "Landscape" ps-landscape-mode)
(const :tag "Print Header" ps-print-header)
(const :tag "Print Header Frame" ps-print-header-frame)
(const :tag "Line Number" ps-line-number)
(const :tag "Zebra Stripes" ps-zebra-stripes)
(const :tag "Duplex" ps-spool-duplex)
(const :tag "Tumble" ps-spool-tumble)
(const :tag "Upside-Down" ps-print-upside-down)
(const :tag "PS File Landscape" pr-file-landscape)
(const :tag "PS File Duplex" pr-file-duplex)
(const :tag "PS File Tumble" pr-file-tumble)
(const :tag "Auto Region" pr-auto-region)
(const :tag "Auto Mode" pr-auto-mode)
(const :tag "Ghostscript Device" pr-gs-device)
(const :tag "Ghostscript Resolution" pr-gs-resolution)
(const :tag "inherits-from:" inherits-from:)
(variable :tag "Other"))
(sexp :tag "Value")))
))
:set 'pr-alist-custom-set)
(defcustom pr-temp-dir temporary-file-directory
"Specify a directory for temporary files during printing.
See also `pr-ps-temp-file' and `pr-file-modes'."
:type '(directory :tag "Temporary Directory"))
(defcustom pr-ps-temp-file "prspool-"
"Specify PostScript temporary file name prefix.
See also `pr-temp-dir' and `pr-file-modes'."
:type '(file :tag "PostScript Temporary File Name"))
;; It uses 0600 as default instead of (default-file-modes).
;; So, by default, only the session owner have permission to deal with files
;; generated by `printing'.
(defcustom pr-file-modes ?\600
"Specify the file permission bits for newly created files.
It should be an integer; only the low 9 bits are used.
See also `pr-temp-dir' and `pr-ps-temp-file'."
:type '(integer :tag "File Permission Bits"))
(defcustom pr-gv-command
(if lpr-windows-system
"gsview32.exe"
"gv")
"Specify path and name of the gsview/gv utility.
See also `pr-path-alist'.
Useful links:
* GNU gv manual
`https://www.gnu.org/software/gv/manual/gv.html'
* GSview Help
`https://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm'
* GSview Help - Common Problems
`https://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm#Common_Problems'
* GSview Readme (compilation & installation)
`https://www.cs.wisc.edu/~ghost/gsview/Readme.htm'
* GSview (main site)
`https://www.cs.wisc.edu/~ghost/gsview/index.htm'
* Ghostscript, Ghostview and GSview
`https://www.cs.wisc.edu/~ghost/'
* Ghostview
`https://www.cs.wisc.edu/~ghost/gv/index.htm'
* gv 3.5, June 1997
`http://pages.cs.wisc.edu/~ghost/gv/gv_doc/gv.html'
* MacGSView (Mac OS)
`http://pages.cs.wisc.edu/~ghost/macos/index.htm'"
:type '(string :tag "Ghostview Utility"))
(defcustom pr-gs-command
(if lpr-windows-system
"gswin32.exe"
"gs")
"Specify path and name of the ghostscript utility.
See also `pr-path-alist'.
Useful links:
* Ghostscript, Ghostview and GSview
`https://www.cs.wisc.edu/~ghost/'
* Introduction to Ghostscript
`https://www.cs.wisc.edu/~ghost/doc/intro.htm'
* How to use Ghostscript
`https://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
* Printer compatibility
`https://www.cs.wisc.edu/~ghost/doc/printer.htm'"
:type '(string :tag "Ghostscript Utility"))
(defcustom pr-gs-switches
(if lpr-windows-system
'("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
'("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
"Specify ghostscript switches. See the documentation on GS for more info.
It's a list of strings, where each string is one or more ghostscript switches.
A note on the gs switches:
-q quiet
-dNOPAUSE don't wait for user intervention
-Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
-c quit it's added at the end to terminate gs
To see ghostscript documentation for more information:
* On GNU or Unix system:
- for full documentation, type: man gs
- for brief documentation, type: gs -h
* On Windows system:
- for full documentation, see in a browser the file
c:/gstools/gs5.50/index.html, that is, the file index.html which is
located in the same directory as gswin32.exe.
- for brief documentation, type: gswin32.exe -h
Useful links:
* Introduction to Ghostscript
`https://www.cs.wisc.edu/~ghost/doc/intro.htm'
* How to use Ghostscript
`https://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
* Printer compatibility
`https://www.cs.wisc.edu/~ghost/doc/printer.htm'"
:type '(repeat (string :tag "Ghostscript Switch")))
(defcustom pr-gs-device
(if lpr-windows-system
"mswinpr2"
"uniprint")
"Specify the ghostscript device switch value (-sDEVICE=).
A note on the gs switches:
-sDEVICE=djet500 the printer - works with HP DeskJet 540
See `pr-gs-switches' for documentation.
See also `pr-ps-printer-alist'."
:type '(string :tag "Ghostscript Device"))
(defcustom pr-gs-resolution 300
"Specify ghostscript resolution switch value (-r).
A note on the gs switches:
-r300 resolution 300x300
See `pr-gs-switches' for documentation.
See also `pr-ps-printer-alist'."
:type '(integer :tag "Ghostscript Resolution"))
(defcustom pr-print-using-ghostscript nil
"Non-nil means print using ghostscript.
This is useful if you don't have a PostScript printer, so you could use the
ghostscript to print a PostScript file.
In GNU or Unix system, if ghostscript is set as a PostScript filter, this
variable should be nil."
:type 'boolean)
(defcustom pr-faces-p nil
"Non-nil means print with face attributes."
:type 'boolean)
(defcustom pr-spool-p nil
"Non-nil means spool printing in a buffer."
:type 'boolean)
(defcustom pr-file-landscape nil
"Non-nil means print PostScript file in landscape orientation."
:type 'boolean)
(defcustom pr-file-duplex nil
"Non-nil means print PostScript file in duplex mode."
:type 'boolean)
(defcustom pr-file-tumble nil
"Non-nil means print PostScript file in tumble mode.
If tumble is off, produces a printing suitable for binding on the left or
right.
If tumble is on, produces a printing suitable for binding at the top or
bottom."
:type 'boolean)
(defcustom pr-auto-region t
"Non-nil means region is automagically detected.
Note that this will only work if you're using transient mark mode.
When this variable is non-nil, the `*-buffer*' commands will behave like
`*-region*' commands, that is, `*-buffer*' commands will print only the region
marked instead of all buffer."
:type 'boolean)
(defcustom pr-auto-mode t
"Non-nil means major-mode specific printing is preferred over normal printing.
That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
and `*-region*' commands will behave like `*-mode*' commands; otherwise,
`*-buffer*' commands will print the current buffer and `*-region*' commands
will print the current region."
:type 'boolean)
(defcustom pr-mode-alist
'((mh-folder-mode ; mh summary buffer
pr-mh-lpr-1 pr-mh-print-1
2
(ps-article-author ps-article-subject)
("/pagenumberstring load" pr-article-date)
nil
)
(mh-letter-mode ; mh letter buffer
pr-mh-lpr-2 pr-mh-print-2
2
(ps-article-author ps-article-subject)
("/pagenumberstring load" pr-article-date)
nil
)
(rmail-summary-mode ; rmail summary buffer
pr-rmail-lpr pr-rmail-print
3
(ps-article-subject ps-article-author buffer-name)
nil
nil
)
(rmail-mode ; rmail buffer
pr-rmail-lpr pr-rmail-print
3
(ps-article-subject ps-article-author buffer-name)
nil
nil
)
(gnus-summary-mode ; gnus summary buffer
pr-gnus-lpr pr-gnus-print
3
(ps-article-subject ps-article-author gnus-newsgroup-name)
nil
nil
)
(gnus-article-mode ; gnus article buffer
pr-gnus-lpr pr-gnus-print
3
(ps-article-subject ps-article-author gnus-newsgroup-name)
nil
nil
)
(Info-mode ; Info buffer
pr-mode-lpr pr-mode-print
2
(ps-info-node ps-info-file)
nil
nil
)
(vm-mode ; vm mode
pr-vm-lpr pr-vm-print
3
(ps-article-subject ps-article-author buffer-name)
nil
nil
)
)
"Specify an alist for a major-mode and printing functions.
To customize a major mode printing, just declare the customization in
`pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
*Summary* buffer, if you forget to switch to the *Article* buffer before
printing, you'll get a nicely formatted list of article subjects shows up at
the printer. With major mode printing you don't need to switch from gnus
*Summary* buffer first.
The elements have the following form:
(MAJOR-MODE
LPR-PRINT PS-PRINT
HEADER-LINES
LEFT-HEADER
RIGHT-HEADER
KILL-LOCAL-VARIABLE
DEFAULT...)
Where:
MAJOR-MODE It's the major mode symbol.
LPR-PRINT It's a symbol function for text printing. It's invoked with
one argument:
(HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
Usually LPR-PRINT function prepares the environment or buffer
and then call the function `pr-mode-lpr' which it's used to
process the buffer and send it to text printer.
The `pr-mode-lpr' definition is:
(pr-mode-lpr HEADER-LIST &optional FROM TO)
Where HEADER-LIST is like the argument passed to LPR-PRINT.
FROM and TO are the beginning and end markers, respectively,
for a region. If FROM is nil, it's used (point-min); if TO is
nil, it's used (point-max).
PS-PRINT It's a symbol function for PostScript printing. It's invoked
with three arguments: n-up printing, file name and the list:
(HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
Usually PS-PRINT function prepares the environment or buffer
and then call the function `pr-mode-print' which it's used to
process the buffer and send it to PostScript printer.
The `pr-mode-print' definition is:
(pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
Where N-UP, FILENAME and HEADER-LIST are like the arguments
passed to PS-PRINT. FROM and TO are the beginning and end
markers, respectively, for a region. If TO is nil, it's used
(point-max).
HEADER-LINES It's the number of header lines; if is nil, it uses
`ps-header-lines' value.
LEFT-HEADER It's the left header part, it's a list of string, variable
symbol or function symbol (with no argument); if is nil, it
uses `ps-left-header' value.
RIGHT-HEADER It's the right header part, it's a list of string, variable
symbol or function symbol (with no argument); if is nil, it
uses `ps-right-header' value.
KILL-LOCAL-VARIABLE
Non-nil means to kill all buffer local variable declared in
DEFAULT (see below).
DEFAULT It's a way to set default values when this entry is selected.
It's a cons like:
(VARIABLE-SYM . VALUE)
Which associates VARIABLE-SYM with VALUE. When this entry is
selected, it's executed the following command:
(set (make-local-variable VARIABLE-SYM) (eval VALUE))
Note that VALUE can be any valid Lisp expression. So, don't
forget to quote symbols and constant lists.
If VARIABLE is the special keyword `inherits-from:', VALUE must
be a symbol name setting defined in `pr-setting-database' from
which the current setting inherits the context. Take care with
circular inheritance.
Examples:
(ps-landscape-mode . nil)
(ps-spool-duplex . t)
(pr-gs-device . (my-gs-device t))"
:type '(repeat
(list
:tag ""
(symbol :tag "Major Mode")
(function :tag "Text Printing Function")
(function :tag "PS Printing Function")
(choice :menu-tag "Number of Header Lines"
:tag "Number of Header Lines"
(integer :tag "Number")
(const :tag "Default Number" nil))
(repeat :tag "Left Header List"
(choice :menu-tag "Left Header"
:tag "Left Header"
string symbol))
(repeat :tag "Right Header List"
(choice :menu-tag "Right Header"
:tag "Right Header"
string symbol))
(boolean :tag "Kill Local Variable At End")
(repeat
:tag "Default Value List"
:inline t
(cons
:tag ""
(choice
:menu-tag "Variable"
:tag "Variable"
(const :tag "Landscape" ps-landscape-mode)
(const :tag "Print Header" ps-print-header)
(const :tag "Print Header Frame" ps-print-header-frame)
(const :tag "Line Number" ps-line-number)
(const :tag "Zebra Stripes" ps-zebra-stripes)
(const :tag "Duplex" ps-spool-duplex)
(const :tag "Tumble" ps-spool-tumble)
(const :tag "Upside-Down" ps-print-upside-down)
(const :tag "PS File Landscape" pr-file-landscape)
(const :tag "PS File Duplex" pr-file-duplex)
(const :tag "PS File Tumble" pr-file-tumble)
(const :tag "Auto Region" pr-auto-region)
(const :tag "Auto Mode" pr-auto-mode)
(const :tag "Ghostscript Device" pr-gs-device)
(const :tag "Ghostscript Resolution" pr-gs-resolution)
(const :tag "inherits-from:" inherits-from:)
(variable :tag "Other"))
(sexp :tag "Value")))
)))
(defcustom pr-ps-utility 'mpage
"Specify PostScript utility symbol.
This utility symbol should be defined on `pr-ps-utility-alist' (see it for
documentation).
This variable should be modified by customization engine. If this variable is
modified by other means (for example, a Lisp function), use `pr-update-menus'
function (see it for documentation) to update PostScript utility menu.
NOTE: Don't forget to download and install the utilities declared on
`pr-ps-utility-alist'."
:type '(symbol :tag "PS File Utility")
:set 'pr-ps-utility-custom-set)
(defcustom pr-ps-utility-alist
'((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
(psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
(inherits-from: . no-duplex))
)
;; Examples:
;; * On GNU or Unix system:
;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
;; (pr-file-duplex . nil) (pr-file-tumble . nil))
;; )
;; * On Windows system:
;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
;; (pr-file-duplex . nil) (pr-file-tumble . nil))
;; )
"Specify an alist for PostScript utility processing (PS utility database).
The alist element has the form:
(SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
SWITCHES DEFAULT...)
Where:
SYMBOL It's a symbol to identify a PostScript utility. It's for
`pr-ps-utility' variable setting and for menu selection.
Examples:
mpage
psnup
UTILITY Name of utility for processing a PostScript file.
See also `pr-path-alist'.
Examples:
. for GNU or Unix system:
\"mpage\"
\"psnup -q\"
. for Windows system:
\"c:/psutils/psnup -q\"
MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
program. These options are necessary to process the utility
program and must be placed before any other switches.
Example:
. for psnup:
(\"-q\")
PAPERSIZE It's a format string to specify paper size switch.
Example:
. for mpage
\"-b%s\"
N-UP It's a format string to specify n-up switch.
Example:
. for psnup
\"-%d\"
LANDSCAPE It's a string to specify landscape switch. If the utility
doesn't have landscape switch, set to nil.
Example:
. for psnup
\"-l\"
DUPLEX It's a string to specify duplex switch. If the utility doesn't
have duplex switch, set to nil.
Example:
. for psnup
nil
TUMBLE It's a string to specify tumble switch. If the utility doesn't
have tumble switch, set to nil.
Example:
. for psnup
nil
OUTPUT It's a string to specify how to generate an output file. Some
utilities accept an output file option, but some others need
output redirection or some other way to specify an output file.
Example:
. for psnup
\" \" ; psnup ... input output
. for mpage
\">\" ; mpage ... input > output
SWITCHES List of sexp's to pass as extra options to the PostScript utility
program.
Example:
. for psnup
(\"-q\")
nil
DEFAULT It's a way to set default values when this entry is selected.
It's a cons like:
(VARIABLE . VALUE)
Which associates VARIABLE with VALUE. When this entry is
selected, it's executed the following command:
(set VARIABLE (eval VALUE))
Note that VALUE can be any valid Lisp expression. So, don't
forget to quote symbols and constant lists.
If VARIABLE is the special keyword `inherits-from:', VALUE must
be a symbol name setting defined in `pr-setting-database' from
which the current setting inherits the context. Take care with
circular inheritance.
Examples:
(pr-file-landscape . nil)
(pr-file-duplex . t)
(pr-gs-device . (my-gs-device t))
This variable should be modified by customization engine. If this variable is
modified by other means (for example, a Lisp function), use `pr-update-menus'
function (see it for documentation) to update PostScript utility menu.
NOTE: Don't forget to download and install the utilities declared on
`pr-ps-utility-alist'.
Examples:
* On GNU or Unix system:
((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
(psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
(pr-file-duplex . nil) (pr-file-tumble . nil))
)
* On Windows system:
((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
nil (pr-file-duplex . nil) (pr-file-tumble . nil))
)
Useful links:
* mpage download (GNU or Unix)
`https://www.mesa.nl/pub/mpage/'
* mpage documentation (GNU or Unix - or type `man mpage')
`https://linux.die.net/man/1/mpage'
* psnup (Windows, GNU or Unix)
`http://www.knackered.org/angus/psutils/'
`http://gershwin.ens.fr/vdaniel/Doc-Locale/Outils-Gnu-Linux/PsUtils/'
* psnup (PsUtils for Windows)
`https://gnuwin32.sourceforge.net/packages/psutils.htm'
* psnup documentation (GNU or Unix - or type `man psnup')
`https://linux.die.net/man/1/psnup'
* GNU Enscript (Windows, GNU or Unix)
`https://people.ssh.com/mtr/genscript/'
* GNU Enscript documentation (Windows, GNU or Unix)
`https://people.ssh.com/mtr/genscript/enscript.man.html'
(on GNU or Unix, type `man enscript')"
:type '(repeat
(list :tag "PS File Utility"
(symbol :tag "Utility Symbol")
(string :tag "Utility Name")
(repeat :tag "Must Utility Switches"
(sexp :tag "Switch" :value ""))
(choice :menu-tag "Paper Size"
:tag "Paper Size"
(const :tag "No Paper Size" nil)
(string :tag "Paper Size Format"))
(choice :menu-tag "N-Up"
:tag "N-Up"
(const :tag "No N-Up" nil)
(string :tag "N-Up Format"))
(choice :menu-tag "Landscape"
:tag "Landscape"
(const :tag "No Landscape" nil)
(string :tag "Landscape Switch"))
(choice :menu-tag "Duplex"
:tag "Duplex"
(const :tag "No Duplex" nil)
(string :tag "Duplex Switch"))
(choice :menu-tag "Tumble"
:tag "Tumble"
(const :tag "No Tumble" nil)
(string :tag "Tumble Switch"))
(string :tag "Output Separator")
(repeat :tag "Utility Switches"
(sexp :tag "Switch" :value ""))
(repeat
:tag "Default Value List"
:inline t
(cons
:tag ""
(choice
:menu-tag "Variable"
:tag "Variable"
(const :tag "PS File Landscape" pr-file-landscape)
(const :tag "PS File Duplex" pr-file-duplex)
(const :tag "PS File Tumble" pr-file-tumble)
(const :tag "Ghostscript Device" pr-gs-device)
(const :tag "Ghostscript Resolution" pr-gs-resolution)
(const :tag "inherits-from:" inherits-from:)
(variable :tag "Other"))
(sexp :tag "Value")))
))
:set 'pr-alist-custom-set)
(defcustom pr-menu-lock t
"Non-nil means menu is locked while selecting toggle options.
See also `pr-menu-char-height' and `pr-menu-char-width'."
:type 'boolean)
(defcustom pr-menu-char-height (frame-char-height)
"Specify menu char height in pixels.
This variable is used to guess which vertical position should be locked the
menu, so don't forget to adjust it if menu position is not ok.
See also `pr-menu-lock' and `pr-menu-char-width'."
:type 'integer)
(defcustom pr-menu-char-width (frame-char-width)
"Specify menu char width in pixels.
This variable is used to guess which horizontal position should be locked the
menu, so don't forget to adjust it if menu position is not ok.
See also `pr-menu-lock' and `pr-menu-char-height'."
:type 'integer)
(defcustom pr-setting-database
'((no-duplex ; setting symbol name
nil nil nil ; inherits local kill-local
(pr-file-duplex . nil) ; settings
(pr-file-tumble . nil))
)
"Specify an alist for settings in general.
The elements have the following form:
(SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
Where:
SYMBOL It's a symbol to identify the setting group.
INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
setting from which the current setting inherits the context.
If INHERITS is nil, means that there is no inheritance.
This is a simple inheritance mechanism.
Let's see an example to illustrate the inheritance mechanism:
(setq pr-setting-database
\\='((no-duplex ; setting symbol name
nil ; inherits
nil nil ; local kill-local
(pr-file-duplex . nil) ; settings
(pr-file-tumble . nil)
)
(no-duplex-and-landscape ; setting symbol name
no-duplex ; inherits
nil nil ; local kill-local
(pr-file-landscape . nil) ; settings
)))
The example above has two setting groups: no-duplex and
no-duplex-and-landscape. When setting no-duplex is activated
through `inherits-from:' (see option `pr-ps-utility',
`pr-mode-alist' and `pr-ps-printer-alist'), the variables
pr-file-duplex and pr-file-tumble are both set to nil.
Now when setting no-duplex-and-landscape is activated through
`inherits-from:', the variable pr-file-landscape is set to nil
and also the settings for no-duplex are done, because
no-duplex-and-landscape inherits settings from no-duplex.
Take care with circular inheritance. It's an error if circular
inheritance happens.
LOCAL Non-nil means that all settings for SYMBOL group will be
declared local buffer.
KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
killed at end. It has effect only when LOCAL is non-nil.
SETTING It's a cons like:
(VARIABLE . VALUE)
Which associates VARIABLE with VALUE. When this entry is
selected, it's executed the following command:
* If LOCAL is non-nil:
(set (make-local-variable VARIABLE) (eval VALUE))
* If LOCAL is nil:
(set VARIABLE (eval VALUE))
Note that VALUE can be any valid Lisp expression. So, don't
forget to quote symbols and constant lists.
This setting is ignored if VARIABLE is equal to keyword
`inherits-from:'.
Examples:
(ps-landscape-mode . nil)
(ps-spool-duplex . t)
(pr-gs-device . (my-gs-device t))"
:type '(repeat
(list
:tag ""
(symbol :tag "Setting Name")
(choice :menu-tag "Inheritance"
:tag "Inheritance"
(const :tag "No Inheritance" nil)
(symbol :tag "Inherits From"))
(boolean :tag "Local Buffer Setting")
(boolean :tag "Kill Local Variable At End")
(repeat
:tag "Setting List"
:inline t
(cons
:tag ""
(choice
:menu-tag "Variable"
:tag "Variable"
(const :tag "Landscape" ps-landscape-mode)
(const :tag "Print Header" ps-print-header)
(const :tag "Print Header Frame" ps-print-header-frame)
(const :tag "Line Number" ps-line-number)
(const :tag "Zebra Stripes" ps-zebra-stripes)
(const :tag "Duplex" ps-spool-duplex)
(const :tag "Tumble" ps-spool-tumble)
(const :tag "Upside-Down" ps-print-upside-down)
(const :tag "PS File Landscape" pr-file-landscape)
(const :tag "PS File Duplex" pr-file-duplex)
(const :tag "PS File Tumble" pr-file-tumble)
(const :tag "Auto Region" pr-auto-region)
(const :tag "Auto Mode" pr-auto-mode)
(const :tag "Ghostscript Device" pr-gs-device)
(const :tag "Ghostscript Resolution" pr-gs-resolution)
(variable :tag "Other"))
(sexp :tag "Value")))
)))
(defcustom pr-visible-entry-list
'(postscript text postscript-options postscript-process printing help)
"Specify a list of Printing menu visible entries.
Valid values with the corresponding menu parts are:
+------------------------------+
| Printing Interface |
+------------------------------+
`postscript' | PostScript Preview >|
| PostScript Print >|
| PostScript Printer: name >|
+------------------------------+
`text' | Printify >|
| Print >|
| Text Printer: name >|
+------------------------------+
`postscript-options' |[ ] Landscape |
|[ ] Print Header |
|[ ] Print Header Frame |
|[ ] Line Number |
|[ ] Zebra Stripes |
|[ ] Duplex |
|[ ] Tumble |
|[ ] Upside-Down |
| Print All Pages >|
+------------------------------+
`postscript-process' |[ ] Spool Buffer |
|[ ] Print with faces |
|[ ] Print via Ghostscript |
+------------------------------+
`printing' |[ ] Auto Region |
|[ ] Auto Mode |
|[ ] Menu Lock |
+------------------------------+
`help' | Customize >|
| Show Settings >|
| Help |
+------------------------------+
Any other value is ignored."
:type '(repeat :tag "Menu Visible Part"
(choice :menu-tag "Menu Part"
:tag "Menu Part"
(const postscript)
(const text)
(const postscript-options)
(const postscript-process)
(const printing)
(const help))))
(defcustom pr-delete-temp-file t
"Non-nil means delete temporary files.
Set `pr-delete-temp-file' to nil, if the following message (or a similar)
happens when printing:
Error: could not open \"c:\\temp\\prspool.ps\" for reading."
:type 'boolean)
(defcustom pr-list-directory nil
"Non-nil means list directory when processing a directory.
That is, any subdirectories (and the superdirectory) of the directory (given as
argument of functions below) are also printed (as `dired-mode' listings).
It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
`pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
and `pr-txt-directory'."
:type 'boolean)
(defcustom pr-buffer-name "*Printing Interface*"
"Specify the name of the buffer interface for printing package.
It's used by `pr-interface'."
:type 'string)
(defcustom pr-buffer-name-ignore
(list (regexp-quote pr-buffer-name) ; ignore printing interface buffer
"^ .*$") ; ignore invisible buffers
"Specify a regexp list for buffer names to be ignored in interface buffer.
NOTE: Case is important for matching, that is, `case-fold-search' is always
nil.
It's used by `pr-interface'."
:type '(repeat (regexp :tag "Buffer Name Regexp")))
(defcustom pr-buffer-verbose t
"Non-nil means to be verbose when editing a field in interface buffer.
It's used by `pr-interface'."
:type 'boolean)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Internal Variables
(defvar pr-txt-command nil
"Name of program for printing a text file.
See `pr-txt-printer-alist'.")
(defvar pr-txt-switches nil
"List of sexp's to pass as extra options to the text printer program.
See `pr-txt-printer-alist'.")
(defvar pr-txt-printer nil
"Specify text printer name.
See `pr-txt-printer-alist'.")
(defvar pr-ps-command nil
"Name of program for printing a PostScript file.
See `pr-ps-printer-alist'.")
(defvar pr-ps-switches nil
"List of sexp's to pass as extra options to the PostScript printer program.
See `pr-ps-printer-alist'.")
(defvar pr-ps-printer-switch nil
"Specify PostScript printer name switch.
See `pr-ps-printer-alist'.")
(defvar pr-ps-printer nil
"Specify PostScript printer name.
See `pr-ps-printer-alist'.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Keys & Menus
(defsubst pr-visible-p (key)
(memq key pr-visible-entry-list))
(defsubst pr-mode-alist-p ()
(cdr (assq major-mode pr-mode-alist)))
(defsubst pr-auto-mode-p ()
(and pr-auto-mode (pr-mode-alist-p)))
(defsubst pr-using-ghostscript-p ()
(and pr-print-using-ghostscript (not pr-spool-p)))
(defconst pr-menu-spec
'(
["Printing Interface" pr-interface
:help "Use buffer interface instead of menu interface"]
"--"
("PostScript Preview" :included (pr-visible-p 'postscript)
:help "Preview PostScript instead of sending to printer"
("Directory" :active (not pr-spool-p)
["1-up" (pr-ps-directory-preview 1 nil nil t) t]
["2-up" (pr-ps-directory-preview 2 nil nil t) t]
["4-up" (pr-ps-directory-preview 4 nil nil t) t]
["Other..." (pr-ps-directory-preview nil nil nil t)
:keys "\\[pr-ps-buffer-preview]"])
("Buffer" :active (not pr-spool-p)
["1-up" (pr-ps-buffer-preview 1 t) t]
["2-up" (pr-ps-buffer-preview 2 t) t]
["4-up" (pr-ps-buffer-preview 4 t) t]
["Other..." (pr-ps-buffer-preview nil t)
:keys "\\[pr-ps-buffer-preview]"])
("Region" :active (and (not pr-spool-p) mark-active)
["1-up" (pr-ps-region-preview 1 t) t]
["2-up" (pr-ps-region-preview 2 t) t]
["4-up" (pr-ps-region-preview 4 t) t]
["Other..." (pr-ps-region-preview nil t)
:keys "\\[pr-ps-region-preview]"])
("Mode" :active (and (not pr-spool-p) (pr-mode-alist-p))
["1-up" (pr-ps-mode-preview 1 t) t]
["2-up" (pr-ps-mode-preview 2 t) t]
["4-up" (pr-ps-mode-preview 4 t) t]
["Other..." (pr-ps-mode-preview nil t)
:keys "\\[pr-ps-mode-preview]"])
("File"
["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
:keys "\\[pr-ps-file-preview]"
:help "Preview PostScript file"]
"--"
["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
:help "Select PostScript utility"]
"--"
["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
["Other..." (pr-ps-file-up-preview nil t t)
:keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
"--"
["Landscape" pr-toggle-file-landscape-menu
:style toggle :selected pr-file-landscape
:help "Toggle landscape for PostScript file"
:active pr-ps-utility-alist]
["Duplex" pr-toggle-file-duplex-menu
:style toggle :selected pr-file-duplex
:help "Toggle duplex for PostScript file"
:active pr-ps-utility-alist]
["Tumble" pr-toggle-file-tumble-menu
:style toggle :selected pr-file-tumble
:help "Toggle tumble for PostScript file"
:active (and pr-file-duplex pr-ps-utility-alist)])
["Despool..." (call-interactively 'pr-despool-preview)
:active pr-spool-p :keys "\\[pr-despool-preview]"
:help "Despool PostScript buffer to printer or file (C-u)"])
("PostScript Print" :included (pr-visible-p 'postscript)
:help "Send PostScript to printer or file (C-u)"
("Directory"
["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
["Other..." (pr-ps-directory-ps-print nil nil nil t)
:keys "\\[pr-ps-buffer-ps-print]"])
("Buffer"
["1-up" (pr-ps-buffer-ps-print 1 t) t]
["2-up" (pr-ps-buffer-ps-print 2 t) t]
["4-up" (pr-ps-buffer-ps-print 4 t) t]
["Other..." (pr-ps-buffer-ps-print nil t)
:keys "\\[pr-ps-buffer-ps-print]"])
("Region" :active mark-active
["1-up" (pr-ps-region-ps-print 1 t) t]
["2-up" (pr-ps-region-ps-print 2 t) t]
["4-up" (pr-ps-region-ps-print 4 t) t]
["Other..." (pr-ps-region-ps-print nil t)
:keys "\\[pr-ps-region-ps-print]"])
("Mode" :active (pr-mode-alist-p)
["1-up" (pr-ps-mode-ps-print 1 t) t]
["2-up" (pr-ps-mode-ps-print 2 t) t]
["4-up" (pr-ps-mode-ps-print 4 t) t]
["Other..." (pr-ps-mode-ps-print nil t)
:keys "\\[pr-ps-mode-ps-print]"])
("File"
["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
:keys "\\[pr-ps-file-ps-print]"
:help "Send PostScript file to printer"]
"--"
["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
:help "Select PostScript utility"]
"--"
["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
["Other..." (pr-ps-file-up-ps-print nil t t)
:keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
"--"
["Landscape" pr-toggle-file-landscape-menu
:style toggle :selected pr-file-landscape
:help "Toggle landscape for PostScript file"
:active pr-ps-utility-alist]
["Duplex" pr-toggle-file-duplex-menu
:style toggle :selected pr-file-duplex
:help "Toggle duplex for PostScript file"
:active pr-ps-utility-alist]
["Tumble" pr-toggle-file-tumble-menu
:style toggle :selected pr-file-tumble
:help "Toggle tumble for PostScript file"
:active (and pr-file-duplex pr-ps-utility-alist)])
["Despool..." (call-interactively 'pr-despool-ps-print)
:active pr-spool-p :keys "\\[pr-despool-ps-print]"
:help "Despool PostScript buffer to printer or file (C-u)"])
["PostScript Printers" pr-update-menus
:active pr-ps-printer-alist :included (pr-visible-p 'postscript)
:help "Select PostScript printer"]
"--"
("Printify" :included (pr-visible-p 'text)
:help
"Replace non-printing chars with printable representations."
["Directory" pr-printify-directory t]
["Buffer" pr-printify-buffer t]
["Region" pr-printify-region mark-active])
("Print" :included (pr-visible-p 'text)
:help "Send text to printer"
["Directory" pr-txt-directory t]
["Buffer" pr-txt-buffer t]
["Region" pr-txt-region mark-active]
["Mode" pr-txt-mode (pr-mode-alist-p)])
["Text Printers" pr-update-menus
:active pr-txt-printer-alist :included (pr-visible-p 'text)
:help "Select text printer"]
"--"
["Landscape" pr-toggle-landscape-menu
:style toggle :selected ps-landscape-mode
:included (pr-visible-p 'postscript-options)]
["Print Header" pr-toggle-header-menu
:style toggle :selected ps-print-header
:included (pr-visible-p 'postscript-options)]
["Print Header Frame" pr-toggle-header-frame-menu
:style toggle :selected ps-print-header-frame :active ps-print-header
:included (pr-visible-p 'postscript-options)]
["Line Number" pr-toggle-line-menu
:style toggle :selected ps-line-number
:included (pr-visible-p 'postscript-options)]
["Zebra Stripes" pr-toggle-zebra-menu
:style toggle :selected ps-zebra-stripes
:included (pr-visible-p 'postscript-options)]
["Duplex" pr-toggle-duplex-menu
:style toggle :selected ps-spool-duplex
:included (pr-visible-p 'postscript-options)]
["Tumble" pr-toggle-tumble-menu
:style toggle :selected ps-spool-tumble :active ps-spool-duplex
:included (pr-visible-p 'postscript-options)]
["Upside-Down" pr-toggle-upside-down-menu
:style toggle :selected ps-print-upside-down
:included (pr-visible-p 'postscript-options)]
("Print All Pages" :included (pr-visible-p 'postscript-options)
:help "Select odd/even pages/sheets to print"
["All Pages" (pr-even-or-odd-pages nil)
:style radio :selected (eq ps-even-or-odd-pages nil)]
["Even Pages" (pr-even-or-odd-pages 'even-page)
:style radio :selected (eq ps-even-or-odd-pages 'even-page)]
["Odd Pages" (pr-even-or-odd-pages 'odd-page)
:style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
:style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
:style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
"--"
["Spool Buffer" pr-toggle-spool-menu
:style toggle :selected pr-spool-p
:included (pr-visible-p 'postscript-process)
:help "Toggle PostScript spooling"]
["Print with faces" pr-toggle-faces-menu
:style toggle :selected pr-faces-p
:included (pr-visible-p 'postscript-process)
:help "Toggle PostScript printing with faces"]
["Print via Ghostscript" pr-toggle-ghostscript-menu
:style toggle :selected pr-print-using-ghostscript
:included (pr-visible-p 'postscript-process)
:help "Toggle PostScript generation using ghostscript"]
"--"
["Auto Region" pr-toggle-region-menu
:style toggle :selected pr-auto-region
:included (pr-visible-p 'printing)]
["Auto Mode" pr-toggle-mode-menu
:style toggle :selected pr-auto-mode
:included (pr-visible-p 'printing)]
["Menu Lock" pr-toggle-lock-menu
:style toggle :selected pr-menu-lock
:included (pr-visible-p 'printing)]
"--"
("Customize" :included (pr-visible-p 'help)
["printing" pr-customize t]
["ps-print" ps-print-customize t]
["lpr" lpr-customize t])
("Show Settings" :included (pr-visible-p 'help)
["printing" pr-show-pr-setup t]
["ps-print" pr-show-ps-setup t]
["lpr" pr-show-lpr-setup t])
["Help" pr-help :active t :included (pr-visible-p 'help)]
))
(defun pr-menu-bind ()
"Install `printing' menu in the menubar.
This replaces the File/Print* menu entries with a File/Print sub-menu.
Calls `pr-update-menus' to adjust menus."
(interactive)
(pr-global-menubar pr-menu-spec)
(pr-update-menus t))
;; Key binding
;; FIXME: These should be moved to a function so that just loading the file
;; doesn't affect the global keymap!
(global-set-key [print] 'pr-ps-fast-fire)
;; Well, M-print and S-print are used because on my keyboard S-print works
;; and M-print doesn't. But M-print can work on other keyboards.
(global-set-key [(meta print)] 'pr-ps-mode-using-ghostscript)
(global-set-key [(shift print)] 'pr-ps-mode-using-ghostscript)
;; Well, C-print and C-M-print are used because in my keyboard C-M-print works
;; and C-print doesn't. But C-print can work in other keyboard.
(global-set-key [(control print)] 'pr-txt-fast-fire)
(global-set-key [(control meta print)] 'pr-txt-fast-fire)
;;; You can also use something like:
;;;(global-set-key "\C-ci" 'pr-interface)
;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
;;;(global-set-key "\C-crp" 'pr-ps-region-print)
;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Help Message
(defconst pr-help-message
"\
Menu Layout
-----------
The `printing' menu (Tools/Printing or File/Print) has the following layout:
+-----------------------------+
A 0 | Printing Interface |
+-----------------------------+ +-A---------+ +-B------+
I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
+-----------------------------+ |Mode >|-- B |Other...|
II 4 | Printify >|-----\\ |File >|--\\ +--------+
5 | Print >|---\\ | |Despool... | |
6 | Text Printer: name >|-\\ | | +-----------+ |
+-----------------------------+ | | | +---------+ +------------+
III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
8 |[ ]Print Header | | | |Buffer | +------------+ Ib
9 |[ ]Print Header Frame | | | |Region | | name >|- C
10 |[ ]Line Number | | | +---------+ +------------+
11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
12 |[ ]Duplex | | \\---|Directory| | 2-up... |
13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
14 |[ ]Upside-Down | | |Region | | Other... |
15 | Print All Pages >|--\\ | |Mode | +------------+
+-----------------------------+ | | +---------+ |[ ]Landscape| Id
IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
18 |[ ]Print via Ghostscript | | |( )name B| +------------+
+-----------------------------+ | |... |
V 19 |[ ]Auto Region | | |(*)name |
20 |[ ]Auto Mode | | |... |
21 |[ ]Menu Lock | | +---------+ +--------------+
+-----------------------------+ \\------------------|(*)All Pages |
VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
23 | Show Settings >|-------|printing| |( )Odd Pages |
24 | Help | |ps-print| |( )Even Sheets|
+-----------------------------+ |lpr | |( )Odd Sheets |
+--------+ +--------------+
See `pr-visible-entry-list' for hiding some parts of the menu.
The menu has the following sections:
A. Interface:
0. You can use a buffer interface instead of menus. It looks like the
customization buffer. Basically, it has the same options found in the
menu and some extra options, all this on a buffer.
I. PostScript printing:
1. You can generate a PostScript file (if you type \\[universal-argument] before activating
menu) or PostScript temporary file for a directory, a buffer, a region
or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
after file generation, ghostview is activated using the file generated
as argument. This option is disabled if spooling is on (option 16).
Also, if you already have a PostScript file you can preview it.
Instead of previewing each buffer, region or major mode at once, you
can save temporarily the PostScript code generated in a buffer and
preview it later. The option `Despool...' despools the PostScript
spooling buffer in a temporary file and uses ghostview to preview it.
If you type C-u before choosing this option, the PostScript code
generated is saved in a file instead of saving in a temporary file. To
spool the PostScript code generated you need to turn on the option 16.
The option `Despool...' is enabled if spooling is on (option 16).
NOTE 1: It's possible to customize a major mode printing, just declare
the customization in `pr-mode-alist' and invoke some of
`*-mode*' commands or select Mode option in Printing menu. An
example for major mode usage is when you're using gnus (or mh,
or rmail, etc.) and you're in the *Summary* buffer, if you
forget to switch to the *Article* buffer before printing,
you'll get a nicely formatted list of article subjects shows
up at the printer. With major mode printing you don't need to
switch from gnus *Summary* buffer first.
NOTE 2: There are the following options for PostScript file processing:
Ia. Print the file *No Preprocessing*, that is, send it
directly to PostScript printer.
Ib. PostScript utility processing selection.
See `pr-ps-utility-alist' and `pr-setting-database' for
documentation.
Ic. Do n-up processing before printing.
Id. Toggle on/off landscape for PostScript file processing.
Ie. Toggle on/off duplex for PostScript file processing.
If. Toggle on/off tumble for PostScript file processing.
NOTE 3: Don't forget to download and install the utilities declared on
`pr-ps-utility-alist'.
2. Operate the same way as option 1, but it sends directly the PostScript
code (or put in a file, if you've typed \\[universal-argument]) or it uses ghostscript to
print the PostScript file generated. It depends on option 18, if it's
turned on, it uses ghostscript; otherwise, it sends directly to
printer. If spooling is on (option 16), the PostScript code is saved
temporarily in a buffer instead of printing it or saving it in a file.
Also, if you already have a PostScript file you can print it.
Instead of printing each buffer, region or major mode at once, you can
save temporarily the PostScript code generated in a buffer and print it
later. The option `Despool...' despools the PostScript spooling buffer
directly on a printer. If you type \\[universal-argument] before choosing this option,
the PostScript code generated is saved in a file instead of sending it to
the printer. To spool the PostScript code generated you need to turn on
option 16. This option is enabled if spooling is on (option 16).
See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
3. You can select a new PostScript printer to send PostScript code
generated. For selection it's used all PostScript printers defined
in `pr-ps-printer-alist' variable (see it for documentation).
See also `pr-setting-database'.
II. Text printing:
4. If you have control characters (character code from \\000 to \\037) in a
buffer and you want to print them in a text printer, select this
option. All control characters in your buffer or region will be
replaced by a printable representation. The printable representations
use ^ (for ASCII control characters) or hex. The characters tab,
linefeed, space, return and formfeed are not affected.
You don't need to select this option if you use any option of section
I, the PostScript engine treats control characters properly.
5. If you want to print a directory, buffer, region or major mode in a
text printer, select this option. See also the NOTE 1 on option 1.
6. You can select a new text printer to send text generated. For
selection it's used all text printers defined in `pr-txt-printer-alist'
variable (see it for documentation).
See also `pr-setting-database'.
III. PostScript page toggle options:
7. If you want a PostScript landscape printing, turn on this option.
8. If you want to have a header in each page in your PostScript code,
turn on this option.
9. If you want to draw a gaudy frame around the header, turn on this
option. This option is enabled if print header is on (option 8).
10. If you want that the line number is printed in your PostScript code,
turn on this option.
11. If you want background zebra stripes in your PostScript code, turn on
this option.
12. If you want a duplex printing and your PostScript printer has this
feature, turn on this option.
13. If you turned on duplex printing, you can choose if you want to have a
printing suitable for binding on the left or right (tumble off), or to
have a printing suitable for binding at top or bottom (tumble on).
This option is enabled if duplex is on (option 12).
14. If you want a PostScript upside-down printing, turn on this option.
15. With this option, you can choose if you want to print all pages, odd
pages, even pages, odd sheets or even sheets.
See also `ps-even-or-odd-pages'.
IV. PostScript processing toggle options:
16. If you want to spool the PostScript code generated, turn on this
option. To spool the PostScript code generated use option 2. You can
despool later by choosing option 1 or 2, sub-option `Despool...'.
17. If you use colors in your buffers and want to see these colors on your
PostScript code generated, turn on this option. If you have a
black/white PostScript printer, these colors are displayed in gray
scale by PostScript printer interpreter.
18. If you don't have a PostScript printer to send PostScript files, turn
on this option. When this option is on, the ghostscript is used to
print PostScript files. In GNU or Unix system, if ghostscript is set
as a PostScript filter, you don't need to turn on this option.
V. Printing customization:
19. If you want that region is automagically detected, turn on this
option. Note that this will only work if you're using transient mark
mode. When this option is on, the `*-buffer*' commands will behave
like `*-region*' commands, that is, `*-buffer*' commands will print
only the region marked instead of all buffer.
20. Turn this option on if you want that when current major-mode is
declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
behave like `*-mode*' commands.
21. If you want that Printing menu stays open while you are setting
toggle options, turn on this option. The variables
`pr-menu-char-height' and `pr-menu-char-width' are used to guess the
menu position, so don't forget to adjust these variables if menu
position is not ok.
VI. Customization:
22. Besides all options in section III, IV and V, you can customize much
more PostScript options in `ps-print' option. Or you can customize
some `lpr' options for text printing. Or customize `printing'
options.
23. Show current settings for `printing', `ps-print' or `lpr'.
24. Quick help for printing menu layout.
"
"Printing help message.")
(defconst pr-interface-help-message
"\
The printing interface buffer has the same functionality as the printing menu.
The major difference is that the states (like sending PostScript generated to a
file, n-up printing, etc.) are set and saved between printing buffer
activation. Also, the landscape, duplex and tumble values are the same for
PostScript file and directory/buffer/region/mode processing; using menu, there
are different value sets for PostScript file and directory/buffer/region/mode
processing.
The printing interface buffer has the following sections:
1. Print:
Here you can choose to print/preview a buffer, a directory or a PostScript
file:
1a. Buffer:
* Buffer List:
Select a buffer from the current buffer list.
* Region:
If it's on, this means that the selected buffer has an active region,
so you can turn on/off, as you wish.
If it's off when a buffer is selected, this means that the selected
buffer has no active region, so it'll not be possible to turn it on.
If you want to process the region, let this option on.
If you want to process the whole buffer, let this option off.
* Mode:
If it's on, this means that the selected buffer major mode is declared
for major mode processing, so you can turn on/off, as you wish.
If it's off when a buffer is selected, this means that the selected
buffer major mode isn't declared for major mode processing, so it'll
not be possible to turn it on.
If you want the major mode processing, let this option on.
If you don't want the major mode processing, let this option off.
NOTE 1: It's possible to customize a major mode printing, just declare
the customization in `pr-mode-alist' and invoke some of
`*-mode*' commands or select Mode option in Printing menu. An
example for major mode usage is when you're using gnus (or mh,
or rmail, etc.) and you're in the *Summary* buffer, if you
forget to switch to the *Article* buffer before printing,
you'll get a nicely formatted list of article subjects shows
up at the printer. With major mode printing you don't need to
switch from gnus *Summary* buffer first.
1b. Directory:
* Directory:
Specify a valid directory path.
* File Regexp:
Specify a file name regexp. All file names in the directory that
match with regexp will be printed/previewed. An empty file name
regexp means to print/preview all files in the directory.
* List Directory Entry:
If it's turned on, list directory entries besides file entries.
1c. PostScript file:
* PostScript File:
Specify an existent PostScript file to print/preview.
* PostScript Utility:
Select a PostScript utility.
See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
NOTE 2: Don't forget to download and install the utilities declared on
`pr-ps-utility-alist'.
* No Preprocessing:
If it's turned on, don't use the PostScript utility to preprocess the
PostScript file before printing/previewing.
2. PostScript printer:
* PostScript Printer:
You can select a new PostScript printer to send PostScript code
generated. For selection it's used all PostScript printers defined
in `pr-ps-printer-alist' variable (see it for documentation).
See also `pr-setting-database'.
* Despool:
If spooling is on, you can turn it on/off, as you wish.
If spooling is off, it'll not be possible to turn it on.
If it's turned on, specify to despools the PostScript spooling buffer in
a temporary file or in the selected PostScript file when
printing/previewing.
* Preview:
Preview the PostScript generated.
* Print:
Print the PostScript generated.
* Quit:
Quit from printing interface buffer.
* Send to Printer/Temporary File:
If it's turned on, the PostScript generated is sent directly to
PostScript printer or, for previewing, to a temporary file.
* Send to File:
Specify a file name to send the PostScript generated.
* N-Up:
Specify n-up printing.
3. Text printer:
* Text Printer:
Select a new text printer to send text generated. For selection it's used
all text printers defined in `pr-txt-printer-alist' variable (see it for
documentation). See also `pr-setting-database'.
* Printify:
If you have control characters (character code from \\000 to \\037) in a
buffer and you want to print them in a text printer, select this
option. All control characters in your buffer or region will be
replaced by a printable representation. The printable representations
use ^ (for ASCII control characters) or hex. The characters tab,
linefeed, space, return and formfeed are not affected.
You don't need to select this option if you use any option of section
I, the PostScript engine treats control characters properly.
* Print:
To print a directory, buffer, region or major mode in a
text printer, select this option. See also the NOTE 1 on section 1.
* Quit:
Quit from printing interface buffer.
4. Settings:
There are 3 setting columns:
4a. First column (left column):
* Landscape:
PostScript landscape printing.
* Print Header:
To have a header in each page in your PostScript code.
* Print Header Frame:
To draw a gaudy frame around the header.
* Line Number:
The line number is printed in your PostScript code.
* Zebra Stripes:
Background zebra stripes in your PostScript code.
* Duplex:
Duplex printing (if your PostScript printer has this feature).
* Tumble:
If duplex printing is on, you can choose if you want to have a
printing suitable for binding on the left or right (tumble off), or to
have a printing suitable for binding at top or bottom (tumble on).
* Upside-Down:
PostScript upside-down printing.
4b. Second column (middle column):
* Auto Region:
If you want that region is automagically detected, turn on this
option. Note that this will only work if you're using transient mark
mode. When this option is on, the `*-buffer*' commands will behave
like `*-region*' commands, that is, `*-buffer*' commands will print
only the region marked instead of all buffer.
* Auto Mode:
Turn this option on if you want that when current major-mode is
declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
behave like `*-mode*' commands.
* Menu Lock:
If you want that Printing menu stays open while you are setting
toggle options, turn on this option. The variables
`pr-menu-char-height' and `pr-menu-char-width' are used to guess the
menu position, so don't forget to adjust these variables if menu
position is not ok.
* Spool Buffer:
To spool the PostScript code generated. You can despool later by
setting Despool option on PostScript printer section.
* Print with faces:
If you use colors in your buffers and want to see these colors on your
PostScript code generated, turn on this option. If you have a
black/white PostScript printer, these colors are displayed in gray
scale by PostScript printer interpreter.
* Print via Ghostscript:
If you don't have a PostScript printer to send PostScript files, turn
on this option. When this option is on, the ghostscript is used to
print PostScript files. In GNU or Unix system, if ghostscript is set
as a PostScript filter, you don't need to turn on this option.
* Parity Page Menu:
To print all pages, odd pages, even pages, odd sheets or even sheets.
See also `ps-even-or-odd-pages'.
4c. Third column (right column):
* Verbose:
That is, to be verbose when editing a field in interface buffer.
5. Customize:
Besides all options in section 4, you can customize much more PostScript
options in `ps-print' option. Or you can customize some `lpr' options for
text printing. Or customize `printing' options.
6. Show settings:
Show current settings for `printing', `ps-print' or `lpr'.
7. Help:
Quick help for printing interface buffer and printing menu layout. You can
also quit the printing interface buffer or kill all printing help buffer.
"
"Printing buffer interface help message.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Commands
;;;###autoload
(defun pr-interface (&optional buffer)
"Activate the printing interface buffer.
If BUFFER is nil, the current buffer is used for printing.
For more information, type \\[pr-interface-help]."
(interactive)
(with-current-buffer (or buffer (current-buffer))
(pr-create-interface)))
;;;###autoload
(defun pr-ps-directory-preview (n-up dir file-regexp &optional filename)
"Preview directory using ghostview.
Interactively, the command prompts for N-UP printing number, a directory, a
file name regexp for matching and, when you use a prefix argument (\\[universal-argument]), the
command prompts the user for a file name, and saves the PostScript image in
that file instead of saving it in a temporary file.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
save the image in a temporary file. If FILENAME is a string, save the
PostScript image in a file with that name. If FILENAME is t, prompts for a
file name.
See also documentation for `pr-list-directory'."
(interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
(defvar pr--n-up) (defvar pr--dir) (defvar pr--file-regexp)
(defvar pr--filename)
(let ((pr--n-up n-up) (pr--dir dir) (pr--file-regexp file-regexp)
(pr--filename filename))
(pr-set-ps-dir-args 'pr--n-up 'pr--dir 'pr--file-regexp 'pr--filename
(pr-prompt "PS preview dir"))
(setq pr--filename (pr-ps-file pr--filename))
(pr-ps-file-list pr--n-up pr--dir pr--file-regexp pr--filename)
(or pr-spool-p
(pr-ps-file-preview pr--filename))))
;;;###autoload
(defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename)
"Print directory using PostScript through ghostscript.
Interactively, the command prompts for N-UP printing number, a directory, a
file name regexp for matching and, when you use a prefix argument (\\[universal-argument]), the
command prompts the user for a file name, and saves the PostScript image in
that file instead of saving it in a temporary file.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
save the image in a temporary file. If FILENAME is a string, save the
PostScript image in a file with that name. If FILENAME is t, prompts for a
file name.
See also documentation for `pr-list-directory'."
(interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
(defvar pr--n-up) (defvar pr--dir) (defvar pr--file-regexp)
(defvar pr--filename)
(let ((pr--n-up n-up) (pr--dir dir) (pr--file-regexp file-regexp)
(pr--filename filename))
(pr-set-ps-dir-args 'pr--n-up 'pr--dir 'pr--file-regexp 'pr--filename
(pr-prompt "PS print dir GS"))
(let ((file (pr-ps-file pr--filename)))
(pr-ps-file-list pr--n-up pr--dir pr--file-regexp file)
(pr-ps-file-using-ghostscript file)
(or pr--filename (pr-delete-file file)))))
;;;###autoload
(defun pr-ps-directory-print (n-up dir file-regexp &optional filename)
"Print directory using PostScript printer.
Interactively, the command prompts for N-UP printing number, a directory, a
file name regexp for matching and, when you use a prefix argument (\\[universal-argument]), the
command prompts the user for a file name, and saves the PostScript image in
that file instead of saving it in a temporary file.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
save the image in a temporary file. If FILENAME is a string, save the
PostScript image in a file with that name. If FILENAME is t, prompts for a
file name.
See also documentation for `pr-list-directory'."
(interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
(defvar pr--n-up) (defvar pr--dir) (defvar pr--file-regexp)
(defvar pr--filename)
(let ((pr--n-up n-up) (pr--dir dir) (pr--file-regexp file-regexp)
(pr--filename filename))
(pr-set-ps-dir-args 'pr--n-up 'pr--dir 'pr--file-regexp 'pr--filename
(pr-prompt "PS print dir"))
(let ((file (pr-ps-file pr--filename)))
(pr-ps-file-list pr--n-up pr--dir pr--file-regexp file)
(pr-ps-file-print file)
(or pr--filename (pr-delete-file file)))))
;;;###autoload
(defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename)
"Print directory using PostScript printer or through ghostscript.
It depends on `pr-print-using-ghostscript'.
Interactively, the command prompts for N-UP printing number, a directory, a
file name regexp for matching and, when you use a prefix argument (\\[universal-argument]), the
command prompts the user for a file name, and saves the PostScript image in
that file instead of saving it in a temporary file.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
save the image in a temporary file. If FILENAME is a string, save the
PostScript image in a file with that name. If FILENAME is t, prompts for a
file name.
See also documentation for `pr-list-directory'."
(interactive (pr-interactive-ps-dir-args
(pr-prompt (pr-prompt-gs "PS print dir"))))
(defvar pr--n-up) (defvar pr--dir) (defvar pr--file-regexp)
(defvar pr--filename)
(let ((pr--n-up n-up) (pr--dir dir) (pr--file-regexp file-regexp)
(pr--filename filename))
(pr-set-ps-dir-args 'pr--n-up 'pr--dir 'pr--file-regexp 'pr--filename
(pr-prompt (pr-prompt-gs "PS print dir")))
(funcall (if (pr-using-ghostscript-p)
#'pr-ps-directory-using-ghostscript
#'pr-ps-directory-print)
pr--n-up pr--dir pr--file-regexp pr--filename)))
;;;###autoload
(defun pr-ps-buffer-preview (n-up &optional filename)
"Preview buffer using ghostview.
Interactively, the command prompts for N-UP printing number and, when you use a
prefix argument (\\[universal-argument]), the command prompts the user for a file name, and saves
the PostScript image in that file instead of saving it in a temporary file.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
argument FILENAME is treated as follows: if it's nil, save the image in a
temporary file. If FILENAME is a string, save the PostScript image in a file
with that name. If FILENAME is t, prompts for a file name."
(interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
(if (pr-auto-mode-p)
(pr-ps-mode-preview n-up filename)
(pr-ps-preview (pr-region-active-symbol) n-up filename
(pr-region-active-string "PS preview"))))
;;;###autoload
(defun pr-ps-buffer-using-ghostscript (n-up &optional filename)
"Print buffer using PostScript through ghostscript.
Interactively, the command prompts for N-UP printing number and, when you use a
prefix argument (\\[universal-argument]), the command prompts the user for a file name, and saves
the PostScript image in that file instead of sending it to the printer.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
argument FILENAME is treated as follows: if it's nil, send the image to the
printer. If FILENAME is a string, save the PostScript image in a file with
that name. If FILENAME is t, prompts for a file name."
(interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
(if (pr-auto-mode-p)
(pr-ps-mode-using-ghostscript n-up filename)
(pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
(pr-region-active-string "PS print GS"))))
;;;###autoload
(defun pr-ps-buffer-print (n-up &optional filename)
"Print buffer using PostScript printer.
Interactively, the command prompts for N-UP printing number and, when you use a
prefix argument (\\[universal-argument]), the command prompts the user for a file name, and saves
the PostScript image in that file instead of sending it to the printer.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
argument FILENAME is treated as follows: if it's nil, send the image to the
printer. If FILENAME is a string, save the PostScript image in a file with
that name. If FILENAME is t, prompts for a file name."
(interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
(if (pr-auto-mode-p)
(pr-ps-mode-print n-up filename)
(pr-ps-print (pr-region-active-symbol) n-up filename
(pr-region-active-string "PS print"))))
;;;###autoload
(defun pr-ps-buffer-ps-print (n-up &optional filename)
"Print buffer using PostScript printer or through ghostscript.
It depends on `pr-print-using-ghostscript'.
Interactively, the command prompts for N-UP printing number and, when you use a
prefix argument (\\[universal-argument]), the command prompts the user for a file name, and saves
the PostScript image in that file instead of sending it to the printer.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
argument FILENAME is treated as follows: if it's nil, send the image to the
printer. If FILENAME is a string, save the PostScript image in a file with
that name. If FILENAME is t, prompts for a file name."
(interactive (pr-interactive-n-up-file
(pr-prompt (pr-prompt-gs "PS print"))))
(cond ((pr-auto-mode-p)
(pr-ps-mode-ps-print n-up filename))
((pr-using-ghostscript-p)
(pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
(pr-region-active-string "PS print GS")))
(t
(pr-ps-print (pr-region-active-symbol) n-up filename
(pr-region-active-string "PS print")))))
;;;###autoload
(defun pr-ps-region-preview (n-up &optional filename)
"Preview region using ghostview.
See also `pr-ps-buffer-preview'."
(interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
(if (pr-auto-mode-p)
(let ((pr-auto-region t))
(pr-ps-mode-preview n-up filename))
(pr-ps-preview 'region n-up filename "PS preview region")))
;;;###autoload
(defun pr-ps-region-using-ghostscript (n-up &optional filename)
"Print region using PostScript through ghostscript.
See also `pr-ps-buffer-using-ghostscript'."
(interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
(if (pr-auto-mode-p)
(let ((pr-auto-region t))
(pr-ps-mode-using-ghostscript n-up filename))
(pr-ps-using-ghostscript 'region n-up filename "PS print GS region")))
;;;###autoload
(defun pr-ps-region-print (n-up &optional filename)
"Print region using PostScript printer.
See also `pr-ps-buffer-print'."
(interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
(if (pr-auto-mode-p)
(let ((pr-auto-region t))
(pr-ps-mode-print n-up filename))
(pr-ps-print 'region n-up filename "PS print region")))
;;;###autoload
(defun pr-ps-region-ps-print (n-up &optional filename)
"Print region using PostScript printer or through ghostscript.
See also `pr-ps-buffer-ps-print'."
(interactive (pr-interactive-n-up-file
(pr-prompt-region (pr-prompt-gs "PS print"))))
(cond ((pr-auto-mode-p)
(let ((pr-auto-region t))
(pr-ps-mode-ps-print n-up filename)))
((pr-using-ghostscript-p)
(pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))
(t
(pr-ps-print 'region n-up filename "PS print region"))))
;;;###autoload
(defun pr-ps-mode-preview (n-up &optional filename)
"Preview major mode using ghostview.
See also `pr-ps-buffer-preview'."
(interactive (pr-interactive-n-up-file "PS preview mode"))
(defvar pr--n-up) (defvar pr--filename)
(let ((pr--n-up n-up) (pr--filename filename))
(pr-set-n-up-and-filename 'pr--n-up 'pr--filename "PS preview mode")
(let ((file (pr-ps-file pr--filename)))
(and (pr-ps-mode pr--n-up file)
(not pr-spool-p)
(pr-ps-file-preview file)))))
;;;###autoload
(defun pr-ps-mode-using-ghostscript (n-up &optional filename)
"Print major mode using PostScript through ghostscript.
See also `pr-ps-buffer-using-ghostscript'."
(interactive (pr-interactive-n-up-file "PS print GS mode"))
(defvar pr--n-up) (defvar pr--filename)
(let ((pr--n-up n-up) (pr--filename filename))
(pr-set-n-up-and-filename 'pr--n-up 'pr--filename "PS print GS mode")
(let ((file (pr-ps-file pr--filename)))
(when (and (pr-ps-mode pr--n-up file)
(not pr-spool-p))
(pr-ps-file-using-ghostscript file)
(or pr--filename (pr-delete-file file))))))
;;;###autoload
(defun pr-ps-mode-print (n-up &optional filename)
"Print major mode using PostScript printer.
See also `pr-ps-buffer-print'."
(interactive (pr-interactive-n-up-file "PS print mode"))
(defvar pr--n-up) (defvar pr--filename)
(let ((pr--n-up n-up) (pr--filename filename))
(pr-set-n-up-and-filename 'pr--n-up 'pr--filename "PS print mode")
(pr-ps-mode pr--n-up pr--filename)))
;;;###autoload
(defun pr-ps-mode-ps-print (n-up &optional filename)
"Print major mode using PostScript or through ghostscript.
See also `pr-ps-buffer-ps-print'."
(interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
(if (pr-using-ghostscript-p)
(pr-ps-mode-using-ghostscript n-up filename)
(pr-ps-mode-print n-up filename)))
;;;###autoload
(defun pr-printify-directory (&optional dir file-regexp)
"Replace nonprinting characters in directory with printable representations.
The printable representations use ^ (for ASCII control characters) or hex.
The characters tab, linefeed, space, return and formfeed are not affected.
Interactively, the command prompts for a directory and a file name regexp for
matching.
Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
prompts for FILE(name)-REGEXP.
See also documentation for `pr-list-directory'."
(interactive (pr-interactive-dir-args "Printify dir"))
(defvar pr--dir) (defvar pr--file-regexp)
(let ((pr--dir dir) (pr--file-regexp file-regexp))
(pr-set-dir-args 'pr--dir 'pr--file-regexp "Printify dir")
(pr-file-list pr--dir pr--file-regexp 'pr-printify-buffer)))
;;;###autoload
(defun pr-printify-buffer ()
"Replace nonprinting characters in buffer with printable representations.
The printable representations use ^ (for ASCII control characters) or hex.
The characters tab, linefeed, space, return and formfeed are not affected."
(interactive "*")
(if (pr-region-active-p)
(pr-printify-region)
(printify-region (point-min) (point-max))))
;;;###autoload
(defun pr-printify-region ()
"Replace nonprinting characters in region with printable representations.
The printable representations use ^ (for ASCII control characters) or hex.
The characters tab, linefeed, space, return and formfeed are not affected."
(interactive "*")
(printify-region (point) (mark)))
;;;###autoload
(defun pr-txt-directory (&optional dir file-regexp)
"Print directory using text printer.
Interactively, the command prompts for a directory and a file name regexp for
matching.
Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
prompts for FILE(name)-REGEXP.
See also documentation for `pr-list-directory'."
(interactive (pr-interactive-dir-args "Print dir"))
(defvar pr--dir) (defvar pr--file-regexp)
(let ((pr--dir dir) (pr--file-regexp file-regexp))
(pr-set-dir-args 'pr--dir 'pr--file-regexp "Print dir")
(pr-file-list pr--dir pr--file-regexp 'pr-txt-buffer)))
;;;###autoload
(defun pr-txt-buffer ()
"Print buffer using text printer."
(interactive)
(cond ((pr-auto-mode-p)
(pr-txt-mode))
((pr-region-active-p)
(pr-txt-region))
(t
(pr-txt-print (point-min) (point-max)))))
;;;###autoload
(defun pr-txt-region ()
"Print region using text printer."
(interactive)
(if (pr-auto-mode-p)
(let ((pr-auto-region t))
(pr-txt-mode))
(pr-txt-print (point) (mark))))
;;;###autoload
(defun pr-txt-mode ()
"Print major mode using text printer."
(interactive)
(let ((args (pr-mode-alist-p)))
(if args
(funcall (car args) (nthcdr 2 args))
(ding)
(message "`%s' major mode not declared." major-mode))))
;;;###autoload
(defun pr-despool-preview (&optional filename)
"Preview spooled PostScript.
Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
user for a file name, and saves the spooled PostScript image in that file
instead of saving it in a temporary file.
Noninteractively, the argument FILENAME is treated as follows: if it is nil,
save the image in a temporary file. If FILENAME is a string, save the
PostScript image in a file with that name."
(interactive (list (ps-print-preprint current-prefix-arg)))
(let ((file (pr-ps-file filename)))
(when (stringp file)
(pr-despool-print file)
(pr-ps-file-preview file))))
;;;###autoload
(defun pr-despool-using-ghostscript (&optional filename)
"Print spooled PostScript using ghostscript.
Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
user for a file name, and saves the spooled PostScript image in that file
instead of sending it to the printer.
Noninteractively, the argument FILENAME is treated as follows: if it is nil,
send the image to the printer. If FILENAME is a string, save the PostScript
image in a file with that name."
(interactive (list (ps-print-preprint current-prefix-arg)))
(let ((file (pr-ps-file filename)))
(when (stringp file)
(pr-despool-print file)
(pr-ps-file-using-ghostscript file)
(or filename (pr-delete-file file)))))
;;;###autoload
(defun pr-despool-print (&optional filename)
"Send the spooled PostScript to the printer.
Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
user for a file name, and saves the spooled PostScript image in that file
instead of sending it to the printer.
Noninteractively, the argument FILENAME is treated as follows: if it is nil,
send the image to the printer. If FILENAME is a string, save the PostScript
image in a file with that name."
(interactive (list (ps-print-preprint current-prefix-arg)))
(with-file-modes pr-file-modes
(let ((ps-lpr-command (pr-command pr-ps-command))
(ps-lpr-switches pr-ps-switches)
(ps-printer-name-option pr-ps-printer-switch)
(ps-printer-name pr-ps-printer))
(ps-despool filename))))
;;;###autoload
(defun pr-despool-ps-print (&optional filename)
"Send the spooled PostScript to the printer or use ghostscript to print it.
Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
user for a file name, and saves the spooled PostScript image in that file
instead of sending it to the printer.
Noninteractively, the argument FILENAME is treated as follows: if it is nil,
send the image to the printer. If FILENAME is a string, save the PostScript
image in a file with that name."
(interactive (list (ps-print-preprint current-prefix-arg)))
(if pr-print-using-ghostscript
(pr-despool-using-ghostscript filename)
(pr-despool-print filename)))
;;;###autoload
(defun pr-ps-file-preview (filename)
"Preview PostScript file FILENAME."
(interactive (list (pr-ps-infile-preprint "Preview ")))
(and (stringp filename) (file-exists-p filename)
(pr-call-process pr-gv-command filename)))
;;;###autoload
(defun pr-ps-file-up-preview (n-up ifilename &optional ofilename)
"Preview PostScript file FILENAME."
(interactive (pr-interactive-n-up-inout "PS preview"))
(defvar pr--n-up) (defvar pr--ifilename) (defvar pr--ofilename)
(let ((pr--n-up n-up) (pr--ifilename ifilename) (pr--ofilename ofilename))
(let ((outfile (pr-ps-utility-args 'pr--n-up 'pr--ifilename 'pr--ofilename
"PS preview ")))
(pr-ps-utility-process pr--n-up pr--ifilename outfile)
(pr-ps-file-preview outfile))))
;;;###autoload
(defun pr-ps-file-using-ghostscript (filename)
"Print PostScript file FILENAME using ghostscript."
(interactive (list (pr-ps-infile-preprint "Print preview ")))
(and (stringp filename) (file-exists-p filename)
(let* ((file (expand-file-name filename))
(tempfile (make-temp-file file)))
;; gs use
(pr-call-process pr-gs-command
(format "-sDEVICE=%s" pr-gs-device)
(format "-r%d" pr-gs-resolution)
(pr-switches-string pr-gs-switches "pr-gs-switches")
(format "-sOutputFile=\"%s\""
;; FIXME: Do we need to dosify here really?
(pr-dosify-file-name tempfile))
;; FIXME: Do we need to dosify here really?
(pr-dosify-file-name file)
"-c quit")
;; printing
(pr-ps-file-print tempfile)
;; deleting
(pr-delete-file tempfile))))
;;;###autoload
(defun pr-ps-file-print (filename)
"Print PostScript file FILENAME."
(interactive (list (pr-ps-infile-preprint "Print ")))
(and (stringp filename) (file-exists-p filename)
;; printing
(let ((file (expand-file-name filename)))
(if (string= pr-ps-command "")
;; default action
(let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name)))
(with-current-buffer ps-spool-buffer
(erase-buffer)
(insert-file-contents-literally file))
(pr-despool-print))
;; use `pr-ps-command' to print
(apply #'pr-call-process
pr-ps-command
(pr-switches-string pr-ps-switches "pr-ps-switches")
(if (string-match "cp" pr-ps-command)
;; for "cp" (cmd in out)
(list (pr-dosify-file-name file)
(concat pr-ps-printer-switch pr-ps-printer))
;; else, for others (cmd out in)
(list (concat pr-ps-printer-switch pr-ps-printer)
(pr-dosify-file-name file))))))))
;;;###autoload
(defun pr-ps-file-ps-print (filename)
"Send PostScript file FILENAME to printer or use ghostscript to print it."
(interactive (list (pr-ps-infile-preprint
(if pr-print-using-ghostscript
"Print preview "
"Print "))))
(if pr-print-using-ghostscript
(pr-ps-file-using-ghostscript filename)
(pr-ps-file-print filename)))
;;;###autoload
(defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename)
"Process a PostScript file IFILENAME and send it to printer.
Interactively, the command prompts for N-UP printing number, for an input
PostScript file IFILENAME and, when you use a prefix argument (\\[universal-argument]), the
command prompts the user for an output PostScript file name OFILENAME, and
saves the PostScript image in that file instead of sending it to the printer.
Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
argument IFILENAME is treated as follows: if it's t, prompts for an input
PostScript file name; otherwise, it *must* be a string that it's an input
PostScript file name. The argument OFILENAME is treated as follows: if it's
nil, send the image to the printer. If OFILENAME is a string, save the
PostScript image in a file with that name. If OFILENAME is t, prompts for a
file name."
(interactive (pr-interactive-n-up-inout
(if pr-print-using-ghostscript
"PS print GS"
"PS print")))
(defvar pr--n-up) (defvar pr--ifilename) (defvar pr--ofilename)
(let ((pr--n-up n-up) (pr--ifilename ifilename) (pr--ofilename ofilename))
(let ((outfile (pr-ps-utility-args 'pr--n-up 'pr--ifilename 'pr--ofilename
(if pr-print-using-ghostscript
"PS print GS "
"PS print "))))
(pr-ps-utility-process pr--n-up pr--ifilename outfile)
(unless pr--ofilename
(pr-ps-file-ps-print outfile)
(pr-delete-file outfile)))))
;;;###autoload
(defun pr-toggle-file-duplex ()
"Toggle duplex for PostScript file."
(interactive)
(pr-toggle-file-duplex-menu t))
;;;###autoload
(defun pr-toggle-file-tumble ()
"Toggle tumble for PostScript file.
If tumble is off, produces a printing suitable for binding on the left or
right.
If tumble is on, produces a printing suitable for binding at the top or
bottom."
(interactive)
(pr-toggle-file-tumble-menu t))
;;;###autoload
(defun pr-toggle-file-landscape ()
"Toggle landscape for PostScript file."
(interactive)
(pr-toggle-file-landscape-menu t))
;;;###autoload
(defun pr-toggle-ghostscript ()
"Toggle printing using ghostscript."
(interactive)
(pr-toggle-ghostscript-menu t))
;;;###autoload
(defun pr-toggle-faces ()
"Toggle printing with faces."
(interactive)
(pr-toggle-faces-menu t))
;;;###autoload
(defun pr-toggle-spool ()
"Toggle spooling."
(interactive)
(pr-toggle-spool-menu t))
;;;###autoload
(defun pr-toggle-duplex ()
"Toggle duplex."
(interactive)
(pr-toggle-duplex-menu t))
;;;###autoload
(defun pr-toggle-tumble ()
"Toggle tumble.
If tumble is off, produces a printing suitable for binding on the left or
right.
If tumble is on, produces a printing suitable for binding at the top or
bottom."
(interactive)
(pr-toggle-tumble-menu t))
;;;###autoload
(defun pr-toggle-landscape ()
"Toggle landscape."
(interactive)
(pr-toggle-landscape-menu t))
;;;###autoload
(defun pr-toggle-upside-down ()
"Toggle upside-down."
(interactive)
(pr-toggle-upside-down-menu t))
;;;###autoload
(defun pr-toggle-line ()
"Toggle line number."
(interactive)
(pr-toggle-line-menu t))
;;;###autoload
(defun pr-toggle-zebra ()
"Toggle zebra stripes."
(interactive)
(pr-toggle-zebra-menu t))
;;;###autoload
(defun pr-toggle-header ()
"Toggle printing header."
(interactive)
(pr-toggle-header-menu t))
;;;###autoload
(defun pr-toggle-header-frame ()
"Toggle printing header frame."
(interactive)
(pr-toggle-header-frame-menu t))
;;;###autoload
(defun pr-toggle-lock ()
"Toggle menu lock."
(interactive)
(pr-toggle-lock-menu t))
;;;###autoload
(defun pr-toggle-region ()
"Toggle whether the region is automagically detected."
(interactive)
(pr-toggle-region-menu t))
;;;###autoload
(defun pr-toggle-mode ()
"Toggle auto mode."
(interactive)
(pr-toggle-mode-menu t))
;;;###autoload
(defun pr-customize (&rest _ignore)
"Customization of the `printing' group."
(interactive)
(customize-group 'printing))
;;;###autoload
(defun lpr-customize (&rest _ignore)
"Customization of the `lpr' group."
(interactive)
(customize-group 'lpr))
;;;###autoload
(defun pr-help (&rest _ignore)
"Help for the printing package."
(interactive)
(pr-show-setup (substitute-command-keys pr-help-message)
"*Printing Help*"))
;;;###autoload
(defun pr-ps-name ()
"Interactively select a PostScript printer."
(interactive)
(pr-menu-set-ps-title
(pr-complete-alist "PostScript printer"
pr-ps-printer-alist pr-ps-name)))
;;;###autoload
(defun pr-txt-name ()
"Interactively select a text printer."
(interactive)
(pr-menu-set-txt-title
(pr-complete-alist "Text printer"
pr-txt-printer-alist pr-txt-name)))
;;;###autoload
(defun pr-ps-utility ()
"Interactively select a PostScript utility."
(interactive)
(pr-menu-set-utility-title
(pr-complete-alist "PostScript utility"
pr-ps-utility-alist pr-ps-utility)))
;;;###autoload
(defun pr-show-ps-setup (&rest _ignore)
"Show current ps-print settings."
(interactive)
(pr-show-setup (ps-setup) "*PS Setup*"))
;;;###autoload
(defun pr-show-pr-setup (&rest _ignore)
"Show current printing settings."
(interactive)
(pr-show-setup (pr-setup) "*PR Setup*"))
;;;###autoload
(defun pr-show-lpr-setup (&rest _ignore)
"Show current lpr settings."
(interactive)
(pr-show-setup (lpr-setup) "*LPR Setup*"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Fast Commands
;;;###autoload
(defun pr-ps-fast-fire (n-up &optional select)
"Fast fire function for PostScript printing.
If a region is active, the region will be printed instead of the whole buffer.
Also if the current major-mode is defined in `pr-mode-alist', the settings in
`pr-mode-alist' will be used, that is, the current buffer or region will be
printed using `pr-ps-mode-ps-print'.
Interactively, you have the following situations:
\\[pr-ps-fast-fire]
The command prompts the user for a N-UP value and printing will
immediately be done using the current active printer.
\\[universal-argument] \\[pr-ps-fast-fire]
\\[universal-argument] 0 \\[pr-ps-fast-fire]
The command prompts the user for a N-UP value and also for a current
PostScript printer, then printing will immediately be done using the new
current active printer.
\\[universal-argument] 1 \\[pr-ps-fast-fire]
The command prompts the user for a N-UP value and also for a file name,
and saves the PostScript image in that file instead of sending it to the
printer.
\\[universal-argument] 2 \\[pr-ps-fast-fire]
The command prompts the user for a N-UP value, then for a current
PostScript printer and, finally, for a file name. Then change the active
printer to that chosen by user and saves the PostScript image in
that file instead of sending it to the printer.
Noninteractively, the argument N-UP should be a positive integer greater than
zero and the argument SELECT is treated as follows:
If it's nil, send the image to the printer.
If it's a list or an integer lesser or equal to zero, the command prompts
the user for a current PostScript printer, then printing will immediately
be done using the new current active printer.
If it's an integer equal to 1, the command prompts the user for a file name
and saves the PostScript image in that file instead of sending it to the
printer.
If it's an integer greater or equal to 2, the command prompts the user for a
current PostScript printer and for a file name. Then change the active
printer to that chosen by user and saves the PostScript image in that file
instead of sending it to the printer.
If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
active printer and printing will immediately be done using the new active
printer.
Otherwise, send the image to the printer.
Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
are both set to t."
(interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
current-prefix-arg))
(let ((pr-auto-region t)
(pr-auto-mode t)
filename)
(cond ((null select))
((listp select)
(pr-ps-name))
((and (symbolp select)
(assq select pr-ps-printer-alist))
(pr-menu-set-ps-title select))
((integerp select)
(and (/= select 1)
(pr-ps-name))
(and (>= select 1) (not pr-spool-p)
(setq filename (pr-ps-outfile-preprint
(if pr-print-using-ghostscript
"Fast GS "
"Fast "))))))
(pr-ps-buffer-ps-print
(if (integerp n-up)
(min (max n-up 1) 100)
(error "n-up must be an integer greater than zero"))
filename)))
;;;###autoload
(defun pr-txt-fast-fire (&optional select-printer)
"Fast fire function for text printing.
If a region is active, the region will be printed instead of the whole buffer.
Also if the current major-mode is defined in `pr-mode-alist', the settings in
`pr-mode-alist' will be used, that is, the current buffer or region will be
printed using `pr-txt-mode'.
Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
user for a new active text printer.
Noninteractively, the argument SELECT-PRINTER is treated as follows:
If it's nil, the printing is sent to the current active text printer.
If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
active printer and printing will immediately be done using the new active
printer.
If it's non-nil, the command prompts the user for a new active text printer.
Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
are both set to t."
(interactive (list current-prefix-arg))
(cond ((null select-printer))
((and (symbolp select-printer)
(assq select-printer pr-txt-printer-alist))
(pr-menu-set-txt-title select-printer))
(t
(pr-txt-name)))
(let ((pr-auto-region t)
(pr-auto-mode t))
(pr-txt-buffer)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Utilities
(defun pr-setup ()
"Return the current `printing' setup.
This is *not* an interactive command.
One way to see `printing' setup is to switch to a *Scratch* buffer and type:
M-: (insert (pr-setup)) RET
Or choose the menu option Printing/Show Settings/printing."
(let (ps-prefix-quote)
(mapconcat
#'ps-print-quote
(list
";; internal vars"
(ps-comment-string "emacs-version " emacs-version)
(ps-comment-string "pr-txt-command " pr-txt-command)
(ps-comment-string "pr-txt-switches "
(pr-switches-string pr-txt-switches "pr-txt-switches"))
(ps-comment-string "pr-txt-printer " pr-txt-printer)
(ps-comment-string "pr-ps-command " pr-ps-command)
(ps-comment-string "pr-ps-switches "
(pr-switches-string pr-ps-switches "pr-ps-switches"))
(ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch)
(ps-comment-string "pr-ps-printer " pr-ps-printer)
(ps-comment-string "pr-cygwin-system " pr-cygwin-system)
(ps-comment-string "lpr-windows-system " lpr-windows-system)
(ps-comment-string "lpr-lp-system " lpr-lp-system)
nil
'(14 . pr-path-style)
'(14 . pr-path-alist)
nil
'(21 . pr-txt-name)
'(21 . pr-txt-printer-alist)
nil
'(20 . pr-ps-name)
'(20 . pr-ps-printer-alist)
nil
'(20 . pr-temp-dir)
'(20 . pr-ps-temp-file)
'(20 . pr-file-modes)
'(20 . pr-delete-temp-file)
'(20 . pr-list-directory)
nil
'(17 . pr-gv-command)
'(17 . pr-gs-command)
'(17 . pr-gs-switches)
'(17 . pr-gs-device)
'(17 . pr-gs-resolution)
nil
'(27 . pr-print-using-ghostscript)
'(27 . pr-faces-p)
'(27 . pr-spool-p)
'(27 . pr-file-landscape)
'(27 . pr-file-duplex)
'(27 . pr-file-tumble)
'(27 . pr-auto-region)
'(27 . pr-auto-mode)
nil
'(20 . pr-ps-utility)
'(20 . pr-ps-utility-alist)
nil
'(14 . pr-mode-alist)
nil
'(20 . pr-menu-lock)
'(20 . pr-menu-char-height)
'(20 . pr-menu-char-width)
nil
'(20 . pr-setting-database)
nil
'(22 . pr-visible-entry-list)
nil
'(22 . pr-buffer-verbose)
'(22 . pr-buffer-name)
'(22 . pr-buffer-name-ignore)
")\n\n;;; printing.el - end of settings\n")
"\n")))
(defun lpr-setup ()
"Return the current `lpr' setup.
This is *not* an interactive command.
One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
M-: (insert (lpr-setup)) RET
Or choose the menu option Printing/Show Settings/lpr."
(let (ps-prefix-quote)
(mapconcat
#'ps-print-quote
(list
"\n;;; lpr.el settings\n"
(ps-comment-string "emacs-version" emacs-version)
nil
'(25 . printer-name)
'(25 . lpr-switches)
'(25 . lpr-add-switches)
'(25 . lpr-command)
'(25 . lpr-headers-switches)
'(25 . print-region-function)
'(25 . lpr-page-header-program)
'(25 . lpr-page-header-switches)
")\n\n;;; lpr.el - end of settings\n")
"\n")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
(declare-function mh-get-msg-num "mh-utils" (error-if-no-message))
(declare-function mh-show "mh-show" (&optional message redisplay-flag))
(declare-function mh-start-of-uncleaned-message "mh-show" ())
(defvar mh-show-buffer)
(defun pr-article-date ()
"Find the date of an article or mail message in current buffer.
Return only the dayname, if present, weekday, month, and year."
(save-excursion
(goto-char (point-min))
(if (re-search-forward
"^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t)
(buffer-substring (match-beginning 1) (match-end 1))
(format-time-string "%Y/%m/%d"))))
(defun pr-mh-current-message ()
"Go to mh-inbox current message."
(let ((msg (or (mh-get-msg-num nil) 0)))
(mh-show)
(set-buffer mh-show-buffer)
(goto-char (point-min))
(mh-start-of-uncleaned-message)
(message "Printing message %d" msg)))
(defun pr-mh-print-1 (n-up filename header-list)
"Print mh-inbox current message in PostScript."
(save-excursion
(save-window-excursion
(pr-mh-current-message)
(pr-mode-print n-up filename header-list (point)))))
(defun pr-mh-lpr-1 (header-list)
"Print mh-inbox current message in text printer."
(save-excursion
(save-window-excursion
(pr-mh-current-message)
(pr-mode-lpr header-list (point)))))
(defalias 'pr-mh-print-2 'pr-mode-print)
(defalias 'pr-mh-lpr-2 'pr-mode-lpr)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; rmail (hacked from ps-print.el)
(defun pr-rmail-lpr (header-list)
"Print RMAIL current message in text printer."
(pr-lpr-message-from-summary header-list
'rmail-buffer 'rmail-summary-buffer))
(defun pr-rmail-print (n-up filename header-list)
"Print RMAIL current message in PostScript."
(pr-ps-message-from-summary n-up filename header-list
'rmail-buffer 'rmail-summary-buffer))
(defun pr-ps-message-from-summary (n-up filename header-list
summary-buffer summary-default)
"Print current message in PostScript."
(let ((buf (or (and (boundp summary-buffer)
(symbol-value summary-buffer))
(symbol-value summary-default))))
(and (get-buffer buf)
(with-current-buffer buf
(pr-mode-print n-up filename header-list)))))
(defun pr-lpr-message-from-summary (header-list summary-buffer summary-default)
"Print current message in text printer."
(let ((buf (or (and (boundp summary-buffer)
(symbol-value summary-buffer))
(symbol-value summary-default))))
(and (get-buffer buf)
(with-current-buffer buf
(pr-mode-lpr header-list)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; gnus (hacked from ps-print.el)
(defvar pr-gnus-article "*Article*")
(defun pr-gnus-print (n-up filename header-list)
"Print *Article* current message in PostScript."
(pr-ps-message-from-summary n-up filename header-list
'gnus-article-buffer 'pr-gnus-article))
(defun pr-gnus-lpr (header-list)
"Print *Article* current message in text printer."
(pr-lpr-message-from-summary header-list
'gnus-article-buffer 'pr-gnus-article))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; vm (hacked from ps-print.el)
(defvar pr-vm-summary "")
(defun pr-vm-print (n-up filename header-list)
"Print current vm message in PostScript."
(pr-ps-message-from-summary n-up filename header-list
'vm-mail-buffer 'pr-vm-summary))
(defun pr-vm-lpr (header-list)
"Print current vm message in text printer."
(pr-lpr-message-from-summary header-list
'vm-mail-buffer 'pr-vm-summary))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Mode Functions
(defun pr-ps-mode (n-up filename)
"If current major mode is declared, print it in PostScript."
(let ((args (pr-mode-alist-p)))
(if args
(let ((fun (cdr args)))
(funcall (car fun) n-up filename (cdr fun))
t)
(ding)
(message "`%s' major mode not declared." major-mode)
nil)))
(defmacro pr-local-variable (header-list &rest body)
`(save-excursion
(let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines))
(ps-left-header (or (nth 1 ,header-list) ps-left-header))
(ps-right-header (or (nth 2 ,header-list) ps-right-header))
ps-razzle-dazzle)
(let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list))))
,@body
(and (nth 3 ,header-list)
(pr-kill-local-variable local-var-list))))))
(defun pr-mode-print (n-up filename header-list &optional from to)
"Print current major mode in PostScript."
(pr-local-variable
header-list
(let ((file (pr-ps-file filename))
(start (cond (from)
((pr-region-active-p) (region-beginning))
(t nil)
)))
(pr-text2ps (pr-region-active-symbol start) n-up file start
(cond (to)
((pr-region-active-p) (region-end))
(from (point-max))
))
(unless (or pr-spool-p filename)
(pr-ps-file-print file)
(pr-delete-file file)))))
(defun pr-mode-lpr (header-list &optional from to)
"Print current major mode in text printer."
(pr-local-variable
header-list
(pr-txt-print (cond (from)
((pr-region-active-p) (region-beginning))
(t (point-min)))
(cond (to)
((pr-region-active-p) (region-end))
(t (point-max))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Menu Lock
(defconst pr-menu-entry-alist
'((postscript . 3)
(text . 3)
(postscript-options . 9)
(postscript-process . 3)
(printing . 3)
(help . 3)
)
"Alist that associates menu part with number of items per part.
It's used by `pr-menu-index'.
Each element has the form:
(MENU-PART . NUMBER-OF-ITEMS)
See `pr-visible-entry-list'.")
(defun pr-menu-index (entry index)
(let ((base-list
(cond ((eq entry 'text)
'(postscript))
((eq entry 'postscript-options)
'(postscript text))
((eq entry 'postscript-process)
'(postscript text postscript-options))
((eq entry 'printing)
'(postscript text postscript-options postscript-process))
(t
nil)
))
key)
(while base-list
(setq key (car base-list)
base-list (cdr base-list))
(and (pr-visible-p key)
(setq index (+ index
(cdr (assq key pr-menu-entry-alist)))))))
(+ index 2))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Printer & Utility Selection
(defun pr-update-var (var-sym alist)
(or (assq (symbol-value var-sym) alist)
(set var-sym (car (car alist)))))
(defun pr-update-menus (&optional force)
"Update utility, PostScript and text printer menus.
If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
`pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
otherwise, update PostScript printer menu if `pr-ps-printer-menu-modified' is
non-nil, update text printer menu if `pr-txt-printer-menu-modified' is
non-nil, and update PostScript File menus if `pr-ps-utility-menu-modified' is
non-nil.
If menu binding was not done, calls `pr-menu-bind'."
(interactive "P")
(if pr-menu-print-item ; since v6.8.4
;; There was no menu binding yet, so do it now!
;; This is a hack to be compatible with old versions of printing.
;; So, user does not need to change printing calling in init files.
(pr-menu-bind)
;; Here menu binding is ok.
(pr-update-var 'pr-ps-name pr-ps-printer-alist)
(pr-update-var 'pr-txt-name pr-txt-printer-alist)
(pr-update-var 'pr-ps-utility pr-ps-utility-alist)
(pr-do-update-menus force)))
(defun pr-menu-create (name alist var-sym fun entry index)
(cons name
(mapcar
(lambda (elt)
(let ((sym (car elt)))
(vector
(symbol-name sym)
`(,fun ',sym nil ',entry ',index)
:style 'radio
:selected `(eq ,var-sym ',sym))))
alist)))
(defun pr-ps-set-utility (value)
(let ((item (cdr (assq value pr-ps-utility-alist))))
(or item
(error
"Invalid PostScript utility name `%s' for variable `pr-ps-utility'"
value))
(setq pr-ps-utility value)
(pr-eval-alist (nthcdr 9 item)))
(force-mode-line-update))
(defun pr-ps-set-printer (value)
(let ((ps (cdr (assq value pr-ps-printer-alist))))
(or ps
(error
"Invalid PostScript printer name `%s' for variable `pr-ps-name'"
value))
(setq pr-ps-name value
pr-ps-command (nth 0 ps)
pr-ps-switches (nth 1 ps)
pr-ps-printer-switch (nth 2 ps)
pr-ps-printer (nth 3 ps))
(or (stringp pr-ps-command)
(setq pr-ps-command
(cond (lpr-windows-system "print")
(lpr-lp-system "lp")
(t "lpr")
)))
(or (stringp pr-ps-printer-switch)
(setq pr-ps-printer-switch
(cond (lpr-windows-system "/D:")
(lpr-lp-system "-d")
(t "-P")
)))
(pr-eval-alist (nthcdr 4 ps)))
(force-mode-line-update))
(defun pr-txt-set-printer (value)
(let ((txt (cdr (assq value pr-txt-printer-alist))))
(or txt
(error "Invalid text printer name `%s' for variable `pr-txt-name'"
value))
(setq pr-txt-name value
pr-txt-command (nth 0 txt)
pr-txt-switches (nth 1 txt)
pr-txt-printer (nth 2 txt)))
(or (stringp pr-txt-command)
(setq pr-txt-command
(cond (lpr-windows-system "print")
(lpr-lp-system "lp")
(t "lpr")
)))
(force-mode-line-update))
(defun pr-eval-alist (alist)
(dolist (option alist)
(let ((var-sym (car option))
(value (cdr option)))
(if (eq var-sym 'inherits-from:)
(pr-eval-setting-alist value 'global)
(set var-sym (eval value))))))
(defun pr-eval-local-alist (alist)
(let (local-list)
(dolist (option alist)
(let ((var-sym (car option))
(value (cdr option)))
(setq local-list
(if (eq var-sym 'inherits-from:)
(nconc (pr-eval-setting-alist value) local-list)
(set (make-local-variable var-sym) (eval value))
(cons var-sym local-list)))))
local-list))
(defun pr-eval-setting-alist (key &optional global old)
(let ((setting (cdr (assq key pr-setting-database))))
(and setting
(let ((inherits (nth 0 setting))
(local (nth 1 setting))
(kill (nth 2 setting))
local-list)
(and local global
(progn
(ding)
(message "There are local buffer settings for `%S'." key)
(setq global nil)))
(and inherits
(if (memq inherits old)
(error "Circular inheritance for `%S'" inherits)
(setq local-list
(pr-eval-setting-alist inherits global
(cons inherits old)))))
(mapc
(cond ((not local) ; global settings
(lambda (option)
(let ((var-sym (car option)))
(or (eq var-sym 'inherits-from:)
(set var-sym (eval (cdr option)))))))
(kill ; local settings with killing
(lambda (option)
(let ((var-sym (car option)))
(unless (eq var-sym 'inherits-from:)
(setq local-list (cons var-sym local-list))
(set (make-local-variable var-sym)
(eval (cdr option)))))))
(t ; local settings without killing
(lambda (option)
(let ((var-sym (car option)))
(or (eq var-sym 'inherits-from:)
(set (make-local-variable var-sym)
(eval (cdr option))))))))
(nthcdr 3 setting))
local-list))))
(defun pr-kill-local-variable (local-var-list)
(mapcar #'kill-local-variable local-var-list))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Internal Functions (II)
(defun pr-toggle (var-sym mess entry index horizontal state
&optional path no-menu)
(set var-sym (not (symbol-value var-sym)))
(message "%s is %s" mess (if (symbol-value var-sym) "on" "off"))
(or no-menu
(pr-menu-lock entry index horizontal state path)))
(defun pr-toggle-file-duplex-menu (&optional no-menu)
"Toggle whether to print PostScript files in duplex mode."
(interactive)
(pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil
'("PostScript Print" "File") no-menu))
(defun pr-toggle-file-tumble-menu (&optional no-menu)
"Toggle whether to print PostScript files in tumble mode."
(interactive)
(pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil
'("PostScript Print" "File") no-menu))
(defun pr-toggle-file-landscape-menu (&optional no-menu)
"Toggle whether to print PostScript files in landscape orientation."
(interactive)
(pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil
'("PostScript Print" "File") no-menu))
(defun pr-toggle-ghostscript-menu (&optional no-menu)
"Toggle whether to print using ghostscript."
(interactive)
(pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript"
'postscript-process 2 12 'toggle nil no-menu))
(defun pr-toggle-faces-menu (&optional no-menu)
"Toggle whether to print with face attributes."
(interactive)
(pr-toggle 'pr-faces-p "Printing with faces"
'postscript-process 1 12 'toggle nil no-menu))
(defun pr-toggle-spool-menu (&optional no-menu)
"Toggle whether to spool printing in a buffer."
(interactive)
(pr-toggle 'pr-spool-p "Spooling printing"
'postscript-process 0 12 'toggle nil no-menu))
(defun pr-toggle-duplex-menu (&optional no-menu)
"Toggle whether to generate PostScript for a two-sided printer."
(interactive)
(pr-toggle 'ps-spool-duplex "Printing duplex"
'postscript-options 5 12 'toggle nil no-menu))
(defun pr-toggle-tumble-menu (&optional no-menu)
"Toggle how pages on opposite sides of a sheet are oriented."
(interactive)
(pr-toggle 'ps-spool-tumble "Tumble"
'postscript-options 6 12 'toggle nil no-menu))
(defun pr-toggle-landscape-menu (&optional no-menu)
"Toggle whether to print in landscape mode."
(interactive)
(pr-toggle 'ps-landscape-mode "Landscape"
'postscript-options 0 12 'toggle nil no-menu))
(defun pr-toggle-upside-down-menu (&optional no-menu)
"Toggle whether to print upside-down (that is, rotated by 180 degrees)."
(interactive)
(pr-toggle 'ps-print-upside-down "Upside-Down"
'postscript-options 7 12 'toggle nil no-menu))
(defun pr-toggle-line-menu (&optional no-menu)
"Toggle whether to means print line numbers."
(interactive)
(pr-toggle 'ps-line-number "Line number"
'postscript-options 3 12 'toggle nil no-menu))
(defun pr-toggle-zebra-menu (&optional no-menu)
"Toggle whether to print zebra stripes."
(interactive)
(pr-toggle 'ps-zebra-stripes "Zebra stripe"
'postscript-options 4 12 'toggle nil no-menu))
(defun pr-toggle-header-menu (&optional no-menu)
"Toggle whether to print a header at the top of each page."
(interactive)
(pr-toggle 'ps-print-header "Print header"
'postscript-options 1 12 'toggle nil no-menu))
(defun pr-toggle-header-frame-menu (&optional no-menu)
"Toggle whether to draw a gaudy frame around the header."
(interactive)
(pr-toggle 'ps-print-header-frame "Print header frame"
'postscript-options 2 12 'toggle nil no-menu))
(defun pr-toggle-lock-menu (&optional no-menu)
"Toggle whether the menu is locked while selecting toggle options."
(interactive)
(pr-toggle 'pr-menu-lock "Menu lock"
'printing 2 12 'toggle nil no-menu))
(defun pr-toggle-region-menu (&optional no-menu)
"Toggle whether the region is automagically detected."
(interactive)
(pr-toggle 'pr-auto-region "Auto region"
'printing 0 12 'toggle nil no-menu))
(defun pr-toggle-mode-menu (&optional no-menu)
"Toggle whether major-mode specific printing is preferred over normal printing."
(interactive)
(pr-toggle 'pr-auto-mode "Auto mode"
'printing 1 12 'toggle nil no-menu))
(defun pr-prompt (str)
(if (pr-auto-mode-p)
(concat str " mode")
(pr-region-active-string str)))
(defun pr-prompt-region (str)
(concat str (if (pr-auto-mode-p)
" mode"
" region")))
(defun pr-prompt-gs (str)
(if (pr-using-ghostscript-p)
(concat str " GS")
str))
(defun pr-region-active-symbol (&optional region-p)
(if (or region-p (pr-region-active-p))
'region
'buffer))
(defun pr-region-active-string (prefix)
(concat prefix
(if (pr-region-active-p)
" region"
" buffer")))
(defun pr-show-setup (settings buffer-name)
(with-output-to-temp-buffer buffer-name
(with-current-buffer buffer-name
(insert settings))
(help-print-return-message)))
(defun pr-complete-alist (prompt alist default)
(let ((collection (mapcar (lambda (elt)
(setq elt (car elt))
(cons (symbol-name elt) elt))
alist)))
(cdr (assoc (completing-read (concat prompt ": ")
collection nil t
(symbol-name default) nil
(symbol-name default))
collection))))
(defun pr-delete-file (file)
(and pr-delete-temp-file (file-exists-p file)
(delete-file file)))
(defun pr-ps-outfile-preprint (&optional mess)
(let* ((prompt (format "%soutput PostScript file name: " (or mess "")))
(res (read-file-name prompt default-directory "" nil)))
(while (cond ((not (file-writable-p res))
(ding)
(setq prompt "is unwritable"))
((file-directory-p res)
(ding)
(setq prompt "is a directory"))
((file-exists-p res)
(ding)
(setq prompt "exists")
(not (y-or-n-p (format-message
"File `%s' exists; overwrite? " res))))
(t nil))
(setq res (read-file-name
(format "File %s; PostScript file: " prompt)
(file-name-directory res) nil nil
(file-name-nondirectory res))))
(expand-file-name res)))
(defun pr-ps-infile-preprint (&optional mess)
(let* ((prompt (format "%sinput PostScript file name: " (or mess "")))
(res (read-file-name prompt default-directory "" nil)))
(while (cond ((not (file-exists-p res))
(ding)
(setq prompt "doesn't exist"))
((not (file-readable-p res))
(ding)
(setq prompt "is unreadable"))
((file-directory-p res)
(ding)
(setq prompt "is a directory"))
(t nil))
(setq res (read-file-name
(format "File %s; PostScript file: " prompt)
(file-name-directory res) nil nil
(file-name-nondirectory res))))
(expand-file-name res)))
(defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt)
;; check arguments for PostScript file processing.
;; n-up
(or (symbol-value n-up-sym)
(set n-up-sym (pr-interactive-n-up prompt)))
;; input file
(and (eq (symbol-value infile-sym) t)
(set infile-sym (pr-ps-infile-preprint prompt)))
(or (symbol-value infile-sym)
(error "%s: Input PostScript file name is missing" prompt))
;; output file
(and (eq (symbol-value outfile-sym) t)
(set outfile-sym (and current-prefix-arg
(pr-ps-outfile-preprint prompt))))
(pr-ps-file (symbol-value outfile-sym)))
(defun pr-ps-utility-process (n-up infile outfile)
;; activate utility to process a PostScript file.
(let (item)
(and (stringp infile) (file-exists-p infile)
(setq item (cdr (assq pr-ps-utility pr-ps-utility-alist)))
(pr-call-process (nth 0 item)
(pr-switches-string (nth 1 item)
"pr-ps-utility-alist entry")
(pr-switches-string (nth 8 item)
"pr-ps-utility-alist entry")
(and (nth 2 item)
(format (nth 2 item) ps-paper-type))
(format (nth 3 item) n-up)
(and pr-file-landscape (nth 4 item))
(and pr-file-duplex (nth 5 item))
(and pr-file-tumble (nth 6 item))
(pr-dosify-file-name (expand-file-name infile))
(nth 7 item)
(pr-dosify-file-name (expand-file-name outfile))))))
(defun pr-remove-nil-from-list (lst)
(while (and lst (null (car lst)))
(setq lst (cdr lst)))
(let ((b lst)
(l (cdr lst)))
(while l
(if (car l)
(setq b l
l (cdr l))
(setq l (cdr l))
(setcdr b l))))
lst)
(defun pr-call-process (command &rest args)
(let ((buffer (get-buffer-create "*Printing Command Output*"))
(cmd (pr-command command))
status)
(setq args (pr-remove-nil-from-list args))
;; *Printing Command Output* == show command & args
(with-current-buffer buffer
(goto-char (point-max))
(insert (format "%s %S\n" cmd args)))
;; *Printing Command Output* == show any return message from command
(with-file-modes pr-file-modes
(setq status
(condition-case data
(apply #'call-process cmd nil buffer nil args)
((quit error)
(error-message-string data)))))
;; *Printing Command Output* == show exit status
(with-current-buffer buffer
(goto-char (point-max))
(insert (format "Exit status: %s\n\n" status)))
;; message if error status
(if (or (stringp status)
(and (integerp status) (/= status 0)))
(message
"Printing error status: %s (see *Printing Command Output* buffer)"
status))))
(defun pr-txt-print (from to)
(let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command)))
(lpr-switches (pr-switches pr-txt-switches "pr-txt-switches"))
(printer-name pr-txt-printer))
(lpr-region from to)))
(defun pr-switches-string (switches mess)
;; If SWITCHES is nil, return nil.
;; Otherwise, return the list of string in a string.
(and switches
(mapconcat #'identity (pr-switches switches mess) " ")))
(defun pr-switches (switches mess)
(or (listp switches)
(error "%S should have a list of strings" mess))
(flatten-tree ; dynamic evaluation
(mapcar #'lpr-eval-switch switches)))
(defun pr-ps-preview (kind n-up filename mess)
(defvar pr--n-up) (defvar pr--filename)
(let ((pr--n-up n-up) (pr--filename filename))
(pr-set-n-up-and-filename 'pr--n-up 'pr--filename mess)
(let ((file (pr-ps-file pr--filename)))
(pr-text2ps kind pr--n-up file)
(or pr-spool-p (pr-ps-file-preview file)))))
(defun pr-ps-using-ghostscript (kind n-up filename mess)
(defvar pr--n-up) (defvar pr--filename)
(let ((pr--n-up n-up) (pr--filename filename))
(pr-set-n-up-and-filename 'pr--n-up 'pr--filename mess)
(let ((file (pr-ps-file pr--filename)))
(pr-text2ps kind pr--n-up file)
(unless (or pr-spool-p pr--filename)
(pr-ps-file-using-ghostscript file)
(pr-delete-file file)))))
(defun pr-ps-print (kind n-up filename mess)
(defvar pr--n-up) (defvar pr--filename)
(let ((pr--n-up n-up) (pr--filename filename))
(pr-set-n-up-and-filename 'pr--n-up 'pr--filename mess)
(let ((file (pr-ps-file pr--filename)))
(pr-text2ps kind pr--n-up file)
(unless (or pr-spool-p pr--filename)
(pr-ps-file-print file)
(pr-delete-file file)))))
(defun pr-ps-file (&optional filename)
(or filename
(make-temp-file
(convert-standard-filename
(expand-file-name pr-ps-temp-file pr-temp-dir))
nil ".ps")))
(defun pr-interactive-n-up (mess)
(unless (stringp mess)
(setq mess "*"))
(let (int)
(while (or (< (setq int (read-number (format "[%s] N-up printing:" mess) 1))
0)
(> int 100))
(if (< int 0)
(message "Integer below 1")
(message "Integer above 100"))
(sit-for 1)
(ding))
int))
(defun pr-interactive-dir (mess)
(let* ((dir-name (file-name-directory (or (buffer-file-name)
default-directory)))
(fmt-prompt (concat "%s[" mess "] Directory to print: "))
(dir (read-directory-name (format fmt-prompt "")
"" dir-name nil dir-name))
prompt)
(while (cond ((not (file-directory-p dir))
(ding)
(setq prompt "It's not a directory! "))
((not (file-readable-p dir))
(ding)
(setq prompt "Directory is unreadable! "))
(t nil))
(setq dir-name (file-name-directory dir)
dir (read-directory-name (format fmt-prompt prompt)
"" dir-name nil dir-name)))
(file-name-as-directory dir)))
(defun pr-interactive-regexp (mess)
(read-string (format "[%s] File regexp to print: " mess)))
(defun pr-interactive-dir-args (mess)
(list
;; get directory argument
(pr-interactive-dir mess)
;; get file name regexp
(pr-interactive-regexp mess)))
(defun pr-interactive-ps-dir-args (mess)
(list
;; get n-up argument
(pr-interactive-n-up mess)
;; get directory argument
(pr-interactive-dir mess)
;; get file name regexp
(pr-interactive-regexp mess)
;; get output file name
(and (not pr-spool-p)
(ps-print-preprint current-prefix-arg))))
(defun pr-interactive-n-up-file (mess)
(list
;; get n-up argument
(pr-interactive-n-up mess)
;; get output file name
(and (not pr-spool-p)
(ps-print-preprint current-prefix-arg))))
(defun pr-interactive-n-up-inout (mess)
(list
;; get n-up argument
(pr-interactive-n-up mess)
;; get input file name
(pr-ps-infile-preprint (concat mess " "))
;; get output file name
(ps-print-preprint current-prefix-arg)))
(defun pr-set-outfilename (filename-sym)
(and (not pr-spool-p)
(eq (symbol-value filename-sym) t)
(set filename-sym (and current-prefix-arg
(ps-print-preprint current-prefix-arg)))))
(defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
;; n-up
(or (symbol-value n-up-sym)
(set n-up-sym (pr-interactive-n-up mess)))
;; output file
(pr-set-outfilename filename-sym))
(defun pr-set-dir-args (dir-sym regexp-sym mess)
;; directory
(or (symbol-value dir-sym)
(set dir-sym (pr-interactive-dir mess)))
;; file name regexp
(or (symbol-value regexp-sym)
(set regexp-sym (pr-interactive-regexp mess))))
(defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess)
;; n-up
(or (symbol-value n-up-sym)
(set n-up-sym (pr-interactive-n-up mess)))
;; directory & file name regexp
(pr-set-dir-args dir-sym regexp-sym mess)
;; output file
(pr-set-outfilename filename-sym))
(defun pr-find-buffer-visiting (file)
(if (not (file-directory-p file))
(find-buffer-visiting (if lpr-windows-system
(downcase file)
file))
(let ((truename (file-truename file))
(blist (buffer-list))
found)
(while (and (not found) blist)
(with-current-buffer (car blist)
(and (eq major-mode 'dired-mode)
(save-excursion
(goto-char (point-min))
(string= (buffer-substring-no-properties
(+ (point-min) 2)
(progn
(end-of-line)
(1- (point))))
truename))
(setq found (car blist))))
(setq blist (cdr blist)))
found)))
(defun pr-file-list (dir file-regexp fun)
(mapcar (lambda (file)
(and (or pr-list-directory
(not (file-directory-p file)))
(let ((buffer (pr-find-buffer-visiting file))
pop-up-windows
pop-up-frames)
(and (or buffer
(file-readable-p file))
(with-current-buffer (or buffer
(find-file-noselect file))
(funcall fun)
(or buffer
(kill-buffer (current-buffer))))))))
(directory-files dir t file-regexp)))
(defun pr-delete-file-if-exists (filename)
(and (not pr-spool-p) (stringp filename) (file-exists-p filename)
(delete-file filename)))
(defun pr-ps-file-list (n-up dir file-regexp filename)
(pr-delete-file-if-exists (setq filename (expand-file-name filename)))
(let ((pr-spool-p t))
(pr-file-list dir file-regexp
(lambda ()
(if (pr-auto-mode-p)
(pr-ps-mode n-up filename)
(pr-text2ps 'buffer n-up filename)))))
(or pr-spool-p
(pr-despool-print filename)))
(defun pr-text2ps (kind n-up filename &optional from to)
(with-file-modes pr-file-modes
(let ((ps-n-up-printing n-up)
(ps-spool-config (and (eq ps-spool-config 'setpagedevice)
'setpagedevice)))
(pr-delete-file-if-exists filename)
(cond (pr-faces-p
(cond (pr-spool-p
;; pr-faces-p and pr-spool-p
;; here FILENAME arg is ignored
(cond ((eq kind 'buffer)
(ps-spool-buffer-with-faces))
((eq kind 'region)
(ps-spool-region-with-faces (or from (point))
(or to (mark))))
))
;; pr-faces-p and not pr-spool-p
((eq kind 'buffer)
(ps-print-buffer-with-faces filename))
((eq kind 'region)
(ps-print-region-with-faces (or from (point))
(or to (mark)) filename))
))
(pr-spool-p
;; not pr-faces-p and pr-spool-p
;; here FILENAME arg is ignored
(cond ((eq kind 'buffer)
(ps-spool-buffer))
((eq kind 'region)
(ps-spool-region (or from (point)) (or to (mark))))
))
;; not pr-faces-p and not pr-spool-p
((eq kind 'buffer)
(ps-print-buffer filename))
((eq kind 'region)
(ps-print-region (or from (point)) (or to (mark)) filename))
))))
(defun pr-command (command)
"Return absolute file name specification for COMMAND.
If COMMAND is an empty string, return it.
If COMMAND is already an absolute file name specification, return it.
Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
otherwise, gives an error.
When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
`unix' are used (see `pr-path-alist' for documentation).
If Emacs is running on Windows 98/NT/2000, tries to find COMMAND,
COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
(if (string= command "")
command
(or (pr-find-command command)
(pr-path-command (cond (pr-cygwin-system 'cygwin)
(lpr-windows-system 'windows)
(t 'unix))
(file-name-nondirectory command)
nil)
(error "Command not found: %s"
(file-name-nondirectory command)))))
(defun pr-path-command (symbol command sym-list)
(let ((lpath (cdr (assq symbol pr-path-alist)))
cmd)
;; PATH expansion
(and (eq symbol 'PATH) (null lpath)
(setq lpath (parse-colon-path (getenv "PATH"))))
(while (and lpath
(not
(setq cmd
(let ((path (car lpath)))
(cond
;; symbol expansion
((symbolp path)
(and (not (memq path sym-list))
(pr-path-command path command
(cons path sym-list))))
;; normal path
((stringp path)
(pr-find-command
(expand-file-name
(substitute-in-file-name
(concat (file-name-as-directory path)
command)))))
)))))
(setq lpath (cdr lpath)))
cmd))
(defun pr-find-command (cmd)
(if lpr-windows-system
;; windows system
(let ((ext (cons (file-name-extension cmd t)
(list ".exe" ".bat" ".com")))
found)
(setq cmd (file-name-sans-extension cmd))
(while (and ext
(setq found (concat cmd (car ext)))
(not (and (file-regular-p found)
(file-executable-p found))))
(setq ext (cdr ext)
found nil))
found)
;; non-Windows systems
(and (file-regular-p cmd)
(file-executable-p cmd)
cmd)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Printing Interface (inspired by ps-print-interface.el)
(defvar pr-i-window-configuration nil)
(defvar pr-i-buffer nil)
(defvar pr-i-region nil)
(defvar pr-i-mode nil)
(defvar pr-i-despool nil)
(defvar pr-i-ps-as-is t)
(defvar pr-i-n-up 1)
(defvar pr-i-directory "./")
(defvar pr-i-regexp "")
(defvar pr-i-ps-file "")
(defvar pr-i-out-file "")
(defvar pr-i-answer-yes nil)
(defvar pr-i-process 'buffer)
(defvar pr-i-ps-send 'printer)
(defvar-keymap pr-interface-map
:doc "Keymap for `pr-interface'."
:parent widget-keymap
"q" #'pr-interface-quit
"?" #'pr-interface-help)
(defmacro pr-interface-save (&rest body)
`(with-current-buffer pr-i-buffer
,@body))
(defun pr-create-interface ()
"Create the front end for printing package."
(setq pr-i-buffer (buffer-name (current-buffer))
pr-i-region mark-active
pr-i-mode (pr-mode-alist-p)
pr-i-window-configuration (current-window-configuration))
(put 'pr-i-process 'pr-widget-list nil)
(put 'pr-i-ps-send 'pr-widget-list nil)
(delete-other-windows)
(kill-buffer (get-buffer-create pr-buffer-name))
(switch-to-buffer (get-buffer-create pr-buffer-name))
;; header
(pr-insert-italic "\nCurrent Directory : " 1)
(pr-insert-italic default-directory)
(pr-insert-section-1) ; 1. Print
(pr-insert-section-2) ; 2. PostScript Printer
(pr-insert-section-3) ; 3. Text Printer
;; separator
(widget-insert "\n\n " (make-string 77 ?-))
(pr-insert-section-4) ; 4. Settings
(pr-insert-section-5) ; 5. Customize
(pr-insert-section-6) ; 6. Show Settings
(pr-insert-section-7) ; 7. Help
(use-local-map pr-interface-map)
(widget-setup)
(goto-char (point-min))
(and pr-i-region ; let region activated
(pr-keep-region-active)))
(declare-function widget-field-action "wid-edit" (widget &optional _event))
(declare-function widget-value-set "wid-edit" (widget value))
(defun pr-insert-section-1 ()
;; 1. Print:
(pr-insert-italic "\nPrint :" 1)
;; 1a. Buffer:
;; 1a. Buffer: Buffer List
(pr-insert-radio-button 'pr-i-process 'buffer)
(pr-insert-menu "Buffer List" 'pr-i-buffer
(let ((blist (buffer-list))
case-fold-search choices)
(while blist
(let ((name (buffer-name (car blist)))
(ignore pr-buffer-name-ignore)
found)
(setq blist (cdr blist))
(while (and ignore (not found))
(setq found (string-match (car ignore) name)
ignore (cdr ignore)))
(or found
(push (list 'choice-item
:format "%[%t%]"
name)
choices))))
(nreverse choices))
" Buffer : " nil
(lambda ()
(pr-interface-save
(setq pr-i-region mark-active
pr-i-mode (pr-mode-alist-p)))
(pr-update-checkbox 'pr-i-region)
(pr-update-checkbox 'pr-i-mode)))
;; 1a. Buffer: Region
(put 'pr-i-region 'pr-widget
(pr-insert-checkbox
"\n "
'pr-i-region
(lambda (widget &rest _ignore)
(let ((region-p (pr-interface-save
mark-active)))
(cond ((null (widget-value widget)) ; widget is nil
(setq pr-i-region nil))
(region-p ; widget is true and there is a region
(setq pr-i-region t)
(widget-value-set widget t)
(widget-setup)) ; MUST be called after widget-value-set
(t ; widget is true and there is no region
(ding)
(message "There is no region active")
(setq pr-i-region nil)
(widget-value-set widget nil)
(widget-setup))))) ; MUST be called after widget-value-set
" Region"))
;; 1a. Buffer: Mode
(put 'pr-i-mode 'pr-widget
(pr-insert-checkbox
" "
'pr-i-mode
(lambda (widget &rest _ignore)
(let ((mode-p (pr-interface-save
(pr-mode-alist-p))))
(cond
((null (widget-value widget)) ; widget is nil
(setq pr-i-mode nil))
(mode-p ; widget is true and there is a `mode'
(setq pr-i-mode t)
(widget-value-set widget t)
(widget-setup)) ; MUST be called after widget-value-set
(t ; widget is true and there is no `mode'
(ding)
(message
"This buffer isn't in a mode that printing treats specially.")
(setq pr-i-mode nil)
(widget-value-set widget nil)
(widget-setup))))) ; MUST be called after widget-value-set
" Mode\n"))
;; 1b. Directory:
(pr-insert-radio-button 'pr-i-process 'directory)
(widget-create
'directory
:size 58
:format " Directory : %v"
:notify 'pr-interface-directory
:action (lambda (widget &optional event)
(if (pr-interface-directory widget)
(pr-widget-field-action widget event)
(ding)
(message "Please specify a readable directory")))
pr-i-directory)
;; 1b. Directory: File Regexp
(widget-create 'regexp
:size 58
:format "\n File Regexp : %v\n"
:notify (lambda (widget &rest _ignore)
(setq pr-i-regexp (widget-value widget)))
pr-i-regexp)
;; 1b. Directory: List Directory Entry
(widget-insert " ")
(pr-insert-toggle 'pr-list-directory " List Directory Entry\n")
;; 1c. PostScript File:
(pr-insert-radio-button 'pr-i-process 'file)
(widget-create
'file
:size 51
:format " PostScript File : %v"
:notify 'pr-interface-infile
:action (lambda (widget &rest event)
(if (pr-interface-infile widget)
(pr-widget-field-action widget event)
(ding)
(message "Please specify a readable PostScript file")))
pr-i-ps-file)
;; 1c. PostScript File: PostScript Utility
(pr-insert-menu "PostScript Utility" 'pr-ps-utility
(pr-choice-alist pr-ps-utility-alist)
"\n PostScript Utility : "
" ")
;; 1c. PostScript File: No Preprocessing
(pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
(defun pr-insert-section-2 ()
;; 2. PostScript Printer:
;; 2. PostScript Printer: PostScript Printer List
(pr-insert-italic "\n\nPostScript Printer : " 2 20)
(pr-insert-menu "PostScript Printer" 'pr-ps-name
(pr-choice-alist pr-ps-printer-alist))
;; 2. PostScript Printer: Despool
(put 'pr-i-despool 'pr-widget
(pr-insert-checkbox
" "
'pr-i-despool
(lambda (widget &rest _ignore)
(if pr-spool-p
(setq pr-i-despool (not pr-i-despool))
(ding)
(message "Can despool only when spooling is actually selected")
(setq pr-i-despool nil))
(widget-value-set widget pr-i-despool)
(widget-setup)) ; MUST be called after widget-value-set
" Despool "))
;; 2. PostScript Printer: Preview Print Quit
(pr-insert-button 'pr-interface-preview "Preview" " ")
(pr-insert-button 'pr-interface-ps-print "Print" " ")
(pr-insert-button 'pr-interface-quit "Quit")
;; 2. PostScript Printer: Send to Printer/Temporary File
(pr-insert-radio-button 'pr-i-ps-send 'printer)
(widget-insert " Send to Printer/Temporary File")
;; 2. PostScript Printer: Send to File
(pr-insert-radio-button 'pr-i-ps-send 'file)
(widget-create
'file
:size 57
:format " Send to File : %v"
:notify 'pr-interface-outfile
:action (lambda (widget &rest event)
(if (and (pr-interface-outfile widget)
(or (not (file-exists-p pr-i-out-file))
(setq pr-i-answer-yes
(y-or-n-p "File exists; overwrite? "))))
(pr-widget-field-action widget event)
(ding)
(message "Please specify a writable PostScript file")))
pr-i-out-file)
;; 2. PostScript Printer: N-Up
(widget-create
'integer
:size 3
:format "\n N-Up : %v"
:notify (lambda (widget &rest _ignore)
(let ((value (if (string= (widget-apply widget :value-get) "")
0
(widget-value widget))))
(if (and (integerp value)
(<= 1 value) (<= value 100))
(progn
(message " ")
(setq pr-i-n-up value))
(ding)
(message "Please specify an integer between 1 and 100"))))
pr-i-n-up))
(defun pr-insert-section-3 ()
;; 3. Text Printer:
(pr-insert-italic "\n\nText Printer : " 2 14)
(pr-insert-menu "Text Printer" 'pr-txt-name
(pr-choice-alist pr-txt-printer-alist)
nil " ")
(pr-insert-button 'pr-interface-printify "Printify" " ")
(pr-insert-button 'pr-interface-txt-print "Print" " ")
(pr-insert-button 'pr-interface-quit "Quit"))
(defun pr-insert-section-4 ()
;; 4. Settings:
;; 4. Settings: Landscape Auto Region Verbose
(pr-insert-checkbox "\n\n " 'ps-landscape-mode
(lambda (&rest _ignore)
(setq ps-landscape-mode (not ps-landscape-mode)
pr-file-landscape ps-landscape-mode))
" Landscape ")
(pr-insert-toggle 'pr-auto-region " Auto Region ")
(pr-insert-toggle 'pr-buffer-verbose " Verbose\n ")
;; 4. Settings: Print Header Auto Mode
(pr-insert-toggle 'ps-print-header " Print Header ")
(pr-insert-toggle 'pr-auto-mode " Auto Mode\n ")
;; 4. Settings: Print Header Frame Menu Lock
(pr-insert-toggle 'ps-print-header-frame " Print Header Frame ")
(pr-insert-toggle 'pr-menu-lock " Menu Lock\n ")
;; 4. Settings: Line Number
(pr-insert-toggle 'ps-line-number " Line Number\n ")
;; 4. Settings: Zebra Stripes Spool Buffer
(pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes")
(pr-insert-checkbox " "
'pr-spool-p
(lambda (&rest _ignore)
(setq pr-spool-p (not pr-spool-p))
(unless pr-spool-p
(setq pr-i-despool nil)
(pr-update-checkbox 'pr-i-despool)))
" Spool Buffer")
;; 4. Settings: Duplex Print with faces
(pr-insert-checkbox "\n "
'ps-spool-duplex
(lambda (&rest _ignore)
(setq ps-spool-duplex (not ps-spool-duplex)
pr-file-duplex ps-spool-duplex))
" Duplex ")
(pr-insert-toggle 'pr-faces-p " Print with faces")
;; 4. Settings: Tumble Print via Ghostscript
(pr-insert-checkbox "\n "
'ps-spool-tumble
(lambda (&rest _ignore)
(setq ps-spool-tumble (not ps-spool-tumble)
pr-file-tumble ps-spool-tumble))
" Tumble ")
(pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ")
;; 4. Settings: Upside-Down Page Parity
(pr-insert-toggle 'ps-print-upside-down " Upside-Down")
(pr-insert-italic "\n\nSelect Pages : " 2 14)
(pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
(mapcar (lambda (alist)
(list 'choice-item
:format "%[%t%]"
:tag (cdr alist)
:value (car alist)))
pr-even-or-odd-alist)))
(defun pr-insert-section-5 ()
;; 5. Customize:
(pr-insert-italic "\n\nCustomize : " 2 11)
(pr-insert-button 'pr-customize "printing" " ")
(pr-insert-button (lambda (&rest _ignore) (ps-print-customize))
"ps-print" " ")
(pr-insert-button 'lpr-customize "lpr"))
(defun pr-insert-section-6 ()
;; 6. Show Settings:
(pr-insert-italic "\nShow Settings : " 1 14)
(pr-insert-button 'pr-show-pr-setup "printing" " ")
(pr-insert-button 'pr-show-ps-setup "ps-print" " ")
(pr-insert-button 'pr-show-lpr-setup "lpr"))
(defun pr-insert-section-7 ()
;; 7. Help:
(pr-insert-italic "\nHelp : " 1 5)
(pr-insert-button 'pr-interface-help "Interface Help" " ")
(pr-insert-button 'pr-help "Menu Help" " ")
(pr-insert-button 'pr-interface-quit "Quit" "\n ")
(pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer"))
(defun pr-kill-help (&rest _ignore)
"Kill all printing help buffer."
(interactive)
(let ((help '("*Printing Interface Help*" "*Printing Help*"
"*LPR Setup*" "*PR Setup*" "*PS Setup*")))
(while help
(let ((buffer (get-buffer (car help))))
(setq help (cdr help))
(when buffer
(delete-windows-on buffer)
(kill-buffer buffer)))))
(recenter (- (window-height) 2)))
(defun pr-interface-quit (&rest _ignore)
"Kill the printing buffer interface and quit."
(interactive)
(kill-buffer pr-buffer-name)
(set-window-configuration pr-i-window-configuration))
(defun pr-interface-help (&rest _ignore)
"Printing buffer interface help."
(interactive)
(pr-show-setup pr-interface-help-message "*Printing Interface Help*"))
(defun pr-interface-txt-print (&rest _ignore)
"Print using lpr package."
(interactive)
(condition-case data
(cond
((eq pr-i-process 'directory)
(pr-i-directory)
(pr-interface-save
(pr-txt-directory pr-i-directory pr-i-regexp)))
((eq pr-i-process 'buffer)
(pr-interface-save
(cond (pr-i-region
(let ((pr-auto-mode pr-i-mode))
(pr-txt-region)))
(pr-i-mode
(let (pr-auto-region)
(pr-txt-mode)))
(t
(let (pr-auto-mode pr-auto-region)
(pr-txt-buffer)))
)))
((eq pr-i-process 'file)
(error "Please specify a text file"))
(t
(error "Internal error: `pr-i-process' = %S" pr-i-process))
)
;; handlers
((quit error)
(ding)
(message "%s" (error-message-string data)))))
(defun pr-interface-printify (&rest _ignore)
"Printify a buffer."
(interactive)
(condition-case data
(cond
((eq pr-i-process 'directory)
(pr-i-directory)
(pr-interface-save
(pr-printify-directory pr-i-directory pr-i-regexp)))
((eq pr-i-process 'buffer)
(pr-interface-save
(if pr-i-region
(pr-printify-region)
(pr-printify-buffer))))
((eq pr-i-process 'file)
(error "Cannot printify a PostScript file"))
(t
(error "Internal error: `pr-i-process' = %S" pr-i-process))
)
;; handlers
((quit error)
(ding)
(message "%s" (error-message-string data)))))
(defun pr-interface-ps-print (&rest _ignore)
"Print using ps-print package."
(interactive)
(pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print
'pr-ps-file-ps-print 'pr-ps-file-up-ps-print
'pr-ps-region-ps-print 'pr-ps-mode-ps-print
'pr-ps-buffer-ps-print))
(defun pr-interface-preview (&rest _ignore)
"Preview a PostScript file."
(interactive)
(pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview
'pr-ps-file-preview 'pr-ps-file-up-preview
'pr-ps-region-preview 'pr-ps-mode-preview
'pr-ps-buffer-preview))
(defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
ps-mode ps-buffer)
(condition-case data
(let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is)
(pr-i-ps-send))))
(cond
((and pr-i-despool pr-spool-p)
(pr-interface-save
(funcall ps-despool outfile))
(setq pr-i-despool nil)
(pr-update-checkbox 'pr-i-despool))
((eq pr-i-process 'directory)
(pr-i-directory)
(pr-interface-save
(funcall ps-directory
pr-i-n-up pr-i-directory pr-i-regexp outfile)))
((eq pr-i-process 'file)
(cond ((or (file-directory-p pr-i-ps-file)
(not (file-readable-p pr-i-ps-file)))
(error "Please specify a readable PostScript file"))
(pr-i-ps-as-is
(pr-interface-save
(funcall ps-file pr-i-ps-file)))
(t
(pr-interface-save
(funcall ps-file-up pr-i-n-up pr-i-ps-file outfile)))
))
((eq pr-i-process 'buffer)
(pr-interface-save
(cond (pr-i-region
(let ((pr-auto-mode pr-i-mode))
(funcall ps-region pr-i-n-up outfile)))
(pr-i-mode
(let (pr-auto-region)
(funcall ps-mode pr-i-n-up outfile)))
(t
(let (pr-auto-mode pr-auto-region)
(funcall ps-buffer pr-i-n-up outfile)))
)))
(t
(error "Internal error: `pr-i-process' = %S" pr-i-process))
))
;; handlers
((quit error)
(ding)
(message "%s" (error-message-string data)))))
(defun pr-i-ps-send ()
(cond ((eq pr-i-ps-send 'printer)
nil)
((not (eq pr-i-ps-send 'file))
(error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send))
((or (file-directory-p pr-i-out-file)
(not (file-writable-p pr-i-out-file)))
(error "Please specify a writable PostScript file"))
((or (not (file-exists-p pr-i-out-file))
pr-i-answer-yes
(setq pr-i-answer-yes
(y-or-n-p (format-message "File `%s' exists; overwrite? "
pr-i-out-file))))
pr-i-out-file)
(t
(error "File already exists"))))
(defun pr-i-directory ()
(or (file-accessible-directory-p pr-i-directory)
(error "Please specify be a readable directory")))
(defun pr-interface-directory (widget &rest _ignore)
(and pr-buffer-verbose
(message "You can use M-TAB or ESC TAB for file completion"))
(let ((dir (widget-value widget)))
(and (file-accessible-directory-p dir)
(setq pr-i-directory dir))))
(defun pr-interface-infile (widget &rest _ignore)
(and pr-buffer-verbose
(message "You can use M-TAB or ESC TAB for file completion"))
(let ((file (widget-value widget)))
(and (not (file-directory-p file))
(file-readable-p file)
(setq pr-i-ps-file file))))
(defun pr-interface-outfile (widget &rest _ignore)
(setq pr-i-answer-yes nil)
(and pr-buffer-verbose
(message "You can use M-TAB or ESC TAB for file completion"))
(let ((file (widget-value widget)))
(and (not (file-directory-p file))
(file-writable-p file)
(setq pr-i-out-file file))))
(defun pr-widget-field-action (widget event)
(and (get-buffer "*Completions*") ; clean frame window
(delete-windows-on "*Completions*"))
(message " ") ; clean echo area
(widget-field-action widget event))
(defun pr-insert-italic (str &optional from to)
(let ((len (length str)))
(put-text-property (if from (max from 0) 0)
(if to (max to len) len)
'face 'italic str)
(widget-insert str)))
(defun pr-insert-checkbox (before var-sym fun label)
(widget-insert before)
(prog1
(widget-create 'checkbox
:notify fun
(symbol-value var-sym))
(widget-insert label)))
(defun pr-insert-toggle (var-sym label)
(widget-create 'checkbox
:notify (lambda (&rest _ignore)
(set var-sym (not (symbol-value var-sym))))
(symbol-value var-sym))
(widget-insert label))
(defun pr-insert-button (fun label &optional separator)
(widget-create 'push-button
:notify fun
label)
(and separator
(widget-insert separator)))
(defun pr-insert-menu (tag var-sym choices &optional before after body)
(and before (widget-insert before))
(apply #'widget-create 'menu-choice
:tag tag
:format "%v"
:inline t
:value (symbol-value var-sym)
:notify (lambda (widget &rest _ignore)
(set var-sym (widget-value widget))
(when body (funcall body)))
:void '(choice-item :format "%[%t%]"
:tag "Can not display value!")
choices)
(and after (widget-insert after)))
(defun pr-insert-radio-button (var-sym sym)
(widget-insert "\n")
(let ((wid-list (get var-sym 'pr-widget-list))
(wid (widget-create
'radio-button
:format " %[%v%]"
:value (eq (symbol-value var-sym) sym)
:notify (lambda (&rest _ignore)
(set var-sym sym)
(pr-update-radio-button var-sym)))))
(put var-sym 'pr-widget-list (cons (cons wid sym) wid-list))))
(defun pr-update-radio-button (var-sym)
(let ((wid-list (get var-sym 'pr-widget-list)))
(while wid-list
(let ((wid (car (car wid-list)))
(value (cdr (car wid-list))))
(setq wid-list (cdr wid-list))
(widget-value-set wid (eq (symbol-value var-sym) value))))
(widget-setup)))
(defun pr-update-checkbox (var-sym)
(let ((wid (get var-sym 'pr-widget)))
(when wid
(widget-value-set wid (symbol-value var-sym))
(widget-setup))))
(defun pr-choice-alist (alist)
(let ((max (apply #'max (mapcar (lambda (alist)
(length (symbol-name (car alist))))
alist))))
(mapcar (lambda (alist)
(let* ((sym (car alist))
(name (symbol-name sym)))
(list
'choice-item
:format "%[%t%]"
:tag (concat name
(make-string (- max (length name)) ?_))
:value sym)))
alist)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst pr-version "6.9.3"
"printing.el, v 6.9.3 <2007/12/09 vinicius>
Please send all bug fixes and enhancements to
bug-gnu-emacs@gnu.org and Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>")
(make-obsolete-variable 'pr-version 'emacs-version "29.1")
(provide 'printing)
;;; printing.el ends here
|