#![cfg_attr(feature = "cargo-clippy", allow(let_unit_value))]
#![cfg_attr(feature = "cargo-clippy", allow(new_without_default))]
#![cfg_attr(feature = "cargo-clippy", allow(type_complexity))]
#![cfg_attr(feature = "cargo-clippy", allow(transmute_ptr_to_ref))]
#![cfg_attr(feature = "cargo-clippy", allow(trivially_copy_pass_by_ref))]
#![cfg_attr(feature = "cargo-clippy", allow(derive_hash_xor_eq))]
#![allow(deprecated)]
extern crate libc;
#[macro_use]
extern crate bitflags;
extern crate atk_sys;
extern crate glib_sys;
extern crate gobject_sys;
#[macro_use]
extern crate glib;
#[macro_use]
mod rt;
#[cfg_attr(feature = "cargo-clippy", allow(too_many_arguments))]
#[cfg_attr(feature = "cargo-clippy", allow(match_same_arms))]
#[cfg_attr(feature = "cargo-clippy", allow(let_and_return))]
#[cfg_attr(feature = "cargo-clippy", allow(many_single_char_names))]
#[cfg_attr(feature = "cargo-clippy", allow(wrong_self_convention))]
mod auto;
pub use auto::*;
pub mod prelude;
pub use attribute::Attribute;
pub use attribute_set::AttributeSet;
pub use text_rectangle::TextRectangle;
mod attribute;
mod attribute_set;
mod editable_text;
mod table;
mod text_rectangle;