atspi_proxies/
table_cell.rs

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
13use crate::common::ObjectRef;
14
15#[zbus::proxy(interface = "org.a11y.atspi.TableCell", assume_defaults = true)]
16pub trait TableCell {
17	/// GetColumnHeaderCells method
18	fn get_column_header_cells(&self) -> zbus::Result<Vec<ObjectRef>>;
19
20	/// GetRowColumnSpan method
21	fn get_row_column_span(&self) -> zbus::Result<(bool, i32, i32, i32, i32)>;
22
23	/// GetRowHeaderCells method
24	fn get_row_header_cells(&self) -> zbus::Result<Vec<ObjectRef>>;
25
26	/// ColumnSpan property
27	#[zbus(property)]
28	fn column_span(&self) -> zbus::Result<i32>;
29
30	/// Position property
31	#[zbus(property)]
32	fn position(&self) -> zbus::Result<(i32, i32)>;
33
34	/// RowSpan property
35	#[zbus(property)]
36	fn row_span(&self) -> zbus::Result<i32>;
37
38	/// Table property
39	#[zbus(property)]
40	fn table(&self) -> zbus::Result<ObjectRef>;
41}