1 | //! # `DBus` interface proxy for: `org.a11y.atspi.TableCell` |
2 | //! |
3 | //! This code was generated by `zbus-xmlgen` `2.0.1` from `DBus` introspection data. |
4 | //! Source: `TableCell.xml`. |
5 | //! |
6 | //! You may prefer to adapt it, instead of using it verbatim. |
7 | //! |
8 | //! More information can be found in the |
9 | //! [Writing a client proxy](https://dbus.pages.freedesktop.org/zbus/client.html) |
10 | //! section of the zbus documentation. |
11 | //! |
12 | |
13 | use crate::atspi_proxy ; |
14 | use crate::common::Accessible; |
15 | |
16 | #[atspi_proxy (interface = "org.a11y.atspi.TableCell" , assume_defaults = true)] |
17 | trait TableCell { |
18 | /// GetColumnHeaderCells method |
19 | fn get_column_header_cells(&self) -> zbus::Result<Vec<Accessible>>; |
20 | |
21 | /// GetRowColumnSpan method |
22 | fn get_row_column_span(&self) -> zbus::Result<(bool, i32, i32, i32, i32)>; |
23 | |
24 | /// GetRowHeaderCells method |
25 | fn get_row_header_cells(&self) -> zbus::Result<Vec<Accessible>>; |
26 | |
27 | /// ColumnSpan property |
28 | #[dbus_proxy(property)] |
29 | fn column_span(&self) -> zbus::Result<i32>; |
30 | |
31 | /// Position property |
32 | #[dbus_proxy(property)] |
33 | fn position(&self) -> zbus::Result<(i32, i32)>; |
34 | |
35 | /// RowSpan property |
36 | #[dbus_proxy(property)] |
37 | fn row_span(&self) -> zbus::Result<i32>; |
38 | |
39 | /// Table property |
40 | #[dbus_proxy(property)] |
41 | fn table(&self) -> zbus::Result<Accessible>; |
42 | } |
43 | |