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
|
<!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"/>
<title>gtkmm: Gdk::Display Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<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 class="tabs">
<ul>
<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="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="namespaceGdk.html">Gdk</a>::<a class="el" href="classGdk_1_1Display.html">Display</a>
</div>
</div>
<div class="contents">
<h1>Gdk::Display Class Reference</h1><!-- doxytag: class="Gdk::Display" --><!-- doxytag: inherits="Glib::Object" -->
<p><a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a> object's purpose is two fold: To grab/ungrab keyboard focus and mouse pointer To manage and provide information about the Gdk::Screen(s) available for this <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a>. <a href="#_details">More...</a></p>
<p>Inherits <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>.</p>
<div class="dynheader">
Collaboration diagram for Gdk::Display:</div>
<div class="dynsection">
<div class="center"><img src="classGdk_1_1Display__coll__graph.png" border="0" usemap="#Gdk_1_1Display_coll__map" alt="Collaboration graph"/></div>
<map name="Gdk_1_1Display_coll__map" id="Gdk_1_1Display_coll__map">
<area shape="rect" 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="20,160,111,189"/><area shape="rect" 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="5,83,125,112"/><area shape="rect" 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="12,5,119,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classGdk_1_1Display-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9055aa9e82b7a9f9d2a95a24230acb48">~Display</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkDisplay* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aa5ba401c95c8f72ffbc974fa9ff7e2f1">gobj</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#aa5ba401c95c8f72ffbc974fa9ff7e2f1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GdkDisplay* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a410d10d1aa86f043b3bbf1df1ba1d075">gobj</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a410d10d1aa86f043b3bbf1df1ba1d075"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkDisplay* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ab90b102f28dc2ea9f1259b005acfba9e">gobj_copy</a> ()</td></tr>
<tr><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="#ab90b102f28dc2ea9f1259b005acfba9e"></a><br/></td></tr>
<tr><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="classGdk_1_1Display.html#a81036bff74e1bb09cdd230743d433ec7">get_name</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the name of the display. <a href="#a81036bff74e1bb09cdd230743d433ec7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aa84e594f6dac8e7f77b031d57f13d504">get_n_screens</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the number of screen managed by the <em>display</em>. <a href="#aa84e594f6dac8e7f77b031d57f13d504"></a><br/></td></tr>
<tr><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="classGdk_1_1Screen.html">Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ab1b6cdfc050a832e4cd9d8565ecdff9f">get_screen</a> (int screen_num)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a screen object for one of the screens of the display. <a href="#ab1b6cdfc050a832e4cd9d8565ecdff9f"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Screen.html">Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a78c80a7a01aa31c0e3b7e6857f78df28">get_screen</a> (int screen_num) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a screen object for one of the screens of the display. <a href="#a78c80a7a01aa31c0e3b7e6857f78df28"></a><br/></td></tr>
<tr><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="classGdk_1_1Screen.html">Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ac58b63c93376019814c62e2bd1271a94">get_default_screen</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the default <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> for <em>display</em>. <a href="#ac58b63c93376019814c62e2bd1271a94"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Screen.html">Screen</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9e6f355e1b0563454a2fc649622ac300">get_default_screen</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the default <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> for <em>display</em>. <a href="#a9e6f355e1b0563454a2fc649622ac300"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a4051f0a4fc83e0399b61607106131588">pointer_ungrab</a> (guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Release any pointer grab. <a href="#a4051f0a4fc83e0399b61607106131588"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#adacab3c82451fc8c4adcecedb858ccc0">keyboard_ungrab</a> (guint32 timestamp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Release any keyboard grab. <a href="#adacab3c82451fc8c4adcecedb858ccc0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a4262f78514749d9967a545866489234b">pointer_is_grabbed</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Test if the pointer is grabbed. <a href="#a4262f78514749d9967a545866489234b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a63ff8a09aa81f2bf1f7581ddba39fe69">beep</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Emits a short beep on <em>display</em>. <a href="#a63ff8a09aa81f2bf1f7581ddba39fe69"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ad772046a33c0a1c6d071b1cf339faf63">sync</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Flushes any requests queued for the windowing system and waits until all requests have been handled. <a href="#ad772046a33c0a1c6d071b1cf339faf63"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a00b18a2be2cd6216c30b64330e8817b6">close</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Closes the connection to the windowing system for the given display, and cleans up associated resources. <a href="#a00b18a2be2cd6216c30b64330e8817b6"></a><br/></td></tr>
<tr><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_1ListHandle.html">Glib::ListHandle</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><br class="typebreak"/>
< <a class="el" href="classGdk_1_1Device.html">Device</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ad54b06d1f81459a67112fe3b6615a358">list_devices</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the list of available input devices attached to <em>display</em>. <a href="#ad54b06d1f81459a67112fe3b6615a358"></a><br/></td></tr>
<tr><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_1ListHandle.html">Glib::ListHandle</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><br class="typebreak"/>
< const <a class="el" href="classGdk_1_1Device.html">Device</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9720f851ca83287e5d97e0cf7030bec9">list_devices</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the list of available input devices attached to <em>display</em>. <a href="#a9720f851ca83287e5d97e0cf7030bec9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkEvent* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a71ef8186ac0ebce17ab869eb77f5e9e7">get_event</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the next <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> to be processed for <em>display</em>, fetching events from the windowing system if necessary. <a href="#a71ef8186ac0ebce17ab869eb77f5e9e7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GdkEvent* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#af2619b3d9214ac40b38e571ed41be2a7">get_event</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the next <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> to be processed for <em>display</em>, fetching events from the windowing system if necessary. <a href="#af2619b3d9214ac40b38e571ed41be2a7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkEvent* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a3b7ad20b7a23a50c3b5b48482deac281">peek_event</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets a copy of the first <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> in the <em>display's</em> event queue, without removing the event from the queue. <a href="#a3b7ad20b7a23a50c3b5b48482deac281"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkEvent* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a7da16e716abf57a3dd27b1fc93b1b0da">peek_event</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets a copy of the first <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> in the <em>display's</em> event queue, without removing the event from the queue. <a href="#a7da16e716abf57a3dd27b1fc93b1b0da"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#afaca03c9f4b869fdd127c298869f948b">put_event</a> (GdkEvent* event)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Appends a copy of the given event onto the front of the event queue for <em>display</em>. <a href="#afaca03c9f4b869fdd127c298869f948b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a6c4f9ccf0ed0da91dd2d88f7a58aa73d">add_client_message_filter</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>& message_type, GdkFilterFunc func, gpointer data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Adds a filter to be called when X ClientMessage events are received. <a href="#a6c4f9ccf0ed0da91dd2d88f7a58aa73d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#afd39ade2117b4fd825989dc25f9673bb">set_double_click_time</a> (guint msec)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the double click time (two clicks within this time interval count as a double click and result in a <a class="el" href="namespaceGdk.html">Gdk</a>::2BUTTON_PRESS event). <a href="#afd39ade2117b4fd825989dc25f9673bb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#af7f3d567cbc742ea19dba76043fd6038">set_double_click_distance</a> (guint <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01134.html#ga0cdb1b8e35620aaaaf4b65f19b8bd4c8">distance</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the double click distance (two clicks within this distance count as a double click and result in a <a class="el" href="namespaceGdk.html">Gdk</a>::2BUTTON_PRESS event). <a href="#af7f3d567cbc742ea19dba76043fd6038"></a><br/></td></tr>
<tr><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="classGdk_1_1Device.html">Device</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#abad303027ef07d93a015bf4ecb8989cb">get_core_pointer</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the core pointer device for the given display. <a href="#abad303027ef07d93a015bf4ecb8989cb"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Device.html">Device</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a036e39f2401958714c80dd08176bd2c7">get_core_pointer</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the core pointer device for the given display. <a href="#a036e39f2401958714c80dd08176bd2c7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9a5cad0655ddd706b1dd231353b70125">get_pointer</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="classGdk_1_1Screen.html">Screen</a> >& screen, int& x, int& y, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">ModifierType</a>& mask)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the current location of the pointer and the current modifier mask for a given display. <a href="#a9a5cad0655ddd706b1dd231353b70125"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a2022113c40d676f7f23412c10abf66ec">get_pointer</a> (int& x, int& y, <a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">ModifierType</a>& mask)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the current location of the pointer and the current modifier mask for a given display. <a href="#a2022113c40d676f7f23412c10abf66ec"></a><br/></td></tr>
<tr><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="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ab453d77f3aa8f34d032fe165a1a355b3">get_window_at_pointer</a> (int& win_x, int& win_y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the window underneath the mouse pointer, returning the location of the pointer in that window in <em>win_x</em>, <em>win_y</em> for <em>screen</em>. <a href="#ab453d77f3aa8f34d032fe165a1a355b3"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ab2fde37579bc33e7ebbcf219c9933761">get_window_at_pointer</a> (int& win_x, int& win_y) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the window underneath the mouse pointer, returning the location of the pointer in that window in <em>win_x</em>, <em>win_y</em> for <em>screen</em>. <a href="#ab2fde37579bc33e7ebbcf219c9933761"></a><br/></td></tr>
<tr><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="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a8448483bba5de0133ac55f1a31b652f6">get_window_at_pointer</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the window underneath the mouse pointer. <a href="#a8448483bba5de0133ac55f1a31b652f6"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a28e15273b19511bc87ce5069a543d8a9">get_window_at_pointer</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Obtains the window underneath the mouse pointer. <a href="#a28e15273b19511bc87ce5069a543d8a9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9c5151f1c2e9c9dcde173ca1f55e531b">warp_pointer</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="classGdk_1_1Screen.html">Screen</a> >& screen, int x, int y)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Warps the pointer of <em>display</em> to the point <em>x</em>, <em>y</em> on the screen <em>screen</em>, unless the pointer is confined to a window by a grab, in which case it will be moved as far as allowed by the grab. <a href="#a9c5151f1c2e9c9dcde173ca1f55e531b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkDisplayPointerHooks* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aba419402ae955da3a96994bf9188f149">set_pointer_hooks</a> (const GdkDisplayPointerHooks* new_hooks)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function allows for hooking into the operation of getting the current location of the pointer on a particular display. <a href="#aba419402ae955da3a96994bf9188f149"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkDisplayPointerHooks* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aaa4d96cef880080d17123d3ff4a24494">unset_pointer_hooks</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkNativeWindow </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a18ec4d2d4162fb4affa8975352c04412">get_drag_protocol</a> (GdkNativeWindow xid, GdkDragProtocol& protocol)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Finds out the DND protocol supported by a window. <a href="#a18ec4d2d4162fb4affa8975352c04412"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GdkKeymap* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ad28f5bf65bb574fabfb145cae58af844">get_keymap</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the Gdk::Keymap attached to <em>display</em>. <a href="#ad28f5bf65bb574fabfb145cae58af844"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GdkKeymap* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aa4dce935b386c1782116cda227e464fd">get_keymap</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the Gdk::Keymap attached to <em>display</em>. <a href="#aa4dce935b386c1782116cda227e464fd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a12a762f4c63f159da0597bc007864ae9">set_selection_owner</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="classGdk_1_1Window.html">Window</a> >& owner, <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>& selection, guint32 time_, bool send_event)</td></tr>
<tr><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="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a7a1f27f2a222be22b6fd9cdbbc77c2bd">get_selection_owner</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>& selection)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a8c4a291af8a9b75a976dd340d83307a5">selection_send_notify</a> (GdkNativeWindow requestor, <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>& selection, <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>& target, <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, guint32 time_)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Send a response to SelectionRequest event. <a href="#a8c4a291af8a9b75a976dd340d83307a5"></a><br/></td></tr>
<tr><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="classGdk_1_1Pixmap.html">Pixmap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a4747387c8a3349e536f89392b0329501">lookup_pixmap</a> (<a class="el" href="namespaceGdk.html#abc645cff9ee57146245d4a5b4da7abac">NativeWindow</a> anid)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Looks up the <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> that wraps the given native pixmap handle. <a href="#a4747387c8a3349e536f89392b0329501"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Pixmap.html">Pixmap</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a0d6a62ba7f3e8c523c17c29cb80aebd9">lookup_pixmap</a> (<a class="el" href="namespaceGdk.html#abc645cff9ee57146245d4a5b4da7abac">NativeWindow</a> anid) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Looks up the <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> that wraps the given native pixmap handle. <a href="#a0d6a62ba7f3e8c523c17c29cb80aebd9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a0b8fa8a05a7208f9b717000fe1b74aa6">flush</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Flushes any requests queued for the windowing system; this happens automatically when the main loop blocks waiting for new events, but if your application is drawing without returning control to the main loop, you may need to call this function explicitely. <a href="#a0b8fa8a05a7208f9b717000fe1b74aa6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#abb60e53ec1440074fc6f93cdfaa94ac1">supports_cursor_alpha</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if cursors can use an 8bit alpha channel on <em>display</em>. <a href="#abb60e53ec1440074fc6f93cdfaa94ac1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a7cba00a292c19da1da97ec9cf6b09eef">supports_cursor_color</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if multicolored cursors are supported on <em>display</em>. <a href="#a7cba00a292c19da1da97ec9cf6b09eef"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a3ae4cc7de8dd57745eba62c75b2a85c8">get_default_cursor_size</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the default size to use for cursors on <em>display</em>. <a href="#a3ae4cc7de8dd57745eba62c75b2a85c8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9f80dfeaece806cca2eae5e4fa5e2c5f">get_maximal_cursor_size</a> (guint& width, guint& height)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the maximal size to use for cursors on <em>display</em>. <a href="#a9f80dfeaece806cca2eae5e4fa5e2c5f"></a><br/></td></tr>
<tr><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="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a15fbecbe204a75e0788b6df41d555d00">get_default_group</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the default group leader window for all toplevel windows on <em>display</em>. <a href="#a15fbecbe204a75e0788b6df41d555d00"></a><br/></td></tr>
<tr><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>< const <a class="el" href="classGdk_1_1Window.html">Window</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ad63eaa23ede9e626e5b5d2ffb358d3ab">get_default_group</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the default group leader window for all toplevel windows on <em>display</em>. <a href="#ad63eaa23ede9e626e5b5d2ffb358d3ab"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ad9a895ff3dc878e5ff99eb4bb18ac2c5">supports_selection_notification</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns whether Gdk::EventOwnerChange events will be sent when the owner of a selection changes. <a href="#ad9a895ff3dc878e5ff99eb4bb18ac2c5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#ad2f39992d762deb3708166744fb833aa">request_selection_notification</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>& selection)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Request Gdk::EventOwnerChange events for ownership changes of the selection named by the given atom. <a href="#ad2f39992d762deb3708166744fb833aa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aa93797c67cffeb621925a8d3e2e7f335">supports_clipboard_persistence</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the speicifed display supports clipboard persistance; i.e. if it's possible to store the clipboard data after an application has quit. <a href="#aa93797c67cffeb621925a8d3e2e7f335"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a0d31c8b4dfc1aca3b747497bfa2e60de">store_clipboard</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="classGdk_1_1Window.html">Gdk::Window</a> >& clipboard_window, guint32 time_)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Issues a request to the clipboard manager to store the clipboard data, saving all available targets. <a href="#a0d31c8b4dfc1aca3b747497bfa2e60de"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a975cc0ac90df7afb9e7f93b3b71f90c2">store_clipboard</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="classGdk_1_1Window.html">Gdk::Window</a> >& clipboard_window, guint32 time_, 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_1ArrayHandle.html">Glib::StringArrayHandle</a>& targets)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a3988d20d640b06fad1afcbd9d7ebc487">supports_shapes</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if gdk_window_shape_combine_mask() can be used to create shaped windows on <em>display</em>. <a href="#a3988d20d640b06fad1afcbd9d7ebc487"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a3e2aef74c6b3409148fca531e12d0580">supports_input_shapes</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if gdk_window_input_shape_combine_mask() can be used to modify the input shape of windows on <em>display</em>. <a href="#a3e2aef74c6b3409148fca531e12d0580"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aeb030dde7590e1b649f398e99da0c9b3">supports_composite</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if gdk_window_set_composited() can be used to redirect drawing on the window using compositing. <a href="#aeb030dde7590e1b649f398e99da0c9b3"></a><br/></td></tr>
<tr><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_1SignalProxy1.html">Glib::SignalProxy1</a>< void, bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#aac4a67cb0e152562cd68dae89047c313">signal_closed</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">The closed signal is emitted when the connection to the windowing system for this display is closed. <a href="#aac4a67cb0e152562cd68dae89047c313"></a><br/></td></tr>
<tr><td colspan="2"><h2>Static Public Member Functions</h2></td></tr>
<tr><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="classGdk_1_1Display.html">Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a59cf8e3302a66aa24ba43b0c47dae946">open</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>& display_name)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Opens a display. <a href="#a59cf8e3302a66aa24ba43b0c47dae946"></a><br/></td></tr>
<tr><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="classGdk_1_1Display.html">Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a0cbfb8aa89b6d2a7047b93909894b763">get_default</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Gets the default <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a>. <a href="#a0cbfb8aa89b6d2a7047b93909894b763"></a><br/></td></tr>
<tr><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="classGdk_1_1Display.html">Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a131a4247aeaeb8edb5d1cabb9ced3174">open_default_libgtk_only</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Opens the default display specified by command line arguments or environment variables, sets it as the default display, and returns it. <a href="#a131a4247aeaeb8edb5d1cabb9ced3174"></a><br/></td></tr>
<tr><td colspan="2"><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a343b97f710d20562739337c3f7ae7a26">Display</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#a9d0ea61a018143803a5158a0fbcf0fce">on_closed</a> (bool is_error)</td></tr>
<tr><td colspan="2"><h2>Related Functions</h2></td></tr>
<tr><td colspan="2"><p>(Note that these are not member functions.) </p>
<br/><br/></td></tr>
<tr><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="classGdk_1_1Display.html">Gdk::Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGdk_1_1Display.html#af5e336efbe340163508427f1c476af68">wrap</a> (GdkDisplay* object, bool take_copy=false)</td></tr>
<tr><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="#af5e336efbe340163508427f1c476af68"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p><a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a> object's purpose is two fold: To grab/ungrab keyboard focus and mouse pointer To manage and provide information about the Gdk::Screen(s) available for this <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a>. </p>
<p><a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a> objects are the GDK representation of the X <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Display</a> which can be described as a workstation consisting of a keyboard a pointing device (such as a mouse) and one or more screens. It is used to open and keep track of various <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> objects currently instantiated by the application. It is also used to grab and release the keyboard and the mouse pointer. </p>
<hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a9055aa9e82b7a9f9d2a95a24230acb48"></a><!-- doxytag: member="Gdk::Display::~Display" ref="a9055aa9e82b7a9f9d2a95a24230acb48" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual Gdk::Display::~Display </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a343b97f710d20562739337c3f7ae7a26"></a><!-- doxytag: member="Gdk::Display::Display" ref="a343b97f710d20562739337c3f7ae7a26" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gdk::Display::Display </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a6c4f9ccf0ed0da91dd2d88f7a58aa73d"></a><!-- doxytag: member="Gdk::Display::add_client_message_filter" ref="a6c4f9ccf0ed0da91dd2d88f7a58aa73d" args="(Glib::ustring &message_type, GdkFilterFunc func, gpointer data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::add_client_message_filter </td>
<td>(</td>
<td class="paramtype"><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>message_type</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">GdkFilterFunc </td>
<td class="paramname"> <em>func</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gpointer </td>
<td class="paramname"> <em>data</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Adds a filter to be called when X ClientMessage events are received. </p>
<p>See gdk_window_add_filter() if you are interested in filtering other types of events.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000025">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>message_type</em> </td><td>The type of ClientMessage events to receive. This will be checked against the <em>message_type</em> field of the XClientMessage event struct. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>func</em> </td><td>The function to call to process the event. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>data</em> </td><td>User data to pass to <em>func</em>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a63ff8a09aa81f2bf1f7581ddba39fe69"></a><!-- doxytag: member="Gdk::Display::beep" ref="a63ff8a09aa81f2bf1f7581ddba39fe69" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::beep </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Emits a short beep on <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000015">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a00b18a2be2cd6216c30b64330e8817b6"></a><!-- doxytag: member="Gdk::Display::close" ref="a00b18a2be2cd6216c30b64330e8817b6" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::close </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Closes the connection to the windowing system for the given display, and cleans up associated resources. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000017">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a0b8fa8a05a7208f9b717000fe1b74aa6"></a><!-- doxytag: member="Gdk::Display::flush" ref="a0b8fa8a05a7208f9b717000fe1b74aa6" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::flush </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Flushes any requests queued for the windowing system; this happens automatically when the main loop blocks waiting for new events, but if your application is drawing without returning control to the main loop, you may need to call this function explicitely. </p>
<p>A common case where this function needs to be called is when an application is executing drawing commands from a thread other than the thread where the main loop is running.</p>
<p>This is most useful for X11. On windowing systems where requests are handled synchronously, this function will do nothing.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000002">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a036e39f2401958714c80dd08176bd2c7"></a><!-- doxytag: member="Gdk::Display::get_core_pointer" ref="a036e39f2401958714c80dd08176bd2c7" args="() const " -->
<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><const <a class="el" href="classGdk_1_1Device.html">Device</a>> Gdk::Display::get_core_pointer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the core pointer device for the given display. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000029">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The core pointer device; this is owned by the display and should not be freed. </dd></dl>
</div>
</div>
<a class="anchor" id="abad303027ef07d93a015bf4ecb8989cb"></a><!-- doxytag: member="Gdk::Display::get_core_pointer" ref="abad303027ef07d93a015bf4ecb8989cb" args="()" -->
<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="classGdk_1_1Device.html">Device</a>> Gdk::Display::get_core_pointer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the core pointer device for the given display. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000028">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The core pointer device; this is owned by the display and should not be freed. </dd></dl>
</div>
</div>
<a class="anchor" id="a0cbfb8aa89b6d2a7047b93909894b763"></a><!-- doxytag: member="Gdk::Display::get_default" ref="a0cbfb8aa89b6d2a7047b93909894b763" args="()" -->
<div class="memitem">
<div class="memproto">
<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="classGdk_1_1Display.html">Display</a>> Gdk::Display::get_default </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the default <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a>. </p>
<p>This is a convenience function for <literal>gdk_display_manager_get_default_display (manager_get())</literal>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000027">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a>, or <code>0</code> if there is no default display. </dd></dl>
</div>
</div>
<a class="anchor" id="a3ae4cc7de8dd57745eba62c75b2a85c8"></a><!-- doxytag: member="Gdk::Display::get_default_cursor_size" ref="a3ae4cc7de8dd57745eba62c75b2a85c8" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint Gdk::Display::get_default_cursor_size </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the default size to use for cursors on <em>display</em>. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000005">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default cursor size. </dd></dl>
</div>
</div>
<a class="anchor" id="ad63eaa23ede9e626e5b5d2ffb358d3ab"></a><!-- doxytag: member="Gdk::Display::get_default_group" ref="ad63eaa23ede9e626e5b5d2ffb358d3ab" args="() const " -->
<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><const <a class="el" href="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_default_group </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the default group leader window for all toplevel windows on <em>display</em>. </p>
<p>This window is implicitly created by GDK. See gdk_window_set_group().</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000008">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default group leader window for <em>display</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a15fbecbe204a75e0788b6df41d555d00"></a><!-- doxytag: member="Gdk::Display::get_default_group" ref="a15fbecbe204a75e0788b6df41d555d00" args="()" -->
<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="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_default_group </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the default group leader window for all toplevel windows on <em>display</em>. </p>
<p>This window is implicitly created by GDK. See gdk_window_set_group().</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000007">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default group leader window for <em>display</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9e6f355e1b0563454a2fc649622ac300"></a><!-- doxytag: member="Gdk::Display::get_default_screen" ref="a9e6f355e1b0563454a2fc649622ac300" args="() const " -->
<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><const <a class="el" href="classGdk_1_1Screen.html">Screen</a>> Gdk::Display::get_default_screen </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Get the default <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> for <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000011">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> object for <em>display</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ac58b63c93376019814c62e2bd1271a94"></a><!-- doxytag: member="Gdk::Display::get_default_screen" ref="ac58b63c93376019814c62e2bd1271a94" args="()" -->
<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="classGdk_1_1Screen.html">Screen</a>> Gdk::Display::get_default_screen </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Get the default <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> for <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000010">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> object for <em>display</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a18ec4d2d4162fb4affa8975352c04412"></a><!-- doxytag: member="Gdk::Display::get_drag_protocol" ref="a18ec4d2d4162fb4affa8975352c04412" args="(GdkNativeWindow xid, GdkDragProtocol &protocol)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkNativeWindow Gdk::Display::get_drag_protocol </td>
<td>(</td>
<td class="paramtype">GdkNativeWindow </td>
<td class="paramname"> <em>xid</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">GdkDragProtocol & </td>
<td class="paramname"> <em>protocol</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Finds out the DND protocol supported by a window. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000033">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>xid</em> </td><td>The windowing system id of the destination window. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>protocol</em> </td><td>Location where the supported DND protocol is returned. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The windowing system id of the window where the drop should happen. This may be <em>xid</em> or the id of a proxy window, or zero if <em>xid</em> doesn't support Drag and Drop. </dd></dl>
</div>
</div>
<a class="anchor" id="af2619b3d9214ac40b38e571ed41be2a7"></a><!-- doxytag: member="Gdk::Display::get_event" ref="af2619b3d9214ac40b38e571ed41be2a7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GdkEvent* Gdk::Display::get_event </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the next <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> to be processed for <em>display</em>, fetching events from the windowing system if necessary. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000021">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The next <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> to be processed, or <code>0</code> if no events are pending. The returned <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> should be freed with gdk_event_free(). </dd></dl>
</div>
</div>
<a class="anchor" id="a71ef8186ac0ebce17ab869eb77f5e9e7"></a><!-- doxytag: member="Gdk::Display::get_event" ref="a71ef8186ac0ebce17ab869eb77f5e9e7" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkEvent* Gdk::Display::get_event </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the next <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> to be processed for <em>display</em>, fetching events from the windowing system if necessary. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000020">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The next <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> to be processed, or <code>0</code> if no events are pending. The returned <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> should be freed with gdk_event_free(). </dd></dl>
</div>
</div>
<a class="anchor" id="aa4dce935b386c1782116cda227e464fd"></a><!-- doxytag: member="Gdk::Display::get_keymap" ref="aa4dce935b386c1782116cda227e464fd" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GdkKeymap* Gdk::Display::get_keymap </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the Gdk::Keymap attached to <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000035">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The Gdk::Keymap attached to <em>display</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ad28f5bf65bb574fabfb145cae58af844"></a><!-- doxytag: member="Gdk::Display::get_keymap" ref="ad28f5bf65bb574fabfb145cae58af844" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkKeymap* Gdk::Display::get_keymap </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the Gdk::Keymap attached to <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000034">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The Gdk::Keymap attached to <em>display</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9f80dfeaece806cca2eae5e4fa5e2c5f"></a><!-- doxytag: member="Gdk::Display::get_maximal_cursor_size" ref="a9f80dfeaece806cca2eae5e4fa5e2c5f" args="(guint &width, guint &height)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::get_maximal_cursor_size </td>
<td>(</td>
<td class="paramtype">guint & </td>
<td class="paramname"> <em>width</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint & </td>
<td class="paramname"> <em>height</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the maximal size to use for cursors on <em>display</em>. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000006">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>width</em> </td><td>The return location for the maximal cursor width. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>height</em> </td><td>The return location for the maximal cursor height. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa84e594f6dac8e7f77b031d57f13d504"></a><!-- doxytag: member="Gdk::Display::get_n_screens" ref="aa84e594f6dac8e7f77b031d57f13d504" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gdk::Display::get_n_screens </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the number of screen managed by the <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000007">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Number of screens. </dd></dl>
</div>
</div>
<a class="anchor" id="a81036bff74e1bb09cdd230743d433ec7"></a><!-- doxytag: member="Gdk::Display::get_name" ref="a81036bff74e1bb09cdd230743d433ec7" args="() const " -->
<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> Gdk::Display::get_name </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the name of the display. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000006">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A string representing the display name. This string is owned by GDK and should not be modified or freed. </dd></dl>
</div>
</div>
<a class="anchor" id="a2022113c40d676f7f23412c10abf66ec"></a><!-- doxytag: member="Gdk::Display::get_pointer" ref="a2022113c40d676f7f23412c10abf66ec" args="(int &x, int &y, ModifierType &mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::get_pointer </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">ModifierType</a>& </td>
<td class="paramname"> <em>mask</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the current location of the pointer and the current modifier mask for a given display. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>x</em> </td><td>location to store root window X coordinate of pointer. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>y</em> </td><td>location to store root window Y coordinate of pointer. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>mask</em> </td><td>location to store current modifier mask. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9a5cad0655ddd706b1dd231353b70125"></a><!-- doxytag: member="Gdk::Display::get_pointer" ref="a9a5cad0655ddd706b1dd231353b70125" args="(Glib::RefPtr< Screen > &screen, int &x, int &y, ModifierType &mask)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::get_pointer </td>
<td>(</td>
<td class="paramtype"><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="classGdk_1_1Screen.html">Screen</a> >& </td>
<td class="paramname"> <em>screen</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gdkmmEnums.html#ga734c2979005c87dbe51223a0128cdd97">ModifierType</a>& </td>
<td class="paramname"> <em>mask</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets the current location of the pointer and the current modifier mask for a given display. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>screen</em> </td><td>location to store the screen that the cursor is on. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>x</em> </td><td>location to store root window X coordinate of pointer. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>y</em> </td><td>location to store root window Y coordinate of pointer. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>mask</em> </td><td>location to store current modifier mask. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a78c80a7a01aa31c0e3b7e6857f78df28"></a><!-- doxytag: member="Gdk::Display::get_screen" ref="a78c80a7a01aa31c0e3b7e6857f78df28" args="(int screen_num) const " -->
<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><const <a class="el" href="classGdk_1_1Screen.html">Screen</a>> Gdk::Display::get_screen </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>screen_num</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a screen object for one of the screens of the display. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000009">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>screen_num</em> </td><td>The screen number. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> object. </dd></dl>
</div>
</div>
<a class="anchor" id="ab1b6cdfc050a832e4cd9d8565ecdff9f"></a><!-- doxytag: member="Gdk::Display::get_screen" ref="ab1b6cdfc050a832e4cd9d8565ecdff9f" args="(int screen_num)" -->
<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="classGdk_1_1Screen.html">Screen</a>> Gdk::Display::get_screen </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>screen_num</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a screen object for one of the screens of the display. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000008">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>screen_num</em> </td><td>The screen number. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGdk_1_1Screen.html" title="Object representing a physical screen Gdk::Screen objects are the GDK representation...">Gdk::Screen</a> object. </dd></dl>
</div>
</div>
<a class="anchor" id="a7a1f27f2a222be22b6fd9cdbbc77c2bd"></a><!-- doxytag: member="Gdk::Display::get_selection_owner" ref="a7a1f27f2a222be22b6fd9cdbbc77c2bd" args="(const Glib::ustring &selection)" -->
<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="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_selection_owner </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>selection</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a28e15273b19511bc87ce5069a543d8a9"></a><!-- doxytag: member="Gdk::Display::get_window_at_pointer" ref="a28e15273b19511bc87ce5069a543d8a9" args="() const " -->
<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><const <a class="el" href="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_window_at_pointer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the window underneath the mouse pointer. </p>
<p>Returns a null RefPtr if the window under the mouse pointer is not known to GDK (for example, belongs to another application). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The window underneath the mouse pointer. </dd></dl>
</div>
</div>
<a class="anchor" id="a8448483bba5de0133ac55f1a31b652f6"></a><!-- doxytag: member="Gdk::Display::get_window_at_pointer" ref="a8448483bba5de0133ac55f1a31b652f6" args="()" -->
<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="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_window_at_pointer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the window underneath the mouse pointer. </p>
<p>Returns a null RefPtr if the window under the mouse pointer is not known to GDK (for example, belongs to another application). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The window underneath the mouse pointer. </dd></dl>
</div>
</div>
<a class="anchor" id="ab2fde37579bc33e7ebbcf219c9933761"></a><!-- doxytag: member="Gdk::Display::get_window_at_pointer" ref="ab2fde37579bc33e7ebbcf219c9933761" args="(int &win_x, int &win_y) const " -->
<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><const <a class="el" href="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_window_at_pointer </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>win_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>win_y</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the window underneath the mouse pointer, returning the location of the pointer in that window in <em>win_x</em>, <em>win_y</em> for <em>screen</em>. </p>
<p>Returns <code>0</code> if the window under the mouse pointer is not known to GDK (for example, belongs to another application).</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000031">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>win_x</em> </td><td>Return location for x coordinate of the pointer location relative to the window origin, or <code>0</code>. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>win_y</em> </td><td>Return location for y coordinate of the pointer location relative & to the window origin, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The window under the mouse pointer, or <code>0</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="ab453d77f3aa8f34d032fe165a1a355b3"></a><!-- doxytag: member="Gdk::Display::get_window_at_pointer" ref="ab453d77f3aa8f34d032fe165a1a355b3" args="(int &win_x, int &win_y)" -->
<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="classGdk_1_1Window.html">Window</a>> Gdk::Display::get_window_at_pointer </td>
<td>(</td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>win_x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int & </td>
<td class="paramname"> <em>win_y</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Obtains the window underneath the mouse pointer, returning the location of the pointer in that window in <em>win_x</em>, <em>win_y</em> for <em>screen</em>. </p>
<p>Returns <code>0</code> if the window under the mouse pointer is not known to GDK (for example, belongs to another application).</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000030">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>win_x</em> </td><td>Return location for x coordinate of the pointer location relative to the window origin, or <code>0</code>. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>win_y</em> </td><td>Return location for y coordinate of the pointer location relative & to the window origin, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The window under the mouse pointer, or <code>0</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a410d10d1aa86f043b3bbf1df1ba1d075"></a><!-- doxytag: member="Gdk::Display::gobj" ref="a410d10d1aa86f043b3bbf1df1ba1d075" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GdkDisplay* Gdk::Display::gobj </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
<p>Reimplemented from <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">Glib::ObjectBase</a>.</p>
</div>
</div>
<a class="anchor" id="aa5ba401c95c8f72ffbc974fa9ff7e2f1"></a><!-- doxytag: member="Gdk::Display::gobj" ref="aa5ba401c95c8f72ffbc974fa9ff7e2f1" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkDisplay* Gdk::Display::gobj </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
<p>Reimplemented from <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">Glib::ObjectBase</a>.</p>
</div>
</div>
<a class="anchor" id="ab90b102f28dc2ea9f1259b005acfba9e"></a><!-- doxytag: member="Gdk::Display::gobj_copy" ref="ab90b102f28dc2ea9f1259b005acfba9e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkDisplay* Gdk::Display::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="adacab3c82451fc8c4adcecedb858ccc0"></a><!-- doxytag: member="Gdk::Display::keyboard_ungrab" ref="adacab3c82451fc8c4adcecedb858ccc0" args="(guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::keyboard_ungrab </td>
<td>(</td>
<td class="paramtype">guint32 </td>
<td class="paramname"> <em>timestamp</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Release any keyboard grab. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000013">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>timestamp</em> </td><td>A timestap (e.g Gdk::CURRENT_TIME). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9720f851ca83287e5d97e0cf7030bec9"></a><!-- doxytag: member="Gdk::Display::list_devices" ref="a9720f851ca83287e5d97e0cf7030bec9" args="() const " -->
<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_1ListHandle.html">Glib::ListHandle</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><const <a class="el" href="classGdk_1_1Device.html">Device</a>> > Gdk::Display::list_devices </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the list of available input devices attached to <em>display</em>. </p>
<p>The list is statically allocated and should not be freed.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000019">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A list of <a class="el" href="classGdk_1_1Device.html" title="A Gdk::Device instance contains a detailed description of an extended input device...">Gdk::Device</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ad54b06d1f81459a67112fe3b6615a358"></a><!-- doxytag: member="Gdk::Display::list_devices" ref="ad54b06d1f81459a67112fe3b6615a358" args="()" -->
<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_1ListHandle.html">Glib::ListHandle</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="classGdk_1_1Device.html">Device</a>> > Gdk::Display::list_devices </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the list of available input devices attached to <em>display</em>. </p>
<p>The list is statically allocated and should not be freed.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000018">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A list of <a class="el" href="classGdk_1_1Device.html" title="A Gdk::Device instance contains a detailed description of an extended input device...">Gdk::Device</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a0d6a62ba7f3e8c523c17c29cb80aebd9"></a><!-- doxytag: member="Gdk::Display::lookup_pixmap" ref="a0d6a62ba7f3e8c523c17c29cb80aebd9" args="(NativeWindow anid) const " -->
<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><const <a class="el" href="classGdk_1_1Pixmap.html">Pixmap</a>> Gdk::Display::lookup_pixmap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="namespaceGdk.html#abc645cff9ee57146245d4a5b4da7abac">NativeWindow</a> </td>
<td class="paramname"> <em>anid</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Looks up the <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> that wraps the given native pixmap handle. </p>
<p>For example in the X backend, a native pixmap handle is an Xlib <type>XID</type>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000038">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>anid</em> </td><td>A native pixmap handle. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> wrapper for the native pixmap, or <code>0</code> if there is none. </dd></dl>
</div>
</div>
<a class="anchor" id="a4747387c8a3349e536f89392b0329501"></a><!-- doxytag: member="Gdk::Display::lookup_pixmap" ref="a4747387c8a3349e536f89392b0329501" args="(NativeWindow anid)" -->
<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="classGdk_1_1Pixmap.html">Pixmap</a>> Gdk::Display::lookup_pixmap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="namespaceGdk.html#abc645cff9ee57146245d4a5b4da7abac">NativeWindow</a> </td>
<td class="paramname"> <em>anid</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Looks up the <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> that wraps the given native pixmap handle. </p>
<p>For example in the X backend, a native pixmap handle is an Xlib <type>XID</type>.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000037">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>anid</em> </td><td>A native pixmap handle. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGdk_1_1Pixmap.html" title="Pixmaps are offscreen drawables.">Gdk::Pixmap</a> wrapper for the native pixmap, or <code>0</code> if there is none. </dd></dl>
</div>
</div>
<a class="anchor" id="a9d0ea61a018143803a5158a0fbcf0fce"></a><!-- doxytag: member="Gdk::Display::on_closed" ref="a9d0ea61a018143803a5158a0fbcf0fce" args="(bool is_error)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void Gdk::Display::on_closed </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>is_error</em></td>
<td> ) </td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a59cf8e3302a66aa24ba43b0c47dae946"></a><!-- doxytag: member="Gdk::Display::open" ref="a59cf8e3302a66aa24ba43b0c47dae946" args="(const Glib::ustring &display_name)" -->
<div class="memitem">
<div class="memproto">
<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="classGdk_1_1Display.html">Display</a>> Gdk::Display::open </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>display_name</em></td>
<td> ) </td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Opens a display. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000005">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>display_name</em> </td><td>The name of the display to open. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGdk_1_1Display.html" title="Gdk::Display object's purpose is two fold: To grab/ungrab keyboard focus and...">Gdk::Display</a>, or <code>0</code> if the display could not be opened. </dd></dl>
</div>
</div>
<a class="anchor" id="a131a4247aeaeb8edb5d1cabb9ced3174"></a><!-- doxytag: member="Gdk::Display::open_default_libgtk_only" ref="a131a4247aeaeb8edb5d1cabb9ced3174" args="()" -->
<div class="memitem">
<div class="memproto">
<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="classGdk_1_1Display.html">Display</a>> Gdk::Display::open_default_libgtk_only </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Opens the default display specified by command line arguments or environment variables, sets it as the default display, and returns it. </p>
<p>gdk_parse_args must have been called first. If the default display has previously been set, simply returns that. An internal function that should not be used by applications. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The default display, if it could be opened, otherwise <code>0</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a7da16e716abf57a3dd27b1fc93b1b0da"></a><!-- doxytag: member="Gdk::Display::peek_event" ref="a7da16e716abf57a3dd27b1fc93b1b0da" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkEvent* Gdk::Display::peek_event </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets a copy of the first <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> in the <em>display's</em> event queue, without removing the event from the queue. </p>
<p>(Note that this function will not get more events from the windowing system. It only checks the events that have already been moved to the GDK event queue.)</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000023">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A copy of the first <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> on the event queue, or <code>0</code> if no events are in the queue. The returned <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> should be freed with gdk_event_free(). </dd></dl>
</div>
</div>
<a class="anchor" id="a3b7ad20b7a23a50c3b5b48482deac281"></a><!-- doxytag: member="Gdk::Display::peek_event" ref="a3b7ad20b7a23a50c3b5b48482deac281" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkEvent* Gdk::Display::peek_event </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Gets a copy of the first <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> in the <em>display's</em> event queue, without removing the event from the queue. </p>
<p>(Note that this function will not get more events from the windowing system. It only checks the events that have already been moved to the GDK event queue.)</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000022">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A copy of the first <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> on the event queue, or <code>0</code> if no events are in the queue. The returned <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a> should be freed with gdk_event_free(). </dd></dl>
</div>
</div>
<a class="anchor" id="a4262f78514749d9967a545866489234b"></a><!-- doxytag: member="Gdk::Display::pointer_is_grabbed" ref="a4262f78514749d9967a545866489234b" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::pointer_is_grabbed </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Test if the pointer is grabbed. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000014">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if an active X pointer grab is in effect. </dd></dl>
</div>
</div>
<a class="anchor" id="a4051f0a4fc83e0399b61607106131588"></a><!-- doxytag: member="Gdk::Display::pointer_ungrab" ref="a4051f0a4fc83e0399b61607106131588" args="(guint32 timestamp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::pointer_ungrab </td>
<td>(</td>
<td class="paramtype">guint32 </td>
<td class="paramname"> <em>timestamp</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Release any pointer grab. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000012">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>timestamp</em> </td><td>A timestap (e.g. GDK_CURRENT_TIME). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afaca03c9f4b869fdd127c298869f948b"></a><!-- doxytag: member="Gdk::Display::put_event" ref="afaca03c9f4b869fdd127c298869f948b" args="(GdkEvent *event)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::put_event </td>
<td>(</td>
<td class="paramtype">GdkEvent * </td>
<td class="paramname"> <em>event</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Appends a copy of the given event onto the front of the event queue for <em>display</em>. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000024">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>event</em> </td><td>A <a class="el" href="classGdk_1_1Event.html">Gdk::Event</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad2f39992d762deb3708166744fb833aa"></a><!-- doxytag: member="Gdk::Display::request_selection_notification" ref="ad2f39992d762deb3708166744fb833aa" args="(const Glib::ustring &selection)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::request_selection_notification </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>selection</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request Gdk::EventOwnerChange events for ownership changes of the selection named by the given atom. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000002">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>selection</em> </td><td>The Gdk::Atom naming the selection for which ownership change notification is requested. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether Gdk::EventOwnerChange events will be sent. </dd></dl>
</div>
</div>
<a class="anchor" id="a8c4a291af8a9b75a976dd340d83307a5"></a><!-- doxytag: member="Gdk::Display::selection_send_notify" ref="a8c4a291af8a9b75a976dd340d83307a5" args="(GdkNativeWindow requestor, Glib::ustring &selection, Glib::ustring &target, Glib::ustring &property, guint32 time_)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::selection_send_notify </td>
<td>(</td>
<td class="paramtype">GdkNativeWindow </td>
<td class="paramname"> <em>requestor</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><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>selection</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><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>target</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><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>property</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"> <em>time_</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Send a response to SelectionRequest event. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000036">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>requestor</em> </td><td><a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Window</a> to which to deliver response. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>selection</em> </td><td>Selection that was requested. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>target</em> </td><td>Target that was selected. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>property</em> </td><td>Property in which the selection owner stored the data, or "None" to indicate that the request was rejected. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>time_</em> </td><td>Timestamp. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af7f3d567cbc742ea19dba76043fd6038"></a><!-- doxytag: member="Gdk::Display::set_double_click_distance" ref="af7f3d567cbc742ea19dba76043fd6038" args="(guint distance)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::set_double_click_distance </td>
<td>(</td>
<td class="paramtype">guint </td>
<td class="paramname"> <em>distance</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the double click distance (two clicks within this distance count as a double click and result in a <a class="el" href="namespaceGdk.html">Gdk</a>::2BUTTON_PRESS event). </p>
<p>See also <a class="el" href="classGdk_1_1Display.html#afd39ade2117b4fd825989dc25f9673bb" title="Sets the double click time (two clicks within this time interval count as a double...">set_double_click_time()</a>. Applications should <emphasis>not</emphasis> set this, it is a global user-configured setting.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000001">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>distance</em> </td><td>Distance in pixels. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afd39ade2117b4fd825989dc25f9673bb"></a><!-- doxytag: member="Gdk::Display::set_double_click_time" ref="afd39ade2117b4fd825989dc25f9673bb" args="(guint msec)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::set_double_click_time </td>
<td>(</td>
<td class="paramtype">guint </td>
<td class="paramname"> <em>msec</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the double click time (two clicks within this time interval count as a double click and result in a <a class="el" href="namespaceGdk.html">Gdk</a>::2BUTTON_PRESS event). </p>
<p>Applications should <emphasis>not</emphasis> set this, it is a global user-configured setting.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000026">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>msec</em> </td><td>Double click time in milliseconds (thousandths of a second). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aba419402ae955da3a96994bf9188f149"></a><!-- doxytag: member="Gdk::Display::set_pointer_hooks" ref="aba419402ae955da3a96994bf9188f149" args="(const GdkDisplayPointerHooks *new_hooks)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkDisplayPointerHooks* Gdk::Display::set_pointer_hooks </td>
<td>(</td>
<td class="paramtype">const GdkDisplayPointerHooks * </td>
<td class="paramname"> <em>new_hooks</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This function allows for hooking into the operation of getting the current location of the pointer on a particular display. </p>
<p>This is only useful for such low-level tools as an event recorder. Applications should never have any reason to use this facility.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000032">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>new_hooks</em> </td><td>A table of pointers to functions for getting quantities related to the current pointer position. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The previous pointer hook table. </dd></dl>
</div>
</div>
<a class="anchor" id="a12a762f4c63f159da0597bc007864ae9"></a><!-- doxytag: member="Gdk::Display::set_selection_owner" ref="a12a762f4c63f159da0597bc007864ae9" args="(const Glib::RefPtr< Window > &owner, Glib::ustring &selection, guint32 time_, bool send_event)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::set_selection_owner </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="classGdk_1_1Window.html">Window</a> >& </td>
<td class="paramname"> <em>owner</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><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>selection</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"> <em>time_</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>send_event</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aac4a67cb0e152562cd68dae89047c313"></a><!-- doxytag: member="Gdk::Display::signal_closed" ref="aac4a67cb0e152562cd68dae89047c313" args="()" -->
<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_1SignalProxy1.html">Glib::SignalProxy1</a>< void,bool > Gdk::Display::signal_closed </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>The closed signal is emitted when the connection to the windowing system for this display is closed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>is_error</em> </td><td>true if the display was closed due to an error</td></tr>
</table>
</dd>
</dl>
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_closed(bool is_error)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a975cc0ac90df7afb9e7f93b3b71f90c2"></a><!-- doxytag: member="Gdk::Display::store_clipboard" ref="a975cc0ac90df7afb9e7f93b3b71f90c2" args="(const Glib::RefPtr< Gdk::Window > &clipboard_window, guint32 time_, const Glib::StringArrayHandle &targets)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::store_clipboard </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="classGdk_1_1Window.html">Gdk::Window</a> >& </td>
<td class="paramname"> <em>clipboard_window</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"> <em>time_</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_1ArrayHandle.html">Glib::StringArrayHandle</a> & </td>
<td class="paramname"> <em>targets</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a0d31c8b4dfc1aca3b747497bfa2e60de"></a><!-- doxytag: member="Gdk::Display::store_clipboard" ref="a0d31c8b4dfc1aca3b747497bfa2e60de" args="(const Glib::RefPtr< Gdk::Window > &clipboard_window, guint32 time_)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::store_clipboard </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="classGdk_1_1Window.html">Gdk::Window</a> >& </td>
<td class="paramname"> <em>clipboard_window</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint32 </td>
<td class="paramname"> <em>time_</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Issues a request to the clipboard manager to store the clipboard data, saving all available targets. </p>
<p>On X11, this is a special program that works according to the freedesktop clipboard specification, available at <a href="http://www.freedesktop.org/Standards/clipboard-manager-spec.">http://www.freedesktop.org/Standards/clipboard-manager-spec.</a> </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000004">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>clipboard_window</em> </td><td>A <a class="el" href="classGdk_1_1Window.html" title="A Gdk::Window is a rectangular region on the screen.">Gdk::Window</a> belonging to the clipboard owner. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>time_</em> </td><td>A timestamp. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa93797c67cffeb621925a8d3e2e7f335"></a><!-- doxytag: member="Gdk::Display::supports_clipboard_persistence" ref="aa93797c67cffeb621925a8d3e2e7f335" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_clipboard_persistence </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns whether the speicifed display supports clipboard persistance; i.e. if it's possible to store the clipboard data after an application has quit. </p>
<p>On X11 this checks if a clipboard daemon is running.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000003">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the display supports clipboard persistance. </dd></dl>
</div>
</div>
<a class="anchor" id="aeb030dde7590e1b649f398e99da0c9b3"></a><!-- doxytag: member="Gdk::Display::supports_composite" ref="aeb030dde7590e1b649f398e99da0c9b3" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_composite </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if gdk_window_set_composited() can be used to redirect drawing on the window using compositing. </p>
<p>Currently this only works on X11 with XComposite and XDamage extensions available.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000001">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if windows may be composited. </dd></dl>
</div>
</div>
<a class="anchor" id="abb60e53ec1440074fc6f93cdfaa94ac1"></a><!-- doxytag: member="Gdk::Display::supports_cursor_alpha" ref="abb60e53ec1440074fc6f93cdfaa94ac1" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_cursor_alpha </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if cursors can use an 8bit alpha channel on <em>display</em>. </p>
<p>Otherwise, cursors are restricted to bilevel alpha (i.e. a mask).</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000003">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether cursors can have alpha channels. </dd></dl>
</div>
</div>
<a class="anchor" id="a7cba00a292c19da1da97ec9cf6b09eef"></a><!-- doxytag: member="Gdk::Display::supports_cursor_color" ref="a7cba00a292c19da1da97ec9cf6b09eef" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_cursor_color </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if multicolored cursors are supported on <em>display</em>. </p>
<p>Otherwise, cursors have only a forground and a background color.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000004">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether cursors can have multiple colors. </dd></dl>
</div>
</div>
<a class="anchor" id="a3e2aef74c6b3409148fca531e12d0580"></a><!-- doxytag: member="Gdk::Display::supports_input_shapes" ref="a3e2aef74c6b3409148fca531e12d0580" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_input_shapes </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if gdk_window_input_shape_combine_mask() can be used to modify the input shape of windows on <em>display</em>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000002">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if windows with modified input shape are supported. </dd></dl>
</div>
</div>
<a class="anchor" id="ad9a895ff3dc878e5ff99eb4bb18ac2c5"></a><!-- doxytag: member="Gdk::Display::supports_selection_notification" ref="ad9a895ff3dc878e5ff99eb4bb18ac2c5" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_selection_notification </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns whether Gdk::EventOwnerChange events will be sent when the owner of a selection changes. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000001">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether Gdk::EventOwnerChange events will be sent. </dd></dl>
</div>
</div>
<a class="anchor" id="a3988d20d640b06fad1afcbd9d7ebc487"></a><!-- doxytag: member="Gdk::Display::supports_shapes" ref="a3988d20d640b06fad1afcbd9d7ebc487" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gdk::Display::supports_shapes </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if gdk_window_shape_combine_mask() can be used to create shaped windows on <em>display</em>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000001">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if shaped windows are supported. </dd></dl>
</div>
</div>
<a class="anchor" id="ad772046a33c0a1c6d071b1cf339faf63"></a><!-- doxytag: member="Gdk::Display::sync" ref="ad772046a33c0a1c6d071b1cf339faf63" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::sync </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Flushes any requests queued for the windowing system and waits until all requests have been handled. </p>
<p>This is often used for making sure that the display is synchronized with the current state of the program. Calling <a class="el" href="classGdk_1_1Display.html#ad772046a33c0a1c6d071b1cf339faf63" title="Flushes any requests queued for the windowing system and waits until all requests...">sync()</a> before gdk_error_trap_pop() makes sure that any errors generated from earlier requests are handled before the error trap is removed.</p>
<p>This is most useful for X11. On windowing systems where requests are handled synchronously, this function will do nothing.</p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000016">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="aaa4d96cef880080d17123d3ff4a24494"></a><!-- doxytag: member="Gdk::Display::unset_pointer_hooks" ref="aaa4d96cef880080d17123d3ff4a24494" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkDisplayPointerHooks* Gdk::Display::unset_pointer_hooks </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a9c5151f1c2e9c9dcde173ca1f55e531b"></a><!-- doxytag: member="Gdk::Display::warp_pointer" ref="a9c5151f1c2e9c9dcde173ca1f55e531b" args="(const Glib::RefPtr< Screen > &screen, int x, int y)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gdk::Display::warp_pointer </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="classGdk_1_1Screen.html">Screen</a> >& </td>
<td class="paramname"> <em>screen</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>y</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Warps the pointer of <em>display</em> to the point <em>x</em>, <em>y</em> on the screen <em>screen</em>, unless the pointer is confined to a window by a grab, in which case it will be moved as far as allowed by the grab. </p>
<p>Warping the pointer creates events as if the user had moved the mouse instantaneously to the destination.</p>
<p>Note that the pointer should normally be under the control of the user. This function was added to cover some rare use cases like keyboard navigation support for the color picker in the <a class="el" href="classGtk_1_1ColorSelectionDialog.html" title="This dialog allows the user to select a color.">Gtk::ColorSelectionDialog</a>.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000003">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>screen</em> </td><td>The screen of <em>display</em> to warp the pointer to. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>x</em> </td><td>The x coordinate of the destination. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>y</em> </td><td>The y coordinate of the destination. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="af5e336efbe340163508427f1c476af68"></a><!-- doxytag: member="Gdk::Display::wrap" ref="af5e336efbe340163508427f1c476af68" args="(GdkDisplay *object, bool take_copy=false)" -->
<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="classGdk_1_1Display.html">Gdk::Display</a> > wrap </td>
<td>(</td>
<td class="paramtype">GdkDisplay * </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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [related]</code></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><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>object</em> </td><td>The C instance. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>take_copy</em> </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="return"><dt><b>Returns:</b></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>gdkmm/display.h</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:21:43 2010 for gtkmm by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
|