Skip to main content

atk/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![doc = include_str!("../README.md")]
4#![cfg_attr(docsrs, feature(doc_cfg))]
5
6pub use ffi;
7pub use glib;
8
9#[macro_use]
10mod rt;
11
12#[allow(unused_imports)]
13mod auto;
14
15pub use crate::auto::*;
16
17pub mod prelude;
18
19pub use crate::attribute::Attribute;
20pub use crate::attribute_set::AttributeSet;
21pub use crate::text_rectangle::TextRectangle;
22
23mod attribute;
24mod attribute_set;
25mod editable_text;
26mod table;
27mod text_rectangle;