gdk4_wayland/auto/wayland_monitor.rs
1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use crate::ffi;
6
7glib::wrapper! {
8 /// The Wayland implementation of [`gdk::Monitor`][crate::gdk::Monitor].
9 ///
10 /// Beyond the [`gdk::Monitor`][crate::gdk::Monitor] API, the Wayland implementation
11 /// offers access to the Wayland `wl_output` object with
12 /// [`wl_output()`][Self::wl_output()].
13 ///
14 /// # Implements
15 ///
16 /// [`trait@gdk::prelude::MonitorExt`]
17 #[doc(alias = "GdkWaylandMonitor")]
18 pub struct WaylandMonitor(Object<ffi::GdkWaylandMonitor, ffi::GdkWaylandMonitorClass>) @extends gdk::Monitor;
19
20 match fn {
21 type_ => || ffi::gdk_wayland_monitor_get_type(),
22 }
23}
24
25impl WaylandMonitor {}