我有一个带有 Gtk::TreeView 的对话框窗口。这个 dialod 显示主文件系统树并提供选择磁盘上的文件夹的选项。当用户选择某个文件夹时,我将 Gtk::Stock 图像添加到代表该文件夹的行中。
为此,我创建了一个与树的最后一列关联的 Gtk::CellRendererPixbuf:
//appending columns
directory_tree.append_column("Folder List", dir_columns.name);
Gtk::TreeViewColumn *column = directory_tree.get_column(0);
if(column) column->set_expand(true);
Gtk::CellRendererPixbuf *cell = Gtk::manage(new Gtk::CellRendererPixbuf);
directory_tree.append_column("", *cell);
column = directory_tree.get_column(1);
if(column) column->add_attribute(cell->property_stock_id(), dir_columns.stock_id);
链接到这段代码:https ://github.com/mc-suchecki/Imagine/blob/master/gui/dialogs.cpp#L47
Gtk::CellRendererPixbuf 将在 'dir_columns.stock_id' 中找到的 Gtk::StockId “翻译”为位于树中的图像。当我像这样将图像添加到行时:
//selecting folder
(*folder)[fs_columns.stock_id] = Gtk::StockID(Gtk::Stock::FIND).get_string();
(*folder)[fs_columns.included] = true;
一切都很好,但是当我尝试以这种方式删除图像时:
//unselecting folder
(*folder)[fs_columns.stock_id] = "";
(*folder)[fs_columns.included] = false;
图像正确地消失了,但是这样的命令行中有一些错误(这不是确切的消息,我会在能够启动我的应用程序时发布它):
(imagine:9376): Gtk-WARNING **: Gtk StockId not found
当然警告的原因是显而易见的(没有与空白名称关联的 StockId 项),但是我的问题是:有没有办法从 Gtk::TreeView 行中删除不会生成任何 Gtk 警告的图像?
我取消选择文件夹的代码在这里: https ://github.com/mc-suchecki/Imagine/blob/master/core/core.cpp#L207
非常感谢您,对我的英语感到抱歉。