我正在尝试gtk::ListBox
从不相关小部件的事件处理闭包中添加到容器中。有问题的列表框是通过gtk::Builder
如下方式获取的:
let notes_list: gtk::ListBox = builder.get_object(NOTES_LIST_BOX_ID).unwrap();
还有我似乎无法添加的事件处理程序notes_list
(请注意,我尝试过不使用clone!
宏,使用强引用和弱引用,包装Rc
指针等,但似乎没有任何改变):
open_menu_item.connect_activate(clone!(@strong state, @strong notes_list => move |_| {
println!("Open database menu item activated");
// Seemingly can't add to notes_list from within this closure???
notes_list.add(>k::Label::new(Some("TEST"))); // Doesn't work???
let dialog = gtk::FileChooserDialog::with_buttons::<gtk::Window>(
Some("Open database file"),
None,
gtk::FileChooserAction::Open,
&[("_Cancel", gtk::ResponseType::Cancel),
("_Open", gtk::ResponseType::Accept)]
);
dialog.connect_response(clone!(@weak state, @weak notes_list => move |this, res| {
if res == gtk::ResponseType::Accept {
let file = this.get_file().unwrap();
let path_buf = file.get_path().unwrap();
println!("Opening database file: {}", path_buf.as_path().display());
let mut state = state.borrow_mut();
state.db = database::database_in_file(path_buf.as_path()).ok();
state.update_notes_list(¬es_list);
}
this.close();
}));
dialog.show_all();
}));
没有出现错误消息 - 没有出现预期的行为(即向gtk::Label
列表框中添加 a)。
这个模块的完整代码(以及我杂乱的代码库的其余部分):https ://github.com/WiredSound/nos/blob/master/src/gui.rs
如果有人能帮我解决这个问题,我将不胜感激,谢谢。