gtk4/auto/list_base.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, Accessible, Buildable, ConstraintTarget, Orientable, Scrollable, Widget};
6
7glib::wrapper! {
8 #[doc(alias = "GtkListBase")]
9 pub struct ListBase(Object<ffi::GtkListBase, ffi::GtkListBaseClass>) @extends Widget, @implements Accessible, Buildable, ConstraintTarget, Orientable, Scrollable;
10
11 match fn {
12 type_ => || ffi::gtk_list_base_get_type(),
13 }
14}
15
16impl ListBase {
17 pub const NONE: Option<&'static ListBase> = None;
18}