atspi_proxies/
component.rs
1use crate::common::{CoordType, Layer, ObjectRef, ScrollType};
14
15#[zbus::proxy(interface = "org.a11y.atspi.Component", assume_defaults = true)]
16trait Component {
17 fn contains(&self, x: i32, y: i32, coord_type: CoordType) -> zbus::Result<bool>;
19
20 fn get_accessible_at_point(
22 &self,
23 x: i32,
24 y: i32,
25 coord_type: CoordType,
26 ) -> zbus::Result<ObjectRef>;
27
28 fn get_alpha(&self) -> zbus::Result<f64>;
30
31 fn get_extents(&self, coord_type: CoordType) -> zbus::Result<(i32, i32, i32, i32)>;
33
34 fn get_layer(&self) -> zbus::Result<Layer>;
36
37 fn get_mdizorder(&self) -> zbus::Result<i16>;
39
40 fn get_position(&self, coord_type: CoordType) -> zbus::Result<(i32, i32)>;
42
43 fn get_size(&self) -> zbus::Result<(i32, i32)>;
45
46 fn grab_focus(&self) -> zbus::Result<bool>;
48
49 fn scroll_to(&self, type_: ScrollType) -> zbus::Result<bool>;
51
52 fn scroll_to_point(&self, coord_type: CoordType, x: i32, y: i32) -> zbus::Result<bool>;
54
55 fn set_extents(
57 &self,
58 x: i32,
59 y: i32,
60 width: i32,
61 height: i32,
62 coord_type: CoordType,
63 ) -> zbus::Result<bool>;
64
65 fn set_position(&self, x: i32, y: i32, coord_type: CoordType) -> zbus::Result<bool>;
67
68 fn set_size(&self, width: i32, height: i32) -> zbus::Result<bool>;
70}