pub const SAMPLE_GUI_CONFIG: &'static str = r##"{
"title": "rustmeh",
"rootControl":
{
"type": "sizer",
"orientation": "vertical",
"controls": [
{
"type": "sizer",
"orientation": "horizontal",
"controls": [
{ "type": "slider"
, "orientation": "horizontal"
, "name": "hs1"
}
,{ "type": "slider"
, "orientation": "horizontal"
, "name": "hs2"
}
]
}
, {
"type": "sizer",
"orientation": "horizontal",
"controls": [
{ "type": "label"
, "name": "lb1"
, "label": "blah"
}
, { "type": "label"
, "name": "lb2"
, "label": "blah"
}
]
}
, { "type": "label"
, "name": "lb3"
, "label": "blah"
}
, { "type": "button"
, "name": "b1"
}
, { "type": "button"
, "name": "b2"
}
, { "type": "button"
, "name": "b3"
}
]
}
}"##;
pub const MAIN_HTML: &'static str = r##"{{index.html}}"##;