// Generated by gtkmmproc -- DO NOT MODIFY! #include #include #include // -*- c++ -*- /* $Id$ */ /* Copyright 2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include namespace { //This target name is used in the GTK+ implementation: const char treeview_target_row[] = "GTK_TREE_MODEL_ROW"; } // anonymous namespace namespace { //SignalProxy_Mapping: //This Signal Proxy allows the C++ coder to specify a sigc::slot instead of a static function. class SignalProxy_Mapping { public: typedef Gtk::TreeView::SlotMapping SlotType; SignalProxy_Mapping(const SlotType& slot); ~SignalProxy_Mapping(); static void gtk_callback(GtkTreeView* tree_view, GtkTreePath* path, void* data); protected: SlotType slot_; }; SignalProxy_Mapping::SignalProxy_Mapping(const SlotType& slot) : slot_ (slot) {} SignalProxy_Mapping::~SignalProxy_Mapping() {} void SignalProxy_Mapping::gtk_callback(GtkTreeView* tree_view, GtkTreePath* path, void* data) { SignalProxy_Mapping *const self = static_cast(data); try { (self->slot_)(Glib::wrap(tree_view), Gtk::TreePath(path, true)); } catch(...) { Glib::exception_handlers_invoke(); } } //SignalProxy_SearchEqual: //This Signal Proxy allows the C++ coder to specify a sigc::slot instead of a static function. class SignalProxy_SearchEqual { public: typedef Gtk::TreeView::SlotSearchEqual SlotType; SignalProxy_SearchEqual(const SlotType& slot); ~SignalProxy_SearchEqual(); static gboolean gtk_callback(GtkTreeModel* model, int column, const char* key, GtkTreeIter* iter, void* data); static void gtk_callback_destroy(void* data); protected: SlotType slot_; }; SignalProxy_SearchEqual::SignalProxy_SearchEqual(const SlotType& slot) : slot_ (slot) {} SignalProxy_SearchEqual::~SignalProxy_SearchEqual() {} gboolean SignalProxy_SearchEqual::gtk_callback(GtkTreeModel* model, int column, const char* key, GtkTreeIter* iter, void* data) { SignalProxy_SearchEqual *const self = static_cast(data); try { return (self->slot_)(Glib::wrap(model, true), column, key, Gtk::TreeIter(model, iter)); } catch(...) { Glib::exception_handlers_invoke(); } return 0; // arbitrary value } void SignalProxy_SearchEqual::gtk_callback_destroy(void* data) { delete static_cast(data); } //SignalProxy_ColumnDrop: //This Signal Proxy allows the C++ coder to specify a sigc::slot instead of a static function. class SignalProxy_ColumnDrop { public: typedef Gtk::TreeView::SlotColumnDrop SlotType; SignalProxy_ColumnDrop(const SlotType& slot); ~SignalProxy_ColumnDrop(); static gboolean gtk_callback(GtkTreeView* tree_view, GtkTreeViewColumn* column, GtkTreeViewColumn* prev_column, GtkTreeViewColumn* next_column, void* data); static void gtk_callback_destroy(void* data); protected: SlotType slot_; }; SignalProxy_ColumnDrop::SignalProxy_ColumnDrop(const SlotType& slot) : slot_ (slot) {} SignalProxy_ColumnDrop::~SignalProxy_ColumnDrop() {} gboolean SignalProxy_ColumnDrop::gtk_callback(GtkTreeView* tree_view, GtkTreeViewColumn* column, GtkTreeViewColumn* prev_column, GtkTreeViewColumn* next_column, void* data) { SignalProxy_ColumnDrop *const self = static_cast(data); try { return (self->slot_)(Glib::wrap(tree_view), Glib::wrap(column), Glib::wrap(prev_column), Glib::wrap(next_column)); } catch(...) { Glib::exception_handlers_invoke(); } return 0; // arbitrary value } void SignalProxy_ColumnDrop::gtk_callback_destroy(void* data) { delete static_cast(data); } } // anonymous namespace namespace Gtk { void TreeView::unset_hadjustment() { gtk_tree_view_set_hadjustment(gobj(), 0); } void TreeView::unset_vadjustment() { gtk_tree_view_set_vadjustment(gobj(), 0); } int TreeView::insert_column_with_data_func(int position, const Glib::ustring& title, CellRenderer& cell, const SlotCellData& slot) { //Create a signal proxy. A pointer to this will be passed through the callback's data parameter. //It will be deleted when TreeView_Private::SignalProxy_CellData::gtk_callback_destroy() is called. TreeView_Private::SignalProxy_CellData *const pSignalProxy = new TreeView_Private::SignalProxy_CellData(slot); return gtk_tree_view_insert_column_with_data_func( gobj(), position, title.c_str(), cell.gobj(), &TreeView_Private::SignalProxy_CellData::gtk_callback, pSignalProxy, &TreeView_Private::SignalProxy_CellData::gtk_callback_destroy); } void TreeView::set_cursor(const TreeModel::Path& path) { gtk_tree_view_set_cursor(gobj(), const_cast(path.gobj()), 0, false); } void TreeView::get_cursor(TreeModel::Path& path, TreeViewColumn*& focus_column) { GtkTreePath* pTreePath = 0; GtkTreeViewColumn* pTreeViewColumn = 0; gtk_tree_view_get_cursor(gobj(), &pTreePath, &pTreeViewColumn); path = TreeModel::Path(pTreePath, true); focus_column = Glib::wrap(pTreeViewColumn); } void TreeView::enable_model_drag_source(const ArrayHandle_TargetEntry& targets, Gdk::ModifierType start_button_mask, Gdk::DragAction actions) { gtk_tree_view_enable_model_drag_source( gobj(), (GdkModifierType) start_button_mask, targets.data(), targets.size(), (GdkDragAction) actions); } void TreeView::enable_model_drag_source(Gdk::ModifierType start_button_mask, Gdk::DragAction actions) { std::list listTargets; listTargets.push_back(TargetEntry(treeview_target_row)); enable_model_drag_source(listTargets, start_button_mask, actions); } void TreeView::enable_model_drag_dest(const ArrayHandle_TargetEntry& targets, Gdk::DragAction actions) { gtk_tree_view_enable_model_drag_dest( gobj(), targets.data(), targets.size(), (GdkDragAction) actions); } void TreeView::enable_model_drag_dest(Gdk::DragAction actions) { std::list listTargets; listTargets.push_back(TargetEntry(treeview_target_row)); enable_model_drag_dest(listTargets, actions); } bool TreeView::get_path_at_pos(int x, int y, TreeModel::Path& path, TreeViewColumn*& column, int& cell_x, int& cell_y) { GtkTreePath* pTreePath = 0; GtkTreeViewColumn* pTreeViewColumn = 0; bool result = gtk_tree_view_get_path_at_pos(gobj(), x, y, &pTreePath, &pTreeViewColumn, &cell_x, &cell_y); path = TreeModel::Path(pTreePath, false /* don't take a copy, because the gtk_tree_view_get_path_at_pos() docs say that we must free the path */ ); column = Glib::wrap(pTreeViewColumn); return result; } int TreeView::insert_column(const Glib::ustring& title, CellRenderer& cell, int position) { return gtk_tree_view_insert_column_with_attributes( gobj(), position, const_cast(title.c_str()), cell.gobj(), (void*)0); //Note that some compilers need the extra (void*) clue. } int TreeView::append_column(const Glib::ustring& title, CellRenderer& cell) { return insert_column(title, cell, -1 /* at the end */); } void TreeView::get_drag_dest_row(TreeModel::Path& path, TreeViewDropPosition& pos) const { GtkTreePath* pTreePath = 0; gtk_tree_view_get_drag_dest_row(const_cast(gobj()), &pTreePath, (GtkTreeViewDropPosition*) &pos); path = TreeModel::Path(pTreePath, true); //true = take_copy. } bool TreeView::get_dest_row_at_pos(int drag_x, int drag_y, TreeModel::Path& path, TreeViewDropPosition& pos) const { GtkTreePath* pTreePath = 0; const bool bResult = gtk_tree_view_get_dest_row_at_pos( const_cast(gobj()), drag_x, drag_y, &pTreePath, (GtkTreeViewDropPosition*) &pos); path = TreeModel::Path(pTreePath, true); //true = take_copy. return bResult; } void TreeView::map_expanded_rows(const SlotMapping& slot) { //Create a signal proxy. SignalProxy_Mapping signalProxy (slot); //It only needs to live as long as this method call. gtk_tree_view_map_expanded_rows(gobj(), &SignalProxy_Mapping::gtk_callback, &signalProxy); } void TreeView::set_search_equal_func(const SlotSearchEqual& slot) { //Create a signal proxy. A pointer to this will be passed through the callback's data parameter. //It will be deleted when SignalProxy_SearchEqual::gtk_callback_destroy() is called. SignalProxy_SearchEqual *const pSignalProxy = new SignalProxy_SearchEqual(slot); gtk_tree_view_set_search_equal_func(gobj(), &SignalProxy_SearchEqual::gtk_callback, pSignalProxy, &SignalProxy_SearchEqual::gtk_callback_destroy); } void TreeView::set_column_drag_function(const SlotColumnDrop& slot) { //Create a signal proxy. A pointer to this will be passed through the callback's data parameter. //It will be deleted when SignalProxy_ColumnDrop::gtk_callback_destroy() is called. SignalProxy_ColumnDrop *const pSignalProxy = new SignalProxy_ColumnDrop(slot); gtk_tree_view_set_column_drag_function(gobj(), &SignalProxy_ColumnDrop::gtk_callback, pSignalProxy, &SignalProxy_ColumnDrop::gtk_callback_destroy); } void TreeView::unset_column_drag_function() { gtk_tree_view_set_column_drag_function(gobj(), 0, 0, 0); /* See GTK+ docs about the 0s. */ } void TreeView::scroll_to_cell(const TreeModel::Path& path, TreeViewColumn& column, float row_align, float col_align) { gtk_tree_view_scroll_to_cell(gobj(), const_cast(path.gobj()), column.gobj(), TRUE, row_align, col_align); } void TreeView::scroll_to_cell(const TreeModel::Path& path, TreeViewColumn& column) { gtk_tree_view_scroll_to_cell(gobj(), const_cast(path.gobj()), column.gobj(), FALSE, 0.0, 0.0); } void TreeView::scroll_to_row(const TreeModel::Path& path, float row_align) { gtk_tree_view_scroll_to_cell(gobj(), const_cast(path.gobj()), 0, TRUE, row_align, 0.0); } void TreeView::scroll_to_row(const TreeModel::Path& path) { gtk_tree_view_scroll_to_cell(gobj(), const_cast(path.gobj()), 0, FALSE, 0.0, 0.0); } void TreeView::scroll_to_column(TreeViewColumn& column, float col_align) { gtk_tree_view_scroll_to_cell(gobj(), 0, column.gobj(), TRUE, 0.0, col_align); } void TreeView::scroll_to_column(TreeViewColumn& column) { gtk_tree_view_scroll_to_cell(gobj(), 0, column.gobj(), FALSE, 0.0, 0.0); } void TreeView::remove_all_columns() { //This method is not in GTK+, but it seems useful. //Remove all View columns: typedef std::list< Gtk::TreeView::Column* > type_vecViewColumns; type_vecViewColumns vecViewColumns = get_columns(); for(type_vecViewColumns::iterator iter = vecViewColumns.begin(); iter != vecViewColumns.end(); ++iter) { Gtk::TreeView::Column* pViewColumn = *iter; if(pViewColumn) remove_column(*pViewColumn); } } CellRenderer* TreeView::get_column_cell_renderer(int n) { TreeViewColumn* pColumn = get_column(n); if(pColumn) return pColumn->get_first_cell_renderer(); else return 0; } const CellRenderer* TreeView::get_column_cell_renderer(int n) const { //Do some const_cast-ing to avoid repetition of code: CellRenderer* pRenderer = const_cast(this)->get_column_cell_renderer(n); return pRenderer; } void TreeView::reset_expander_column() { gtk_tree_view_set_expander_column(gobj(), 0 /* see C docs */); } Glib::RefPtr TreeView::_get_base_model() { Glib::RefPtr refModel = get_model(); bool get_child = true; while(get_child && refModel) { Glib::RefPtr refModelFilter = Glib::RefPtr::cast_dynamic(refModel); if(refModelFilter) refModel = refModelFilter->get_model(); else get_child = false; } return refModel; } void TreeView::_auto_store_on_cellrenderer_toggle_edited(const Glib::ustring& path_string, int model_column) { Gtk::TreePath path (path_string); //Get the row from the path: Glib::RefPtr refModel = _get_base_model(); Gtk::TreeModel::iterator iter = refModel->get_iter(path); if(iter) { Gtk::TreeRow row = *iter; //Get the new value: //This seems to get the old value, not the new one, //so we will just NOT the model value ourselves. //bool bActive = cell_renderer->get_active(); bool bActive = false; row.get_value(model_column, bActive); bActive = !bActive; //Store the user's new text in the model: row.set_value(model_column, bActive); } } void TreeView::move_column_to_start(TreeViewColumn& column) { gtk_tree_view_move_column_after(gobj(), (column).gobj(), 0 /* See C docs */); } void TreeView::set_row_separator_func(const SlotRowSeparator& slot) { //Create a signal proxy. A pointer to this will be passed through the callback's data parameter. //It will be deleted when SignalProxy_RowSeparator::gtk_callback_destroy() is called. TreeView_Private::SignalProxy_RowSeparator *const pSignalProxy = new TreeView_Private::SignalProxy_RowSeparator(slot); gtk_tree_view_set_row_separator_func(gobj(), &TreeView_Private::SignalProxy_RowSeparator::gtk_callback, pSignalProxy, &TreeView_Private::SignalProxy_RowSeparator::gtk_callback_destroy); } } // namespace Gtk namespace { void TreeView_signal_set_scroll_adjustments_callback(GtkTreeView* self, GtkAdjustment* p0,GtkAdjustment* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,Adjustment*,Adjustment* > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(Glib::wrap(p0) , Glib::wrap(p1) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TreeView_signal_set_scroll_adjustments_info = { "set-scroll-adjustments", (GCallback) &TreeView_signal_set_scroll_adjustments_callback, (GCallback) &TreeView_signal_set_scroll_adjustments_callback }; void TreeView_signal_row_activated_callback(GtkTreeView* self, GtkTreePath* p0,GtkTreeViewColumn* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TreeModel::Path&,TreeViewColumn* > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(Gtk::TreePath(p0, true) , Glib::wrap(p1) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TreeView_signal_row_activated_info = { "row-activated", (GCallback) &TreeView_signal_row_activated_callback, (GCallback) &TreeView_signal_row_activated_callback }; gboolean TreeView_signal_test_expand_row_callback(GtkTreeView* self, GtkTreeIter* p0,GtkTreePath* p1,void* data) { using namespace Gtk; typedef sigc::slot< bool,const TreeModel::iterator&,const TreeModel::Path& > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) return static_cast((*static_cast(slot))(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) )); } catch(...) { Glib::exception_handlers_invoke(); } } typedef gboolean RType; return RType(); } gboolean TreeView_signal_test_expand_row_notify_callback(GtkTreeView* self, GtkTreeIter* p0,GtkTreePath* p1, void* data) { using namespace Gtk; typedef sigc::slot< void,const TreeModel::iterator&,const TreeModel::Path& > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } typedef gboolean RType; return RType(); } const Glib::SignalProxyInfo TreeView_signal_test_expand_row_info = { "test-expand-row", (GCallback) &TreeView_signal_test_expand_row_callback, (GCallback) &TreeView_signal_test_expand_row_notify_callback }; gboolean TreeView_signal_test_collapse_row_callback(GtkTreeView* self, GtkTreeIter* p0,GtkTreePath* p1,void* data) { using namespace Gtk; typedef sigc::slot< bool,const TreeModel::iterator&,const TreeModel::Path& > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) return static_cast((*static_cast(slot))(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) )); } catch(...) { Glib::exception_handlers_invoke(); } } typedef gboolean RType; return RType(); } gboolean TreeView_signal_test_collapse_row_notify_callback(GtkTreeView* self, GtkTreeIter* p0,GtkTreePath* p1, void* data) { using namespace Gtk; typedef sigc::slot< void,const TreeModel::iterator&,const TreeModel::Path& > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } typedef gboolean RType; return RType(); } const Glib::SignalProxyInfo TreeView_signal_test_collapse_row_info = { "test-collapse-row", (GCallback) &TreeView_signal_test_collapse_row_callback, (GCallback) &TreeView_signal_test_collapse_row_notify_callback }; void TreeView_signal_row_expanded_callback(GtkTreeView* self, GtkTreeIter* p0,GtkTreePath* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TreeModel::iterator&,const TreeModel::Path& > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TreeView_signal_row_expanded_info = { "row-expanded", (GCallback) &TreeView_signal_row_expanded_callback, (GCallback) &TreeView_signal_row_expanded_callback }; void TreeView_signal_row_collapsed_callback(GtkTreeView* self, GtkTreeIter* p0,GtkTreePath* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TreeModel::iterator&,const TreeModel::Path& > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { try { if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TreeView_signal_row_collapsed_info = { "row-collapsed", (GCallback) &TreeView_signal_row_collapsed_callback, (GCallback) &TreeView_signal_row_collapsed_callback }; const Glib::SignalProxyInfo TreeView_signal_cursor_changed_info = { "cursor-changed", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; const Glib::SignalProxyInfo TreeView_signal_columns_changed_info = { "columns-changed", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; } // anonymous namespace // static GType Glib::Value::value_type() { return gtk_tree_view_drop_position_get_type(); } namespace Glib { Gtk::TreeView* wrap(GtkTreeView* object, bool take_copy) { return dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)); } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& TreeView_Class::init() { if(!gtype_) // create the GType if necessary { // Glib::Class has to know the class init function to clone custom types. class_init_func_ = &TreeView_Class::class_init_function; // This is actually just optimized away, apparently with no harm. // Make sure that the parent type has been created. //CppClassParent::CppObjectType::get_type(); // Create the wrapper type, with the same class/instance size as the base type. register_derived_type(gtk_tree_view_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void TreeView_Class::class_init_function(void* g_class, void* class_data) { BaseClassType *const klass = static_cast(g_class); CppClassParent::class_init_function(klass, class_data); klass->set_scroll_adjustments = &set_scroll_adjustments_callback; klass->row_activated = &row_activated_callback; klass->test_expand_row = &test_expand_row_callback; klass->test_collapse_row = &test_collapse_row_callback; klass->row_expanded = &row_expanded_callback; klass->row_collapsed = &row_collapsed_callback; klass->cursor_changed = &cursor_changed_callback; klass->columns_changed = &columns_changed_callback; } void TreeView_Class::set_scroll_adjustments_callback(GtkTreeView* self, GtkAdjustment* p0, GtkAdjustment* p1) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. obj->on_set_scroll_adjustments(Glib::wrap(p0) , Glib::wrap(p1) ); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->set_scroll_adjustments) (*base->set_scroll_adjustments)(self, p0, p1); } } void TreeView_Class::row_activated_callback(GtkTreeView* self, GtkTreePath* p0, GtkTreeViewColumn* p1) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. obj->on_row_activated(Gtk::TreePath(p0, true) , Glib::wrap(p1) ); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->row_activated) (*base->row_activated)(self, p0, p1); } } gboolean TreeView_Class::test_expand_row_callback(GtkTreeView* self, GtkTreeIter* p0, GtkTreePath* p1) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. return static_cast(obj->on_test_expand_row(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) )); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->test_expand_row) return (*base->test_expand_row)(self, p0, p1); } typedef gboolean RType; return RType(); } gboolean TreeView_Class::test_collapse_row_callback(GtkTreeView* self, GtkTreeIter* p0, GtkTreePath* p1) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. return static_cast(obj->on_test_collapse_row(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) )); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->test_collapse_row) return (*base->test_collapse_row)(self, p0, p1); } typedef gboolean RType; return RType(); } void TreeView_Class::row_expanded_callback(GtkTreeView* self, GtkTreeIter* p0, GtkTreePath* p1) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. obj->on_row_expanded(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->row_expanded) (*base->row_expanded)(self, p0, p1); } } void TreeView_Class::row_collapsed_callback(GtkTreeView* self, GtkTreeIter* p0, GtkTreePath* p1) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. obj->on_row_collapsed(TreeModel::iterator(gtk_tree_view_get_model(self), p0) , Gtk::TreePath(p1, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->row_collapsed) (*base->row_collapsed)(self, p0, p1); } } void TreeView_Class::cursor_changed_callback(GtkTreeView* self) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. obj->on_cursor_changed(); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->cursor_changed) (*base->cursor_changed)(self); } } void TreeView_Class::columns_changed_callback(GtkTreeView* self) { CppObjectType *const obj = dynamic_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj && obj->is_derived_()) { try // Trap C++ exceptions which would normally be lost because this is a C callback. { // Call the virtual member method, which derived classes might override. obj->on_columns_changed(); } catch(...) { Glib::exception_handlers_invoke(); } } else { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->columns_changed) (*base->columns_changed)(self); } } Glib::ObjectBase* TreeView_Class::wrap_new(GObject* o) { return manage(new TreeView((GtkTreeView*)(o))); } /* The implementation: */ TreeView::TreeView(const Glib::ConstructParams& construct_params) : Gtk::Container(construct_params) { } TreeView::TreeView(GtkTreeView* castitem) : Gtk::Container((GtkContainer*)(castitem)) { } TreeView::~TreeView() { destroy_(); } TreeView::CppClassType TreeView::treeview_class_; // initialize static member GType TreeView::get_type() { return treeview_class_.init().get_type(); } GType TreeView::get_base_type() { return gtk_tree_view_get_type(); } TreeView::TreeView() : Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations. Gtk::Container(Glib::ConstructParams(treeview_class_.init())) { } TreeView::TreeView(const Glib::RefPtr& model) : Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations. Gtk::Container(Glib::ConstructParams(treeview_class_.init(), "model", Glib::unwrap(model), (char*) 0)) { } Glib::RefPtr TreeView::get_model() { Glib::RefPtr retvalue = Glib::wrap(gtk_tree_view_get_model(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr TreeView::get_model() const { Glib::RefPtr retvalue = Glib::wrap(gtk_tree_view_get_model(const_cast(gobj()))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } void TreeView::set_model(const Glib::RefPtr& model) { gtk_tree_view_set_model(gobj(), Glib::unwrap(model)); } Glib::RefPtr TreeView::get_selection() { Glib::RefPtr retvalue = Glib::wrap(gtk_tree_view_get_selection(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr TreeView::get_selection() const { Glib::RefPtr retvalue = Glib::wrap(gtk_tree_view_get_selection(const_cast(gobj()))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Adjustment* TreeView::get_hadjustment() { return Glib::wrap(gtk_tree_view_get_hadjustment(gobj())); } const Adjustment* TreeView::get_hadjustment() const { return Glib::wrap(gtk_tree_view_get_hadjustment(const_cast(gobj()))); } void TreeView::set_hadjustment(Adjustment& adjustment) { gtk_tree_view_set_hadjustment(gobj(), (adjustment).gobj()); } Adjustment* TreeView::get_vadjustment() { return Glib::wrap(gtk_tree_view_get_vadjustment(gobj())); } const Adjustment* TreeView::get_vadjustment() const { return Glib::wrap(gtk_tree_view_get_vadjustment(const_cast(gobj()))); } void TreeView::set_vadjustment(Adjustment& adjustment) { gtk_tree_view_set_vadjustment(gobj(), (adjustment).gobj()); } bool TreeView::get_headers_visible() const { return gtk_tree_view_get_headers_visible(const_cast(gobj())); } void TreeView::set_headers_visible(bool headers_visible) { gtk_tree_view_set_headers_visible(gobj(), static_cast(headers_visible)); } void TreeView::columns_autosize() { gtk_tree_view_columns_autosize(gobj()); } void TreeView::set_headers_clickable(bool setting) { gtk_tree_view_set_headers_clickable(gobj(), static_cast(setting)); } void TreeView::set_rules_hint(bool setting) { gtk_tree_view_set_rules_hint(gobj(), static_cast(setting)); } bool TreeView::get_rules_hint() const { return gtk_tree_view_get_rules_hint(const_cast(gobj())); } int TreeView::append_column(TreeViewColumn& column) { return gtk_tree_view_append_column(gobj(), (column).gobj()); } int TreeView::remove_column(TreeViewColumn& column) { return gtk_tree_view_remove_column(gobj(), (column).gobj()); } int TreeView::insert_column(TreeViewColumn& column, int position) { return gtk_tree_view_insert_column(gobj(), (column).gobj(), position); } TreeViewColumn* TreeView::get_column(int n) { return Glib::wrap(gtk_tree_view_get_column(gobj(), n)); } const TreeViewColumn* TreeView::get_column(int n) const { return Glib::wrap(gtk_tree_view_get_column(const_cast(gobj()), n)); } Glib::ListHandle TreeView::get_columns() { return Glib::ListHandle(gtk_tree_view_get_columns(gobj()), Glib::OWNERSHIP_SHALLOW); } Glib::ListHandle TreeView::get_columns() const { return Glib::ListHandle(gtk_tree_view_get_columns(const_cast(gobj())), Glib::OWNERSHIP_SHALLOW); } void TreeView::move_column_after(TreeViewColumn& column, TreeViewColumn& base_column) { gtk_tree_view_move_column_after(gobj(), (column).gobj(), (base_column).gobj()); } void TreeView::set_expander_column(TreeViewColumn& column) { gtk_tree_view_set_expander_column(gobj(), (column).gobj()); } TreeViewColumn* TreeView::get_expander_column() { return Glib::wrap(gtk_tree_view_get_expander_column(gobj())); } const TreeViewColumn* TreeView::get_expander_column() const { return Glib::wrap(gtk_tree_view_get_expander_column(const_cast(gobj()))); } void TreeView::scroll_to_point(int tree_x, int tree_y) { gtk_tree_view_scroll_to_point(gobj(), tree_x, tree_y); } void TreeView::row_activated(const TreeModel::Path& path, TreeViewColumn& column) { gtk_tree_view_row_activated(gobj(), const_cast((path).gobj()), (column).gobj()); } void TreeView::expand_all() { gtk_tree_view_expand_all(gobj()); } void TreeView::collapse_all() { gtk_tree_view_collapse_all(gobj()); } void TreeView::expand_to_path(const TreeModel::Path& path) { gtk_tree_view_expand_to_path(gobj(), const_cast((path).gobj())); } bool TreeView::expand_row(const TreeModel::Path& path, bool open_all) { return gtk_tree_view_expand_row(gobj(), const_cast((path).gobj()), static_cast(open_all)); } bool TreeView::collapse_row(const TreeModel::Path& path) { return gtk_tree_view_collapse_row(gobj(), const_cast((path).gobj())); } bool TreeView::row_expanded(const TreeModel::Path& path) { return gtk_tree_view_row_expanded(gobj(), const_cast((path).gobj())); } void TreeView::set_reorderable(bool reorderable) { gtk_tree_view_set_reorderable(gobj(), static_cast(reorderable)); } bool TreeView::get_reorderable() const { return gtk_tree_view_get_reorderable(const_cast(gobj())); } void TreeView::set_cursor(const TreeModel::Path& path, TreeViewColumn& focus_column, bool start_editing) { gtk_tree_view_set_cursor(gobj(), const_cast((path).gobj()), (focus_column).gobj(), static_cast(start_editing)); } void TreeView::set_cursor(const TreeModel::Path& path, TreeViewColumn& focus_column, CellRenderer& focus_cell, bool start_editing) { gtk_tree_view_set_cursor_on_cell(gobj(), const_cast((path).gobj()), (focus_column).gobj(), (focus_cell).gobj(), static_cast(start_editing)); } Glib::RefPtr TreeView::get_bin_window() { Glib::RefPtr retvalue = Glib::wrap((GdkWindowObject*)(gtk_tree_view_get_bin_window(gobj()))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr TreeView::get_bin_window() const { Glib::RefPtr retvalue = Glib::wrap((GdkWindowObject*)(gtk_tree_view_get_bin_window(const_cast(gobj())))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } void TreeView::get_cell_area(const TreeModel::Path& path, TreeViewColumn& column, Gdk::Rectangle& rect) { gtk_tree_view_get_cell_area(gobj(), const_cast((path).gobj()), (column).gobj(), (rect).gobj()); } void TreeView::get_background_area(const TreeModel::Path& path, TreeViewColumn& column, Gdk::Rectangle& rect) { gtk_tree_view_get_background_area(gobj(), const_cast((path).gobj()), (column).gobj(), (rect).gobj()); } void TreeView::get_visible_rect(Gdk::Rectangle& visible_rect) { gtk_tree_view_get_visible_rect(gobj(), (visible_rect).gobj()); } void TreeView::widget_to_tree_coords(int wx, int wy, int& tx, int& ty) { gtk_tree_view_widget_to_tree_coords(gobj(), wx, wy, &tx, &ty); } void TreeView::tree_to_widget_coords(int tx, int ty, int& wx, int& wy) { gtk_tree_view_tree_to_widget_coords(gobj(), tx, ty, &wx, &wy); } void TreeView::unset_rows_drag_source() { gtk_tree_view_unset_rows_drag_source(gobj()); } void TreeView::unset_rows_drag_dest() { gtk_tree_view_unset_rows_drag_dest(gobj()); } void TreeView::set_drag_dest_row(const TreeModel::Path& path, TreeViewDropPosition pos) { gtk_tree_view_set_drag_dest_row(gobj(), const_cast((path).gobj()), ((GtkTreeViewDropPosition)(pos))); } Glib::RefPtr TreeView::create_row_drag_icon(const TreeModel::Path& path) { return Glib::wrap((GdkPixmapObject*)(gtk_tree_view_create_row_drag_icon(gobj(), const_cast((path).gobj())))); } void TreeView::set_enable_search(bool enable_search) { gtk_tree_view_set_enable_search(gobj(), static_cast(enable_search)); } bool TreeView::get_enable_search() const { return gtk_tree_view_get_enable_search(const_cast(gobj())); } int TreeView::get_search_column() const { return gtk_tree_view_get_search_column(const_cast(gobj())); } void TreeView::set_search_column(const TreeModelColumnBase& column) { gtk_tree_view_set_search_column(gobj(), (column).index()); } void TreeView::set_search_column(int column) { gtk_tree_view_set_search_column(gobj(), column); } void TreeView::set_fixed_height_mode(bool enable) { gtk_tree_view_set_fixed_height_mode(gobj(), static_cast(enable)); } bool TreeView::get_fixed_height_mode() const { return gtk_tree_view_get_fixed_height_mode(const_cast(gobj())); } void TreeView::set_hover_selection(bool hover) { gtk_tree_view_set_hover_selection(gobj(), static_cast(hover)); } bool TreeView::get_hover_selection() const { return gtk_tree_view_get_hover_selection(const_cast(gobj())); } void TreeView::set_hover_expand(bool expand) { gtk_tree_view_set_hover_expand(gobj(), static_cast(expand)); } bool TreeView::get_hover_expand() const { return gtk_tree_view_get_hover_expand(const_cast(gobj())); } Glib::SignalProxy2< void,Adjustment*,Adjustment* > TreeView::signal_set_scroll_adjustments() { return Glib::SignalProxy2< void,Adjustment*,Adjustment* >(this, &TreeView_signal_set_scroll_adjustments_info); } Glib::SignalProxy2< void,const TreeModel::Path&,TreeViewColumn* > TreeView::signal_row_activated() { return Glib::SignalProxy2< void,const TreeModel::Path&,TreeViewColumn* >(this, &TreeView_signal_row_activated_info); } Glib::SignalProxy2< bool,const TreeModel::iterator&,const TreeModel::Path& > TreeView::signal_test_expand_row() { return Glib::SignalProxy2< bool,const TreeModel::iterator&,const TreeModel::Path& >(this, &TreeView_signal_test_expand_row_info); } Glib::SignalProxy2< bool,const TreeModel::iterator&,const TreeModel::Path& > TreeView::signal_test_collapse_row() { return Glib::SignalProxy2< bool,const TreeModel::iterator&,const TreeModel::Path& >(this, &TreeView_signal_test_collapse_row_info); } Glib::SignalProxy2< void,const TreeModel::iterator&,const TreeModel::Path& > TreeView::signal_row_expanded() { return Glib::SignalProxy2< void,const TreeModel::iterator&,const TreeModel::Path& >(this, &TreeView_signal_row_expanded_info); } Glib::SignalProxy2< void,const TreeModel::iterator&,const TreeModel::Path& > TreeView::signal_row_collapsed() { return Glib::SignalProxy2< void,const TreeModel::iterator&,const TreeModel::Path& >(this, &TreeView_signal_row_collapsed_info); } Glib::SignalProxy0< void > TreeView::signal_cursor_changed() { return Glib::SignalProxy0< void >(this, &TreeView_signal_cursor_changed_info); } Glib::SignalProxy0< void > TreeView::signal_columns_changed() { return Glib::SignalProxy0< void >(this, &TreeView_signal_columns_changed_info); } Glib::PropertyProxy< Glib::RefPtr > TreeView::property_model() { return Glib::PropertyProxy< Glib::RefPtr >(this, "model"); } Glib::PropertyProxy_ReadOnly< Glib::RefPtr > TreeView::property_model() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "model"); } Glib::PropertyProxy TreeView::property_hadjustment() { return Glib::PropertyProxy(this, "hadjustment"); } Glib::PropertyProxy_ReadOnly TreeView::property_hadjustment() const { return Glib::PropertyProxy_ReadOnly(this, "hadjustment"); } Glib::PropertyProxy TreeView::property_vadjustment() { return Glib::PropertyProxy(this, "vadjustment"); } Glib::PropertyProxy_ReadOnly TreeView::property_vadjustment() const { return Glib::PropertyProxy_ReadOnly(this, "vadjustment"); } Glib::PropertyProxy TreeView::property_headers_visible() { return Glib::PropertyProxy(this, "headers-visible"); } Glib::PropertyProxy_ReadOnly TreeView::property_headers_visible() const { return Glib::PropertyProxy_ReadOnly(this, "headers-visible"); } Glib::PropertyProxy TreeView::property_headers_clickable() { return Glib::PropertyProxy(this, "headers-clickable"); } Glib::PropertyProxy_ReadOnly TreeView::property_headers_clickable() const { return Glib::PropertyProxy_ReadOnly(this, "headers-clickable"); } Glib::PropertyProxy TreeView::property_expander_column() { return Glib::PropertyProxy(this, "expander-column"); } Glib::PropertyProxy_ReadOnly TreeView::property_expander_column() const { return Glib::PropertyProxy_ReadOnly(this, "expander-column"); } Glib::PropertyProxy TreeView::property_reorderable() { return Glib::PropertyProxy(this, "reorderable"); } Glib::PropertyProxy_ReadOnly TreeView::property_reorderable() const { return Glib::PropertyProxy_ReadOnly(this, "reorderable"); } Glib::PropertyProxy TreeView::property_rules_hint() { return Glib::PropertyProxy(this, "rules-hint"); } Glib::PropertyProxy_ReadOnly TreeView::property_rules_hint() const { return Glib::PropertyProxy_ReadOnly(this, "rules-hint"); } Glib::PropertyProxy TreeView::property_enable_search() { return Glib::PropertyProxy(this, "enable-search"); } Glib::PropertyProxy_ReadOnly TreeView::property_enable_search() const { return Glib::PropertyProxy_ReadOnly(this, "enable-search"); } Glib::PropertyProxy TreeView::property_search_column() { return Glib::PropertyProxy(this, "search-column"); } Glib::PropertyProxy_ReadOnly TreeView::property_search_column() const { return Glib::PropertyProxy_ReadOnly(this, "search-column"); } Glib::PropertyProxy TreeView::property_fixed_height_mode() { return Glib::PropertyProxy(this, "fixed-height-mode"); } Glib::PropertyProxy_ReadOnly TreeView::property_fixed_height_mode() const { return Glib::PropertyProxy_ReadOnly(this, "fixed-height-mode"); } Glib::PropertyProxy TreeView::property_hover_selection() { return Glib::PropertyProxy(this, "hover-selection"); } Glib::PropertyProxy_ReadOnly TreeView::property_hover_selection() const { return Glib::PropertyProxy_ReadOnly(this, "hover-selection"); } Glib::PropertyProxy TreeView::property_hover_expand() { return Glib::PropertyProxy(this, "hover-expand"); } Glib::PropertyProxy_ReadOnly TreeView::property_hover_expand() const { return Glib::PropertyProxy_ReadOnly(this, "hover-expand"); } void Gtk::TreeView::on_set_scroll_adjustments(Adjustment* hadjustment, Adjustment* vadjustment) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->set_scroll_adjustments) (*base->set_scroll_adjustments)(gobj(),(GtkAdjustment*)Glib::unwrap(hadjustment),(GtkAdjustment*)Glib::unwrap(vadjustment)); } void Gtk::TreeView::on_row_activated(const TreeModel::Path& path, TreeViewColumn* column) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->row_activated) (*base->row_activated)(gobj(),const_cast((path).gobj()),(GtkTreeViewColumn*)Glib::unwrap(column)); } bool Gtk::TreeView::on_test_expand_row(const TreeModel::iterator& iter, const TreeModel::Path& path) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->test_expand_row) return (*base->test_expand_row)(gobj(),const_cast((iter).gobj()),const_cast((path).gobj())); typedef bool RType; return RType(); } bool Gtk::TreeView::on_test_collapse_row(const TreeModel::iterator& iter, const TreeModel::Path& path) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->test_collapse_row) return (*base->test_collapse_row)(gobj(),const_cast((iter).gobj()),const_cast((path).gobj())); typedef bool RType; return RType(); } void Gtk::TreeView::on_row_expanded(const TreeModel::iterator& iter, const TreeModel::Path& path) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->row_expanded) (*base->row_expanded)(gobj(),const_cast((iter).gobj()),const_cast((path).gobj())); } void Gtk::TreeView::on_row_collapsed(const TreeModel::iterator& iter, const TreeModel::Path& path) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->row_collapsed) (*base->row_collapsed)(gobj(),const_cast((iter).gobj()),const_cast((path).gobj())); } void Gtk::TreeView::on_cursor_changed() { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->cursor_changed) (*base->cursor_changed)(gobj()); } void Gtk::TreeView::on_columns_changed() { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->columns_changed) (*base->columns_changed)(gobj()); } } // namespace Gtk