Function rstk::wish::mainloop

source ·
pub fn mainloop()
Expand description

Loops while GUI events occur

Examples found in repository?
examples/hello-world-2.rs (line 15)
10
11
12
13
14
15
16
fn main() {
    let root = rstk::start_wish().unwrap();

    setup(&root);

    rstk::mainloop();
}
More examples
Hide additional examples
examples/hello-world.rs (line 11)
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    if let Ok(root) = rstk::start_wish() {

        let hello = rstk::make_label(&root);
        hello.text("Hello from Rust/Tk");

        hello.grid().row(0).column(0).layout();

        rstk::mainloop();
    } else {
        println!("Failed to start wish program");
    }
}