2016-09-29 05:45:27 +00:00
|
|
|
use cursive::views::{Dialog, TextView};
|
2018-07-26 04:43:04 +00:00
|
|
|
use cursive::Cursive;
|
2015-06-06 01:08:05 +00:00
|
|
|
|
|
|
|
fn main() {
|
2018-04-01 23:39:03 +00:00
|
|
|
let mut siv = Cursive::default();
|
2016-07-24 23:53:12 +00:00
|
|
|
|
2019-09-09 21:45:07 +00:00
|
|
|
#[cfg(feature = "toml")]
|
|
|
|
{
|
|
|
|
// You can load a theme from a file at runtime for fast development.
|
|
|
|
siv.load_theme_file("assets/style.toml").unwrap();
|
2015-06-06 01:08:05 +00:00
|
|
|
|
2019-09-09 21:45:07 +00:00
|
|
|
// Or you can directly load it from a string for easy deployment.
|
|
|
|
siv.load_toml(include_str!("../assets/style.toml")).unwrap();
|
|
|
|
|
|
|
|
siv.add_layer(
|
|
|
|
Dialog::around(TextView::new(
|
|
|
|
"This application uses a \
|
|
|
|
custom theme!",
|
|
|
|
))
|
|
|
|
.title("Themed dialog")
|
|
|
|
.button("Quit", |s| s.quit()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "toml"))]
|
|
|
|
{
|
|
|
|
siv.add_layer(
|
|
|
|
Dialog::around(TextView::new(
|
|
|
|
"Run this example again with the `toml` feature!\n\n\
|
|
|
|
cargo run --example theme --features toml",
|
|
|
|
))
|
|
|
|
.title("Themed dialog - missing `toml` feature")
|
|
|
|
.button("Quit", |s| s.quit()),
|
|
|
|
);
|
|
|
|
}
|
2015-06-06 01:08:05 +00:00
|
|
|
|
|
|
|
siv.run();
|
|
|
|
}
|