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
use orbclient::Renderer;
use std::any::Any;
use std::cell::Cell;

use event::Event;
use rect::Rect;

pub use self::button::Button;
pub use self::grid::Grid;
pub use self::image::Image;
pub use self::label::Label;
pub use self::menu::{Menu, Action, Separator};
pub use self::progress_bar::ProgressBar;
pub use self::text_box::TextBox;

mod button;
mod grid;
mod image;
mod label;
mod menu;
mod progress_bar;
mod text_box;

pub trait Widget : Any {
    fn rect(&self) -> &Cell<Rect>;
    fn draw(&self, renderer: &mut Renderer, focused: bool);
    fn event(&self, event: Event, focused: bool, redraw: &mut bool) -> bool;
}