matrix-gui 0.1.0

embedded-graphics based GUI framework, use region-based freeform layout.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod background;
pub mod bar;
pub mod label;
pub mod listbox;
pub mod plaintext;
pub mod staticimage;
pub mod staticline;

#[cfg(feature = "interaction")]
pub mod interact {
    pub mod button;
    pub mod checkbox;
    pub mod radiobutton;
    pub mod slider;

    #[cfg(feature = "popup")]
    pub mod msgbox;
}