gdk4_win32/auto/win32_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 44 45 46 47 48 49
// 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::{prelude::*, translate::*};
glib::wrapper! {
///
///
/// # Implements
///
/// [`trait@gdk::prelude::MonitorExt`]
#[doc(alias = "GdkWin32Monitor")]
pub struct Win32Monitor(Object<ffi::GdkWin32Monitor, ffi::GdkWin32MonitorClass>) @extends gdk::Monitor;
match fn {
type_ => || ffi::gdk_win32_monitor_get_type(),
}
}
impl Win32Monitor {
/// 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()`).
/// ## `monitor`
/// a [`gdk::Monitor`][crate::gdk::Monitor]
///
/// # Returns
///
///
/// ## `workarea`
/// a [`gdk::Rectangle`][crate::gdk::Rectangle] to be filled with the monitor workarea
#[doc(alias = "gdk_win32_monitor_get_workarea")]
#[doc(alias = "get_workarea")]
pub fn workarea(monitor: &impl IsA<gdk::Monitor>) -> gdk::Rectangle {
assert_initialized_main_thread!();
unsafe {
let mut workarea = gdk::Rectangle::uninitialized();
ffi::gdk_win32_monitor_get_workarea(
monitor.as_ref().to_glib_none().0,
workarea.to_glib_none_mut().0,
);
workarea
}
}
}