| 1 | // Copyright 2022 The AccessKit Authors. All rights reserved. |
| 2 | // Licensed under the Apache License, Version 2.0 (found in |
| 3 | // the LICENSE-APACHE file) or the MIT license (found in |
| 4 | // the LICENSE-MIT file), at your option. |
| 5 | |
| 6 | mod action; |
| 7 | mod adapter; |
| 8 | mod callback; |
| 9 | mod context; |
| 10 | mod error; |
| 11 | mod events; |
| 12 | mod filters; |
| 13 | mod node; |
| 14 | mod rect; |
| 15 | #[cfg (feature = "simplified-api" )] |
| 16 | pub mod simplified; |
| 17 | mod util; |
| 18 | |
| 19 | pub use atspi_common::{ |
| 20 | CoordType, Granularity, InterfaceSet, Layer, Role, ScrollType, State, StateSet, |
| 21 | }; |
| 22 | |
| 23 | pub use action::*; |
| 24 | pub use adapter::{next_adapter_id, Adapter}; |
| 25 | pub use callback::AdapterCallback; |
| 26 | pub use context::{ActionHandlerNoMut, ActionHandlerWrapper, AppContext}; |
| 27 | pub use error::*; |
| 28 | pub use events::*; |
| 29 | pub use node::{NodeIdOrRoot, PlatformNode, PlatformRoot}; |
| 30 | pub use rect::*; |
| 31 | pub use util::WindowBounds; |
| 32 | |