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 | pub mod simplified; |
16 | mod util; |
17 | |
18 | pub use atspi_common::{CoordType, InterfaceSet, Layer, Role, State, StateSet}; |
19 | |
20 | pub use action::*; |
21 | pub use adapter::{Adapter, AdapterIdToken}; |
22 | pub use callback::AdapterCallback; |
23 | pub use context::AppContext; |
24 | pub use error::*; |
25 | pub use events::*; |
26 | pub use node::{NodeIdOrRoot, PlatformNode, PlatformRoot}; |
27 | pub use rect::*; |
28 | pub use util::WindowBounds; |
29 | |