gtk4 0.10.3

Rust bindings of the GTK 4 library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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, ShortcutAction};

glib::wrapper! {
    #[doc(alias = "GtkCallbackAction")]
    pub struct CallbackAction(Object<ffi::GtkCallbackAction, ffi::GtkCallbackActionClass>) @extends ShortcutAction;

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

impl CallbackAction {}