Macro gstore::list_box[][src]

macro_rules! list_box {
    (
        $($text:tt)*
    ) => { ... };
}

gstore macro for the GTK ListBox.

See Also

Examples

list_box! {
    properties {
        title: "Test Application"
    }
    children [
        button! {
            children [
                image!("format-justify-fill-symbolic", gtk::IconSize::Button)
            ]
        }
    ]
};