use gdk_sys;
use glib::object::IsA;
use glib::object::ObjectType as ObjectType_;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::GString;
use glib_sys;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem;
use std::mem::transmute;
use AppLaunchContext;
use Atom;
use Device;
use DeviceManager;
use Event;
#[cfg(any(feature = "v3_22", feature = "dox"))]
use Monitor;
use Screen;
#[cfg(any(feature = "v3_20", feature = "dox"))]
use Seat;
use Window;
glib_wrapper! {
pub struct Display(Object<gdk_sys::GdkDisplay, DisplayClass>);
match fn {
get_type => || gdk_sys::gdk_display_get_type(),
}
}
impl Display {
pub fn beep(&self) {
unsafe {
gdk_sys::gdk_display_beep(self.to_glib_none().0);
}
}
pub fn close(&self) {
unsafe {
gdk_sys::gdk_display_close(self.to_glib_none().0);
}
}
pub fn device_is_grabbed(&self, device: &Device) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_device_is_grabbed(
self.to_glib_none().0,
device.to_glib_none().0,
))
}
}
pub fn flush(&self) {
unsafe {
gdk_sys::gdk_display_flush(self.to_glib_none().0);
}
}
pub fn get_app_launch_context(&self) -> Option<AppLaunchContext> {
unsafe {
from_glib_full(gdk_sys::gdk_display_get_app_launch_context(
self.to_glib_none().0,
))
}
}
pub fn get_default_cursor_size(&self) -> u32 {
unsafe { gdk_sys::gdk_display_get_default_cursor_size(self.to_glib_none().0) }
}
pub fn get_default_group(&self) -> Window {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_default_group(
self.to_glib_none().0,
))
}
}
pub fn get_default_screen(&self) -> Screen {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_default_screen(
self.to_glib_none().0,
))
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn get_default_seat(&self) -> Option<Seat> {
unsafe { from_glib_none(gdk_sys::gdk_display_get_default_seat(self.to_glib_none().0)) }
}
#[cfg_attr(feature = "v3_20", deprecated)]
pub fn get_device_manager(&self) -> Option<DeviceManager> {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_device_manager(
self.to_glib_none().0,
))
}
}
pub fn get_event(&self) -> Option<Event> {
unsafe { from_glib_full(gdk_sys::gdk_display_get_event(self.to_glib_none().0)) }
}
pub fn get_maximal_cursor_size(&self) -> (u32, u32) {
unsafe {
let mut width = mem::MaybeUninit::uninit();
let mut height = mem::MaybeUninit::uninit();
gdk_sys::gdk_display_get_maximal_cursor_size(
self.to_glib_none().0,
width.as_mut_ptr(),
height.as_mut_ptr(),
);
let width = width.assume_init();
let height = height.assume_init();
(width, height)
}
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn get_monitor(&self, monitor_num: i32) -> Option<Monitor> {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_monitor(
self.to_glib_none().0,
monitor_num,
))
}
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn get_monitor_at_point(&self, x: i32, y: i32) -> Option<Monitor> {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_monitor_at_point(
self.to_glib_none().0,
x,
y,
))
}
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn get_monitor_at_window<P: IsA<Window>>(&self, window: &P) -> Option<Monitor> {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_monitor_at_window(
self.to_glib_none().0,
window.as_ref().to_glib_none().0,
))
}
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn get_n_monitors(&self) -> i32 {
unsafe { gdk_sys::gdk_display_get_n_monitors(self.to_glib_none().0) }
}
pub fn get_name(&self) -> GString {
unsafe { from_glib_none(gdk_sys::gdk_display_get_name(self.to_glib_none().0)) }
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn get_primary_monitor(&self) -> Option<Monitor> {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_primary_monitor(
self.to_glib_none().0,
))
}
}
#[cfg_attr(feature = "v3_20", deprecated)]
pub fn get_screen(&self, screen_num: i32) -> Screen {
unsafe {
from_glib_none(gdk_sys::gdk_display_get_screen(
self.to_glib_none().0,
screen_num,
))
}
}
pub fn has_pending(&self) -> bool {
unsafe { from_glib(gdk_sys::gdk_display_has_pending(self.to_glib_none().0)) }
}
pub fn is_closed(&self) -> bool {
unsafe { from_glib(gdk_sys::gdk_display_is_closed(self.to_glib_none().0)) }
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn list_seats(&self) -> Vec<Seat> {
unsafe {
FromGlibPtrContainer::from_glib_container(gdk_sys::gdk_display_list_seats(
self.to_glib_none().0,
))
}
}
pub fn notify_startup_complete(&self, startup_id: &str) {
unsafe {
gdk_sys::gdk_display_notify_startup_complete(
self.to_glib_none().0,
startup_id.to_glib_none().0,
);
}
}
pub fn peek_event(&self) -> Option<Event> {
unsafe { from_glib_full(gdk_sys::gdk_display_peek_event(self.to_glib_none().0)) }
}
pub fn put_event(&self, event: &Event) {
unsafe {
gdk_sys::gdk_display_put_event(self.to_glib_none().0, event.to_glib_none().0);
}
}
pub fn request_selection_notification(&self, selection: &Atom) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_request_selection_notification(
self.to_glib_none().0,
selection.to_glib_none().0,
))
}
}
pub fn set_double_click_distance(&self, distance: u32) {
unsafe {
gdk_sys::gdk_display_set_double_click_distance(self.to_glib_none().0, distance);
}
}
pub fn set_double_click_time(&self, msec: u32) {
unsafe {
gdk_sys::gdk_display_set_double_click_time(self.to_glib_none().0, msec);
}
}
pub fn store_clipboard<P: IsA<Window>>(
&self,
clipboard_window: &P,
time_: u32,
targets: &[&Atom],
) {
let n_targets = targets.len() as i32;
unsafe {
gdk_sys::gdk_display_store_clipboard(
self.to_glib_none().0,
clipboard_window.as_ref().to_glib_none().0,
time_,
targets.to_glib_none().0,
n_targets,
);
}
}
pub fn supports_clipboard_persistence(&self) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_supports_clipboard_persistence(
self.to_glib_none().0,
))
}
}
#[cfg_attr(feature = "v3_16", deprecated)]
pub fn supports_composite(&self) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_supports_composite(
self.to_glib_none().0,
))
}
}
pub fn supports_cursor_alpha(&self) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_supports_cursor_alpha(
self.to_glib_none().0,
))
}
}
pub fn supports_cursor_color(&self) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_supports_cursor_color(
self.to_glib_none().0,
))
}
}
pub fn supports_input_shapes(&self) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_supports_input_shapes(
self.to_glib_none().0,
))
}
}
pub fn supports_selection_notification(&self) -> bool {
unsafe {
from_glib(gdk_sys::gdk_display_supports_selection_notification(
self.to_glib_none().0,
))
}
}
pub fn supports_shapes(&self) -> bool {
unsafe { from_glib(gdk_sys::gdk_display_supports_shapes(self.to_glib_none().0)) }
}
pub fn sync(&self) {
unsafe {
gdk_sys::gdk_display_sync(self.to_glib_none().0);
}
}
pub fn get_default() -> Option<Display> {
assert_initialized_main_thread!();
unsafe { from_glib_none(gdk_sys::gdk_display_get_default()) }
}
pub fn open(display_name: &str) -> Option<Display> {
assert_initialized_main_thread!();
unsafe { from_glib_none(gdk_sys::gdk_display_open(display_name.to_glib_none().0)) }
}
#[cfg_attr(feature = "v3_16", deprecated)]
pub fn open_default_libgtk_only() -> Option<Display> {
assert_initialized_main_thread!();
unsafe { from_glib_none(gdk_sys::gdk_display_open_default_libgtk_only()) }
}
pub fn connect_closed<F: Fn(&Display, bool) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn closed_trampoline<F: Fn(&Display, bool) + 'static>(
this: *mut gdk_sys::GdkDisplay,
is_error: glib_sys::gboolean,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), from_glib(is_error))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"closed\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
closed_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn connect_monitor_added<F: Fn(&Display, &Monitor) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn monitor_added_trampoline<F: Fn(&Display, &Monitor) + 'static>(
this: *mut gdk_sys::GdkDisplay,
monitor: *mut gdk_sys::GdkMonitor,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(monitor))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"monitor-added\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
monitor_added_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(any(feature = "v3_22", feature = "dox"))]
pub fn connect_monitor_removed<F: Fn(&Display, &Monitor) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn monitor_removed_trampoline<F: Fn(&Display, &Monitor) + 'static>(
this: *mut gdk_sys::GdkDisplay,
monitor: *mut gdk_sys::GdkMonitor,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(monitor))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"monitor-removed\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
monitor_removed_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
pub fn connect_opened<F: Fn(&Display) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn opened_trampoline<F: Fn(&Display) + 'static>(
this: *mut gdk_sys::GdkDisplay,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"opened\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
opened_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn connect_seat_added<F: Fn(&Display, &Seat) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn seat_added_trampoline<F: Fn(&Display, &Seat) + 'static>(
this: *mut gdk_sys::GdkDisplay,
seat: *mut gdk_sys::GdkSeat,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(seat))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"seat-added\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
seat_added_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(any(feature = "v3_20", feature = "dox"))]
pub fn connect_seat_removed<F: Fn(&Display, &Seat) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn seat_removed_trampoline<F: Fn(&Display, &Seat) + 'static>(
this: *mut gdk_sys::GdkDisplay,
seat: *mut gdk_sys::GdkSeat,
f: glib_sys::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(seat))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"seat-removed\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
seat_removed_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl fmt::Display for Display {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Display")
}
}