gdk4_wayland/auto/wayland_seat.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::Seat`][crate::gdk::Seat].
9 ///
10 /// Beyond the regular [`gdk::Seat`][crate::gdk::Seat] API, the Wayland implementation
11 /// provides access to the Wayland `wl_seat` object with
12 /// [`wl_seat()`][Self::wl_seat()].
13 ///
14 /// # Implements
15 ///
16 /// [`trait@gdk::prelude::SeatExt`]
17 #[doc(alias = "GdkWaylandSeat")]
18 pub struct WaylandSeat(Object<ffi::GdkWaylandSeat, ffi::GdkWaylandSeatClass>) @extends gdk::Seat;
19
20 match fn {
21 type_ => || ffi::gdk_wayland_seat_get_type(),
22 }
23}
24
25impl WaylandSeat {}