dardan_ui 0.1.1

A simple GUI Toolkit based on SDL2. The goal is for it to be easy to use and be similar to GUI Toolkits for OO languages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate sdl2;

mod util;

mod base;
pub use base::cell::{new_ui_cell, UiCell};
pub use base::col::UiCol;
pub use base::elem::UiElem;
pub use base::size_units::{UiFixSize, UiPos, UiSize, UiSizeVal};
pub use base::attr::UiAttr;
pub use base::param::UiParam;

mod app;
pub use app::UiApp;

pub mod elements;