gtk4/shortcut_trigger.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::translate::*;
4
5use crate::{ffi, prelude::*, ShortcutTrigger};
6
7// rustdoc-stripper-ignore-next
8/// Trait containing manually implemented methods of
9/// [`ShortcutTrigger`](crate::ShortcutTrigger).
10pub trait ShortcutTriggerExtManual: IsA<ShortcutTrigger> {
11 #[doc(alias = "gtk_shortcut_trigger_compare")]
12 fn compare(&self, trigger2: &impl IsA<ShortcutTrigger>) -> std::cmp::Ordering {
13 unsafe {
14 from_glib(ffi::gtk_shortcut_trigger_compare(
15 ToGlibPtr::<*mut ffi::GtkShortcutTrigger>::to_glib_none(self.as_ref()).0
16 as glib::ffi::gconstpointer,
17 ToGlibPtr::<*mut ffi::GtkShortcutTrigger>::to_glib_none(trigger2.as_ref()).0
18 as glib::ffi::gconstpointer,
19 ))
20 }
21 }
22
23 #[doc(alias = "gtk_shortcut_trigger_equal")]
24 fn equal(&self, trigger2: &impl IsA<ShortcutTrigger>) -> bool {
25 unsafe {
26 from_glib(ffi::gtk_shortcut_trigger_equal(
27 ToGlibPtr::<*mut ffi::GtkShortcutTrigger>::to_glib_none(self.as_ref()).0
28 as glib::ffi::gconstpointer,
29 ToGlibPtr::<*mut ffi::GtkShortcutTrigger>::to_glib_none(trigger2.as_ref()).0
30 as glib::ffi::gconstpointer,
31 ))
32 }
33 }
34
35 #[doc(alias = "gtk_shortcut_trigger_hash")]
36 fn hash(&self) -> u32 {
37 unsafe {
38 ffi::gtk_shortcut_trigger_hash(
39 ToGlibPtr::<*mut ffi::GtkShortcutTrigger>::to_glib_none(self.as_ref()).0
40 as glib::ffi::gconstpointer,
41 )
42 }
43 }
44}
45
46impl<O: IsA<ShortcutTrigger>> ShortcutTriggerExtManual for O {}