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
use CoordType;
use ffi;
use glib::GString;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
use std::mem;
glib_wrapper! {
pub struct Image(Interface<ffi::AtkImage>);
match fn {
get_type => || ffi::atk_image_get_type(),
}
}
pub const NONE_IMAGE: Option<&Image> = None;
pub trait AtkImageExt: 'static {
fn get_image_description(&self) -> Option<GString>;
fn get_image_locale(&self) -> Option<GString>;
fn get_image_position(&self, coord_type: CoordType) -> (i32, i32);
fn get_image_size(&self) -> (i32, i32);
fn set_image_description(&self, description: &str) -> bool;
}
impl<O: IsA<Image>> AtkImageExt for O {
fn get_image_description(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::atk_image_get_image_description(self.as_ref().to_glib_none().0))
}
}
fn get_image_locale(&self) -> Option<GString> {
unsafe {
from_glib_none(ffi::atk_image_get_image_locale(self.as_ref().to_glib_none().0))
}
}
fn get_image_position(&self, coord_type: CoordType) -> (i32, i32) {
unsafe {
let mut x = mem::uninitialized();
let mut y = mem::uninitialized();
ffi::atk_image_get_image_position(self.as_ref().to_glib_none().0, &mut x, &mut y, coord_type.to_glib());
(x, y)
}
}
fn get_image_size(&self) -> (i32, i32) {
unsafe {
let mut width = mem::uninitialized();
let mut height = mem::uninitialized();
ffi::atk_image_get_image_size(self.as_ref().to_glib_none().0, &mut width, &mut height);
(width, height)
}
}
fn set_image_description(&self, description: &str) -> bool {
unsafe {
from_glib(ffi::atk_image_set_image_description(self.as_ref().to_glib_none().0, description.to_glib_none().0))
}
}
}
impl fmt::Display for Image {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Image")
}
}