Glade/gtkmm TreeView
问题 In following up with an answer to my previous question on this issue, I've made some progress and am looking for the next bit of guidance. In brief, I'm having trouble loading up a Treeview from Glade with a gtkmm application. To start, here's the source. The class: typedef struct { Gtk::Window *window_info; Gtk::TreeView *treeview_info; Glib::RefPtr<Gtk::ListStore> liststore_info; class InfoColumns : public Gtk::TreeModel::ColumnRecord { public: InfoColumns() { add(time); add(message); } Gtk