accesskit_macos/
lib.rs

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#![deny(unsafe_op_in_unsafe_fn)]
7
8mod context;
9mod filters;
10mod node;
11mod util;
12
13mod adapter;
14pub use adapter::Adapter;
15
16mod event;
17pub use event::QueuedEvents;
18
19mod patch;
20pub use patch::add_focus_forwarder_to_window_class;
21
22mod subclass;
23pub use subclass::SubclassingAdapter;
24
25pub use objc2_foundation::{NSArray, NSObject, NSPoint};