gdk4_wayland/auto/
wayland_surface.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;
6use glib::prelude::*;
7#[cfg(feature = "v4_18")]
8#[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
9use glib::translate::*;
10
11glib::wrapper! {
12    /// The Wayland implementation of [`gdk::Surface`][crate::gdk::Surface].
13    ///
14    /// Beyond the [`gdk::Surface`][crate::gdk::Surface] API, the Wayland implementation offers
15    /// access to the Wayland `wl_surface` object with
16    /// [`WaylandSurfaceExtManual::wl_surface()`][crate::prelude::WaylandSurfaceExtManual::wl_surface()].
17    ///
18    /// # Implements
19    ///
20    /// [`WaylandSurfaceExt`][trait@crate::prelude::WaylandSurfaceExt], [`trait@gdk::prelude::SurfaceExt`], [`WaylandSurfaceExtManual`][trait@crate::prelude::WaylandSurfaceExtManual]
21    #[doc(alias = "GdkWaylandSurface")]
22    pub struct WaylandSurface(Object<ffi::GdkWaylandSurface>) @extends gdk::Surface;
23
24    match fn {
25        type_ => || ffi::gdk_wayland_surface_get_type(),
26    }
27}
28
29impl WaylandSurface {
30    pub const NONE: Option<&'static WaylandSurface> = None;
31}
32
33/// Trait containing all [`struct@WaylandSurface`] methods.
34///
35/// # Implementors
36///
37/// [`WaylandPopup`][struct@crate::WaylandPopup], [`WaylandSurface`][struct@crate::WaylandSurface], [`WaylandToplevel`][struct@crate::WaylandToplevel]
38pub trait WaylandSurfaceExt: IsA<WaylandSurface> + 'static {
39    /// Forces next commit.
40    #[cfg(feature = "v4_18")]
41    #[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
42    #[doc(alias = "gdk_wayland_surface_force_next_commit")]
43    fn force_next_commit(&self) {
44        unsafe {
45            ffi::gdk_wayland_surface_force_next_commit(self.as_ref().to_glib_none().0);
46        }
47    }
48}
49
50impl<O: IsA<WaylandSurface>> WaylandSurfaceExt for O {}