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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>gtkmm: Gtk::PrintOperation Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">gtkmm
 <span id="projectnumber">2.24.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceGtk.html">Gtk</a></li><li class="navelem"><a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classGtk_1_1PrintOperation-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gtk::PrintOperation Class Reference<div class="ingroups"><a class="el" href="group__Printing.html">Printing</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p><a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">PrintOperation</a> is the high-level, portable printing API.
<a href="classGtk_1_1PrintOperation.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gtk::PrintOperation:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1PrintOperation__inherit__graph.png" border="0" usemap="#Gtk_1_1PrintOperation_inherit__map" alt="Inheritance graph"/></div>
<map name="Gtk_1_1PrintOperation_inherit__map" id="Gtk_1_1PrintOperation_inherit__map">
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="5,229,95,256"/>
<area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="52,80,171,107"/>
<area shape="rect" id="node6" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="139,155,241,181"/>
<area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="59,5,163,32"/>
<area shape="rect" id="node5" href="classGtk_1_1PrintOperationPreview.html" title="Gtk::PrintOperationPreview" alt="" coords="119,229,296,256"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gtk::PrintOperation:</div>
<div class="dyncontent">
<div class="center"><img src="classGtk_1_1PrintOperation__coll__graph.png" border="0" usemap="#Gtk_1_1PrintOperation_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1PrintOperation_coll__map" id="Gtk_1_1PrintOperation_coll__map">
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="5,229,95,256"/>
<area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="52,80,171,107"/>
<area shape="rect" id="node6" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="139,155,241,181"/>
<area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="59,5,163,32"/>
<area shape="rect" id="node5" href="classGtk_1_1PrintOperationPreview.html" title="Gtk::PrintOperationPreview" alt="" coords="119,229,296,256"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a919efcc793c545f3b9ce7cd901053fda"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a919efcc793c545f3b9ce7cd901053fda">PrintOperation</a> (<a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>&& src) noexcept</td></tr>
<tr class="separator:a919efcc793c545f3b9ce7cd901053fda"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae676232c1757ee9af1f414f3b3decdcc"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ae676232c1757ee9af1f414f3b3decdcc">operator=</a> (<a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>&& src) noexcept</td></tr>
<tr class="separator:ae676232c1757ee9af1f414f3b3decdcc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5ccab5c469507cd27a6f342eb5858db5"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a5ccab5c469507cd27a6f342eb5858db5">~PrintOperation</a> () noexceptoverride</td></tr>
<tr class="separator:a5ccab5c469507cd27a6f342eb5858db5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0da600d77117bc22196a7279b156cf2f"><td class="memItemLeft" align="right" valign="top">GtkPrintOperation* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a0da600d77117bc22196a7279b156cf2f">gobj</a> ()</td></tr>
<tr class="memdesc:a0da600d77117bc22196a7279b156cf2f"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a0da600d77117bc22196a7279b156cf2f">More...</a><br /></td></tr>
<tr class="separator:a0da600d77117bc22196a7279b156cf2f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2d064f8de32d9ea5768dcc2c3a6bfcc3"><td class="memItemLeft" align="right" valign="top">const GtkPrintOperation* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a2d064f8de32d9ea5768dcc2c3a6bfcc3">gobj</a> () const </td></tr>
<tr class="memdesc:a2d064f8de32d9ea5768dcc2c3a6bfcc3"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a2d064f8de32d9ea5768dcc2c3a6bfcc3">More...</a><br /></td></tr>
<tr class="separator:a2d064f8de32d9ea5768dcc2c3a6bfcc3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a206a6bdc2139611a54d093a4a0b12d40"><td class="memItemLeft" align="right" valign="top">GtkPrintOperation* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a206a6bdc2139611a54d093a4a0b12d40">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a206a6bdc2139611a54d093a4a0b12d40"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#a206a6bdc2139611a54d093a4a0b12d40">More...</a><br /></td></tr>
<tr class="separator:a206a6bdc2139611a54d093a4a0b12d40"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7bea50c6ee58751f07e79959bc545326"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a7bea50c6ee58751f07e79959bc545326">set_default_page_setup</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& default_page_setup)</td></tr>
<tr class="memdesc:a7bea50c6ee58751f07e79959bc545326"><td class="mdescLeft"> </td><td class="mdescRight">Makes <em>default_page_setup</em> the default page setup for <em>op</em>. <a href="#a7bea50c6ee58751f07e79959bc545326">More...</a><br /></td></tr>
<tr class="separator:a7bea50c6ee58751f07e79959bc545326"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a071554d875ecc3fa134ead135e5a8243"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a071554d875ecc3fa134ead135e5a8243">get_default_page_setup</a> () const </td></tr>
<tr class="memdesc:a071554d875ecc3fa134ead135e5a8243"><td class="mdescLeft"> </td><td class="mdescRight">Returns the default page setup, see <a class="el" href="classGtk_1_1PrintOperation.html#a7bea50c6ee58751f07e79959bc545326" title="Makes default_page_setup the default page setup for op. ">set_default_page_setup()</a>. <a href="#a071554d875ecc3fa134ead135e5a8243">More...</a><br /></td></tr>
<tr class="separator:a071554d875ecc3fa134ead135e5a8243"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa2b7cbeb184ab391ed10030cae56d290"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aa2b7cbeb184ab391ed10030cae56d290">set_print_settings</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a> >& print_settings)</td></tr>
<tr class="memdesc:aa2b7cbeb184ab391ed10030cae56d290"><td class="mdescLeft"> </td><td class="mdescRight">Sets the print settings for <em>op</em>. <a href="#aa2b7cbeb184ab391ed10030cae56d290">More...</a><br /></td></tr>
<tr class="separator:aa2b7cbeb184ab391ed10030cae56d290"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a837b58cd9ca4a0750a86c2f1bc3ef2b4"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a837b58cd9ca4a0750a86c2f1bc3ef2b4">get_print_settings</a> () const </td></tr>
<tr class="memdesc:a837b58cd9ca4a0750a86c2f1bc3ef2b4"><td class="mdescLeft"> </td><td class="mdescRight">Returns the current print settings. <a href="#a837b58cd9ca4a0750a86c2f1bc3ef2b4">More...</a><br /></td></tr>
<tr class="separator:a837b58cd9ca4a0750a86c2f1bc3ef2b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f823341ee850fdc82b83b789186027d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a2f823341ee850fdc82b83b789186027d">set_job_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& job_name)</td></tr>
<tr class="memdesc:a2f823341ee850fdc82b83b789186027d"><td class="mdescLeft"> </td><td class="mdescRight">Sets the name of the print job. <a href="#a2f823341ee850fdc82b83b789186027d">More...</a><br /></td></tr>
<tr class="separator:a2f823341ee850fdc82b83b789186027d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41a215eff186075f793c29fd01d90502"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a41a215eff186075f793c29fd01d90502">set_n_pages</a> (int n_pages)</td></tr>
<tr class="memdesc:a41a215eff186075f793c29fd01d90502"><td class="mdescLeft"> </td><td class="mdescRight">Sets the number of pages in the document. <a href="#a41a215eff186075f793c29fd01d90502">More...</a><br /></td></tr>
<tr class="separator:a41a215eff186075f793c29fd01d90502"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6228a5dd3bed61a002185ccee6586705"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a6228a5dd3bed61a002185ccee6586705">set_current_page</a> (int current_page)</td></tr>
<tr class="memdesc:a6228a5dd3bed61a002185ccee6586705"><td class="mdescLeft"> </td><td class="mdescRight">Sets the current page. <a href="#a6228a5dd3bed61a002185ccee6586705">More...</a><br /></td></tr>
<tr class="separator:a6228a5dd3bed61a002185ccee6586705"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aecdd549da90856825d09f7ca9c23de40"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aecdd549da90856825d09f7ca9c23de40">set_use_full_page</a> (bool use_full_page=true)</td></tr>
<tr class="memdesc:aecdd549da90856825d09f7ca9c23de40"><td class="mdescLeft"> </td><td class="mdescRight">If <em>use_full_page</em> is <code>true</code>, the transformation for the cairo context obtained from <a class="el" href="classGtk_1_1PrintContext.html" title="A PrintContext encapsulates context information that is required when drawing pages for printing...">Gtk::PrintContext</a> puts the origin at the top left corner of the page (which may not be the top left corner of the sheet, depending on page orientation and the number of pages per sheet). <a href="#aecdd549da90856825d09f7ca9c23de40">More...</a><br /></td></tr>
<tr class="separator:aecdd549da90856825d09f7ca9c23de40"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a327bf7816fde596e01080b059edf8e1c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a327bf7816fde596e01080b059edf8e1c">set_unit</a> (<a class="el" href="group__gtkmmEnums.html#ga9cdd3adb4017a5c706e205aa914ba6fb">Unit</a> unit)</td></tr>
<tr class="memdesc:a327bf7816fde596e01080b059edf8e1c"><td class="mdescLeft"> </td><td class="mdescRight">Sets up the transformation for the cairo context obtained from <a class="el" href="classGtk_1_1PrintContext.html" title="A PrintContext encapsulates context information that is required when drawing pages for printing...">Gtk::PrintContext</a> in such a way that distances are measured in units of <em>unit</em>. <a href="#a327bf7816fde596e01080b059edf8e1c">More...</a><br /></td></tr>
<tr class="separator:a327bf7816fde596e01080b059edf8e1c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6a3811929339ccbbe0e0b4f7172c2c7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#af6a3811929339ccbbe0e0b4f7172c2c7">set_export_filename</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& filename)</td></tr>
<tr class="memdesc:af6a3811929339ccbbe0e0b4f7172c2c7"><td class="mdescLeft"> </td><td class="mdescRight">Sets up the <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a> to generate a file instead of showing the print dialog. <a href="#af6a3811929339ccbbe0e0b4f7172c2c7">More...</a><br /></td></tr>
<tr class="separator:af6a3811929339ccbbe0e0b4f7172c2c7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0db78c570875001ae7752638a592f793"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a0db78c570875001ae7752638a592f793">set_track_print_status</a> (bool track_status=true)</td></tr>
<tr class="memdesc:a0db78c570875001ae7752638a592f793"><td class="mdescLeft"> </td><td class="mdescRight">If track_status is <code>true</code>, the print operation will try to continue report on the status of the print job in the printer queues and printer. <a href="#a0db78c570875001ae7752638a592f793">More...</a><br /></td></tr>
<tr class="separator:a0db78c570875001ae7752638a592f793"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9d267e6df375d17ed069eb62bb23e34"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aa9d267e6df375d17ed069eb62bb23e34">set_show_progress</a> (bool show_progress=true)</td></tr>
<tr class="memdesc:aa9d267e6df375d17ed069eb62bb23e34"><td class="mdescLeft"> </td><td class="mdescRight">If <em>show_progress</em> is <code>true</code>, the print operation will show a progress dialog during the print operation. <a href="#aa9d267e6df375d17ed069eb62bb23e34">More...</a><br /></td></tr>
<tr class="separator:aa9d267e6df375d17ed069eb62bb23e34"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af4701d900a36b8ecedbb25605c1a355b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#af4701d900a36b8ecedbb25605c1a355b">set_allow_async</a> (bool allow_async=true)</td></tr>
<tr class="memdesc:af4701d900a36b8ecedbb25605c1a355b"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether the <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a> may return before the print operation is completed. <a href="#af4701d900a36b8ecedbb25605c1a355b">More...</a><br /></td></tr>
<tr class="separator:af4701d900a36b8ecedbb25605c1a355b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36f4f4fd7ec8a3b2a2d40c7431ab99e3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a36f4f4fd7ec8a3b2a2d40c7431ab99e3">set_custom_tab_label</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& label)</td></tr>
<tr class="memdesc:a36f4f4fd7ec8a3b2a2d40c7431ab99e3"><td class="mdescLeft"> </td><td class="mdescRight">Sets the label for the tab holding custom widgets. <a href="#a36f4f4fd7ec8a3b2a2d40c7431ab99e3">More...</a><br /></td></tr>
<tr class="separator:a36f4f4fd7ec8a3b2a2d40c7431ab99e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9155589b1d3cf4f4d87c5beb69b1f7a5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run</a> (<a class="el" href="group__gtkmmEnums.html#gab4b10c2e7079a2137daf871c261c2443">PrintOperationAction</a> action=<a class="el" href="group__gtkmmEnums.html#ggab4b10c2e7079a2137daf871c261c2443ae5defe4a3be833469f12b03217c8d304">PRINT_OPERATION_ACTION_PRINT_DIALOG</a>)</td></tr>
<tr class="separator:a9155589b1d3cf4f4d87c5beb69b1f7a5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae58acaab40d7c3971831490a7195f411"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ae58acaab40d7c3971831490a7195f411">run</a> (<a class="el" href="group__gtkmmEnums.html#gab4b10c2e7079a2137daf871c261c2443">PrintOperationAction</a> action, <a class="el" href="classGtk_1_1Window.html">Window</a>& parent)</td></tr>
<tr class="memdesc:ae58acaab40d7c3971831490a7195f411"><td class="mdescLeft"> </td><td class="mdescRight">Runs the print operation, by first letting the user modify print settings in the print dialog, and then print the document. <a href="#ae58acaab40d7c3971831490a7195f411">More...</a><br /></td></tr>
<tr class="separator:ae58acaab40d7c3971831490a7195f411"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a095445cc734a8e9009eaa56fb0b10e37"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga55cc984b17f826539f78a64c4b9022a2">PrintStatus</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a095445cc734a8e9009eaa56fb0b10e37">get_status</a> () const </td></tr>
<tr class="memdesc:a095445cc734a8e9009eaa56fb0b10e37"><td class="mdescLeft"> </td><td class="mdescRight">Returns the status of the print operation. <a href="#a095445cc734a8e9009eaa56fb0b10e37">More...</a><br /></td></tr>
<tr class="separator:a095445cc734a8e9009eaa56fb0b10e37"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7504c890df7208eface813c64b26499a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a7504c890df7208eface813c64b26499a">get_status_string</a> () const </td></tr>
<tr class="memdesc:a7504c890df7208eface813c64b26499a"><td class="mdescLeft"> </td><td class="mdescRight">Returns a string representation of the status of the print operation. <a href="#a7504c890df7208eface813c64b26499a">More...</a><br /></td></tr>
<tr class="separator:a7504c890df7208eface813c64b26499a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeabeb6ce5235bcd152dd0803565cf9d1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aeabeb6ce5235bcd152dd0803565cf9d1">cancel</a> ()</td></tr>
<tr class="memdesc:aeabeb6ce5235bcd152dd0803565cf9d1"><td class="mdescLeft"> </td><td class="mdescRight">Cancels a running print operation. <a href="#aeabeb6ce5235bcd152dd0803565cf9d1">More...</a><br /></td></tr>
<tr class="separator:aeabeb6ce5235bcd152dd0803565cf9d1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4cf1012e1d347475278114f16036662a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a4cf1012e1d347475278114f16036662a">is_finished</a> () const </td></tr>
<tr class="memdesc:a4cf1012e1d347475278114f16036662a"><td class="mdescLeft"> </td><td class="mdescRight">A convenience function to find out if the print operation is finished, either successfully (<a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a452dde722a8b756a0bc91544b456e2cc">Gtk::PRINT_STATUS_FINISHED</a>) or unsuccessfully (<a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a15328c373f33b72da67e2c918dc28864">Gtk::PRINT_STATUS_FINISHED_ABORTED</a>). <a href="#a4cf1012e1d347475278114f16036662a">More...</a><br /></td></tr>
<tr class="separator:a4cf1012e1d347475278114f16036662a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d4cdc767c49064f1b58474b49206af7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a5d4cdc767c49064f1b58474b49206af7">draw_page_finish</a> ()</td></tr>
<tr class="memdesc:a5d4cdc767c49064f1b58474b49206af7"><td class="mdescLeft"> </td><td class="mdescRight">Signalize that drawing of particular page is complete. <a href="#a5d4cdc767c49064f1b58474b49206af7">More...</a><br /></td></tr>
<tr class="separator:a5d4cdc767c49064f1b58474b49206af7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41fd8d12cb747831e0c98208cd0f0e76"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a41fd8d12cb747831e0c98208cd0f0e76">set_defer_drawing</a> ()</td></tr>
<tr class="memdesc:a41fd8d12cb747831e0c98208cd0f0e76"><td class="mdescLeft"> </td><td class="mdescRight">Sets up the <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a> to wait for calling of <a class="el" href="classGtk_1_1PrintOperation.html#a5d4cdc767c49064f1b58474b49206af7" title="Signalize that drawing of particular page is complete. ">draw_page_finish()</a> from application. <a href="#a41fd8d12cb747831e0c98208cd0f0e76">More...</a><br /></td></tr>
<tr class="separator:a41fd8d12cb747831e0c98208cd0f0e76"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adfc86200f56ca59e6a28f31c508de2fe"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#adfc86200f56ca59e6a28f31c508de2fe">set_support_selection</a> (bool support_selection=true)</td></tr>
<tr class="memdesc:adfc86200f56ca59e6a28f31c508de2fe"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether selection is supported by <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a>. <a href="#adfc86200f56ca59e6a28f31c508de2fe">More...</a><br /></td></tr>
<tr class="separator:adfc86200f56ca59e6a28f31c508de2fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7f552a4158ccbaac5eaa943e1b83040d"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a7f552a4158ccbaac5eaa943e1b83040d">get_support_selection</a> () const </td></tr>
<tr class="memdesc:a7f552a4158ccbaac5eaa943e1b83040d"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value of <a class="el" href="classGtk_1_1PrintOperation.html#ab2e14ff7ce2921ba1a56581fe9687863" title="TRUE if the print operation will support print of selection. ">Gtk::PrintOperation::property_support_selection()</a> property. <a href="#a7f552a4158ccbaac5eaa943e1b83040d">More...</a><br /></td></tr>
<tr class="separator:a7f552a4158ccbaac5eaa943e1b83040d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7149409106097f0f83a361bceeb2f441"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a7149409106097f0f83a361bceeb2f441">set_has_selection</a> (bool has_selection=true)</td></tr>
<tr class="memdesc:a7149409106097f0f83a361bceeb2f441"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether there is a selection to print. <a href="#a7149409106097f0f83a361bceeb2f441">More...</a><br /></td></tr>
<tr class="separator:a7149409106097f0f83a361bceeb2f441"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3390b8e6b9d77196a202708f3d1c71c8"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a3390b8e6b9d77196a202708f3d1c71c8">get_has_selection</a> () const </td></tr>
<tr class="memdesc:a3390b8e6b9d77196a202708f3d1c71c8"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value of <a class="el" href="classGtk_1_1PrintOperation.html#ae1b14f53d924ea6ea1d709692ba019ae" title="TRUE if a selection exists. ">Gtk::PrintOperation::property_has_selection()</a> property. <a href="#a3390b8e6b9d77196a202708f3d1c71c8">More...</a><br /></td></tr>
<tr class="separator:a3390b8e6b9d77196a202708f3d1c71c8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af7dc2111167970dda8b03e8a61b53205"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#af7dc2111167970dda8b03e8a61b53205">set_embed_page_setup</a> (bool embed=true)</td></tr>
<tr class="memdesc:af7dc2111167970dda8b03e8a61b53205"><td class="mdescLeft"> </td><td class="mdescRight">Embed page size combo box and orientation combo box into page setup page. <a href="#af7dc2111167970dda8b03e8a61b53205">More...</a><br /></td></tr>
<tr class="separator:af7dc2111167970dda8b03e8a61b53205"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95a12ef74e98caca06ec7dfbee4501e7"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a95a12ef74e98caca06ec7dfbee4501e7">get_embed_page_setup</a> () const </td></tr>
<tr class="memdesc:a95a12ef74e98caca06ec7dfbee4501e7"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value of <a class="el" href="classGtk_1_1PrintOperation.html#aaba28c148ffc156c35dd648c683d6748" title="TRUE if page setup combos are embedded in GtkPrintDialog. ">Gtk::PrintOperation::property_embed_page_setup()</a> property. <a href="#a95a12ef74e98caca06ec7dfbee4501e7">More...</a><br /></td></tr>
<tr class="separator:a95a12ef74e98caca06ec7dfbee4501e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7271259b5b347fd8b8a750dfd131e061"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a7271259b5b347fd8b8a750dfd131e061">get_n_pages_to_print</a> () const </td></tr>
<tr class="memdesc:a7271259b5b347fd8b8a750dfd131e061"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of pages that will be printed. <a href="#a7271259b5b347fd8b8a750dfd131e061">More...</a><br /></td></tr>
<tr class="separator:a7271259b5b347fd8b8a750dfd131e061"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4039dcce92f8f8bb0e7ebaea4e59b18e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a4039dcce92f8f8bb0e7ebaea4e59b18e">signal_done</a> ()</td></tr>
<tr class="separator:a4039dcce92f8f8bb0e7ebaea4e59b18e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac27abcde6e7f306ab4d2e803f379b337"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ac27abcde6e7f306ab4d2e803f379b337">signal_begin_print</a> ()</td></tr>
<tr class="separator:ac27abcde6e7f306ab4d2e803f379b337"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace05437df476d0667b8fcfdaa3dc9793"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ace05437df476d0667b8fcfdaa3dc9793">signal_paginate</a> ()</td></tr>
<tr class="separator:ace05437df476d0667b8fcfdaa3dc9793"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a456d0c3403c621f28e6df2b567effea5"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >&, int, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a456d0c3403c621f28e6df2b567effea5">signal_request_page_setup</a> ()</td></tr>
<tr class="separator:a456d0c3403c621f28e6df2b567effea5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3da39b04fb2be8b6cc24e20ff6dc848b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >&, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a3da39b04fb2be8b6cc24e20ff6dc848b">signal_draw_page</a> ()</td></tr>
<tr class="separator:a3da39b04fb2be8b6cc24e20ff6dc848b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a88401b3bccba506d6e7839b4571f8ec3"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a88401b3bccba506d6e7839b4571f8ec3">signal_end_print</a> ()</td></tr>
<tr class="separator:a88401b3bccba506d6e7839b4571f8ec3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95851379e9b3b7421945669fcb816ba2"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a95851379e9b3b7421945669fcb816ba2">signal_status_changed</a> ()</td></tr>
<tr class="separator:a95851379e9b3b7421945669fcb816ba2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32810c37d25d82aafc2327a103eca654"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a32810c37d25d82aafc2327a103eca654">signal_create_custom_widget</a> ()</td></tr>
<tr class="separator:a32810c37d25d82aafc2327a103eca654"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab897d28d38407f081296d2a2ad5bd009"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ab897d28d38407f081296d2a2ad5bd009">signal_custom_widget_apply</a> ()</td></tr>
<tr class="separator:ab897d28d38407f081296d2a2ad5bd009"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abc2aa454cece8559378890c812422661"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a> >&, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >&, <a class="el" href="classGtk_1_1Window.html">Window</a>* > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#abc2aa454cece8559378890c812422661">signal_preview</a> ()</td></tr>
<tr class="separator:abc2aa454cece8559378890c812422661"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a962d67abfe5cf5111c45a5b44b7616ba"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>*, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >&, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a962d67abfe5cf5111c45a5b44b7616ba">signal_update_custom_widget</a> ()</td></tr>
<tr class="separator:a962d67abfe5cf5111c45a5b44b7616ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a4fe390faf76ac21a636b7cb2f88cb2"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a9a4fe390faf76ac21a636b7cb2f88cb2">property_default_page_setup</a> ()</td></tr>
<tr class="memdesc:a9a4fe390faf76ac21a636b7cb2f88cb2"><td class="mdescLeft"> </td><td class="mdescRight">The GtkPageSetup used by default. <a href="#a9a4fe390faf76ac21a636b7cb2f88cb2">More...</a><br /></td></tr>
<tr class="separator:a9a4fe390faf76ac21a636b7cb2f88cb2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a667def88d2cfee8db106887de395aacd"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a667def88d2cfee8db106887de395aacd">property_default_page_setup</a> () const </td></tr>
<tr class="memdesc:a667def88d2cfee8db106887de395aacd"><td class="mdescLeft"> </td><td class="mdescRight">The GtkPageSetup used by default. <a href="#a667def88d2cfee8db106887de395aacd">More...</a><br /></td></tr>
<tr class="separator:a667def88d2cfee8db106887de395aacd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea08eb3cda07c207431c07a3d0d81978"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aea08eb3cda07c207431c07a3d0d81978">property_print_settings</a> ()</td></tr>
<tr class="memdesc:aea08eb3cda07c207431c07a3d0d81978"><td class="mdescLeft"> </td><td class="mdescRight">The GtkPrintSettings used for initializing the dialog. <a href="#aea08eb3cda07c207431c07a3d0d81978">More...</a><br /></td></tr>
<tr class="separator:aea08eb3cda07c207431c07a3d0d81978"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a69e2b164251c337d2fc08fcafa13260d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a69e2b164251c337d2fc08fcafa13260d">property_print_settings</a> () const </td></tr>
<tr class="memdesc:a69e2b164251c337d2fc08fcafa13260d"><td class="mdescLeft"> </td><td class="mdescRight">The GtkPrintSettings used for initializing the dialog. <a href="#a69e2b164251c337d2fc08fcafa13260d">More...</a><br /></td></tr>
<tr class="separator:a69e2b164251c337d2fc08fcafa13260d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a799559f1ac771946cf423119bf8e4628"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a799559f1ac771946cf423119bf8e4628">property_job_name</a> ()</td></tr>
<tr class="memdesc:a799559f1ac771946cf423119bf8e4628"><td class="mdescLeft"> </td><td class="mdescRight">A string used for identifying the print job. <a href="#a799559f1ac771946cf423119bf8e4628">More...</a><br /></td></tr>
<tr class="separator:a799559f1ac771946cf423119bf8e4628"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f72b920f5fb36db695ba985e1b3ad5c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a2f72b920f5fb36db695ba985e1b3ad5c">property_job_name</a> () const </td></tr>
<tr class="memdesc:a2f72b920f5fb36db695ba985e1b3ad5c"><td class="mdescLeft"> </td><td class="mdescRight">A string used for identifying the print job. <a href="#a2f72b920f5fb36db695ba985e1b3ad5c">More...</a><br /></td></tr>
<tr class="separator:a2f72b920f5fb36db695ba985e1b3ad5c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa4e7a7b187ac145f9ecde3bacc27b310"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aa4e7a7b187ac145f9ecde3bacc27b310">property_n_pages</a> ()</td></tr>
<tr class="memdesc:aa4e7a7b187ac145f9ecde3bacc27b310"><td class="mdescLeft"> </td><td class="mdescRight">The number of pages in the document. <a href="#aa4e7a7b187ac145f9ecde3bacc27b310">More...</a><br /></td></tr>
<tr class="separator:aa4e7a7b187ac145f9ecde3bacc27b310"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a52ac99b60df41767bd7c8e06bcca352a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a52ac99b60df41767bd7c8e06bcca352a">property_n_pages</a> () const </td></tr>
<tr class="memdesc:a52ac99b60df41767bd7c8e06bcca352a"><td class="mdescLeft"> </td><td class="mdescRight">The number of pages in the document. <a href="#a52ac99b60df41767bd7c8e06bcca352a">More...</a><br /></td></tr>
<tr class="separator:a52ac99b60df41767bd7c8e06bcca352a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a043038b8bdc3ef813677ad1f14391f00"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a043038b8bdc3ef813677ad1f14391f00">property_current_page</a> ()</td></tr>
<tr class="memdesc:a043038b8bdc3ef813677ad1f14391f00"><td class="mdescLeft"> </td><td class="mdescRight">The current page in the document. <a href="#a043038b8bdc3ef813677ad1f14391f00">More...</a><br /></td></tr>
<tr class="separator:a043038b8bdc3ef813677ad1f14391f00"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e367307657f8cfddb65c086618e8b61"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a4e367307657f8cfddb65c086618e8b61">property_current_page</a> () const </td></tr>
<tr class="memdesc:a4e367307657f8cfddb65c086618e8b61"><td class="mdescLeft"> </td><td class="mdescRight">The current page in the document. <a href="#a4e367307657f8cfddb65c086618e8b61">More...</a><br /></td></tr>
<tr class="separator:a4e367307657f8cfddb65c086618e8b61"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5692f583cef2657c0ffbed0bf5ee310a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a5692f583cef2657c0ffbed0bf5ee310a">property_use_full_page</a> ()</td></tr>
<tr class="memdesc:a5692f583cef2657c0ffbed0bf5ee310a"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the origin of the context should be at the corner of the page and not the corner of the imageable area. <a href="#a5692f583cef2657c0ffbed0bf5ee310a">More...</a><br /></td></tr>
<tr class="separator:a5692f583cef2657c0ffbed0bf5ee310a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80c2b824efb7aaf40f1ce98f28ecaaca"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a80c2b824efb7aaf40f1ce98f28ecaaca">property_use_full_page</a> () const </td></tr>
<tr class="memdesc:a80c2b824efb7aaf40f1ce98f28ecaaca"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the origin of the context should be at the corner of the page and not the corner of the imageable area. <a href="#a80c2b824efb7aaf40f1ce98f28ecaaca">More...</a><br /></td></tr>
<tr class="separator:a80c2b824efb7aaf40f1ce98f28ecaaca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a207a7786a03bad3df29b96caa16ff5c1"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a207a7786a03bad3df29b96caa16ff5c1">property_track_print_status</a> ()</td></tr>
<tr class="memdesc:a207a7786a03bad3df29b96caa16ff5c1"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the print operation will continue to report on the print job status after the print data has been sent to the printer or print server. <a href="#a207a7786a03bad3df29b96caa16ff5c1">More...</a><br /></td></tr>
<tr class="separator:a207a7786a03bad3df29b96caa16ff5c1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9cd98b1de8350ca1e9906711a0822f16"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a9cd98b1de8350ca1e9906711a0822f16">property_track_print_status</a> () const </td></tr>
<tr class="memdesc:a9cd98b1de8350ca1e9906711a0822f16"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the print operation will continue to report on the print job status after the print data has been sent to the printer or print server. <a href="#a9cd98b1de8350ca1e9906711a0822f16">More...</a><br /></td></tr>
<tr class="separator:a9cd98b1de8350ca1e9906711a0822f16"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1c3a04ec6e75b681d672b1dd82b00f3f"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#ga9cdd3adb4017a5c706e205aa914ba6fb">Unit</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a1c3a04ec6e75b681d672b1dd82b00f3f">property_unit</a> ()</td></tr>
<tr class="memdesc:a1c3a04ec6e75b681d672b1dd82b00f3f"><td class="mdescLeft"> </td><td class="mdescRight">The unit in which distances can be measured in the context. <a href="#a1c3a04ec6e75b681d672b1dd82b00f3f">More...</a><br /></td></tr>
<tr class="separator:a1c3a04ec6e75b681d672b1dd82b00f3f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a827350214aabc932132efe64498f2ba5"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#ga9cdd3adb4017a5c706e205aa914ba6fb">Unit</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a827350214aabc932132efe64498f2ba5">property_unit</a> () const </td></tr>
<tr class="memdesc:a827350214aabc932132efe64498f2ba5"><td class="mdescLeft"> </td><td class="mdescRight">The unit in which distances can be measured in the context. <a href="#a827350214aabc932132efe64498f2ba5">More...</a><br /></td></tr>
<tr class="separator:a827350214aabc932132efe64498f2ba5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a12da3cc7d2cf6ad4feb15c5f3ad29e49"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a12da3cc7d2cf6ad4feb15c5f3ad29e49">property_show_progress</a> ()</td></tr>
<tr class="memdesc:a12da3cc7d2cf6ad4feb15c5f3ad29e49"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if a progress dialog is shown while printing. <a href="#a12da3cc7d2cf6ad4feb15c5f3ad29e49">More...</a><br /></td></tr>
<tr class="separator:a12da3cc7d2cf6ad4feb15c5f3ad29e49"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af0540d0f7c10d7a1f240d5ffec0b858e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#af0540d0f7c10d7a1f240d5ffec0b858e">property_show_progress</a> () const </td></tr>
<tr class="memdesc:af0540d0f7c10d7a1f240d5ffec0b858e"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if a progress dialog is shown while printing. <a href="#af0540d0f7c10d7a1f240d5ffec0b858e">More...</a><br /></td></tr>
<tr class="separator:af0540d0f7c10d7a1f240d5ffec0b858e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98881dd3487baad33a14d3765adf9821"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a98881dd3487baad33a14d3765adf9821">property_allow_async</a> ()</td></tr>
<tr class="memdesc:a98881dd3487baad33a14d3765adf9821"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if print process may run asynchronous. <a href="#a98881dd3487baad33a14d3765adf9821">More...</a><br /></td></tr>
<tr class="separator:a98881dd3487baad33a14d3765adf9821"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af5a449e8ff6a6580155bf44da09a866a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#af5a449e8ff6a6580155bf44da09a866a">property_allow_async</a> () const </td></tr>
<tr class="memdesc:af5a449e8ff6a6580155bf44da09a866a"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if print process may run asynchronous. <a href="#af5a449e8ff6a6580155bf44da09a866a">More...</a><br /></td></tr>
<tr class="separator:af5a449e8ff6a6580155bf44da09a866a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43b28eb8f580cce5cd5c0a50c7e26e62"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a43b28eb8f580cce5cd5c0a50c7e26e62">property_export_filename</a> ()</td></tr>
<tr class="memdesc:a43b28eb8f580cce5cd5c0a50c7e26e62"><td class="mdescLeft"> </td><td class="mdescRight">Export filename. <a href="#a43b28eb8f580cce5cd5c0a50c7e26e62">More...</a><br /></td></tr>
<tr class="separator:a43b28eb8f580cce5cd5c0a50c7e26e62"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5da0b54cc755d4eace70724aaedc76a1"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a5da0b54cc755d4eace70724aaedc76a1">property_export_filename</a> () const </td></tr>
<tr class="memdesc:a5da0b54cc755d4eace70724aaedc76a1"><td class="mdescLeft"> </td><td class="mdescRight">Export filename. <a href="#a5da0b54cc755d4eace70724aaedc76a1">More...</a><br /></td></tr>
<tr class="separator:a5da0b54cc755d4eace70724aaedc76a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f164744ddaf1c1f0abf46b1dc916c8b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#ga55cc984b17f826539f78a64c4b9022a2">PrintStatus</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a2f164744ddaf1c1f0abf46b1dc916c8b">property_status</a> () const </td></tr>
<tr class="memdesc:a2f164744ddaf1c1f0abf46b1dc916c8b"><td class="mdescLeft"> </td><td class="mdescRight">The status of the print operation. <a href="#a2f164744ddaf1c1f0abf46b1dc916c8b">More...</a><br /></td></tr>
<tr class="separator:a2f164744ddaf1c1f0abf46b1dc916c8b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a7308b6f8354a117003496f6ff574b9"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a0a7308b6f8354a117003496f6ff574b9">property_status_string</a> () const </td></tr>
<tr class="memdesc:a0a7308b6f8354a117003496f6ff574b9"><td class="mdescLeft"> </td><td class="mdescRight">A human-readable description of the status. <a href="#a0a7308b6f8354a117003496f6ff574b9">More...</a><br /></td></tr>
<tr class="separator:a0a7308b6f8354a117003496f6ff574b9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8333b2700926f8ab56447df195d68292"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a8333b2700926f8ab56447df195d68292">property_custom_tab_label</a> ()</td></tr>
<tr class="memdesc:a8333b2700926f8ab56447df195d68292"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> for the tab containing custom widgets. <a href="#a8333b2700926f8ab56447df195d68292">More...</a><br /></td></tr>
<tr class="separator:a8333b2700926f8ab56447df195d68292"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ade764e537daa2f0d7c124cbd20619606"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ade764e537daa2f0d7c124cbd20619606">property_custom_tab_label</a> () const </td></tr>
<tr class="memdesc:ade764e537daa2f0d7c124cbd20619606"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> for the tab containing custom widgets. <a href="#ade764e537daa2f0d7c124cbd20619606">More...</a><br /></td></tr>
<tr class="separator:ade764e537daa2f0d7c124cbd20619606"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2e14ff7ce2921ba1a56581fe9687863"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ab2e14ff7ce2921ba1a56581fe9687863">property_support_selection</a> ()</td></tr>
<tr class="memdesc:ab2e14ff7ce2921ba1a56581fe9687863"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the print operation will support print of selection. <a href="#ab2e14ff7ce2921ba1a56581fe9687863">More...</a><br /></td></tr>
<tr class="separator:ab2e14ff7ce2921ba1a56581fe9687863"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acae4a3582d21452e069937ab6ad279e9"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#acae4a3582d21452e069937ab6ad279e9">property_support_selection</a> () const </td></tr>
<tr class="memdesc:acae4a3582d21452e069937ab6ad279e9"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if the print operation will support print of selection. <a href="#acae4a3582d21452e069937ab6ad279e9">More...</a><br /></td></tr>
<tr class="separator:acae4a3582d21452e069937ab6ad279e9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1b14f53d924ea6ea1d709692ba019ae"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ae1b14f53d924ea6ea1d709692ba019ae">property_has_selection</a> ()</td></tr>
<tr class="memdesc:ae1b14f53d924ea6ea1d709692ba019ae"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if a selection exists. <a href="#ae1b14f53d924ea6ea1d709692ba019ae">More...</a><br /></td></tr>
<tr class="separator:ae1b14f53d924ea6ea1d709692ba019ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07221e3b43b5dbc18b3307c504753414"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a07221e3b43b5dbc18b3307c504753414">property_has_selection</a> () const </td></tr>
<tr class="memdesc:a07221e3b43b5dbc18b3307c504753414"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if a selection exists. <a href="#a07221e3b43b5dbc18b3307c504753414">More...</a><br /></td></tr>
<tr class="separator:a07221e3b43b5dbc18b3307c504753414"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaba28c148ffc156c35dd648c683d6748"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aaba28c148ffc156c35dd648c683d6748">property_embed_page_setup</a> ()</td></tr>
<tr class="memdesc:aaba28c148ffc156c35dd648c683d6748"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if page setup combos are embedded in GtkPrintDialog. <a href="#aaba28c148ffc156c35dd648c683d6748">More...</a><br /></td></tr>
<tr class="separator:aaba28c148ffc156c35dd648c683d6748"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6a5742f0408b0229b6f9ec62d1e367d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ae6a5742f0408b0229b6f9ec62d1e367d">property_embed_page_setup</a> () const </td></tr>
<tr class="memdesc:ae6a5742f0408b0229b6f9ec62d1e367d"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if page setup combos are embedded in GtkPrintDialog. <a href="#ae6a5742f0408b0229b6f9ec62d1e367d">More...</a><br /></td></tr>
<tr class="separator:ae6a5742f0408b0229b6f9ec62d1e367d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae230956a94f18583f83b513f151d4536"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ae230956a94f18583f83b513f151d4536">property_n_pages_to_print</a> () const </td></tr>
<tr class="memdesc:ae230956a94f18583f83b513f151d4536"><td class="mdescLeft"> </td><td class="mdescRight">The number of pages that will be printed. <a href="#ae230956a94f18583f83b513f151d4536">More...</a><br /></td></tr>
<tr class="separator:ae230956a94f18583f83b513f151d4536"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0127f43140e01d6a6731d42f9419be27">Object</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &)=delete</td></tr>
<tr class="separator:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a7081561a5684709718fdf8c1875c56c0">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &)=delete</td></tr>
<tr class="separator:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a473ee068b40d5c949cee2c721d720c9a">Object</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &&src) noexcept</td></tr>
<tr class="separator:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a2855131d475e54294dc34573f12ca9a0">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &&src) noexcept</td></tr>
<tr class="separator:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &key, void *data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &key, void *data, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a969836f7bf4fec78eb50a1d790304d82">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject *object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aaf0e140e7192dcecddd9f57c46825434">ObjectBase</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a15f8834a320eac98dc1c1b8a9a2fd4c1">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &)=delete</td></tr>
<tr class="separator:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value)</td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &value) const </td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const PropertyType &value)</td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, PropertyType &value) const </td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9fff4abb6ecc939866a6ff5d32808221">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a9fff4abb6ecc939866a6ff5d32808221 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &slot)</td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a00f0e2119fbb42efe42d66b8188a0daf">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &property_name, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void > &&slot)</td></tr>
<tr class="separator:a00f0e2119fbb42efe42d66b8188a0daf inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7e1348841e762fb41b41c6f2ce9fa073">trackable</a> () noexcept</td></tr>
<tr class="separator:a7e1348841e762fb41b41c6f2ce9fa073 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac8431d9452c9698a012597e6560c72fa">trackable</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src) noexcept</td></tr>
<tr class="separator:ac8431d9452c9698a012597e6560c72fa inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#aba42ed8afb6598106cf68c18a7387f18">trackable</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:aba42ed8afb6598106cf68c18a7387f18 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a75587da09e30031db7a2519843f1f4fb">~trackable</a> ()</td></tr>
<tr class="separator:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ab14931670837728e49bb5ca88fb16db5">add_destroy_notify_callback</a> (void *data, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a> func) const </td></tr>
<tr class="separator:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#af2e23cfe7adc1ca844a3350bbac557cb">notify_callbacks</a> ()</td></tr>
<tr class="separator:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7494fbad23a65932ff1457d00d4edaf5">operator=</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &src)</td></tr>
<tr class="separator:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ac3d61cdb452dc46fcdc8a8d42d9c079d">operator=</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &&src)</td></tr>
<tr class="separator:ac3d61cdb452dc46fcdc8a8d42d9c079d inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a8b9dffa8a50ff13ba33e6c7f10468e2b">remove_destroy_notify_callback</a> (void *data) const </td></tr>
<tr class="separator:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1PrintOperationPreview"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1PrintOperationPreview')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGtk_1_1PrintOperationPreview.html">Gtk::PrintOperationPreview</a></td></tr>
<tr class="memitem:a149e226385ea1220cefd46f036b6a49e inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a149e226385ea1220cefd46f036b6a49e">PrintOperationPreview</a> (<a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a>&& src) noexcept</td></tr>
<tr class="separator:a149e226385ea1220cefd46f036b6a49e inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5169e48824296f83cac1564c262c48dd inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a5169e48824296f83cac1564c262c48dd">operator=</a> (<a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a>&& src) noexcept</td></tr>
<tr class="separator:a5169e48824296f83cac1564c262c48dd inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa248bb6673c8996d97280c3a727ddace inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#aa248bb6673c8996d97280c3a727ddace">~PrintOperationPreview</a> () noexceptoverride</td></tr>
<tr class="separator:aa248bb6673c8996d97280c3a727ddace inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a718fce7a470e753f837c2ae2ab287c9b inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">GtkPrintOperationPreview* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a718fce7a470e753f837c2ae2ab287c9b">gobj</a> ()</td></tr>
<tr class="memdesc:a718fce7a470e753f837c2ae2ab287c9b inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a718fce7a470e753f837c2ae2ab287c9b">More...</a><br /></td></tr>
<tr class="separator:a718fce7a470e753f837c2ae2ab287c9b inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad2c611eb1a761ab4101f85ab65b72e24 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">const GtkPrintOperationPreview* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#ad2c611eb1a761ab4101f85ab65b72e24">gobj</a> () const </td></tr>
<tr class="memdesc:ad2c611eb1a761ab4101f85ab65b72e24 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ad2c611eb1a761ab4101f85ab65b72e24">More...</a><br /></td></tr>
<tr class="separator:ad2c611eb1a761ab4101f85ab65b72e24 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3dac5816cb7daa785e27870ad88d7185 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a3dac5816cb7daa785e27870ad88d7185">render_page</a> (int page_nr)</td></tr>
<tr class="memdesc:a3dac5816cb7daa785e27870ad88d7185 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">Renders a page to the preview, using the print context that was passed to the <a class="el" href="classGtk_1_1PrintOperation.html#abc2aa454cece8559378890c812422661">Gtk::PrintOperation::signal_preview()</a> handler together with <em>preview</em>. <a href="#a3dac5816cb7daa785e27870ad88d7185">More...</a><br /></td></tr>
<tr class="separator:a3dac5816cb7daa785e27870ad88d7185 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a163fd8c9eaa30288b8556e041dddcbdb inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a163fd8c9eaa30288b8556e041dddcbdb">end_preview</a> ()</td></tr>
<tr class="memdesc:a163fd8c9eaa30288b8556e041dddcbdb inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">Ends a preview. <a href="#a163fd8c9eaa30288b8556e041dddcbdb">More...</a><br /></td></tr>
<tr class="separator:a163fd8c9eaa30288b8556e041dddcbdb inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa7c3b47358b6d6783733585af5690d28 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#aa7c3b47358b6d6783733585af5690d28">is_selected</a> (int page_nr) const </td></tr>
<tr class="memdesc:aa7c3b47358b6d6783733585af5690d28 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the given page is included in the set of pages that have been selected for printing. <a href="#aa7c3b47358b6d6783733585af5690d28">More...</a><br /></td></tr>
<tr class="separator:aa7c3b47358b6d6783733585af5690d28 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe9e9698a22db6f589a996713d4b7db2 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#abe9e9698a22db6f589a996713d4b7db2">render_page_vfunc</a> (int page_nr)</td></tr>
<tr class="separator:abe9e9698a22db6f589a996713d4b7db2 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a900f7ea8384a538585a269e0689e4a22 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a900f7ea8384a538585a269e0689e4a22">end_preview_vfunc</a> ()</td></tr>
<tr class="separator:a900f7ea8384a538585a269e0689e4a22 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa77b4815136f147bdcba9e3d9a64d32c inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#aa77b4815136f147bdcba9e3d9a64d32c">is_selected_vfunc</a> (int page_nr) const </td></tr>
<tr class="separator:aa77b4815136f147bdcba9e3d9a64d32c inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b2f8620a69a3f1482d6ae73d986bf93 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a1b2f8620a69a3f1482d6ae73d986bf93">signal_ready</a> ()</td></tr>
<tr class="separator:a1b2f8620a69a3f1482d6ae73d986bf93 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d488bd096fb78a64a3946d8c1ae0c53 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >&, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a1d488bd096fb78a64a3946d8c1ae0c53">signal_got_page_size</a> ()</td></tr>
<tr class="separator:a1d488bd096fb78a64a3946d8c1ae0c53 inherit pub_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Interface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Interface')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td></tr>
<tr class="memitem:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a3ab20f29c40967352d1bf2d88bfe11e5">Interface</a> ()</td></tr>
<tr class="separator:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a83337dc270f966539b9f46804460ab75">Interface</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &&src) noexcept</td></tr>
<tr class="separator:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a411d66c7467e749dbb2c4b31c4d518b5">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &&src) noexcept</td></tr>
<tr class="separator:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#ae05bf6a4ce0f0992c2ad01429d13f9f7">Interface</a> (const Glib::Interface_Class &interface_class)</td></tr>
<tr class="separator:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a00253b22a76f751f1627865451cbc404">Interface</a> (GObject *castitem)</td></tr>
<tr class="separator:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50b6cc885cb02bc158ce779939dd4654 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a50b6cc885cb02bc158ce779939dd4654">~Interface</a> () noexceptoverride</td></tr>
<tr class="separator:a50b6cc885cb02bc158ce779939dd4654 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a4bb27d294728f34452be66b4ec4cd757">Interface</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &)=delete</td></tr>
<tr class="separator:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#acf322f95cef17aa4cc232d8ef25f2b42">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &)=delete</td></tr>
<tr class="separator:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a969e9396f75132a9577428f4fa932d42">gobj</a> ()</td></tr>
<tr class="separator:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">const GObject * </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a70a443071a69d3372c2cdd7128a91ed1">gobj</a> () const </td></tr>
<tr class="separator:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a64912c8b3f2611e78f3711cb10c5164b"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a64912c8b3f2611e78f3711cb10c5164b">get_type</a> ()</td></tr>
<tr class="memdesc:a64912c8b3f2611e78f3711cb10c5164b"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a64912c8b3f2611e78f3711cb10c5164b">More...</a><br /></td></tr>
<tr class="separator:a64912c8b3f2611e78f3711cb10c5164b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a278086dd5fdc1447cf5e1e075e74a840"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a278086dd5fdc1447cf5e1e075e74a840">create</a> ()</td></tr>
<tr class="separator:a278086dd5fdc1447cf5e1e075e74a840"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classGtk_1_1PrintOperationPreview"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGtk_1_1PrintOperationPreview')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classGtk_1_1PrintOperationPreview.html">Gtk::PrintOperationPreview</a></td></tr>
<tr class="memitem:a8c978ce2952255ade981fbcf89364cdd inherit pub_static_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a8c978ce2952255ade981fbcf89364cdd">add_interface</a> (GType gtype_implementer)</td></tr>
<tr class="separator:a8c978ce2952255ade981fbcf89364cdd inherit pub_static_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a527668e99a3444b8c89b1324b26815ff inherit pub_static_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a527668e99a3444b8c89b1324b26815ff">get_type</a> ()</td></tr>
<tr class="memdesc:a527668e99a3444b8c89b1324b26815ff inherit pub_static_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a527668e99a3444b8c89b1324b26815ff">More...</a><br /></td></tr>
<tr class="separator:a527668e99a3444b8c89b1324b26815ff inherit pub_static_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a10380ef757e632edc581133c47306da8"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a10380ef757e632edc581133c47306da8">PrintOperation</a> ()</td></tr>
<tr class="separator:a10380ef757e632edc581133c47306da8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a563c51b1d63218e65b48eb2aae1b6483"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a563c51b1d63218e65b48eb2aae1b6483">on_done</a> (<a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> result)</td></tr>
<tr class="memdesc:a563c51b1d63218e65b48eb2aae1b6483"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a4039dcce92f8f8bb0e7ebaea4e59b18e">signal_done()</a>. <a href="#a563c51b1d63218e65b48eb2aae1b6483">More...</a><br /></td></tr>
<tr class="separator:a563c51b1d63218e65b48eb2aae1b6483"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49bbd3784381405c04375795dcaa9af0"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a49bbd3784381405c04375795dcaa9af0">on_begin_print</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context)</td></tr>
<tr class="memdesc:a49bbd3784381405c04375795dcaa9af0"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#ac27abcde6e7f306ab4d2e803f379b337">signal_begin_print()</a>. <a href="#a49bbd3784381405c04375795dcaa9af0">More...</a><br /></td></tr>
<tr class="separator:a49bbd3784381405c04375795dcaa9af0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab86b3f8e5743417bb4902e69184f344b"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ab86b3f8e5743417bb4902e69184f344b">on_paginate</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context)</td></tr>
<tr class="memdesc:ab86b3f8e5743417bb4902e69184f344b"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#ace05437df476d0667b8fcfdaa3dc9793">signal_paginate()</a>. <a href="#ab86b3f8e5743417bb4902e69184f344b">More...</a><br /></td></tr>
<tr class="separator:ab86b3f8e5743417bb4902e69184f344b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a456730bd9ac267fa334dd44f8a4a6600"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a456730bd9ac267fa334dd44f8a4a6600">on_request_page_setup</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context, int page_no, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& setup)</td></tr>
<tr class="memdesc:a456730bd9ac267fa334dd44f8a4a6600"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a456d0c3403c621f28e6df2b567effea5">signal_request_page_setup()</a>. <a href="#a456730bd9ac267fa334dd44f8a4a6600">More...</a><br /></td></tr>
<tr class="separator:a456730bd9ac267fa334dd44f8a4a6600"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64bb3aa5adfe371c88d46f40dcf50fc9"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a64bb3aa5adfe371c88d46f40dcf50fc9">on_draw_page</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context, int page_nr)</td></tr>
<tr class="memdesc:a64bb3aa5adfe371c88d46f40dcf50fc9"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a3da39b04fb2be8b6cc24e20ff6dc848b">signal_draw_page()</a>. <a href="#a64bb3aa5adfe371c88d46f40dcf50fc9">More...</a><br /></td></tr>
<tr class="separator:a64bb3aa5adfe371c88d46f40dcf50fc9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa0bfa6c5c6a031a4a9e5c2df95ad3dd9"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#aa0bfa6c5c6a031a4a9e5c2df95ad3dd9">on_end_print</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context)</td></tr>
<tr class="memdesc:aa0bfa6c5c6a031a4a9e5c2df95ad3dd9"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a88401b3bccba506d6e7839b4571f8ec3">signal_end_print()</a>. <a href="#aa0bfa6c5c6a031a4a9e5c2df95ad3dd9">More...</a><br /></td></tr>
<tr class="separator:aa0bfa6c5c6a031a4a9e5c2df95ad3dd9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad609e661f2a3ad9172cb2145a5b5ab2a"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#ad609e661f2a3ad9172cb2145a5b5ab2a">on_status_changed</a> ()</td></tr>
<tr class="memdesc:ad609e661f2a3ad9172cb2145a5b5ab2a"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a95851379e9b3b7421945669fcb816ba2">signal_status_changed()</a>. <a href="#ad609e661f2a3ad9172cb2145a5b5ab2a">More...</a><br /></td></tr>
<tr class="separator:ad609e661f2a3ad9172cb2145a5b5ab2a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37aeb96be1f27f57acd5d0075fe02b02"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a37aeb96be1f27f57acd5d0075fe02b02">on_create_custom_widget</a> ()</td></tr>
<tr class="memdesc:a37aeb96be1f27f57acd5d0075fe02b02"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a32810c37d25d82aafc2327a103eca654">signal_create_custom_widget()</a>. <a href="#a37aeb96be1f27f57acd5d0075fe02b02">More...</a><br /></td></tr>
<tr class="separator:a37aeb96be1f27f57acd5d0075fe02b02"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35ea1d661f300aa9393d319a762863f2"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a35ea1d661f300aa9393d319a762863f2">on_custom_widget_apply</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* widget)</td></tr>
<tr class="memdesc:a35ea1d661f300aa9393d319a762863f2"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#ab897d28d38407f081296d2a2ad5bd009">signal_custom_widget_apply()</a>. <a href="#a35ea1d661f300aa9393d319a762863f2">More...</a><br /></td></tr>
<tr class="separator:a35ea1d661f300aa9393d319a762863f2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0feb9b18f7f9af368f623db71bb3abb3"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a0feb9b18f7f9af368f623db71bb3abb3">on_preview</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a> >& preview, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context, <a class="el" href="classGtk_1_1Window.html">Window</a>* parent)</td></tr>
<tr class="memdesc:a0feb9b18f7f9af368f623db71bb3abb3"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#abc2aa454cece8559378890c812422661">signal_preview()</a>. <a href="#a0feb9b18f7f9af368f623db71bb3abb3">More...</a><br /></td></tr>
<tr class="separator:a0feb9b18f7f9af368f623db71bb3abb3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams &construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject *castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a156a738ca71cff3789fd6bafaf8903 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1a156a738ca71cff3789fd6bafaf8903">~Object</a> () noexceptoverride</td></tr>
<tr class="separator:a1a156a738ca71cff3789fd6bafaf8903 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char *custom_type_name)</td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a> &custom_type_info)</td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a7e2e177061f6a6e09c4cf3da49c6dfd3">ObjectBase</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> & </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a2e968f118314ba4d5debfd2850d18003">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &&src) noexcept</td></tr>
<tr class="separator:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ae56ec45e9ebeaacf24be4fb54ed2eea3">~ObjectBase</a> () noexcept=0</td></tr>
<tr class="separator:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject *castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a44ddc123cd98ed0083aa06364365c8d3">initialize_move</a> (GObject *castitem, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a> *previous_wrapper)</td></tr>
<tr class="separator:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGtk_1_1PrintOperationPreview"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGtk_1_1PrintOperationPreview')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGtk_1_1PrintOperationPreview.html">Gtk::PrintOperationPreview</a></td></tr>
<tr class="memitem:ad033fa4191b81bb742df91fb9766b686 inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#ad033fa4191b81bb742df91fb9766b686">PrintOperationPreview</a> ()</td></tr>
<tr class="memdesc:ad033fa4191b81bb742df91fb9766b686 inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">You should derive from this class to use it. <a href="#ad033fa4191b81bb742df91fb9766b686">More...</a><br /></td></tr>
<tr class="separator:ad033fa4191b81bb742df91fb9766b686 inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a48e79ea95c740f11194fb62436b72881 inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a48e79ea95c740f11194fb62436b72881">on_ready</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context)</td></tr>
<tr class="memdesc:a48e79ea95c740f11194fb62436b72881 inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperationPreview.html#a1b2f8620a69a3f1482d6ae73d986bf93">signal_ready()</a>. <a href="#a48e79ea95c740f11194fb62436b72881">More...</a><br /></td></tr>
<tr class="separator:a48e79ea95c740f11194fb62436b72881 inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac654e9acc7f1e27eb65193276df3ec5c inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#ac654e9acc7f1e27eb65193276df3ec5c">on_got_page_size</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& context, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& page_setup)</td></tr>
<tr class="memdesc:ac654e9acc7f1e27eb65193276df3ec5c inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperationPreview.html#a1d488bd096fb78a64a3946d8c1ae0c53">signal_got_page_size()</a>. <a href="#ac654e9acc7f1e27eb65193276df3ec5c">More...</a><br /></td></tr>
<tr class="separator:ac654e9acc7f1e27eb65193276df3ec5c inherit pro_methods_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:a647084f004a8d55d6f0408474871174e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperation.html">Gtk::PrintOperation</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperation.html#a647084f004a8d55d6f0408474871174e">wrap</a> (GtkPrintOperation* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a647084f004a8d55d6f0408474871174e"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a647084f004a8d55d6f0408474871174e">More...</a><br /></td></tr>
<tr class="separator:a647084f004a8d55d6f0408474871174e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGtk_1_1PrintOperationPreview"><td colspan="2" onclick="javascript:toggleInherit('related_classGtk_1_1PrintOperationPreview')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGtk_1_1PrintOperationPreview.html">Gtk::PrintOperationPreview</a></td></tr>
<tr class="memitem:a89c6a4a8578fd3eb2f3ef3903ea5dfa2 inherit related_classGtk_1_1PrintOperationPreview"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperationPreview.html">Gtk::PrintOperationPreview</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1PrintOperationPreview.html#a89c6a4a8578fd3eb2f3ef3903ea5dfa2">wrap</a> (GtkPrintOperationPreview* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a89c6a4a8578fd3eb2f3ef3903ea5dfa2 inherit related_classGtk_1_1PrintOperationPreview"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a89c6a4a8578fd3eb2f3ef3903ea5dfa2">More...</a><br /></td></tr>
<tr class="separator:a89c6a4a8578fd3eb2f3ef3903ea5dfa2 inherit related_classGtk_1_1PrintOperationPreview"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a969836f7bf4fec78eb50a1d790304d82 inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(*)(gpointer data </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a969836f7bf4fec78eb50a1d790304d82">DestroyNotify</a>)</td></tr>
<tr class="separator:a969836f7bf4fec78eb50a1d790304d82 inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_types_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_types_structsigc_1_1trackable')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">typedef internal::func_destroy_notify </td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a></td></tr>
<tr class="separator:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">PrintOperation</a> is the high-level, portable printing API. </p>
<p>It looks a bit different than other GTK+ dialogs such as the <a class="el" href="classGtk_1_1FileChooser.html" title="Gtk::FileChooser is an interface that can be implemented by file selection widgets. ">FileChooser</a>, since some platforms don't expose enough infrastructure to implement a good print dialog. On such platforms, <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">PrintOperation</a> uses the native print dialog. On platforms which do not provide a native print dialog, GTK+ uses its own, see <a class="el" href="classGtk_1_1PrintUnixDialog.html" title="PrintUnixDialog implements a print dialog for platforms which don't provide a native print dialog...">PrintUnixDialog</a>.</p>
<p>The typical way to use the high-level printing API is to create a <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">PrintOperation</a> object when the user chooses to print. Then you set some properties on it,such as the page size, any <a class="el" href="classGtk_1_1PrintSettings.html" title="A PrintSettings object represents the settings of a print dialog in a system-independent way...">PrintSettings</a> from previous print operations, the number of pages, the current page, etc.</p>
<p>Then you start the print operation by calling <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a>. It will then show a dialog to let the user select a printer and options. When the user finishes the dialog various signals will be emitted by the <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">PrintOperation</a> for you to handle, the main one being draw_page. You should then render the page on the provided <a class="el" href="classGtk_1_1PrintContext.html" title="A PrintContext encapsulates context information that is required when drawing pages for printing...">PrintContext</a> using <a class="elRef" doxygen="cairomm-1.0.tag:http://www.cairographics.org/documentation/cairomm/reference/" href="http://www.cairographics.org/documentation/cairomm/reference/namespaceCairo.html">Cairo</a>.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000122">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a919efcc793c545f3b9ce7cd901053fda"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::PrintOperation::PrintOperation </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>&& </td>
<td class="paramname"><em>src</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a5ccab5c469507cd27a6f342eb5858db5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::PrintOperation::~PrintOperation </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a10380ef757e632edc581133c47306da8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::PrintOperation::PrintOperation </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aeabeb6ce5235bcd152dd0803565cf9d1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::cancel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Cancels a running print operation. </p>
<p>This function may be called from a <a class="el" href="classGtk_1_1PrintOperation.html#ac27abcde6e7f306ab4d2e803f379b337">Gtk::PrintOperation::signal_begin_print()</a>, <a class="el" href="classGtk_1_1PrintOperation.html#ace05437df476d0667b8fcfdaa3dc9793">Gtk::PrintOperation::signal_paginate()</a> or <a class="el" href="classGtk_1_1PrintOperation.html#a3da39b04fb2be8b6cc24e20ff6dc848b">Gtk::PrintOperation::signal_draw_page()</a> signal handler to stop the currently running print operation.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000140">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a278086dd5fdc1447cf5e1e075e74a840"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>> Gtk::PrintOperation::create </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a5d4cdc767c49064f1b58474b49206af7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::draw_page_finish </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Signalize that drawing of particular page is complete. </p>
<p>It is called after completion of page drawing (e.g. drawing in another thread). If <a class="el" href="classGtk_1_1PrintOperation.html#a41fd8d12cb747831e0c98208cd0f0e76" title="Sets up the Gtk::PrintOperation to wait for calling of draw_page_finish() from application. ">set_defer_drawing()</a> was called before, then this function has to be called by application. In another case it is called by the library itself.</p>
<dl class="since_2_16"><dt><b><a class="el" href="since_2_16.html#_since_2_16000081">Since gtkmm 2.16:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a071554d875ecc3fa134ead135e5a8243"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a>> Gtk::PrintOperation::get_default_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the default page setup, see <a class="el" href="classGtk_1_1PrintOperation.html#a7bea50c6ee58751f07e79959bc545326" title="Makes default_page_setup the default page setup for op. ">set_default_page_setup()</a>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000124">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The default page setup. </dd></dl>
</div>
</div>
<a class="anchor" id="a95a12ef74e98caca06ec7dfbee4501e7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::PrintOperation::get_embed_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value of <a class="el" href="classGtk_1_1PrintOperation.html#aaba28c148ffc156c35dd648c683d6748" title="TRUE if page setup combos are embedded in GtkPrintDialog. ">Gtk::PrintOperation::property_embed_page_setup()</a> property. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000057">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>Whether page setup selection combos are embedded. </dd></dl>
</div>
</div>
<a class="anchor" id="a3390b8e6b9d77196a202708f3d1c71c8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::PrintOperation::get_has_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value of <a class="el" href="classGtk_1_1PrintOperation.html#ae1b14f53d924ea6ea1d709692ba019ae" title="TRUE if a selection exists. ">Gtk::PrintOperation::property_has_selection()</a> property. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000055">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>Whether there is a selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a7271259b5b347fd8b8a750dfd131e061"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::PrintOperation::get_n_pages_to_print </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the number of pages that will be printed. </p>
<p>Note that this value is set during print preparation phase (<a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a6e87362334e5b157b30849f52aeb72d8">Gtk::PRINT_STATUS_PREPARING</a>), so this function should never be called before the data generation phase (<a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a6b3cdb0a6fbd4c5d9158cb155229ec69">Gtk::PRINT_STATUS_GENERATING_DATA</a>). You can connect to the <a class="el" href="classGtk_1_1PrintOperation.html#a95851379e9b3b7421945669fcb816ba2">Gtk::PrintOperation::signal_status_changed()</a> signal and call <a class="el" href="classGtk_1_1PrintOperation.html#a7271259b5b347fd8b8a750dfd131e061" title="Returns the number of pages that will be printed. ">get_n_pages_to_print()</a> when print status is <a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a6b3cdb0a6fbd4c5d9158cb155229ec69">Gtk::PRINT_STATUS_GENERATING_DATA</a>. This is typically used to track the progress of print operation.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000058">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The number of pages that will be printed. </dd></dl>
</div>
</div>
<a class="anchor" id="a837b58cd9ca4a0750a86c2f1bc3ef2b4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a>> Gtk::PrintOperation::get_print_settings </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the current print settings. </p>
<p>Note that the return value is <code>nullptr</code> until either <a class="el" href="classGtk_1_1PrintOperation.html#aa2b7cbeb184ab391ed10030cae56d290" title="Sets the print settings for op. ">set_print_settings()</a> or <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a> have been called.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000126">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The current print settings of <em>op</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a095445cc734a8e9009eaa56fb0b10e37"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#ga55cc984b17f826539f78a64c4b9022a2">PrintStatus</a> Gtk::PrintOperation::get_status </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the status of the print operation. </p>
<p>Also see <a class="el" href="classGtk_1_1PrintOperation.html#a7504c890df7208eface813c64b26499a" title="Returns a string representation of the status of the print operation. ">get_status_string()</a>.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000138">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The status of the print operation. </dd></dl>
</div>
</div>
<a class="anchor" id="a7504c890df7208eface813c64b26499a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::PrintOperation::get_status_string </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a string representation of the status of the print operation. </p>
<p>The string is translated and suitable for displaying the print status e.g. in a <a class="el" href="classGtk_1_1Statusbar.html" title="Text status indicator This widget is used to display status information. ">Gtk::Statusbar</a>.</p>
<p>Use <a class="el" href="classGtk_1_1PrintOperation.html#a095445cc734a8e9009eaa56fb0b10e37" title="Returns the status of the print operation. ">get_status()</a> to obtain a status value that is suitable for programmatic use.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000139">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>A string representation of the status of the print operation. </dd></dl>
</div>
</div>
<a class="anchor" id="a7f552a4158ccbaac5eaa943e1b83040d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::PrintOperation::get_support_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value of <a class="el" href="classGtk_1_1PrintOperation.html#ab2e14ff7ce2921ba1a56581fe9687863" title="TRUE if the print operation will support print of selection. ">Gtk::PrintOperation::property_support_selection()</a> property. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000053">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>Whether the application supports print of selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a64912c8b3f2611e78f3711cb10c5164b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static GType Gtk::PrintOperation::get_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the GType for this class, for use with the underlying GObject type system. </p>
</div>
</div>
<a class="anchor" id="a0da600d77117bc22196a7279b156cf2f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkPrintOperation* Gtk::PrintOperation::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="a2d064f8de32d9ea5768dcc2c3a6bfcc3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GtkPrintOperation* Gtk::PrintOperation::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="a206a6bdc2139611a54d093a4a0b12d40"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GtkPrintOperation* Gtk::PrintOperation::gobj_copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>
</div>
</div>
<a class="anchor" id="a4cf1012e1d347475278114f16036662a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::PrintOperation::is_finished </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>A convenience function to find out if the print operation is finished, either successfully (<a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a452dde722a8b756a0bc91544b456e2cc">Gtk::PRINT_STATUS_FINISHED</a>) or unsuccessfully (<a class="el" href="group__gtkmmEnums.html#gga55cc984b17f826539f78a64c4b9022a2a15328c373f33b72da67e2c918dc28864">Gtk::PRINT_STATUS_FINISHED_ABORTED</a>). </p>
<dl class="section note"><dt>Note</dt><dd>when you enable print status tracking the print operation can be in a non-finished state even after done has been called, as the operation status then tracks the print job status on the printer.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000141">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code>, if the print operation is finished. </dd></dl>
</div>
</div>
<a class="anchor" id="a49bbd3784381405c04375795dcaa9af0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_begin_print </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#ac27abcde6e7f306ab4d2e803f379b337">signal_begin_print()</a>. </p>
</div>
</div>
<a class="anchor" id="a37aeb96be1f27f57acd5d0075fe02b02"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::PrintOperation::on_create_custom_widget </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a32810c37d25d82aafc2327a103eca654">signal_create_custom_widget()</a>. </p>
</div>
</div>
<a class="anchor" id="a35ea1d661f300aa9393d319a762863f2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_custom_widget_apply </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td>
<td class="paramname"><em>widget</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#ab897d28d38407f081296d2a2ad5bd009">signal_custom_widget_apply()</a>. </p>
</div>
</div>
<a class="anchor" id="a563c51b1d63218e65b48eb2aae1b6483"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_done </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> </td>
<td class="paramname"><em>result</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a4039dcce92f8f8bb0e7ebaea4e59b18e">signal_done()</a>. </p>
</div>
</div>
<a class="anchor" id="a64bb3aa5adfe371c88d46f40dcf50fc9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_draw_page </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& </td>
<td class="paramname"><em>context</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>page_nr</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a3da39b04fb2be8b6cc24e20ff6dc848b">signal_draw_page()</a>. </p>
</div>
</div>
<a class="anchor" id="aa0bfa6c5c6a031a4a9e5c2df95ad3dd9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_end_print </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a88401b3bccba506d6e7839b4571f8ec3">signal_end_print()</a>. </p>
</div>
</div>
<a class="anchor" id="ab86b3f8e5743417bb4902e69184f344b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::PrintOperation::on_paginate </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& </td>
<td class="paramname"><em>context</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#ace05437df476d0667b8fcfdaa3dc9793">signal_paginate()</a>. </p>
</div>
</div>
<a class="anchor" id="a0feb9b18f7f9af368f623db71bb3abb3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::PrintOperation::on_preview </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a> >& </td>
<td class="paramname"><em>preview</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& </td>
<td class="paramname"><em>context</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Window.html">Window</a>* </td>
<td class="paramname"><em>parent</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#abc2aa454cece8559378890c812422661">signal_preview()</a>. </p>
</div>
</div>
<a class="anchor" id="a456730bd9ac267fa334dd44f8a4a6600"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_request_page_setup </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a> >& </td>
<td class="paramname"><em>context</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>page_no</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& </td>
<td class="paramname"><em>setup</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a456d0c3403c621f28e6df2b567effea5">signal_request_page_setup()</a>. </p>
</div>
</div>
<a class="anchor" id="ad609e661f2a3ad9172cb2145a5b5ab2a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::PrintOperation::on_status_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGtk_1_1PrintOperation.html#a95851379e9b3b7421945669fcb816ba2">signal_status_changed()</a>. </p>
</div>
</div>
<a class="anchor" id="ae676232c1757ee9af1f414f3b3decdcc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>& Gtk::PrintOperation::operator= </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1PrintOperation.html">PrintOperation</a>&& </td>
<td class="paramname"><em>src</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a98881dd3487baad33a14d3765adf9821"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_allow_async </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if print process may run asynchronous. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="af5a449e8ff6a6580155bf44da09a866a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_allow_async </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if print process may run asynchronous. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a043038b8bdc3ef813677ad1f14391f00"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > Gtk::PrintOperation::property_current_page </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The current page in the document. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a4e367307657f8cfddb65c086618e8b61"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::PrintOperation::property_current_page </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The current page in the document. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a8333b2700926f8ab56447df195d68292"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::PrintOperation::property_custom_tab_label </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> for the tab containing custom widgets. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ade764e537daa2f0d7c124cbd20619606"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::PrintOperation::property_custom_tab_label </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p><a class="el" href="classGtk_1_1Label.html" title="A widget that displays a small to medium amount of text. ">Label</a> for the tab containing custom widgets. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a9a4fe390faf76ac21a636b7cb2f88cb2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a>> > Gtk::PrintOperation::property_default_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The GtkPageSetup used by default. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a667def88d2cfee8db106887de395aacd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a>> > Gtk::PrintOperation::property_default_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The GtkPageSetup used by default. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aaba28c148ffc156c35dd648c683d6748"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_embed_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if page setup combos are embedded in GtkPrintDialog. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ae6a5742f0408b0229b6f9ec62d1e367d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_embed_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if page setup combos are embedded in GtkPrintDialog. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a43b28eb8f580cce5cd5c0a50c7e26e62"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> > Gtk::PrintOperation::property_export_filename </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Export filename. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a5da0b54cc755d4eace70724aaedc76a1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> > Gtk::PrintOperation::property_export_filename </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Export filename. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ae1b14f53d924ea6ea1d709692ba019ae"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_has_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if a selection exists. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a07221e3b43b5dbc18b3307c504753414"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_has_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if a selection exists. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a799559f1ac771946cf423119bf8e4628"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::PrintOperation::property_job_name </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A string used for identifying the print job. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2f72b920f5fb36db695ba985e1b3ad5c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::PrintOperation::property_job_name </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>A string used for identifying the print job. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aa4e7a7b187ac145f9ecde3bacc27b310"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< int > Gtk::PrintOperation::property_n_pages </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The number of pages in the document. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a52ac99b60df41767bd7c8e06bcca352a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::PrintOperation::property_n_pages </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The number of pages in the document. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ae230956a94f18583f83b513f151d4536"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< int > Gtk::PrintOperation::property_n_pages_to_print </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The number of pages that will be printed. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aea08eb3cda07c207431c07a3d0d81978"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a>> > Gtk::PrintOperation::property_print_settings </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The GtkPrintSettings used for initializing the dialog. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a69e2b164251c337d2fc08fcafa13260d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a>> > Gtk::PrintOperation::property_print_settings </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The GtkPrintSettings used for initializing the dialog. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a12da3cc7d2cf6ad4feb15c5f3ad29e49"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_show_progress </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if a progress dialog is shown while printing. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="af0540d0f7c10d7a1f240d5ffec0b858e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_show_progress </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if a progress dialog is shown while printing. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2f164744ddaf1c1f0abf46b1dc916c8b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#ga55cc984b17f826539f78a64c4b9022a2">PrintStatus</a> > Gtk::PrintOperation::property_status </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The status of the print operation. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a0a7308b6f8354a117003496f6ff574b9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> > Gtk::PrintOperation::property_status_string </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>A human-readable description of the status. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="ab2e14ff7ce2921ba1a56581fe9687863"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_support_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the print operation will support print of selection. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="acae4a3582d21452e069937ab6ad279e9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_support_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the print operation will support print of selection. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a207a7786a03bad3df29b96caa16ff5c1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_track_print_status </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the print operation will continue to report on the print job status after the print data has been sent to the printer or print server. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a9cd98b1de8350ca1e9906711a0822f16"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_track_print_status </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the print operation will continue to report on the print job status after the print data has been sent to the printer or print server. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a1c3a04ec6e75b681d672b1dd82b00f3f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__gtkmmEnums.html#ga9cdd3adb4017a5c706e205aa914ba6fb">Unit</a> > Gtk::PrintOperation::property_unit </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The unit in which distances can be measured in the context. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a827350214aabc932132efe64498f2ba5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__gtkmmEnums.html#ga9cdd3adb4017a5c706e205aa914ba6fb">Unit</a> > Gtk::PrintOperation::property_unit </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The unit in which distances can be measured in the context. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a5692f583cef2657c0ffbed0bf5ee310a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > Gtk::PrintOperation::property_use_full_page </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the origin of the context should be at the corner of the page and not the corner of the imageable area. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a80c2b824efb7aaf40f1ce98f28ecaaca"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gtk::PrintOperation::property_use_full_page </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if the origin of the context should be at the corner of the page and not the corner of the imageable area. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a9155589b1d3cf4f4d87c5beb69b1f7a5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> Gtk::PrintOperation::run </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gab4b10c2e7079a2137daf871c261c2443">PrintOperationAction</a> </td>
<td class="paramname"><em>action</em> = <code><a class="el" href="group__gtkmmEnums.html#ggab4b10c2e7079a2137daf871c261c2443ae5defe4a3be833469f12b03217c8d304">PRINT_OPERATION_ACTION_PRINT_DIALOG</a></code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ae58acaab40d7c3971831490a7195f411"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> Gtk::PrintOperation::run </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gab4b10c2e7079a2137daf871c261c2443">PrintOperationAction</a> </td>
<td class="paramname"><em>action</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Window.html">Window</a>& </td>
<td class="paramname"><em>parent</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Runs the print operation, by first letting the user modify print settings in the print dialog, and then print the document. </p>
<p>Normally that this function does not return until the rendering of all pages is complete. You can connect to the <a class="el" href="classGtk_1_1PrintOperation.html#a95851379e9b3b7421945669fcb816ba2">Gtk::PrintOperation::signal_status_changed()</a> signal on <em>op</em> to obtain some information about the progress of the print operation. Furthermore, it may use a recursive mainloop to show the print dialog.</p>
<p>If you call <a class="el" href="classGtk_1_1PrintOperation.html#af4701d900a36b8ecedbb25605c1a355b" title="Sets whether the run() may return before the print operation is completed. ">set_allow_async()</a> or set the <a class="el" href="classGtk_1_1PrintOperation.html#a98881dd3487baad33a14d3765adf9821" title="TRUE if print process may run asynchronous. ">Gtk::PrintOperation::property_allow_async()</a> property the operation will run asynchronously if this is supported on the platform. The <a class="el" href="classGtk_1_1PrintOperation.html#a4039dcce92f8f8bb0e7ebaea4e59b18e">Gtk::PrintOperation::signal_done()</a> signal will be emitted with the result of the operation when the it is done (i.e. when the dialog is canceled, or when the print succeeds or fails).</p>
<p>[C example ellipted]</p>
<p>Note that <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a> can only be called once on a given <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a>.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000137">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">action</td><td>The action to start. </td></tr>
<tr><td class="paramname">parent</td><td>Transient parent of the dialog. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The result of the print operation. A return value of <a class="el" href="group__gtkmmEnums.html#gga6881ef70e8c3bc460ba179a84bee78d0ad792015f9ba051622656e445dbda3974">Gtk::PRINT_OPERATION_RESULT_APPLY</a> indicates that the printing was completed successfully. In this case, it is a good idea to obtain the used print settings with <a class="el" href="classGtk_1_1PrintOperation.html#a837b58cd9ca4a0750a86c2f1bc3ef2b4" title="Returns the current print settings. ">get_print_settings()</a> and store them for reuse with the next print operation. A value of <a class="el" href="group__gtkmmEnums.html#gga6881ef70e8c3bc460ba179a84bee78d0a2565ea32f281535788a3edf6da58456b">Gtk::PRINT_OPERATION_RESULT_IN_PROGRESS</a> means the operation is running asynchronously, and will emit the <a class="el" href="classGtk_1_1PrintOperation.html#a4039dcce92f8f8bb0e7ebaea4e59b18e">Gtk::PrintOperation::signal_done()</a> signal when done. </dd></dl>
</div>
</div>
<a class="anchor" id="af4701d900a36b8ecedbb25605c1a355b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_allow_async </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>allow_async</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether the <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a> may return before the print operation is completed. </p>
<p>Note that some platforms may not allow asynchronous operation.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000135">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">allow_async</td><td><code>true</code> to allow asynchronous operation. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6228a5dd3bed61a002185ccee6586705"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_current_page </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>current_page</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the current page. </p>
<p>If this is called before <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a>, the user will be able to select to print only the current page.</p>
<p>Note that this only makes sense for pre-paginated documents.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000129">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">current_page</td><td>The current page, 0-based. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a36f4f4fd7ec8a3b2a2d40c7431ab99e3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_custom_tab_label </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>label</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the label for the tab holding custom widgets. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000136">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">label</td><td>The label to use, or <code>nullptr</code> to use the default label. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7bea50c6ee58751f07e79959bc545326"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_default_page_setup </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a> >& </td>
<td class="paramname"><em>default_page_setup</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Makes <em>default_page_setup</em> the default page setup for <em>op</em>. </p>
<p>This page setup will be used by <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a>, but it can be overridden on a per-page basis by connecting to the <a class="el" href="classGtk_1_1PrintOperation.html#a456d0c3403c621f28e6df2b567effea5">Gtk::PrintOperation::signal_request_page_setup()</a> signal.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000123">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">default_page_setup</td><td>A <a class="el" href="classGtk_1_1PageSetup.html" title="A PageSetup object stores the page size, orientation and margins. ">Gtk::PageSetup</a>, or <code>nullptr</code>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a41fd8d12cb747831e0c98208cd0f0e76"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_defer_drawing </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets up the <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a> to wait for calling of <a class="el" href="classGtk_1_1PrintOperation.html#a5d4cdc767c49064f1b58474b49206af7" title="Signalize that drawing of particular page is complete. ">draw_page_finish()</a> from application. </p>
<p>It can be used for drawing page in another thread.</p>
<p>This function must be called in the callback of "draw-page" signal.</p>
<dl class="since_2_16"><dt><b><a class="el" href="since_2_16.html#_since_2_16000082">Since gtkmm 2.16:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="af7dc2111167970dda8b03e8a61b53205"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_embed_page_setup </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>embed</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Embed page size combo box and orientation combo box into page setup page. </p>
<p>Selected page setup is stored as default page setup in <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a>.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000056">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">embed</td><td><code>true</code> to embed page setup selection in the Gtk::PrintDialog. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af6a3811929339ccbbe0e0b4f7172c2c7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_export_filename </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>filename</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets up the <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a> to generate a file instead of showing the print dialog. </p>
<p>The indended use of this function is for implementing "Export to PDF" actions. Currently, PDF is the only supported format.</p>
<p>"Print to PDF" support is independent of this and is done by letting the user pick the "Print to PDF" item from the list of printers in the print dialog.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000132">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filename</td><td>The filename for the exported file. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7149409106097f0f83a361bceeb2f441"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_has_selection </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>has_selection</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether there is a selection to print. </p>
<p>Application has to set number of pages to which the selection will draw by <a class="el" href="classGtk_1_1PrintOperation.html#a41a215eff186075f793c29fd01d90502" title="Sets the number of pages in the document. ">set_n_pages()</a> in a callback of <a class="el" href="classGtk_1_1PrintOperation.html#ac27abcde6e7f306ab4d2e803f379b337">Gtk::PrintOperation::signal_begin_print()</a>.</p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000054">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">has_selection</td><td><code>true</code> indicates that a selection exists. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a2f823341ee850fdc82b83b789186027d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_job_name </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>job_name</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the name of the print job. </p>
<p>The name is used to identify the job (e.g. in monitoring applications like eggcups).</p>
<p>If you don't set a job name, GTK+ picks a default one by numbering successive print jobs.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000127">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">job_name</td><td>A string that identifies the print job. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a41a215eff186075f793c29fd01d90502"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_n_pages </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>n_pages</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the number of pages in the document. </p>
<p>This <em>must</em> be set to a positive number before the rendering starts. It may be set in a <a class="el" href="classGtk_1_1PrintOperation.html#ac27abcde6e7f306ab4d2e803f379b337">Gtk::PrintOperation::signal_begin_print()</a> signal hander.</p>
<p>Note that the page numbers passed to the <a class="el" href="classGtk_1_1PrintOperation.html#a456d0c3403c621f28e6df2b567effea5">Gtk::PrintOperation::signal_request_page_setup()</a> and <a class="el" href="classGtk_1_1PrintOperation.html#a3da39b04fb2be8b6cc24e20ff6dc848b">Gtk::PrintOperation::signal_draw_page()</a> signals are 0-based, i.e. if the user chooses to print all pages, the last <a class="el" href="classGtk_1_1PrintOperation.html#a3da39b04fb2be8b6cc24e20ff6dc848b">signal_draw_page()</a> signal will be for page <em>n_pages</em> - 1.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000128">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">n_pages</td><td>The number of pages. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa2b7cbeb184ab391ed10030cae56d290"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_print_settings </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a> >& </td>
<td class="paramname"><em>print_settings</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the print settings for <em>op</em>. </p>
<p>This is typically used to re-establish print settings from a previous print operation, see <a class="el" href="classGtk_1_1PrintOperation.html#a9155589b1d3cf4f4d87c5beb69b1f7a5">run()</a>.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000125">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">print_settings</td><td><a class="el" href="classGtk_1_1PrintSettings.html" title="A PrintSettings object represents the settings of a print dialog in a system-independent way...">Gtk::PrintSettings</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa9d267e6df375d17ed069eb62bb23e34"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_show_progress </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>show_progress</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If <em>show_progress</em> is <code>true</code>, the print operation will show a progress dialog during the print operation. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000134">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">show_progress</td><td><code>true</code> to show a progress dialog. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="adfc86200f56ca59e6a28f31c508de2fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_support_selection </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>support_selection</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets whether selection is supported by <a class="el" href="classGtk_1_1PrintOperation.html" title="PrintOperation is the high-level, portable printing API. ">Gtk::PrintOperation</a>. </p>
<dl class="since_2_18"><dt><b><a class="el" href="since_2_18.html#_since_2_18000052">Since gtkmm 2.18:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">support_selection</td><td><code>true</code> to support selection. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a0db78c570875001ae7752638a592f793"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_track_print_status </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>track_status</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If track_status is <code>true</code>, the print operation will try to continue report on the status of the print job in the printer queues and printer. </p>
<p>This can allow your application to show things like "out of paper" issues, and when the print job actually reaches the printer.</p>
<p>This function is often implemented using some form of polling, so it should not be enabled unless needed.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000133">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">track_status</td><td><code>true</code> to track status after printing. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a327bf7816fde596e01080b059edf8e1c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_unit </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga9cdd3adb4017a5c706e205aa914ba6fb">Unit</a> </td>
<td class="paramname"><em>unit</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets up the transformation for the cairo context obtained from <a class="el" href="classGtk_1_1PrintContext.html" title="A PrintContext encapsulates context information that is required when drawing pages for printing...">Gtk::PrintContext</a> in such a way that distances are measured in units of <em>unit</em>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000131">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">unit</td><td>The unit to use. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aecdd549da90856825d09f7ca9c23de40"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::PrintOperation::set_use_full_page </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>use_full_page</em> = <code>true</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>If <em>use_full_page</em> is <code>true</code>, the transformation for the cairo context obtained from <a class="el" href="classGtk_1_1PrintContext.html" title="A PrintContext encapsulates context information that is required when drawing pages for printing...">Gtk::PrintContext</a> puts the origin at the top left corner of the page (which may not be the top left corner of the sheet, depending on page orientation and the number of pages per sheet). </p>
<p>Otherwise, the origin is at the top left corner of the imageable area (i.e. inside the margins).</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000130">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">use_full_page</td><td><code>true</code> to set up the <a class="el" href="classGtk_1_1PrintContext.html" title="A PrintContext encapsulates context information that is required when drawing pages for printing...">Gtk::PrintContext</a> for the full page. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac27abcde6e7f306ab4d2e803f379b337"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a>>& > Gtk::PrintOperation::signal_begin_print </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_begin_print(const Glib::RefPtr<PrintContext>& context)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a32810c37d25d82aafc2327a103eca654"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< <a class="el" href="classGtk_1_1Widget.html">Widget</a>* > Gtk::PrintOperation::signal_create_custom_widget </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>Widget* on_my_create_custom_widget()</code> </dd></dl>
</div>
</div>
<a class="anchor" id="ab897d28d38407f081296d2a2ad5bd009"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,<a class="el" href="classGtk_1_1Widget.html">Widget</a>* > Gtk::PrintOperation::signal_custom_widget_apply </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_custom_widget_apply(Widget* widget)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a4039dcce92f8f8bb0e7ebaea4e59b18e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,<a class="el" href="group__gtkmmEnums.html#ga6881ef70e8c3bc460ba179a84bee78d0">PrintOperationResult</a> > Gtk::PrintOperation::signal_done </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_done(PrintOperationResult result)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a3da39b04fb2be8b6cc24e20ff6dc848b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a>>&,int > Gtk::PrintOperation::signal_draw_page </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_draw_page(const Glib::RefPtr<PrintContext>& context, int page_nr)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a88401b3bccba506d6e7839b4571f8ec3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a>>& > Gtk::PrintOperation::signal_end_print </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_end_print(const Glib::RefPtr<PrintContext>& context)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="ace05437df476d0667b8fcfdaa3dc9793"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a>>& > Gtk::PrintOperation::signal_paginate </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>bool on_my_paginate(const Glib::RefPtr<PrintContext>& context)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="abc2aa454cece8559378890c812422661"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< bool,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintOperationPreview.html">PrintOperationPreview</a>>&,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a>>&,<a class="el" href="classGtk_1_1Window.html">Window</a>* > Gtk::PrintOperation::signal_preview </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>bool on_my_preview(const Glib::RefPtr<PrintOperationPreview>& preview, const Glib::RefPtr<PrintContext>& context, Window* parent)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a456d0c3403c621f28e6df2b567effea5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintContext.html">PrintContext</a>>&,int,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a>>& > Gtk::PrintOperation::signal_request_page_setup </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_request_page_setup(const Glib::RefPtr<PrintContext>& context, int page_no, const Glib::RefPtr<PageSetup>& setup)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a95851379e9b3b7421945669fcb816ba2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void > Gtk::PrintOperation::signal_status_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_status_changed()</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a962d67abfe5cf5111c45a5b44b7616ba"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy.html">Glib::SignalProxy</a>< void,<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>*,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PageSetup.html">PageSetup</a>>&,const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1PrintSettings.html">PrintSettings</a>>& > Gtk::PrintOperation::signal_update_custom_widget </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_update_custom_widget(<a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets) ">Gtk::Widget</a>* widget, const Glib::RefPtr<PageSetup>& setup, const Glib::RefPtr<PrintSettings>& settings)</code> </dd></dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a647084f004a8d55d6f0408474871174e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1PrintOperation.html">Gtk::PrintOperation</a> > wrap </td>
<td>(</td>
<td class="paramtype">GtkPrintOperation * </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>take_copy</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>The C instance. </td></tr>
<tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/printoperation.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|