gdk4_macos/auto/
macos_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 = "GdkMacosMonitor")]
    pub struct MacosMonitor(Object<ffi::GdkMacosMonitor, ffi::GdkMacosMonitorClass>) @extends gdk::Monitor;

    match fn {
        type_ => || ffi::gdk_macos_monitor_get_type(),
    }
}

impl MacosMonitor {
    /// 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 [`MonitorExtManual::scale_factor()`][crate::gdk::prelude::MonitorExtManual::scale_factor()]).
    /// ## `monitor`
    /// a [`gdk::Monitor`][crate::gdk::Monitor]
    ///
    /// # Returns
    ///
    ///
    /// ## `geometry`
    /// a [`gdk::Rectangle`][crate::gdk::Rectangle] to be filled with the monitor geometry
    #[doc(alias = "gdk_macos_monitor_get_workarea")]
    #[doc(alias = "get_workarea")]
    pub fn workarea(monitor: &impl IsA<gdk::Monitor>) -> gdk::Rectangle {
        assert_initialized_main_thread!();
        unsafe {
            let mut geometry = gdk::Rectangle::uninitialized();
            ffi::gdk_macos_monitor_get_workarea(
                monitor.as_ref().to_glib_none().0,
                geometry.to_glib_none_mut().0,
            );
            geometry
        }
    }
}