我有没有管理某些线程的 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
}
//..