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
//! # `DBus` interface proxy for: `org.a11y.atspi.Document`
//!
//! This code was generated by `zbus-xmlgen` `2.0.1` from `DBus` introspection data.
//! Source: `Document.xml`.
//!
//! You may prefer to adapt it, instead of using it verbatim.
//!
//! More information can be found in the
//! [Writing a client proxy](https://dbus.pages.freedesktop.org/zbus/client.html)
//! section of the zbus documentation.
//!
use crate::common::TextSelection;
#[zbus::proxy(interface = "org.a11y.atspi.Document", assume_defaults = true)]
trait Document {
/// GetTextSelections method
fn get_text_selections(&self) -> zbus::Result<Vec<TextSelection>>;
/// SetTextSelections method
fn set_text_selections(&self, selections: Vec<TextSelection>) -> zbus::Result<bool>;
/// GetAttributeValue method
fn get_attribute_value(&self, attributename: &str) -> zbus::Result<String>;
/// GetAttributes method
fn get_attributes(&self) -> zbus::Result<std::collections::HashMap<String, String>>;
/// GetLocale method
fn get_locale(&self) -> zbus::Result<String>;
/// CurrentPageNumber property
#[zbus(property)]
fn current_page_number(&self) -> zbus::Result<i32>;
/// PageCount property
#[zbus(property)]
fn page_count(&self) -> zbus::Result<i32>;
}