如何将代码集成到GTK主循环中?

时间:2017-05-09 23:17:16

标签: rust gtk gtk-rs

我有没有管理一些线程的GUI的工作代码。现在我想将它与在GTK中创建的GUI集成。它使用test_glade构建GUI,使用gtk::main

fn main() {

    //..
    test_glade();
    //..

    // Question about this
    while estado < 4 {

        if *count.lock().unwrap() == arc_pref.cantidad {
            estado = 3;     
        }else if estado == 2{
            estado = 1;
        }else if estado == 1{
            estado = 2;
        }else if *count.lock().unwrap() == 0 && estado == 3{
            estado = 1;
        }
        //..

        estados(count.clone(), arc_pref.clone(), estado).join();
    }

}

fn test_glade(){

    gtk::init();  
    //..
    window.show_all();  
    gtk::main();//main loop gtk
}
//..

看了之后,我发现这是主循环,所以我的代码没有运行。

//..
test_glade();
//..

// Question about this
while estado < 4 {
    //..
    estados(count.clone(), arc_pref.clone(), estado).join();
}

如何将使用某些线程的代码集成到GTK主循环中?

现在我已经创建了一个新线程,并且已经将代码放在线程中,它似乎可以工作:

fn test_glade(){

    gtk::init();  
    //..
    thread::spawn(move|| {
        //code Question

    });
    //..
    window.show_all();  
    gtk::main();//main loop gtk
}
//..

0 个答案:

没有答案