我正在学习如何使用 GTKmm,而且我很难弄清楚如何将图像放入树视图中。我使用 Glade 创建了一个包含 3 列的树库,其中之一是GdkPixbuf
名为store_pixbuf
. 我还在林间空地创建了一个树视图,其中有一列同时具有一个称为 pixbuf 单元格渲染器int_col_pict
和一个 char 数组单元格渲染器。在我的代码中,我对树存储有通常的MyColumns
定义,例如:
class MyModelColumns : public Gtk::TreeModel::ColumnRecord
{
public:
Gtk::TreeModelColumn<Glib::ustring> store_hostname;
Gtk::TreeModelColumn<Glib::ustring> store_intname;
Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > store_pict;
MyModelColumns () { add(store_hostname); add(store_intname); add(store_pict);}
};
并使用以下代码填充它。
//Get a pointer to the treestore
Glib::RefPtr<Gtk::TreeStore> treestore = Glib::RefPtr<Gtk::TreeStore>::cast_static(builder->get_object("routerTreeStore"));
//make sure the pointer isn't bad
if(treestore){
MyModelColumns columns;
//populate the first column
Gtk::TreeRow row= *(treestore->append());
row[columns.store_hostname] = router->hostname;
//populate all children
for(int i=0; i<router->interfaces.size(); i++)
{
//append child row
Gtk::TreeRow child = *(treestore->append(row.children()));
//insert data into the row
child[columns.store_pict] = Gdk::Pixbuf::create_from_file("red_dot.png");
child[columns.store_intname] = router->interfaces[i].interfaceName;
}
}//if
我最初尝试使用股票图像,但我无法弄清楚我应该使用什么功能,所以我尝试使用Gdk::Pixbuf::create_from_file()
(如您在上面看到的),但在运行时我收到以下错误:
Gtk-WARNING **: gtktreestore.c:765: Unable to convert from GdkPixbuf to gtkmm__GdkPixbuf
单击此处查看运行的样子。该图像应该与“FastEthernet ...”行在同一行
有谁知道我该如何解决这个问题?我完全错了吗?感谢您的关注,感谢您的每一点帮助!