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.
56mod action;
7mod adapter;
8mod callback;
9mod context;
10mod error;
11mod events;
12mod filters;
13mod node;
14mod rect;
15#[cfg(feature = "simplified-api")]
16pub mod simplified;
17mod util;
1819pub use atspi_common::{
20 CoordType, Granularity, InterfaceSet, Layer, Role, ScrollType, State, StateSet,
21};
2223pub use action::*;
24pub use adapter::{next_adapter_id, Adapter};
25pub use callback::AdapterCallback;
26pub use context::{ActionHandlerNoMut, ActionHandlerWrapper, AppContext};
27pub use error::*;
28pub use events::*;
29pub use node::{NodeIdOrRoot, PlatformNode, PlatformRoot};
30pub use rect::*;
31pub use util::WindowBounds;