atspi_proxies/
lib.rs

1//! All proxy structures for communicating using AT-SPI.
2//! Each proxy uses a different interface for communication.
3
4#![deny(clippy::all, clippy::pedantic, clippy::cargo, unsafe_code, rustdoc::all)]
5#![allow(clippy::multiple_crate_versions)]
6
7pub use atspi_common as common;
8
9pub mod accessible;
10pub mod action;
11pub mod application;
12pub mod bus;
13pub mod cache;
14pub mod collection;
15pub mod component;
16pub mod device_event_controller;
17pub mod device_event_listener;
18pub mod document;
19pub mod editable_text;
20pub mod proxy_ext;
21pub use common::{events, AtspiError, CoordType, Interface, InterfaceSet};
22
23pub mod hyperlink;
24pub mod hypertext;
25pub mod image;
26pub mod registry;
27pub mod selection;
28pub mod socket;
29pub mod table;
30pub mod table_cell;
31pub mod text;
32pub mod value;