use conrod::UiCell;
use wlc::Output;
pub mod background;
pub use self::background::{BackgroundConfig, BackgroundHandler};
pub mod statusbar;
pub use self::statusbar::{StatusbarConfig, StatusbarHandler};
pub trait ConrodProvider {
fn render(&mut self, output: &Output, ui: &mut UiCell);
}