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