1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod gtk;

#[cfg(feature = "libadwaita")]
#[cfg_attr(dox, doc(cfg(feature = "libadwaita")))]
mod libadwaita;

#[cfg(feature = "libpanel")]
#[cfg_attr(dox, doc(cfg(feature = "libpanel")))]
mod libpanel;

#[cfg(test)]
mod tests;

/// Trait used for factories to interact with widgets.
pub mod traits;

pub use traits::*;