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
|
/*
* This file is part of gtkD.
*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gdk.Display;
private import gdk.AppLaunchContext;
private import gdk.Device;
private import gdk.DeviceManager;
private import gdk.Event;
private import gdk.MonitorG;
private import gdk.Screen;
private import gdk.Seat;
private import gdk.Window;
private import gdk.c.functions;
public import gdk.c.types;
private import glib.ListG;
private import glib.Str;
private import gobject.ObjectG;
private import gobject.Signals;
public import gtkc.gdktypes;
private import std.algorithm;
/**
* #GdkDisplay objects purpose are two fold:
*
* - To manage and provide information about input devices (pointers and keyboards)
*
* - To manage and provide information about the available #GdkScreens
*
* GdkDisplay objects are the GDK representation of an 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 GdkScreen objects
* currently instantiated by the application. It is also used to
* access the keyboard(s) and mouse pointer(s) of the display.
*
* Most of the input device handling has been factored out into
* the separate #GdkDeviceManager object. Every display has a
* device manager, which you can obtain using
* gdk_display_get_device_manager().
*/
public class Display : ObjectG
{
/** the main Gtk struct */
protected GdkDisplay* gdkDisplay;
/** Get the main Gtk struct */
public GdkDisplay* getDisplayStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gdkDisplay;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)gdkDisplay;
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GdkDisplay* gdkDisplay, bool ownedRef = false)
{
this.gdkDisplay = gdkDisplay;
super(cast(GObject*)gdkDisplay, ownedRef);
}
/** */
public static GType getType()
{
return gdk_display_get_type();
}
/**
* Gets the default #GdkDisplay. This is a convenience
* function for:
* `gdk_display_manager_get_default_display (gdk_display_manager_get ())`.
*
* Returns: a #GdkDisplay, or %NULL if
* there is no default display.
*
* Since: 2.2
*/
public static Display getDefault()
{
auto p = gdk_display_get_default();
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Display)(cast(GdkDisplay*) p);
}
/**
* Opens a display.
*
* Params:
* displayName = the name of the display to open
*
* Returns: a #GdkDisplay, or %NULL if the
* display could not be opened
*
* Since: 2.2
*/
public static Display open(string displayName)
{
auto p = gdk_display_open(Str.toStringz(displayName));
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Display)(cast(GdkDisplay*) p);
}
/**
* Opens the default display specified by command line arguments or
* environment variables, sets it as the default display, and returns
* it. 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.
*
* Deprecated: This symbol was never meant to be used outside
* of GTK+
*
* Returns: the default display, if it
* could be opened, otherwise %NULL.
*/
public static Display openDefaultLibgtkOnly()
{
auto p = gdk_display_open_default_libgtk_only();
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Display)(cast(GdkDisplay*) p);
}
/**
* Emits a short beep on @display
*
* Since: 2.2
*/
public void beep()
{
gdk_display_beep(gdkDisplay);
}
/**
* Closes the connection to the windowing system for the given display,
* and cleans up associated resources.
*
* Since: 2.2
*/
public void close()
{
gdk_display_close(gdkDisplay);
}
/**
* Returns %TRUE if there is an ongoing grab on @device for @display.
*
* Params:
* device = a #GdkDevice
*
* Returns: %TRUE if there is a grab in effect for @device.
*/
public bool deviceIsGrabbed(Device device)
{
return gdk_display_device_is_grabbed(gdkDisplay, (device is null) ? null : device.getDeviceStruct()) != 0;
}
/**
* 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 explicitly. 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.
*
* This is most useful for X11. On windowing systems where requests are
* handled synchronously, this function will do nothing.
*
* Since: 2.4
*/
public void flush()
{
gdk_display_flush(gdkDisplay);
}
/**
* Returns a #GdkAppLaunchContext suitable for launching
* applications on the given display.
*
* Returns: a new #GdkAppLaunchContext for @display.
* Free with g_object_unref() when done
*
* Since: 3.0
*/
public AppLaunchContext getAppLaunchContext()
{
auto p = gdk_display_get_app_launch_context(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(AppLaunchContext)(cast(GdkAppLaunchContext*) p, true);
}
/**
* Returns the default size to use for cursors on @display.
*
* Returns: the default cursor size.
*
* Since: 2.4
*/
public uint getDefaultCursorSize()
{
return gdk_display_get_default_cursor_size(gdkDisplay);
}
/**
* Returns the default group leader window for all toplevel windows
* on @display. This window is implicitly created by GDK.
* See gdk_window_set_group().
*
* Returns: The default group leader window
* for @display
*
* Since: 2.4
*/
public Window getDefaultGroup()
{
auto p = gdk_display_get_default_group(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Window)(cast(GdkWindow*) p);
}
/**
* Get the default #GdkScreen for @display.
*
* Returns: the default #GdkScreen object for @display
*
* Since: 2.2
*/
public Screen getDefaultScreen()
{
auto p = gdk_display_get_default_screen(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Screen)(cast(GdkScreen*) p);
}
/**
* Returns the default #GdkSeat for this display.
*
* Returns: the default seat.
*
* Since: 3.20
*/
public Seat getDefaultSeat()
{
auto p = gdk_display_get_default_seat(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Seat)(cast(GdkSeat*) p);
}
/**
* Returns the #GdkDeviceManager associated to @display.
*
* Deprecated: Use gdk_display_get_default_seat() and #GdkSeat operations.
*
* Returns: A #GdkDeviceManager, or
* %NULL. This memory is owned by GDK and must not be freed
* or unreferenced.
*
* Since: 3.0
*/
public DeviceManager getDeviceManager()
{
auto p = gdk_display_get_device_manager(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(DeviceManager)(cast(GdkDeviceManager*) p);
}
/**
* Gets the next #GdkEvent to be processed for @display, fetching events from the
* windowing system if necessary.
*
* Returns: the next #GdkEvent to be processed, or %NULL
* if no events are pending. The returned #GdkEvent should be freed
* with gdk_event_free().
*
* Since: 2.2
*/
public Event getEvent()
{
auto p = gdk_display_get_event(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Event)(cast(GdkEvent*) p, true);
}
/**
* Gets the maximal size to use for cursors on @display.
*
* Params:
* width = the return location for the maximal cursor width
* height = the return location for the maximal cursor height
*
* Since: 2.4
*/
public void getMaximalCursorSize(out uint width, out uint height)
{
gdk_display_get_maximal_cursor_size(gdkDisplay, &width, &height);
}
/**
* Gets a monitor associated with this display.
*
* Params:
* monitorNum = number of the monitor
*
* Returns: the #GdkMonitor, or %NULL if
* @monitor_num is not a valid monitor number
*
* Since: 3.22
*/
public MonitorG getMonitor(int monitorNum)
{
auto p = gdk_display_get_monitor(gdkDisplay, monitorNum);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(MonitorG)(cast(GdkMonitor*) p);
}
/**
* Gets the monitor in which the point (@x, @y) is located,
* or a nearby monitor if the point is not in any monitor.
*
* Params:
* x = the x coordinate of the point
* y = the y coordinate of the point
*
* Returns: the monitor containing the point
*
* Since: 3.22
*/
public MonitorG getMonitorAtPoint(int x, int y)
{
auto p = gdk_display_get_monitor_at_point(gdkDisplay, x, y);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(MonitorG)(cast(GdkMonitor*) p);
}
/**
* Gets the monitor in which the largest area of @window
* resides, or a monitor close to @window if it is outside
* of all monitors.
*
* Params:
* window = a #GdkWindow
*
* Returns: the monitor with the largest overlap with @window
*
* Since: 3.22
*/
public MonitorG getMonitorAtWindow(Window window)
{
auto p = gdk_display_get_monitor_at_window(gdkDisplay, (window is null) ? null : window.getWindowStruct());
if(p is null)
{
return null;
}
return ObjectG.getDObject!(MonitorG)(cast(GdkMonitor*) p);
}
/**
* Gets the number of monitors that belong to @display.
*
* The returned number is valid until the next emission of the
* #GdkDisplay::monitor-added or #GdkDisplay::monitor-removed signal.
*
* Returns: the number of monitors
*
* Since: 3.22
*/
public int getNMonitors()
{
return gdk_display_get_n_monitors(gdkDisplay);
}
/**
* Gets the number of screen managed by the @display.
*
* Deprecated: The number of screens is always 1.
*
* Returns: number of screens.
*
* Since: 2.2
*/
public int getNScreens()
{
return gdk_display_get_n_screens(gdkDisplay);
}
/**
* Gets the name of the display.
*
* Returns: a string representing the display name. This string is owned
* by GDK and should not be modified or freed.
*
* Since: 2.2
*/
public string getName()
{
return Str.toString(gdk_display_get_name(gdkDisplay));
}
/**
* Gets the current location of the pointer and the current modifier
* mask for a given display.
*
* Deprecated: Use gdk_device_get_position() instead.
*
* Params:
* screen = location to store the screen that the
* cursor is on, or %NULL.
* x = location to store root window X coordinate of pointer, or %NULL.
* y = location to store root window Y coordinate of pointer, or %NULL.
* mask = location to store current modifier mask, or %NULL
*
* Since: 2.2
*/
public void getPointer(out Screen screen, out int x, out int y, out GdkModifierType mask)
{
GdkScreen* outscreen = null;
gdk_display_get_pointer(gdkDisplay, &outscreen, &x, &y, &mask);
screen = ObjectG.getDObject!(Screen)(outscreen);
}
/**
* Gets the primary monitor for the display.
*
* The primary monitor is considered the monitor where the “main desktop”
* lives. While normal application windows typically allow the window
* manager to place the windows, specialized desktop applications
* such as panels should place themselves on the primary monitor.
*
* Returns: the primary monitor, or %NULL if no primary
* monitor is configured by the user
*
* Since: 3.22
*/
public MonitorG getPrimaryMonitor()
{
auto p = gdk_display_get_primary_monitor(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(MonitorG)(cast(GdkMonitor*) p);
}
/**
* Returns a screen object for one of the screens of the display.
*
* Deprecated: There is only one screen; use gdk_display_get_default_screen() to get it.
*
* Params:
* screenNum = the screen number
*
* Returns: the #GdkScreen object
*
* Since: 2.2
*/
public Screen getScreen(int screenNum)
{
auto p = gdk_display_get_screen(gdkDisplay, screenNum);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Screen)(cast(GdkScreen*) p);
}
/**
* Obtains the window underneath the mouse pointer, returning the location
* of the pointer in that window in @win_x, @win_y for @screen. Returns %NULL
* if the window under the mouse pointer is not known to GDK (for example,
* belongs to another application).
*
* Deprecated: Use gdk_device_get_window_at_position() instead.
*
* Params:
* winX = return location for x coordinate of the pointer location relative
* to the window origin, or %NULL
* winY = return location for y coordinate of the pointer location relative
* & to the window origin, or %NULL
*
* Returns: the window under the mouse
* pointer, or %NULL
*
* Since: 2.2
*/
public Window getWindowAtPointer(out int winX, out int winY)
{
auto p = gdk_display_get_window_at_pointer(gdkDisplay, &winX, &winY);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Window)(cast(GdkWindow*) p);
}
/**
* Returns whether the display has events that are waiting
* to be processed.
*
* Returns: %TRUE if there are events ready to be processed.
*
* Since: 3.0
*/
public bool hasPending()
{
return gdk_display_has_pending(gdkDisplay) != 0;
}
/**
* Finds out if the display has been closed.
*
* Returns: %TRUE if the display is closed.
*
* Since: 2.22
*/
public bool isClosed()
{
return gdk_display_is_closed(gdkDisplay) != 0;
}
/**
* Release any keyboard grab
*
* Deprecated: Use gdk_device_ungrab(), together with gdk_device_grab()
* instead.
*
* Params:
* time = a timestap (e.g #GDK_CURRENT_TIME).
*
* Since: 2.2
*/
public void keyboardUngrab(uint time)
{
gdk_display_keyboard_ungrab(gdkDisplay, time);
}
/**
* Returns the list of available input devices attached to @display.
* The list is statically allocated and should not be freed.
*
* Deprecated: Use gdk_device_manager_list_devices() instead.
*
* Returns: a list of #GdkDevice
*
* Since: 2.2
*/
public ListG listDevices()
{
auto p = gdk_display_list_devices(gdkDisplay);
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p);
}
/**
* Returns the list of seats known to @display.
*
* Returns: the
* list of seats known to the #GdkDisplay
*
* Since: 3.20
*/
public ListG listSeats()
{
auto p = gdk_display_list_seats(gdkDisplay);
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p);
}
/**
* Indicates to the GUI environment that the application has
* finished loading, using a given identifier.
*
* GTK+ will call this function automatically for #GtkWindow
* with custom startup-notification identifier unless
* gtk_window_set_auto_startup_notification() is called to
* disable that feature.
*
* Params:
* startupId = a startup-notification identifier, for which
* notification process should be completed
*
* Since: 3.0
*/
public void notifyStartupComplete(string startupId)
{
gdk_display_notify_startup_complete(gdkDisplay, Str.toStringz(startupId));
}
/**
* Gets a copy of the first #GdkEvent in the @display’s event queue, without
* removing the event from the queue. (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.)
*
* Returns: a copy of the first #GdkEvent on the event
* queue, or %NULL if no events are in the queue. The returned
* #GdkEvent should be freed with gdk_event_free().
*
* Since: 2.2
*/
public Event peekEvent()
{
auto p = gdk_display_peek_event(gdkDisplay);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Event)(cast(GdkEvent*) p, true);
}
/**
* Test if the pointer is grabbed.
*
* Deprecated: Use gdk_display_device_is_grabbed() instead.
*
* Returns: %TRUE if an active X pointer grab is in effect
*
* Since: 2.2
*/
public bool pointerIsGrabbed()
{
return gdk_display_pointer_is_grabbed(gdkDisplay) != 0;
}
/**
* Release any pointer grab.
*
* Deprecated: Use gdk_device_ungrab(), together with gdk_device_grab()
* instead.
*
* Params:
* time = a timestap (e.g. %GDK_CURRENT_TIME).
*
* Since: 2.2
*/
public void pointerUngrab(uint time)
{
gdk_display_pointer_ungrab(gdkDisplay, time);
}
/**
* Appends a copy of the given event onto the front of the event
* queue for @display.
*
* Params:
* event = a #GdkEvent.
*
* Since: 2.2
*/
public void putEvent(Event event)
{
gdk_display_put_event(gdkDisplay, (event is null) ? null : event.getEventStruct());
}
/**
* Request #GdkEventOwnerChange events for ownership changes
* of the selection named by the given atom.
*
* Params:
* selection = the #GdkAtom naming the selection for which
* ownership change notification is requested
*
* Returns: whether #GdkEventOwnerChange events will
* be sent.
*
* Since: 2.6
*/
public bool requestSelectionNotification(GdkAtom selection)
{
return gdk_display_request_selection_notification(gdkDisplay, selection) != 0;
}
/**
* Sets the double click distance (two clicks within this distance
* count as a double click and result in a #GDK_2BUTTON_PRESS event).
* See also gdk_display_set_double_click_time().
* Applications should not set this, it is a global
* user-configured setting.
*
* Params:
* distance = distance in pixels
*
* Since: 2.4
*/
public void setDoubleClickDistance(uint distance)
{
gdk_display_set_double_click_distance(gdkDisplay, distance);
}
/**
* Sets the double click time (two clicks within this time interval
* count as a double click and result in a #GDK_2BUTTON_PRESS event).
* Applications should not set this, it is a global
* user-configured setting.
*
* Params:
* msec = double click time in milliseconds (thousandths of a second)
*
* Since: 2.2
*/
public void setDoubleClickTime(uint msec)
{
gdk_display_set_double_click_time(gdkDisplay, msec);
}
/**
* Issues a request to the clipboard manager to store the
* clipboard data. On X11, this is a special program that works
* according to the
* [FreeDesktop Clipboard Specification](http://www.freedesktop.org/Standards/clipboard-manager-spec).
*
* Params:
* clipboardWindow = a #GdkWindow belonging to the clipboard owner
* time = a timestamp
* targets = an array of targets
* that should be saved, or %NULL
* if all available targets should be saved.
*
* Since: 2.6
*/
public void storeClipboard(Window clipboardWindow, uint time, GdkAtom[] targets)
{
gdk_display_store_clipboard(gdkDisplay, (clipboardWindow is null) ? null : clipboardWindow.getWindowStruct(), time, targets.ptr, cast(int)targets.length);
}
/**
* Returns whether the speicifed display supports clipboard
* persistance; 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.
*
* Returns: %TRUE if the display supports clipboard persistance.
*
* Since: 2.6
*/
public bool supportsClipboardPersistence()
{
return gdk_display_supports_clipboard_persistence(gdkDisplay) != 0;
}
/**
* Returns %TRUE if gdk_window_set_composited() can be used
* to redirect drawing on the window using compositing.
*
* Currently this only works on X11 with XComposite and
* XDamage extensions available.
*
* Deprecated: Compositing is an outdated technology that
* only ever worked on X11.
*
* Returns: %TRUE if windows may be composited.
*
* Since: 2.12
*/
public bool supportsComposite()
{
return gdk_display_supports_composite(gdkDisplay) != 0;
}
/**
* Returns %TRUE if cursors can use an 8bit alpha channel
* on @display. Otherwise, cursors are restricted to bilevel
* alpha (i.e. a mask).
*
* Returns: whether cursors can have alpha channels.
*
* Since: 2.4
*/
public bool supportsCursorAlpha()
{
return gdk_display_supports_cursor_alpha(gdkDisplay) != 0;
}
/**
* Returns %TRUE if multicolored cursors are supported
* on @display. Otherwise, cursors have only a forground
* and a background color.
*
* Returns: whether cursors can have multiple colors.
*
* Since: 2.4
*/
public bool supportsCursorColor()
{
return gdk_display_supports_cursor_color(gdkDisplay) != 0;
}
/**
* Returns %TRUE if gdk_window_input_shape_combine_mask() can
* be used to modify the input shape of windows on @display.
*
* Returns: %TRUE if windows with modified input shape are supported
*
* Since: 2.10
*/
public bool supportsInputShapes()
{
return gdk_display_supports_input_shapes(gdkDisplay) != 0;
}
/**
* Returns whether #GdkEventOwnerChange events will be
* sent when the owner of a selection changes.
*
* Returns: whether #GdkEventOwnerChange events will
* be sent.
*
* Since: 2.6
*/
public bool supportsSelectionNotification()
{
return gdk_display_supports_selection_notification(gdkDisplay) != 0;
}
/**
* Returns %TRUE if gdk_window_shape_combine_mask() can
* be used to create shaped windows on @display.
*
* Returns: %TRUE if shaped windows are supported
*
* Since: 2.10
*/
public bool supportsShapes()
{
return gdk_display_supports_shapes(gdkDisplay) != 0;
}
/**
* 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. Calling
* gdk_display_sync() before gdk_error_trap_pop() makes sure that any errors
* generated from earlier requests are handled before the error trap is
* removed.
*
* This is most useful for X11. On windowing systems where requests are
* handled synchronously, this function will do nothing.
*
* Since: 2.2
*/
public void sync()
{
gdk_display_sync(gdkDisplay);
}
/**
* Warps the pointer of @display to the point @x,@y on
* the screen @screen, 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. Warping the pointer
* creates events as if the user had moved the mouse
* instantaneously to the destination.
*
* 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 #GtkColorSelectionDialog.
*
* Deprecated: Use gdk_device_warp() instead.
*
* Params:
* screen = the screen of @display to warp the pointer to
* x = the x coordinate of the destination
* y = the y coordinate of the destination
*
* Since: 2.8
*/
public void warpPointer(Screen screen, int x, int y)
{
gdk_display_warp_pointer(gdkDisplay, (screen is null) ? null : screen.getScreenStruct(), x, y);
}
/**
* The ::closed signal is emitted when the connection to the windowing
* system for @display is closed.
*
* Params:
* isError = %TRUE if the display was closed due to an error
*
* Since: 2.2
*/
gulong addOnClosed(void delegate(bool, Display) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "closed", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* The ::monitor-added signal is emitted whenever a monitor is
* added.
*
* Params:
* monitor = the monitor that was just added
*
* Since: 3.22
*/
gulong addOnMonitorAdded(void delegate(MonitorG, Display) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "monitor-added", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* The ::monitor-removed signal is emitted whenever a monitor is
* removed.
*
* Params:
* monitor = the monitor that was just removed
*
* Since: 3.22
*/
gulong addOnMonitorRemoved(void delegate(MonitorG, Display) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "monitor-removed", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* The ::opened signal is emitted when the connection to the windowing
* system for @display is opened.
*/
gulong addOnOpened(void delegate(Display) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "opened", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* The ::seat-added signal is emitted whenever a new seat is made
* known to the windowing system.
*
* Params:
* seat = the seat that was just added
*
* Since: 3.20
*/
gulong addOnSeatAdded(void delegate(Seat, Display) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "seat-added", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* The ::seat-removed signal is emitted whenever a seat is removed
* by the windowing system.
*
* Params:
* seat = the seat that was just removed
*
* Since: 3.20
*/
gulong addOnSeatRemoved(void delegate(Seat, Display) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "seat-removed", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
}
|