relm4 0.11.0

An idiomatic GUI library inspired by Elm and based on gtk4-rs
//! Commonly-imported traits and types.
//!
//! Modules that contain components can glob import this module to bring all needed types and
//! traits into scope.

pub use crate::component::{
    AsyncComponent, AsyncComponentController, AsyncComponentParts, AsyncComponentSender,
    AsyncController, SimpleAsyncComponent,
};
pub use crate::factory::{
    AsyncFactoryComponent, AsyncFactorySender, AsyncFactoryVecDeque, DynamicIndex,
    FactoryComponent, FactorySender, FactoryVecDeque,
};
pub use crate::{
    Component, ComponentController, ComponentParts, ComponentSender, Controller, RelmApp,
    RelmWidgetExt, SimpleComponent, WidgetRef, WidgetTemplate,
};

#[cfg(feature = "libadwaita")]
#[cfg_attr(docsrs, doc(cfg(feature = "libadwaita")))]
pub use adw;
pub use gtk;

#[cfg(feature = "libpanel")]
#[cfg_attr(docsrs, doc(cfg(feature = "libpanel")))]
pub use panel;