1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use crate::Action;
use glib::object::IsA;
use glib::object::ObjectType as ObjectType_;
use glib::translate::*;
use glib::StaticType;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GPropertyAction")]
pub struct PropertyAction(Object<ffi::GPropertyAction>) @implements Action;
match fn {
type_ => || ffi::g_property_action_get_type(),
}
}
impl PropertyAction {
#[doc(alias = "g_property_action_new")]
pub fn new(name: &str, object: &impl IsA<glib::Object>, property_name: &str) -> PropertyAction {
unsafe {
from_glib_full(ffi::g_property_action_new(
name.to_glib_none().0,
object.as_ref().to_glib_none().0,
property_name.to_glib_none().0,
))
}
}
#[doc(alias = "invert-boolean")]
pub fn inverts_boolean(&self) -> bool {
glib::ObjectExt::property(self, "invert-boolean")
}
}
impl fmt::Display for PropertyAction {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("PropertyAction")
}
}