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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
use ffi;
use glib::GString;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib_wrapper! {
pub struct Action(Interface<ffi::AtkAction>);
match fn {
get_type => || ffi::atk_action_get_type(),
}
}
pub const NONE_ACTION: Option<&Action> = None;
pub trait AtkActionExt: 'static {
fn do_action(&self, i: i32) -> bool;
fn get_description(&self, i: i32) -> Option<GString>;
fn get_keybinding(&self, i: i32) -> Option<GString>;
fn get_localized_name(&self, i: i32) -> Option<GString>;
fn get_n_actions(&self) -> i32;
fn get_name(&self, i: i32) -> Option<GString>;
fn set_description(&self, i: i32, desc: &str) -> bool;
}
impl<O: IsA<Action>> AtkActionExt for O {
fn do_action(&self, i: i32) -> bool {
unsafe {
from_glib(ffi::atk_action_do_action(self.as_ref().to_glib_none().0, i))
}
}
fn get_description(&self, i: i32) -> Option<GString> {
unsafe {
from_glib_none(ffi::atk_action_get_description(self.as_ref().to_glib_none().0, i))
}
}
fn get_keybinding(&self, i: i32) -> Option<GString> {
unsafe {
from_glib_none(ffi::atk_action_get_keybinding(self.as_ref().to_glib_none().0, i))
}
}
fn get_localized_name(&self, i: i32) -> Option<GString> {
unsafe {
from_glib_none(ffi::atk_action_get_localized_name(self.as_ref().to_glib_none().0, i))
}
}
fn get_n_actions(&self) -> i32 {
unsafe {
ffi::atk_action_get_n_actions(self.as_ref().to_glib_none().0)
}
}
fn get_name(&self, i: i32) -> Option<GString> {
unsafe {
from_glib_none(ffi::atk_action_get_name(self.as_ref().to_glib_none().0, i))
}
}
fn set_description(&self, i: i32, desc: &str) -> bool {
unsafe {
from_glib(ffi::atk_action_set_description(self.as_ref().to_glib_none().0, i, desc.to_glib_none().0))
}
}
}
impl fmt::Display for Action {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Action")
}
}