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
|
<?xml version="1.0" standalone="no"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<refentry id="class-gdkdisplay">
<refnamediv>
<refname>gtk.gdk.Display</refname>
<refpurpose>controls the keyboard/mouse pointer grabs and a set of <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
objects</refpurpose>
</refnamediv>
<refsect1>
<title>Synopsis</title>
<classsynopsis language="python">
<ooclass><classname>gtk.gdk.Display</classname></ooclass>
<ooclass><classname><link linkend="class-gobject">gobject.GObject</link></classname></ooclass>
<constructorsynopsis language="python">
<methodname><link linkend="constructor-gdkdisplay">gtk.gdk.Display</link></methodname>
<methodparam><parameter role="keyword">display_name</parameter></methodparam>
</constructorsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-name">get_name</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-n-screens">get_n_screens</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-screen">get_screen</link></methodname>
<methodparam><parameter role="keyword">screen_num</parameter></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-default-screen">get_default_screen</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--pointer-ungrab">pointer_ungrab</link></methodname>
<methodparam><parameter role="keyword">time_</parameter><initializer>0L</initializer></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--keyboard-ungrab">keyboard_ungrab</link></methodname>
<methodparam><parameter role="keyword">time_</parameter><initializer>0L</initializer></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--pointer-is-grabbed">pointer_is_grabbed</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--beep">beep</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--sync">sync</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--close">close</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--list-devices">list_devices</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-event">get_event</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--peek-event">peek_event</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--put-event">put_event</link></methodname>
<methodparam><parameter role="keyword">event</parameter></methodparam>
</methodsynopsis>
<!-- NOT IMPLEMENTED
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay- -add-client-message-filter">add_client_message_filter</link></methodname>
<methodparam><parameter role="keyword">message_type</parameter></methodparam>
<methodparam><parameter role="keyword">func</parameter></methodparam>
<methodparam><parameter role="keyword">data</parameter></methodparam>
</methodsynopsis>
END NOT IMPLEMENTED -->
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--set-double-click-time">set_double_click_time</link></methodname>
<methodparam><parameter role="keyword">msec</parameter></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-core-pointer">get_core_pointer</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-pointer">get_pointer</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-window-at-pointer">get_window_at_pointer</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<!-- NOT IMPLEMENTED
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay- -set-pointer-hooks">set_pointer_hooks</link></methodname>
<methodparam><parameter role="keyword">new_hooks</parameter></methodparam>
</methodsynopsis>
END NOT IMPLEMENTED -->
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--flush">flush</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--set-double-click-distance">set_double_click_distance</link></methodname>
<methodparam><parameter role="keyword">distance</parameter></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--supports-cursor-alpha">supports_composite</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--supports-cursor-alpha">supports_cursor_alpha</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--supports-cursor-color">supports_cursor_color</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-default-cursor-size">get_default_cursor_size</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-maximal-cursor-size">get_maximal_cursor_size</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--get-default-group">get_default_group</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--supports-selection-notification">supports_selection_notification</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--supports-clipboard-persistence">supports_clipboard_persistence</link></methodname>
<methodparam></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--request-selection-notification">request_selection_notification</link></methodname>
<methodparam><parameter role="keyword">selection</parameter></methodparam>
</methodsynopsis>
<methodsynopsis language="python">
<methodname><link linkend="method-gdkdisplay--store-clipboard">store_clipboard</link></methodname>
<methodparam><parameter role="keyword">clipboard_window</parameter></methodparam>
<methodparam><parameter role="keyword">time_</parameter></methodparam>
<methodparam><parameter role="keyword">targets</parameter></methodparam>
</methodsynopsis>
</classsynopsis>
<programlisting>
<emphasis role="bold">Functions</emphasis>
<methodsynopsis language="python">
<methodname><link linkend="function-gdk--display-get-default">gtk.gdk.display_get_default</link></methodname>
<methodparam><parameter role="keyword"></parameter></methodparam>
</methodsynopsis></programlisting>
</refsect1>
<refsect1>
<title>Ancestry</title>
<synopsis>+-- <link linkend="class-gobject">gobject.GObject</link>
+-- <link linkend="class-gdkdisplay">gtk.gdk.Display</link>
</synopsis>
</refsect1>
<refsect1>
<title>Signal Prototypes</title>
<variablelist>
<varlistentry>
<term>"<link linkend="signal-gdkdisplay--closed">closed</link>"</term>
<listitem>
<methodsynopsis language="python"><methodname>callback</methodname>
<methodparam><parameter>widget</parameter></methodparam>
<methodparam><parameter>is_error</parameter></methodparam>
<methodparam><parameter>user_param1</parameter></methodparam>
<methodparam><parameter>...</parameter></methodparam>
</methodsynopsis>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>Description</title>
<note>
<para>This object is available in PyGTK 2.2 and above.</para>
</note>
<para><link linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link> objects provide two capabilities:</para>
<itemizedlist>
<listitem>
<simpara>To grab/ungrab keyboard focus and mouse pointer</simpara>
</listitem>
<listitem>
<simpara>To manage and provide information about the <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>)
objects available for this <link
linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link></simpara>
</listitem>
</itemizedlist>
<para><link
linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link>
objects are the <literal>GDK</literal> representation of the X Display 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 <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
objects currently instantiated by the application. It is also used to grab
and release the keyboard and the mouse pointer.</para>
</refsect1>
<refsect1 id="constructor-gdkdisplay">
<title>Constructor</title>
<programlisting><constructorsynopsis language="python">
<methodname>gtk.gdk.Display</methodname>
<methodparam><parameter role="keyword">display_name</parameter></methodparam>
</constructorsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">display_name</parameter> :</term>
<listitem><simpara>the name of the display to
open</simpara></listitem>
</varlistentry>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term> <listitem><simpara>a
<link
linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link>,
or <literal>None</literal> if the display could not be
opened.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This constructor is available in PyGTK 2.2 and above.</para>
</note>
<para>Opens the display with the name specified by
<parameter>display_name</parameter> and returns a <link
linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link>
object wrapping the display..</para>
</refsect1>
<refsect1>
<title>Methods</title>
<refsect2 id="method-gdkdisplay--get-name">
<title>gtk.gdk.Display.get_name</title>
<programlisting><methodsynopsis language="python">
<methodname>get_name</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term> <listitem><simpara>a
string representing the display name.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_name</methodname>() method returns the name
of the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-n-screens">
<title>gtk.gdk.Display.get_n_screens</title>
<programlisting><methodsynopsis language="python">
<methodname>get_n_screens</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the number of display
screens.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_n_screens</methodname>() method returns the
number of screens managed by the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-screen">
<title>gtk.gdk.Display.get_screen</title>
<programlisting><methodsynopsis language="python">
<methodname>get_screen</methodname>
<methodparam><parameter role="keyword">screen_num</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter
role="keyword">screen_num</parameter> :</term>
<listitem><simpara>the screen number</simpara></listitem>
</varlistentry>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
object</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_screen</methodname>() method returns a <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
object for one of the screens of the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-default-screen">
<title>gtk.gdk.Display.get_default_screen</title>
<programlisting><methodsynopsis language="python">
<methodname>get_default_screen</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the default <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
object for <parameter>display</parameter></simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_default_screen</methodname>() method returns
the default <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link> for
the display</para> </refsect2>
<refsect2 id="method-gdkdisplay--pointer-ungrab">
<title>gtk.gdk.Display.pointer_ungrab</title>
<programlisting><methodsynopsis language="python">
<methodname>pointer_ungrab</methodname>
<methodparam><parameter role="keyword">time_</parameter><initializer>0L</initializer></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">time_</parameter> :</term>
<listitem><simpara>a timestamp or 0L for the current
time.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>pointer_ungrab</methodname>() method releases
any pointer grab held by the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--keyboard-ungrab">
<title>gtk.gdk.Display.keyboard_ungrab</title>
<programlisting><methodsynopsis language="python">
<methodname>keyboard_ungrab</methodname>
<methodparam><parameter role="keyword">time_</parameter><initializer>0L</initializer></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">time_</parameter> :</term>
<listitem><simpara>a timestamp or 0L for the current
time.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>keyboard_ungrab</methodname>() method
releases any keyboard grab held by the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--pointer-is-grabbed">
<title>gtk.gdk.Display.pointer_is_grabbed</title>
<programlisting><methodsynopsis language="python">
<methodname>pointer_is_grabbed</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara><literal>True</literal> if an active X pointer
grab is in effect</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>pointer_is_grabbed</methodname>() method returns
<literal>True</literal> if the pointer is grabbed.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--beep">
<title>gtk.gdk.Display.beep</title>
<programlisting><methodsynopsis language="python">
<methodname>beep</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>beep</methodname>() method
emits a short beep on the display.</para> </refsect2>
<refsect2 id="method-gdkdisplay--sync">
<title>gtk.gdk.Display.sync</title>
<programlisting><methodsynopsis language="python">
<methodname>sync</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>sync</methodname>() method flushes any requests
queued for the windowing system and waits until all requests have been
handled. This is often used for making sure that the display is synchronized
with the current state of the program. This is most useful for X11. On
windowing systems where requests are handled synchronously, this method will
do nothing.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--close">
<title>gtk.gdk.Display.close</title>
<programlisting><methodsynopsis language="python">
<methodname>close</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>close</methodname>() method closes the
connection to the windowing system for the given display, and cleans up
associated resources.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--list-devices">
<title>gtk.gdk.Display.list_devices</title>
<programlisting><methodsynopsis language="python">
<methodname>list_devices</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>a list of <link
linkend="class-gdkdevice"><classname>gtk.gdk.Device</classname></link>
objects.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>list_devices</methodname>() method returns the
list of available input devices attached to the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-event">
<title>gtk.gdk.Display.get_event</title>
<programlisting><methodsynopsis language="python">
<methodname>get_event</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the next <link
linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link>
to be processed, or <literal>None</literal> if no events are
pending..</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_event</methodname>() method returns the next
<link linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link>
to be processed for the display, fetching events from the windowing system
if necessary. The returned <link
linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link> should
be freed with the <link
linkend="method-gdkevent--free"><methodname>gtk.gdk.Event.free()</methodname></link>
method </para>
</refsect2>
<refsect2 id="method-gdkdisplay--peek-event">
<title>gtk.gdk.Display.peek_event</title>
<programlisting><methodsynopsis language="python">
<methodname>peek_event</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>a copy of the first <link
linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link>
on the event queue, or <literal>None</literal> if no events are in
the queue.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>peek_event</methodname>() method returns a copy
of the first <link
linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link> in the
the display's event queue, without removing the event from the queue. (Note
that this method will not get more events from the windowing system. It only
checks the events that have already been moved to the <literal>GDK</literal>
event queue.) The returned <link
linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link> should
be freed with <link
linkend="method-gdkevent--free"><methodname>gtk.gdk.Event.free()</methodname></link>.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--put-event">
<title>gtk.gdk.Display.put_event</title>
<programlisting><methodsynopsis language="python">
<methodname>put_event</methodname>
<methodparam><parameter role="keyword">event</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">event</parameter> :</term>
<listitem><simpara>a <link
linkend="class-gdkevent"><classname>gtk.gdk.Event</classname></link>.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>put_event</methodname>() method appends a copy
of the given event onto the front of the event queue for the display.</para>
</refsect2>
<!-- NOT IMPLEMENTED
<refsect2 id="method-gdkdisplay- -add-client-message-filter">
<title>gtk.gdk.Display.add_client_message_filter</title>
<programlisting><methodsynopsis language="python">
<methodname>add_client_message_filter</methodname>
<methodparam><parameter role="keyword">message_type</parameter></methodparam>
<methodparam><parameter role="keyword">func</parameter></methodparam>
<methodparam><parameter role="keyword">data</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">message_type</parameter> :</term>
<listitem><simpara>the type of ClientMessage events to receive.
This will be checked against the <parameter>message_type</parameter> field
of the XClientMessage event struct.</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter role="keyword">func</parameter> :</term>
<listitem><simpara>the function to call to process the event.</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter role="keyword">data</parameter> :</term>
<listitem><simpara>user data to pass to <parameter>func</parameter>.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>
Adds a filter to be called when X ClientMessage events are received.
</para>
<para>
Since: 2.2
</para> </refsect2>
END NTO IMPLEMENTED -->
<refsect2 id="method-gdkdisplay--set-double-click-time">
<title>gtk.gdk.Display.set_double_click_time</title>
<programlisting><methodsynopsis language="python">
<methodname>set_double_click_time</methodname>
<methodparam><parameter role="keyword">msec</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">msec</parameter> :</term>
<listitem><simpara>the double click time in milliseconds
(thousandths of a second)</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>set_double_click_time</methodname>() method sets
the double click time (two clicks within this time interval count as a
double click and result in a <literal>gtk.gdk._2BUTTON_PRESS</literal>
event). Applications should <emphasis>not</emphasis> set this, it is a
global user-configured setting.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-core-pointer">
<title>gtk.gdk.Display.get_core_pointer</title>
<programlisting><methodsynopsis language="python">
<methodname>get_core_pointer</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the core pointer device</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_core_pointer</methodname>() method returns
the core pointer device for the given display</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-pointer">
<title>gtk.gdk.Display.get_pointer</title>
<programlisting><methodsynopsis language="python">
<methodname>get_pointer</methodname>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>a 4-tuple containing the screen that the cursor
is on, the root window X and Y coordinates of the pointer and the
current modifier mask</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_pointer</methodname>() method returns a
4-tuple containing the <link
linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link> that
the pointer is on, the current location coordinates of the pointer and the
current modifier mask for the display. The returned modifier mask is a
combination of the <xref linkend="gdk-modifier-constants"
endterm="gdk-modifier-constants-title"></xref>.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-window-at-pointer">
<title>gtk.gdk.Display.get_window_at_pointer</title>
<programlisting><methodsynopsis language="python">
<methodname>get_window_at_pointer</methodname>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>a 3-tuple containing the <link
linkend="class-gdkwindow"><classname>gtk.gdk.Window</classname></link>
under the mouse pointer and the x and y coordinates of the window
origin</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>The <methodname>get_window_at_pointer</methodname>() method
returns a 3-tuple containing the <link
linkend="class-gdkwindow"><classname>gtk.gdk.Window</classname></link>
underneath the mouse pointer and the location of that window's
origin. Returns <literal>None</literal> if the window under the mouse
pointer is not known to <literal>GDK</literal> (for example, belongs to
another application).</para>
</refsect2>
<!-- NOT IMPLEMENTED
<refsect2 id="method-gdkdisplay- -set-pointer-hooks">
<title>gtk.gdk.Display.set_pointer_hooks</title>
<programlisting><methodsynopsis language="python">
<methodname>set_pointer_hooks</methodname>
<methodparam><parameter role="keyword">new_hooks</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">new_hooks</parameter> :</term>
<listitem><simpara>a table of pointers to functions for getting
quantities related to the current pointer position,
or <literal>NULL</literal> to restore the default table.</simpara></listitem>
</varlistentry>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the previous pointer hook table
Since: 2.2</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.2 and above.</para>
</note>
<para>
This function allows for hooking into the operation
of getting the current location of the pointer on a particular
display. This is only useful for such low-level tools as an
event recorder. Applications should never have any
reason to use this facility.
</para> </refsect2>
END NOT IMPLEMENTED -->
<refsect2 id="method-gdkdisplay--flush">
<title>gtk.gdk.Display.flush</title>
<programlisting><methodsynopsis language="python">
<methodname>flush</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>flush</methodname>() method 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 method
explicitly. A common case where this method 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.</para>
<para>This is most useful for X11. On windowing systems where requests
are handled synchronously, this method will do nothing.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--set-double-click-distance">
<title>gtk.gdk.Display.set_double_click_distance</title>
<programlisting><methodsynopsis language="python">
<methodname>set_double_click_distance</methodname>
<methodparam><parameter role="keyword">distance</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">distance</parameter> :</term>
<listitem><simpara>the distance in pixels</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>set_double_click_distance</methodname>() method
sets the double click distance (two clicks within this distance count as a
double click and result in a <literal>gtk.gdk.2BUTTON_PRESS</literal>
event). See the <link
linkend="method-gdkdisplay--set-double-click-time"><methodname>set_double_click_time()</methodname></link>
method for more information. Applications should <emphasis>not</emphasis>
set this, it is a global user-configured setting.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--supports-composite">
<title>gtk.gdk.Display.supports_composite</title>
<programlisting><methodsynopsis language="python">
<methodname>supports_composite</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara><literal>True</literal> if windows may be composited.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.12 and above.</para>
</note>
<para>The <methodname>supports_composite</methodname>() method
returns <literal>True</literal> if <link linkend="method-gdkwindow--set-composite">
<methodname>gtk.gdk.Window.set_composite</methodname></link>() can be used to redirect
drawing on the window using compositing.
</para>
<para>
Currently this only works on X11 with XComposite and XDamage extensions available.
</para>
</refsect2>
<refsect2 id="method-gdkdisplay--supports-cursor-alpha">
<title>gtk.gdk.Display.supports_cursor_alpha</title>
<programlisting><methodsynopsis language="python">
<methodname>supports_cursor_alpha</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara><literal>True</literal> if cursors can have
alpha channels.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>supports_cursor_alpha</methodname>() method
returns <literal>True</literal> if cursors can use an 8bit alpha channel on
the display. Otherwise, cursors are restricted to bilevel alpha (i.e. a
mask).</para>
</refsect2>
<refsect2 id="method-gdkdisplay--supports-cursor-color">
<title>gtk.gdk.Display.supports_cursor_color</title>
<programlisting><methodsynopsis language="python">
<methodname>supports_cursor_color</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara><literal>True</literal> if cursors can have
multiple colors.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>supports_cursor_color</methodname>() method
returns <literal>True</literal> if multicolored cursors are supported on the
display. Otherwise, cursors have only a foreground and a background
color.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-default-cursor-size">
<title>gtk.gdk.Display.get_default_cursor_size</title>
<programlisting><methodsynopsis language="python">
<methodname>get_default_cursor_size</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>the default cursor size.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>get_default_cursor_size</methodname>() method
returns the default size to use for cursors on the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-maximal-cursor-size">
<title>gtk.gdk.Display.get_maximal_cursor_size</title>
<programlisting><methodsynopsis language="python">
<methodname>get_maximal_cursor_size</methodname>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>a 2-tuple containing the maximal cursor width
and height</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>get_maximal_cursor_size</methodname>() method
returns a 2-tuple containing the maximum width and height to use for cursors
on the display.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--get-default-group">
<title>gtk.gdk.Display.get_default_group</title>
<programlisting><methodsynopsis language="python">
<methodname>get_default_group</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>The default group leader window for the
display</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.4 and above.</para>
</note>
<para>The <methodname>get_default_group</methodname>() method returns
the default group leader window for all toplevel windows on the
display. This window is implicitly created by <literal>GDK</literal>. See
the <link
linkend="method-gdkwindow--set-group"><methodname>gtk.gdk.Window.set_group()</methodname></link>
method for more information.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--supports-selection-notification">
<title>gtk.gdk.Display.supports_selection_notification</title>
<programlisting><methodsynopsis language="python">
<methodname>get_default_group</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara><literal>True</literal> if
<literal>gtk.gdk.EventOwnerChange</literal> events will be
sent.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.6 and above.</para>
</note>
<para>The <methodname>supports_selection_notification</methodname>()
method returns <literal>True</literal> if
<literal>gtk.gdk.EventOwnerChange</literal> events will be sent when the
owner of a selection changes.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--supports-clipboard-persistence">
<title>gtk.gdk.Display.supports_clipboard_persistence</title>
<programlisting><methodsynopsis language="python">
<methodname>supports_clipboard_persistence</methodname>
<methodparam></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara><literal>True</literal> if the display
supports clipboard persistence.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.6 and above.</para>
</note>
<para>The <methodname>supports_clipboard_persistence</methodname>()
method Returns whether the specified display supports clipboard persistence;
i.e. if it's possible to store the clipboard data after an application has
quit. On X11 this checks if a clipboard daemon is running.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--request-selection-notification">
<title>gtk.gdk.Display.request_selection_notification</title>
<programlisting><methodsynopsis language="python">
<methodname>request_selection_notification</methodname>
<methodparam><parameter role="keyword">selection</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">selection</parameter> :</term>
<listitem><simpara>The string (or <link
linkend="class-gdkatom"><classname>gtk.gdk.Atom</classname></link>) naming
the selection for which ownership change notification is
requested</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.6 and above.</para>
</note>
<para>The <methodname>request_selection_notification</methodname>()
method requests that <literal>gtk.gdk.EventOwnerChange</literal> events will
be sent for changes in ownership of the atom specified by
<parameter>selection</parameter>.</para>
</refsect2>
<refsect2 id="method-gdkdisplay--store-clipboard">
<title>gtk.gdk.Display.store_clipboard</title>
<programlisting><methodsynopsis language="python">
<methodname>store_clipboard</methodname>
<methodparam><parameter role="keyword">clipboard_window</parameter></methodparam>
<methodparam><parameter role="keyword">time</parameter></methodparam>
<methodparam><parameter role="keyword">targets</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter role="keyword">clipboard_window</parameter> :</term>
<listitem><simpara> a <link
linkend="class-gdkwindow"><classname>gtk.gdk.Window</classname></link>
belonging to the clipboard owner</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter role="keyword">time</parameter> :</term>
<listitem><simpara>a timestamp</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter role="keyword">targets</parameter> :</term>
<listitem><simpara>a list of targets that should be saved, or
<literal>None</literal> if all available targets should be
saved.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This method is available in PyGTK 2.6 and above.</para>
</note>
<para>The <methodname>store_clipboard</methodname>() method issues a
request to the the clipboard manager to store the clipboard data. On X11,
this is a special program that works according to the freedesktop clipboard
specification, available at <ulink
url="http://www.freedesktop.org/Standards/clipboard-manager-spec">http://www.freedesktop.org/Standards/clipboard-manager-spec</ulink>.</para>
</refsect2>
</refsect1>
<refsect1>
<title>Functions</title>
<refsect2 id="function-gdk--display-get-default">
<title>gtk.gdk.display_get_default</title>
<programlisting><methodsynopsis language="python">
<methodname>gtk.gdk.display_get_default</methodname>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><emphasis>Returns</emphasis> :</term>
<listitem><simpara>a <link
linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link>,
or <literal>None</literal> if there is no default
display.</simpara></listitem>
</varlistentry>
</variablelist>
<note>
<para>This function is available in PyGTK 2.2 and above.</para>
</note>
<para>The <function>gtk.gdk.display_get_default</function>() function
returns the default <link
linkend="class-gdkdisplay"><classname>gtk.gdk.Display</classname></link>. This
is a convenience function for:</para>
<programlisting>
display_manager = gtk.gdk.display_manager_get()
display = display.manager.get_default_display()
</programlisting>
</refsect2>
</refsect1>
<refsect1>
<title>Signals</title>
<refsect2 id="signal-gdkdisplay--closed">
<title>The "closed" gtk.gdk.Display Signal</title>
<programlisting><methodsynopsis language="python">
<methodname>callback</methodname>
<methodparam><parameter>display</parameter></methodparam>
<methodparam><parameter>is_error</parameter></methodparam>
<methodparam><parameter>user_param1</parameter></methodparam>
<methodparam><parameter>...</parameter></methodparam>
</methodsynopsis></programlisting>
<variablelist>
<varlistentry>
<term><parameter>display</parameter> :</term>
<listitem><simpara>the display that received the
signal</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter>is_error</parameter> :</term>
<listitem><simpara><literal>True</literal> if the display was
closed due to an error</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter>user_param1</parameter> :</term>
<listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
</varlistentry>
<varlistentry>
<term><parameter>...</parameter> :</term>
<listitem><simpara>additional user parameters (if
any)</simpara></listitem>
</varlistentry>
</variablelist>
<para>The "closed" signal is emitted when the connection to the
windowing system for <parameter>display</parameter> is closed.</para>
</refsect2>
</refsect1>
</refentry>
|