1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#![cfg_attr(feature = "dox", feature(doc_cfg))]
pub use ffi;
pub use glib;
#[allow(clippy::too_many_arguments)]
#[allow(clippy::should_implement_trait)]
#[allow(clippy::derive_hash_xor_eq)]
#[allow(clippy::let_and_return)]
#[allow(unused_imports)]
mod auto;
pub use crate::auto::functions::*;
pub use crate::auto::*;
pub use crate::functions::*;
pub use ffi::PANGO_SCALE as SCALE;
pub const SCALE_XX_SMALL: f64 = 0.5787037037037;
pub const SCALE_X_SMALL: f64 = 0.6944444444444;
pub const SCALE_SMALL: f64 = 0.8333333333333;
pub const SCALE_MEDIUM: f64 = 1.0;
pub const SCALE_LARGE: f64 = 1.2;
pub const SCALE_X_LARGE: f64 = 1.44;
pub const SCALE_XX_LARGE: f64 = 1.728;
pub mod prelude;
pub mod analysis;
pub use crate::analysis::Analysis;
pub mod attr_class;
pub use crate::attr_class::AttrClass;
pub mod attr_iterator;
pub mod attr_list;
pub mod attribute;
mod functions;
pub mod item;
pub mod language;
pub use crate::language::Language;
pub mod layout;
pub use crate::layout::HitPosition;
pub mod rectangle;
pub use crate::rectangle::Rectangle;
pub mod glyph;
pub use glyph::{GlyphGeometry, GlyphInfo};
mod coverage;
pub use crate::coverage::*;