gdk4_x11/auto/x11_monitor.rs
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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use crate::ffi;
use glib::translate::*;
glib::wrapper! {
///
///
/// # Implements
///
/// [`trait@gdk::prelude::MonitorExt`]
#[doc(alias = "GdkX11Monitor")]
pub struct X11Monitor(Object<ffi::GdkX11Monitor, ffi::GdkX11MonitorClass>) @extends gdk::Monitor;
match fn {
type_ => || ffi::gdk_x11_monitor_get_type(),
}
}
impl X11Monitor {
/// Retrieves the size and position of the “work area” on a monitor
/// within the display coordinate space.
///
/// The returned geometry is in ”application pixels”, not in ”device pixels”
/// (see `Gdk::Monitor::get_scale_factor()`).
///
/// # Returns
///
///
/// ## `workarea`
/// a [`gdk::Rectangle`][crate::gdk::Rectangle] to be filled with the monitor workarea
#[doc(alias = "gdk_x11_monitor_get_workarea")]
#[doc(alias = "get_workarea")]
pub fn workarea(&self) -> gdk::Rectangle {
unsafe {
let mut workarea = gdk::Rectangle::uninitialized();
ffi::gdk_x11_monitor_get_workarea(self.to_glib_none().0, workarea.to_glib_none_mut().0);
workarea
}
}
}