Class: Gdk::Display

Inherits:
Object
  • Object
show all
Defined in:
(unknown)

Overview

Gdk::Display objects purpose are two fold:

  • To manage and provide information about input devices (pointers and keyboards)

  • To manage and provide information about the available Gdk::Screens

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 Gdk::DeviceManager object. Every display has a device manager, which you can obtain using gdk_display_get_device_manager().

Instance Method Summary collapse

Instance Method Details

#app_launch_contextGdk::AppLaunchContext

Returns a Gdk::AppLaunchContext suitable for launching applications on the given display.

Returns:

  • (Gdk::AppLaunchContext)

    a new Gdk::AppLaunchContext for display. Free with g_object_unref() when done

#beepnil

Emits a short beep on display

Returns:

  • (nil)

#closenil

Closes the connection to the windowing system for the given display, and cleans up associated resources.

Returns:

  • (nil)

#default_cursor_sizeInteger

Returns the default size to use for cursors on display.

Returns:

  • (Integer)

    the default cursor size.

#default_groupGdk::Window

Returns the default group leader window for all toplevel windows on display. This window is implicitly created by GDK. See gdk_window_set_group(). for display

Returns:

#default_screenGdk::Screen

Get the default Gdk::Screen for display.

Returns:

  • (Gdk::Screen)

    the default Gdk::Screen object for display

#default_seatGdk::Seat

Returns the default Gdk::Seat for this display.

Returns:

#device_is_grabbed(device) ⇒ TrueClass

Returns true if there is an ongoing grab on device for display.

Parameters:

Returns:

  • (TrueClass)

    true if there is a grab in effect for device.

#device_managerGdk::DeviceManager

Returns the Gdk::DeviceManager associated to display.

Returns:

  • (Gdk::DeviceManager)

    A Gdk::DeviceManager, or nil. This memory is owned by GDK and must not be freed or unreferenced.

#double_click_distance=(distance) ⇒ nil

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.

Parameters:

  • distance (Integer)

    distance in pixels

Returns:

  • (nil)

#double_click_time=(msec) ⇒ nil

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.

Parameters:

  • msec (Integer)

    double click time in milliseconds (thousandths of a second)

Returns:

  • (nil)

#eventGdk::Event

Gets the next Gdk::Event to be processed for display, fetching events from the windowing system if necessary. if no events are pending. The returned Gdk::Event should be freed with gdk_event_free().

Returns:

  • (Gdk::Event)

    the next Gdk::Event to be processed, or nil

#flushnil

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.

Returns:

  • (nil)

#get_maximal_cursor_size(width, height) ⇒ nil

Gets the maximal size to use for cursors on display.

Parameters:

  • width (Integer)

    the return location for the maximal cursor width

  • height (Integer)

    the return location for the maximal cursor height

Returns:

  • (nil)

#get_monitor(monitor_num) ⇒ Gdk::Monitor

Gets a monitor associated with this display.

Parameters:

  • monitor_num (Integer)

    number of the monitor

Returns:

  • (Gdk::Monitor)

    the Gdk::Monitor, or nil if monitor_num is not a valid monitor number

#get_monitor_at_point(x, y) ⇒ Gdk::Monitor

Gets the monitor in which the point (x, y) is located, or a nearby monitor if the point is not in any monitor.

Parameters:

  • x (Integer)

    the x coordinate of the point

  • y (Integer)

    the y coordinate of the point

Returns:

#get_monitor_at_window(window) ⇒ Gdk::Monitor

Gets the monitor in which the largest area of window resides, or a monitor close to window if it is outside of all monitors.

Parameters:

Returns:

  • (Gdk::Monitor)

    the monitor with the largest overlap with window

#get_pointer(screen, x, y, mask) ⇒ nil

Gets the current location of the pointer and the current modifier mask for a given display.

Parameters:

  • screen (Gdk::Screen)

    location to store the screen that the cursor is on, or nil.

  • x (Integer)

    location to store root window X coordinate of pointer, or nil.

  • y (Integer)

    location to store root window Y coordinate of pointer, or nil.

  • mask (Gdk::ModifierType)

    location to store current modifier mask, or nil

Returns:

  • (nil)

#get_screen(screen_num) ⇒ Gdk::Screen

Returns a screen object for one of the screens of the display.

Parameters:

  • screen_num (Integer)

    the screen number

Returns:

#get_window_at_pointer(win_x, win_y) ⇒ Gdk::Window

Obtains the window underneath the mouse pointer, returning the location of the pointer in that window in win_x, win_y for screen. Returns nil if the window under the mouse pointer is not known to GDK (for example, belongs to another application).

Parameters:

  • win_x (Integer)

    return location for x coordinate of the pointer location relative to the window origin, or nil

  • win_y (Integer)

    return location for y coordinate of the pointer location relative & to the window origin, or nil

Returns:

  • (Gdk::Window)

    the window under the mouse pointer, or nil

#has_pendingTrueClass

Returns whether the display has events that are waiting to be processed.

Returns:

  • (TrueClass)

    true if there are events ready to be processed.

#is_closedTrueClass

Finds out if the display has been closed.

Returns:

  • (TrueClass)

    true if the display is closed.

#keyboard_ungrab(time_) ⇒ nil

Release any keyboard grab

Parameters:

  • time_ (Integer)

    a timestap (e.g #GDK_CURRENT_TIME).

Returns:

  • (nil)

#list_devicesGLib::List

Returns the list of available input devices attached to display. The list is statically allocated and should not be freed.

Returns:

  • (GLib::List)

    a list of Gdk::Device

#list_seatsGLib::List

Returns the list of seats known to display.

Returns:

  • (GLib::List)

    the list of seats known to the Gdk::Display

#n_monitorsInteger

Gets the number of monitors that belong to display.

The returned number is valid until the next emission of the Gdk::Display::monitor-added or #GdkDisplay::monitor-removed signal.

Returns:

  • (Integer)

    the number of monitors

#n_screensInteger

Gets the number of screen managed by the display.

Returns:

  • (Integer)

    number of screens.

#nameString

Gets the name of the display. by GDK and should not be modified or freed.

Returns:

  • (String)

    a string representing the display name. This string is owned

#notify_startup_complete(startup_id) ⇒ nil

Indicates to the GUI environment that the application has finished loading, using a given identifier.

GTK+ will call this function automatically for Gtk::Window with custom startup-notification identifier unless gtk_window_set_auto_startup_notification() is called to disable that feature.

Parameters:

  • startup_id (String)

    a startup-notification identifier, for which notification process should be completed

Returns:

  • (nil)

#peek_eventGdk::Event

Gets a copy of the first Gdk::Event 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.) queue, or nil if no events are in the queue. The returned Gdk::Event should be freed with gdk_event_free().

Returns:

  • (Gdk::Event)

    a copy of the first Gdk::Event on the event

#pointer_is_grabbedTrueClass

Test if the pointer is grabbed.

Returns:

  • (TrueClass)

    true if an active X pointer grab is in effect

#pointer_ungrab(time_) ⇒ nil

Release any pointer grab.

Parameters:

  • time_ (Integer)

    a timestap (e.g. %GDK_CURRENT_TIME).

Returns:

  • (nil)

#primary_monitorGdk::Monitor

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:

  • (Gdk::Monitor)

    the primary monitor, or nil if no primary monitor is configured by the user

#put_event(event) ⇒ nil

Appends a copy of the given event onto the front of the event queue for display.

Parameters:

  • event (Gdk::Event)

    a Gdk::Event.

Returns:

  • (nil)

#request_selection_notification(selection) ⇒ TrueClass

Request Gdk::EventOwnerChange events for ownership changes of the selection named by the given atom.

Parameters:

  • selection (Gdk::Atom)

    the Gdk::Atom naming the selection for which ownership change notification is requested

Returns:

  • (TrueClass)

    whether Gdk::EventOwnerChange events will be sent.

#store_clipboard(clipboard_window, time_, targets, n_targets) ⇒ nil

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](www.freedesktop.org/Standards/clipboard-manager-spec).

Parameters:

  • clipboard_window (Gdk::Window)

    a Gdk::Window belonging to the clipboard owner

  • time_ (Integer)

    a timestamp

  • targets (Array<Gdk::Atom>)

    an array of targets that should be saved, or nil if all available targets should be saved.

  • n_targets (Integer)

    length of the targets array

Returns:

  • (nil)

#supports_clipboard_persistenceTrueClass

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:

  • (TrueClass)

    true if the display supports clipboard persistance.

#supports_compositeTrueClass

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.

Returns:

  • (TrueClass)

    true if windows may be composited.

#supports_cursor_alphaTrueClass

Returns true if cursors can use an 8bit alpha channel on display. Otherwise, cursors are restricted to bilevel alpha (i.e. a mask).

Returns:

  • (TrueClass)

    whether cursors can have alpha channels.

#supports_cursor_colorTrueClass

Returns true if multicolored cursors are supported on display. Otherwise, cursors have only a forground and a background color.

Returns:

  • (TrueClass)

    whether cursors can have multiple colors.

#supports_input_shapesTrueClass

Returns true if gdk_window_input_shape_combine_mask() can be used to modify the input shape of windows on display.

Returns:

  • (TrueClass)

    true if windows with modified input shape are supported

#supports_selection_notificationTrueClass

Returns whether Gdk::EventOwnerChange events will be sent when the owner of a selection changes.

Returns:

  • (TrueClass)

    whether Gdk::EventOwnerChange events will be sent.

#supports_shapesTrueClass

Returns true if gdk_window_shape_combine_mask() can be used to create shaped windows on display.

Returns:

  • (TrueClass)

    true if shaped windows are supported

#syncnil

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.

Returns:

  • (nil)

#warp_pointer(screen, x, y) ⇒ nil

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 Gtk::ColorSelectionDialog.

Parameters:

  • screen (Gdk::Screen)

    the screen of display to warp the pointer to

  • x (Integer)

    the x coordinate of the destination

  • y (Integer)

    the y coordinate of the destination

Returns:

  • (nil)