// Generated by gtkmmproc -- DO NOT MODIFY! #include #include // -*- c++ -*- /* $Id$ */ /* Copyright(C) 1998-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 namespace Gtk { typedef TextChildAnchor ChildAnchor; //Help the code-generator so that it does not have to fully qualify this type in the .cc file. TextBuffer::TextBuffer(const Glib::RefPtr& tag_table) : Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations. Glib::Object(Glib::ConstructParams(textbuffer_class_.init(), "tag_table",Glib::unwrap(tag_table), (char*) 0)) {} Glib::RefPtr TextBuffer::create_tag(const Glib::ustring& tag_name) { //gtk_text_buffer_create_tag takes a varargs list of property names and values. //gtkmm coders should use the Tag.set_* method instead. return Glib::wrap(gtk_text_buffer_create_tag(gobj(), tag_name.c_str(), (char*)0), true); //true = take_copy. //We have to take a copy because gtk_text_buffer_create_tag() doesn't ref for us, for no real reason. } Glib::RefPtr TextBuffer::create_tag() { //gtk_text_buffer_create_tag takes a varargs list of property names and values. //gtkmm coders should use the Tag.set_* method instead. return Glib::wrap(gtk_text_buffer_create_tag(gobj(), (const char*)0, (char*)0), true); //true = take_copy. //We have to take a copy because gtk_text_buffer_create_tag() doesn't ref for us, for no real reason. } Glib::RefPtr TextBuffer::create_mark(const TextBuffer::iterator& where, bool left_gravity) { return Glib::wrap(gtk_text_buffer_create_mark( gobj(), 0, const_cast(where.gobj()), left_gravity), true); // acquire reference } TextBuffer::iterator TextBuffer::get_iter_at_line_offset(int line_number, int char_offset) { iterator iter; gtk_text_buffer_get_iter_at_line_offset(gobj(), iter.gobj(), line_number, char_offset); return iter; } TextBuffer::iterator TextBuffer::get_iter_at_line_index(int line_number, int byte_index) { iterator iter; gtk_text_buffer_get_iter_at_line_index(gobj(), iter.gobj(), line_number, byte_index); return iter; } TextBuffer::iterator TextBuffer::get_iter_at_offset(int char_offset) { iterator iter; gtk_text_buffer_get_iter_at_offset(gobj(), iter.gobj(), char_offset); return iter; } TextBuffer::iterator TextBuffer::get_iter_at_line(int line_number) { iterator iter; gtk_text_buffer_get_iter_at_line(gobj(), iter.gobj(), line_number); return iter; } TextBuffer::iterator TextBuffer::begin() { iterator iter; gtk_text_buffer_get_start_iter(gobj(), iter.gobj()); return iter; } TextBuffer::iterator TextBuffer::end() { iterator iter; gtk_text_buffer_get_end_iter(gobj(), iter.gobj()); return iter; } void TextBuffer::get_bounds(iterator& range_begin, iterator& range_end) { gtk_text_buffer_get_bounds(gobj(), range_begin.gobj(), range_end.gobj()); } TextBuffer::iterator TextBuffer::get_iter_at_mark(const Glib::RefPtr& mark) { iterator iter; gtk_text_buffer_get_iter_at_mark(gobj(), iter.gobj(), mark->gobj()); return iter; } void TextBuffer::set_text(const Glib::ustring& text) { gtk_text_buffer_set_text(gobj(), text.data(), text.bytes()); } void TextBuffer::set_text(const char* text_begin, const char* text_end) { gtk_text_buffer_set_text(gobj(), text_begin, text_end - text_begin); } //deprecated: void TextBuffer::assign(const Glib::ustring& text) { gtk_text_buffer_set_text(gobj(), text.data(), text.bytes()); } //deprecated: void TextBuffer::assign(const char* text_begin, const char* text_end) { gtk_text_buffer_set_text(gobj(), text_begin, text_end - text_begin); } TextBuffer::iterator TextBuffer::insert(const iterator& pos, const Glib::ustring& text) { // gtk_text_buffer_insert() modifies the iterator, but that's not the // STL way so we give it something that we don't mind it modifying. iterator iterCopy (pos); gtk_text_buffer_insert(gobj(), iterCopy.gobj(), text.data(), text.bytes()); // According to the gtk_text_buffer_insert() docs, the "default signal handler // revalidates it to point to the end of the inserted text". return iterCopy; } TextBuffer::iterator TextBuffer::insert(const iterator& pos, const char* text_begin, const char* text_end) { // gtk_text_buffer_insert() modifies the iterator, but that's not the // STL way so we give it something that we don't mind it modifying. iterator iterCopy (pos); gtk_text_buffer_insert(gobj(), iterCopy.gobj(), text_begin, text_end - text_begin); // According to the gtk_text_buffer_insert() docs, the "default signal handler // revalidates it to point to the end of the inserted text". return iterCopy; } TextBuffer::iterator TextBuffer::insert_pixbuf(const iterator& pos, const Glib::RefPtr& pixbuf) { iterator iterCopy (pos); gtk_text_buffer_insert_pixbuf(gobj(), iterCopy.gobj(), pixbuf->gobj()); return iterCopy; } TextBuffer::iterator TextBuffer::insert_child_anchor(const iterator& pos, const Glib::RefPtr& anchor) { // Copy the iterator. It might be changed because it is used as a signal parameter internally. iterator iterCopy (pos); gtk_text_buffer_insert_child_anchor(gobj(), iterCopy.gobj(), Glib::unwrap(anchor)); return iterCopy; } Glib::RefPtr TextBuffer::create_child_anchor(const iterator& pos) { // Copy the iterator. It might be changed because it is used as a signal parameter internally. iterator iterCopy (pos); return Glib::wrap(gtk_text_buffer_create_child_anchor(gobj(), iterCopy.gobj()), true); // The function does not do a ref for us. } void TextBuffer::insert_at_cursor(const Glib::ustring& text) { gtk_text_buffer_insert_at_cursor(gobj(), text.data(), text.bytes()); } void TextBuffer::insert_at_cursor(const char* text_begin, const char* text_end) { gtk_text_buffer_insert_at_cursor(gobj(), text_begin, text_end - text_begin); } std::pair TextBuffer::insert_interactive(const iterator& pos, const Glib::ustring& text, bool default_editable) { // Since we have to copy the iterator anyway we can as well create the // std::pair now. That saves another copy later (mind you, TextIter is // a heavy struct), and allows modern compilers to apply the return value // optimization. std::pair pair_iter_success (pos, false); pair_iter_success.second = gtk_text_buffer_insert_interactive( gobj(), pair_iter_success.first.gobj(), text.data(), text.bytes(), default_editable); return pair_iter_success; } std::pair TextBuffer::insert_interactive(const iterator& pos, const char* text_begin, const char* text_end, bool default_editable) { // Since we have to copy the iterator anyway we can as well create the // std::pair now. That saves another copy later (mind you, TextIter is // a heavy struct), and allows modern compilers to apply the return value // optimization. std::pair pair_iter_success (pos, false); pair_iter_success.second = gtk_text_buffer_insert_interactive( gobj(), pair_iter_success.first.gobj(), text_begin, text_end - text_begin, default_editable); return pair_iter_success; } bool TextBuffer::insert_interactive_at_cursor(const Glib::ustring& text, bool default_editable) { return gtk_text_buffer_insert_interactive_at_cursor( gobj(), text.data(), text.bytes(), default_editable); } bool TextBuffer::insert_interactive_at_cursor(const char* text_begin, const char* text_end, bool default_editable) { return gtk_text_buffer_insert_interactive_at_cursor( gobj(), text_begin, text_end - text_begin, default_editable); } TextBuffer::iterator TextBuffer::insert_with_tag(const iterator& pos, const Glib::ustring& text, const Glib::RefPtr& tag) { // gtk_text_buffer_insert_with_tags() invalidates the iterator, but this lets us recreate it later. const int offset = pos.get_offset(); iterator iterCopy (pos); gtk_text_buffer_insert_with_tags( gobj(), iterCopy.gobj(), text.data(), text.bytes(), tag->gobj(), (GtkTextTag*)0); return get_iter_at_offset(offset + text.size()); } TextBuffer::iterator TextBuffer::insert_with_tag(const iterator& pos, const char* text_begin, const char* text_end, const Glib::RefPtr& tag) { // gtk_text_buffer_insert_with_tags() invalidates the iterator, but this lets us recreate it later. const int offset = pos.get_offset(); iterator iterCopy (pos); gtk_text_buffer_insert_with_tags( gobj(), iterCopy.gobj(), text_begin, text_end - text_begin, tag->gobj(), (GtkTextTag*)0); return get_iter_at_offset(offset + (text_end - text_begin)); } TextBuffer::iterator TextBuffer::insert_with_tag(const iterator& pos, const Glib::ustring& text, const Glib::ustring& tag_name) { // gtk_text_buffer_insert_with_tags() invalidates the iterator, but this lets us recreate it later. const int offset = pos.get_offset(); iterator iterCopy (pos); gtk_text_buffer_insert_with_tags_by_name( gobj(), iterCopy.gobj(), text.data(), text.bytes(), tag_name.c_str(), (char*)0); return get_iter_at_offset(offset + text.size()); } TextBuffer::iterator TextBuffer::insert_with_tag(const iterator& pos, const char* text_begin, const char* text_end, const Glib::ustring& tag_name) { // gtk_text_buffer_insert_with_tags() invalidates the iterator, but this lets us recreate it later. const int offset = pos.get_offset(); iterator iterCopy (pos); gtk_text_buffer_insert_with_tags_by_name( gobj(), iterCopy.gobj(), text_begin, text_end - text_begin, tag_name.c_str(), (char*)0); return get_iter_at_offset(offset + (text_end - text_begin)); } TextBuffer::iterator TextBuffer::insert_with_tags(const iterator& pos, const Glib::ustring& text, const Glib::ArrayHandle< Glib::RefPtr >& tags) { const char *const text_begin = text.data(); return insert_with_tags(pos, text_begin, text_begin + text.bytes(), tags); } TextBuffer::iterator TextBuffer::insert_with_tags(const iterator& pos, const char* text_begin, const char* text_end, const Glib::ArrayHandle< Glib::RefPtr >& tags) { const int start_offset = pos.get_offset(); iterator range_end (insert(pos, text_begin, text_end)); GtkTextIter range_begin; gtk_text_buffer_get_iter_at_offset(gobj(), &range_begin, start_offset); //This was GtkTextTag* const * const, but the SUN Forte compiler said that it couldn't convert to that. murrayc const GtkTextTag* const* tags_begin = tags.data(); const GtkTextTag* const* tags_end = tags_begin + tags.size(); //TODO: Investigate if this const_cast<> is really necessary. //I added it for the SUN Forte compiler. murrayc. for(GtkTextTag *const * ptag = const_cast(tags_begin); ptag != const_cast(tags_end); ++ptag) { gtk_text_buffer_apply_tag(gobj(), *ptag, &range_begin, range_end.gobj()); } return range_end; } TextBuffer::iterator TextBuffer::insert_with_tags_by_name(const iterator& pos, const Glib::ustring& text, const Glib::ArrayHandle& tag_names) { const char *const text_begin = text.data(); return insert_with_tags_by_name(pos, text_begin, text_begin + text.bytes(), tag_names); } TextBuffer::iterator TextBuffer::insert_with_tags_by_name(const iterator& pos, const char* text_begin, const char* text_end, const Glib::ArrayHandle& tag_names) { // gtk_buffer_insert_with_tags_by_name() is a convenience wrapper, so it's kind of OK to reimplement it: const int start_offset = pos.get_offset(); iterator range_end (insert(pos, text_begin, text_end)); GtkTextIter range_begin; gtk_text_buffer_get_iter_at_offset(gobj(), &range_begin, start_offset); GtkTextTagTable *const tag_table = gtk_text_buffer_get_tag_table(gobj()); const char *const *const names_begin = tag_names.data(); const char *const *const names_end = names_begin + tag_names.size(); for(const char *const * pname = names_begin; pname != names_end; ++pname) { if(GtkTextTag *const tag = gtk_text_tag_table_lookup(tag_table, *pname)) { gtk_text_buffer_apply_tag(gobj(), tag, &range_begin, range_end.gobj()); } else { g_warning("Gtk::TextBuffer::insert_with_tags_by_name(): no tag with name '%s'!", *pname); } } return range_end; } TextBuffer::iterator TextBuffer::insert(const iterator& pos, const iterator& range_begin, const iterator& range_end) { iterator iterCopy (pos); gtk_text_buffer_insert_range(gobj(), iterCopy.gobj(), range_begin.gobj(), range_end.gobj()); return iterCopy; } std::pair TextBuffer::insert_interactive(const iterator& pos, const iterator& range_begin, const iterator& range_end, bool default_editable) { // Since we have to copy the iterator anyway we can as well create the // std::pair now. That saves another copy later (mind you, TextIter is // a heavy struct), and allows modern compilers to apply the return value // optimization. std::pair pair_iter_success (pos, false); pair_iter_success.second = gtk_text_buffer_insert_range_interactive( gobj(), pair_iter_success.first.gobj(), range_begin.gobj(), range_end.gobj(), default_editable); return pair_iter_success; } TextBuffer::iterator TextBuffer::erase(const iterator& range_begin, const iterator& range_end) { // GTK+ sets the iterators to where the deletion occured. We do it the STL way and therefore need copies. iterator beginCopy (range_begin); iterator endCopy (range_end); gtk_text_buffer_delete(gobj(), beginCopy.gobj(), endCopy.gobj()); return beginCopy; } TextBuffer::iterator TextBuffer::backspace(const iterator& iter, bool interactive, bool default_editable) { // GTK+ sets the iterators to where the deletion occured. We do it the STL way and therefore need copies. iterator copy(iter); gtk_text_buffer_backspace(gobj(), copy.gobj(), interactive, default_editable); return copy; } std::pair TextBuffer::erase_interactive(const iterator& range_begin, const iterator& range_end, bool default_editable) { // Since we have to copy the iterator anyway we can as well create the // std::pair now. That saves another copy later (mind you, TextIter is // a heavy struct), and allows modern compilers to apply the return value // optimization. std::pair pair_iter_success (range_begin, false); // GTK+ sets the iterators to where the deletion occured. // We do it the STL way and therefore need copies. iterator endCopy (range_end); pair_iter_success.second = gtk_text_buffer_delete_interactive( gobj(), pair_iter_success.first.gobj(), endCopy.gobj(), default_editable); return pair_iter_success; } void TextBuffer::paste_clipboard(const Glib::RefPtr& clipboard, const iterator& override_location, bool default_editable) { gtk_text_buffer_paste_clipboard(gobj(), clipboard->gobj(), const_cast(override_location.gobj()), default_editable); } void TextBuffer::paste_clipboard(const Glib::RefPtr& clipboard, bool default_editable) { gtk_text_buffer_paste_clipboard(gobj(), clipboard->gobj(), 0, default_editable); } TextBuffer::iterator TextBuffer::get_iter_at_child_anchor(const Glib::RefPtr& anchor) { iterator iter; gtk_text_buffer_get_iter_at_child_anchor(gobj(), iter.gobj(), anchor->gobj()); return iter; } int TextBuffer::size() const { return get_char_count(); } Glib::ustring TextBuffer::get_text(bool include_hidden_chars) { return get_text(begin(), end(), include_hidden_chars); } } // namespace Gtk namespace { void TextBuffer_signal_insert_callback(GtkTextBuffer* self, GtkTextIter* p0,const gchar* p1,gint p2,void* data) { using namespace Gtk; typedef sigc::slot< void,const TextBuffer::iterator&,const Glib::ustring&,int > 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::ustring(p1, p1 + p2) , p2 ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_insert_info = { "insert_text", (GCallback) &TextBuffer_signal_insert_callback, (GCallback) &TextBuffer_signal_insert_callback }; void TextBuffer_signal_insert_pixbuf_callback(GtkTextBuffer* self, GtkTextIter* p0,GdkPixbuf* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TextBuffer::iterator&,const Glib::RefPtr& > 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, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_insert_pixbuf_info = { "insert_pixbuf", (GCallback) &TextBuffer_signal_insert_pixbuf_callback, (GCallback) &TextBuffer_signal_insert_pixbuf_callback }; void TextBuffer_signal_insert_child_anchor_callback(GtkTextBuffer* self, GtkTextIter* p0,GtkTextChildAnchor* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TextBuffer::iterator&,const Glib::RefPtr& > 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, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_insert_child_anchor_info = { "insert_child_anchor", (GCallback) &TextBuffer_signal_insert_child_anchor_callback, (GCallback) &TextBuffer_signal_insert_child_anchor_callback }; void TextBuffer_signal_erase_callback(GtkTextBuffer* self, GtkTextIter* p0,GtkTextIter* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TextBuffer::iterator&,const TextBuffer::iterator& > 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 TextBuffer_signal_erase_info = { "delete_range", (GCallback) &TextBuffer_signal_erase_callback, (GCallback) &TextBuffer_signal_erase_callback }; const Glib::SignalProxyInfo TextBuffer_signal_changed_info = { "changed", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; const Glib::SignalProxyInfo TextBuffer_signal_modified_changed_info = { "modified_changed", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; void TextBuffer_signal_mark_set_callback(GtkTextBuffer* self, const GtkTextIter* p0,GtkTextMark* p1,void* data) { using namespace Gtk; typedef sigc::slot< void,const TextBuffer::iterator&,const Glib::RefPtr& > 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, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_mark_set_info = { "mark_set", (GCallback) &TextBuffer_signal_mark_set_callback, (GCallback) &TextBuffer_signal_mark_set_callback }; void TextBuffer_signal_mark_deleted_callback(GtkTextBuffer* self, GtkTextMark* p0,void* data) { using namespace Gtk; typedef sigc::slot< void,const Glib::RefPtr& > 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, true) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_mark_deleted_info = { "mark_deleted", (GCallback) &TextBuffer_signal_mark_deleted_callback, (GCallback) &TextBuffer_signal_mark_deleted_callback }; void TextBuffer_signal_apply_tag_callback(GtkTextBuffer* self, GtkTextTag* p0,const GtkTextIter* p1,const GtkTextIter* p2,void* data) { using namespace Gtk; typedef sigc::slot< void,const Glib::RefPtr&,const TextBuffer::iterator&,const TextBuffer::iterator& > 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, true) , Glib::wrap(p1) , Glib::wrap(p2) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_apply_tag_info = { "apply_tag", (GCallback) &TextBuffer_signal_apply_tag_callback, (GCallback) &TextBuffer_signal_apply_tag_callback }; void TextBuffer_signal_remove_tag_callback(GtkTextBuffer* self, GtkTextTag* p0,const GtkTextIter* p1,const GtkTextIter* p2,void* data) { using namespace Gtk; typedef sigc::slot< void,const Glib::RefPtr&,const TextBuffer::iterator&,const TextBuffer::iterator& > 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, true) , Glib::wrap(p1) , Glib::wrap(p2) ); } catch(...) { Glib::exception_handlers_invoke(); } } } const Glib::SignalProxyInfo TextBuffer_signal_remove_tag_info = { "remove_tag", (GCallback) &TextBuffer_signal_remove_tag_callback, (GCallback) &TextBuffer_signal_remove_tag_callback }; const Glib::SignalProxyInfo TextBuffer_signal_begin_user_action_info = { "begin_user_action", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; const Glib::SignalProxyInfo TextBuffer_signal_end_user_action_info = { "end_user_action", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; } // anonymous namespace namespace Glib { Glib::RefPtr wrap(GtkTextBuffer* object, bool take_copy) { return Glib::RefPtr( dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)) ); //We use dynamic_cast<> in case of multiple inheritance. } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& TextBuffer_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_ = &TextBuffer_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_text_buffer_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void TextBuffer_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->insert_text = &insert_text_callback; klass->insert_pixbuf = &insert_pixbuf_callback; klass->insert_child_anchor = &insert_child_anchor_callback; klass->delete_range = &delete_range_callback; klass->changed = &changed_callback; klass->modified_changed = &modified_changed_callback; klass->mark_set = &mark_set_callback; klass->mark_deleted = &mark_deleted_callback; klass->apply_tag = &apply_tag_callback; klass->remove_tag = &remove_tag_callback; klass->begin_user_action = &begin_user_action_callback; klass->end_user_action = &end_user_action_callback; } void TextBuffer_Class::insert_text_callback(GtkTextBuffer* self, GtkTextIter* p0, const gchar* p1, gint p2) { 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_insert(Glib::wrap(p0) , Glib::ustring(p1, p1 + p2) , p2 ); } 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->insert_text) (*base->insert_text)(self, p0, p1, p2); } } void TextBuffer_Class::insert_pixbuf_callback(GtkTextBuffer* self, GtkTextIter* p0, GdkPixbuf* 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_insert_pixbuf(Glib::wrap(p0) , Glib::wrap(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->insert_pixbuf) (*base->insert_pixbuf)(self, p0, p1); } } void TextBuffer_Class::insert_child_anchor_callback(GtkTextBuffer* self, GtkTextIter* p0, GtkTextChildAnchor* 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_insert_child_anchor(Glib::wrap(p0) , Glib::wrap(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->insert_child_anchor) (*base->insert_child_anchor)(self, p0, p1); } } void TextBuffer_Class::delete_range_callback(GtkTextBuffer* self, GtkTextIter* p0, GtkTextIter* 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_erase(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->delete_range) (*base->delete_range)(self, p0, p1); } } void TextBuffer_Class::changed_callback(GtkTextBuffer* 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_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->changed) (*base->changed)(self); } } void TextBuffer_Class::modified_changed_callback(GtkTextBuffer* 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_modified_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->modified_changed) (*base->modified_changed)(self); } } void TextBuffer_Class::mark_set_callback(GtkTextBuffer* self, const GtkTextIter* p0, GtkTextMark* 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_mark_set(Glib::wrap(p0) , Glib::wrap(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->mark_set) (*base->mark_set)(self, p0, p1); } } void TextBuffer_Class::mark_deleted_callback(GtkTextBuffer* self, GtkTextMark* p0) { 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_mark_deleted(Glib::wrap(p0, 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->mark_deleted) (*base->mark_deleted)(self, p0); } } void TextBuffer_Class::apply_tag_callback(GtkTextBuffer* self, GtkTextTag* p0, const GtkTextIter* p1, const GtkTextIter* p2) { 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_apply_tag(Glib::wrap(p0, true) , Glib::wrap(p1) , Glib::wrap(p2) ); } 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->apply_tag) (*base->apply_tag)(self, p0, p1, p2); } } void TextBuffer_Class::remove_tag_callback(GtkTextBuffer* self, GtkTextTag* p0, const GtkTextIter* p1, const GtkTextIter* p2) { 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_remove_tag(Glib::wrap(p0, true) , Glib::wrap(p1) , Glib::wrap(p2) ); } 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->remove_tag) (*base->remove_tag)(self, p0, p1, p2); } } void TextBuffer_Class::begin_user_action_callback(GtkTextBuffer* 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_begin_user_action(); } 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->begin_user_action) (*base->begin_user_action)(self); } } void TextBuffer_Class::end_user_action_callback(GtkTextBuffer* 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_end_user_action(); } 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->end_user_action) (*base->end_user_action)(self); } } Glib::ObjectBase* TextBuffer_Class::wrap_new(GObject* object) { return new TextBuffer((GtkTextBuffer*)object); } /* The implementation: */ GtkTextBuffer* TextBuffer::gobj_copy() { reference(); return gobj(); } TextBuffer::TextBuffer(const Glib::ConstructParams& construct_params) : Glib::Object(construct_params) {} TextBuffer::TextBuffer(GtkTextBuffer* castitem) : Glib::Object((GObject*)(castitem)) {} TextBuffer::~TextBuffer() {} TextBuffer::CppClassType TextBuffer::textbuffer_class_; // initialize static member GType TextBuffer::get_type() { return textbuffer_class_.init().get_type(); } GType TextBuffer::get_base_type() { return gtk_text_buffer_get_type(); } TextBuffer::TextBuffer() : Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations. Glib::Object(Glib::ConstructParams(textbuffer_class_.init())) { } Glib::RefPtr TextBuffer::create() { return Glib::RefPtr( new TextBuffer() ); } Glib::RefPtr TextBuffer::create(const Glib::RefPtr& tag_table) { return Glib::RefPtr( new TextBuffer(tag_table) ); } int TextBuffer::get_line_count() const { return gtk_text_buffer_get_line_count(const_cast(gobj())); } int TextBuffer::get_char_count() const { return gtk_text_buffer_get_char_count(const_cast(gobj())); } Glib::RefPtr TextBuffer::get_tag_table() { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_get_tag_table(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr TextBuffer::get_tag_table() const { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_get_tag_table(const_cast(gobj()))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::ustring TextBuffer::get_text(const iterator& start, const iterator& end, bool include_hidden_chars) { return Glib::convert_return_gchar_ptr_to_ustring(gtk_text_buffer_get_text(gobj(), (start).gobj(), (end).gobj(), static_cast(include_hidden_chars))); } Glib::ustring TextBuffer::get_slice(const iterator& start, const iterator& end, bool include_hidden_chars) { return Glib::convert_return_gchar_ptr_to_ustring(gtk_text_buffer_get_slice(gobj(), (start).gobj(), (end).gobj(), static_cast(include_hidden_chars))); } Glib::RefPtr TextBuffer::create_mark(const Glib::ustring& mark_name, const iterator& where, bool left_gravity) { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_create_mark(gobj(), mark_name.c_str(), (where).gobj(), static_cast(left_gravity))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } void TextBuffer::move_mark(const Glib::RefPtr& mark, const iterator& where) { gtk_text_buffer_move_mark(gobj(), Glib::unwrap(mark), (where).gobj()); } void TextBuffer::delete_mark(const Glib::RefPtr& mark) { gtk_text_buffer_delete_mark(gobj(), Glib::unwrap(mark)); } Glib::RefPtr TextBuffer::get_mark(const Glib::ustring& name) { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_get_mark(gobj(), name.c_str())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr TextBuffer::get_mark(const Glib::ustring& name) const { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_get_mark(const_cast(gobj()), name.c_str())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } void TextBuffer::move_mark_by_name(const Glib::ustring& name, const iterator& where) { gtk_text_buffer_move_mark_by_name(gobj(), name.c_str(), (where).gobj()); } void TextBuffer::delete_mark_by_name(const Glib::ustring& name) { gtk_text_buffer_delete_mark_by_name(gobj(), name.c_str()); } Glib::RefPtr TextBuffer::get_insert() { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_get_insert(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr TextBuffer::get_selection_bound() { Glib::RefPtr retvalue = Glib::wrap(gtk_text_buffer_get_selection_bound(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } void TextBuffer::place_cursor(const iterator& where) { gtk_text_buffer_place_cursor(gobj(), (where).gobj()); } void TextBuffer::apply_tag(const Glib::RefPtr& tag, const iterator& start, const iterator& end) { gtk_text_buffer_apply_tag(gobj(), Glib::unwrap(tag), (start).gobj(), (end).gobj()); } void TextBuffer::remove_tag(const Glib::RefPtr& tag, const iterator& start, const iterator& end) { gtk_text_buffer_remove_tag(gobj(), Glib::unwrap(tag), (start).gobj(), (end).gobj()); } void TextBuffer::apply_tag_by_name(const Glib::ustring& name, const iterator& start, const iterator& end) { gtk_text_buffer_apply_tag_by_name(gobj(), name.c_str(), (start).gobj(), (end).gobj()); } void TextBuffer::remove_tag_by_name(const Glib::ustring& name, const iterator& start, const iterator& end) { gtk_text_buffer_remove_tag_by_name(gobj(), name.c_str(), (start).gobj(), (end).gobj()); } void TextBuffer::remove_all_tags(const iterator& start, const iterator& end) { gtk_text_buffer_remove_all_tags(gobj(), (start).gobj(), (end).gobj()); } bool TextBuffer::get_modified() const { return gtk_text_buffer_get_modified(const_cast(gobj())); } void TextBuffer::set_modified(bool setting) { gtk_text_buffer_set_modified(gobj(), static_cast(setting)); } void TextBuffer::add_selection_clipboard(const Glib::RefPtr& clipboard) { gtk_text_buffer_add_selection_clipboard(gobj(), Glib::unwrap(clipboard)); } void TextBuffer::remove_selection_clipboard(const Glib::RefPtr& clipboard) { gtk_text_buffer_remove_selection_clipboard(gobj(), Glib::unwrap(clipboard)); } void TextBuffer::cut_clipboard(const Glib::RefPtr& clipboard, bool default_editable) { gtk_text_buffer_cut_clipboard(gobj(), Glib::unwrap(clipboard), static_cast(default_editable)); } void TextBuffer::copy_clipboard(const Glib::RefPtr& clipboard) { gtk_text_buffer_copy_clipboard(gobj(), Glib::unwrap(clipboard)); } bool TextBuffer::get_selection_bounds(iterator& start, iterator& end) const { return gtk_text_buffer_get_selection_bounds(const_cast(gobj()), (start).gobj(), (end).gobj()); } bool TextBuffer::erase_selection(bool interactive, bool default_editable) { return gtk_text_buffer_delete_selection(gobj(), static_cast(interactive), static_cast(default_editable)); } void TextBuffer::select_range(const iterator& ins, const iterator& bound) { gtk_text_buffer_select_range(gobj(), (ins).gobj(), (bound).gobj()); } void TextBuffer::begin_user_action() { gtk_text_buffer_begin_user_action(gobj()); } void TextBuffer::end_user_action() { gtk_text_buffer_end_user_action(gobj()); } Glib::SignalProxy3< void,const TextBuffer::iterator&,const Glib::ustring&,int > TextBuffer::signal_insert() { return Glib::SignalProxy3< void,const TextBuffer::iterator&,const Glib::ustring&,int >(this, &TextBuffer_signal_insert_info); } Glib::SignalProxy2< void,const TextBuffer::iterator&,const Glib::RefPtr& > TextBuffer::signal_insert_pixbuf() { return Glib::SignalProxy2< void,const TextBuffer::iterator&,const Glib::RefPtr& >(this, &TextBuffer_signal_insert_pixbuf_info); } Glib::SignalProxy2< void,const TextBuffer::iterator&,const Glib::RefPtr& > TextBuffer::signal_insert_child_anchor() { return Glib::SignalProxy2< void,const TextBuffer::iterator&,const Glib::RefPtr& >(this, &TextBuffer_signal_insert_child_anchor_info); } Glib::SignalProxy2< void,const TextBuffer::iterator&,const TextBuffer::iterator& > TextBuffer::signal_erase() { return Glib::SignalProxy2< void,const TextBuffer::iterator&,const TextBuffer::iterator& >(this, &TextBuffer_signal_erase_info); } Glib::SignalProxy0< void > TextBuffer::signal_changed() { return Glib::SignalProxy0< void >(this, &TextBuffer_signal_changed_info); } Glib::SignalProxy0< void > TextBuffer::signal_modified_changed() { return Glib::SignalProxy0< void >(this, &TextBuffer_signal_modified_changed_info); } Glib::SignalProxy2< void,const TextBuffer::iterator&,const Glib::RefPtr& > TextBuffer::signal_mark_set() { return Glib::SignalProxy2< void,const TextBuffer::iterator&,const Glib::RefPtr& >(this, &TextBuffer_signal_mark_set_info); } Glib::SignalProxy1< void,const Glib::RefPtr& > TextBuffer::signal_mark_deleted() { return Glib::SignalProxy1< void,const Glib::RefPtr& >(this, &TextBuffer_signal_mark_deleted_info); } Glib::SignalProxy3< void,const Glib::RefPtr&,const TextBuffer::iterator&,const TextBuffer::iterator& > TextBuffer::signal_apply_tag() { return Glib::SignalProxy3< void,const Glib::RefPtr&,const TextBuffer::iterator&,const TextBuffer::iterator& >(this, &TextBuffer_signal_apply_tag_info); } Glib::SignalProxy3< void,const Glib::RefPtr&,const TextBuffer::iterator&,const TextBuffer::iterator& > TextBuffer::signal_remove_tag() { return Glib::SignalProxy3< void,const Glib::RefPtr&,const TextBuffer::iterator&,const TextBuffer::iterator& >(this, &TextBuffer_signal_remove_tag_info); } Glib::SignalProxy0< void > TextBuffer::signal_begin_user_action() { return Glib::SignalProxy0< void >(this, &TextBuffer_signal_begin_user_action_info); } Glib::SignalProxy0< void > TextBuffer::signal_end_user_action() { return Glib::SignalProxy0< void >(this, &TextBuffer_signal_end_user_action_info); } void Gtk::TextBuffer::on_insert(const TextBuffer::iterator& pos, const Glib::ustring& text, int bytes) { 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->insert_text) (*base->insert_text)(gobj(),const_cast((pos).gobj()),text.c_str(),bytes); } void Gtk::TextBuffer::on_insert_pixbuf(const TextBuffer::iterator& pos, const Glib::RefPtr& pixbuf) { 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->insert_pixbuf) (*base->insert_pixbuf)(gobj(),const_cast((pos).gobj()),Glib::unwrap(pixbuf)); } void Gtk::TextBuffer::on_insert_child_anchor(const TextBuffer::iterator& pos, const Glib::RefPtr& anchor) { 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->insert_child_anchor) (*base->insert_child_anchor)(gobj(),const_cast((pos).gobj()),Glib::unwrap(anchor)); } void Gtk::TextBuffer::on_erase(const TextBuffer::iterator& range_begin, const TextBuffer::iterator& range_end) { 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->delete_range) (*base->delete_range)(gobj(),const_cast((range_begin).gobj()),const_cast((range_end).gobj())); } void Gtk::TextBuffer::on_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->changed) (*base->changed)(gobj()); } void Gtk::TextBuffer::on_modified_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->modified_changed) (*base->modified_changed)(gobj()); } void Gtk::TextBuffer::on_mark_set(const TextBuffer::iterator& location, const Glib::RefPtr& mark) { 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->mark_set) (*base->mark_set)(gobj(),(location).gobj(),Glib::unwrap(mark)); } void Gtk::TextBuffer::on_mark_deleted(const Glib::RefPtr& mark) { 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->mark_deleted) (*base->mark_deleted)(gobj(),Glib::unwrap(mark)); } void Gtk::TextBuffer::on_apply_tag(const Glib::RefPtr& tag, const TextBuffer::iterator& range_begin, const TextBuffer::iterator& range_end) { 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->apply_tag) (*base->apply_tag)(gobj(),Glib::unwrap(tag),(range_begin).gobj(),(range_end).gobj()); } void Gtk::TextBuffer::on_remove_tag(const Glib::RefPtr& tag, const TextBuffer::iterator& range_begin, const TextBuffer::iterator& range_end) { 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->remove_tag) (*base->remove_tag)(gobj(),Glib::unwrap(tag),(range_begin).gobj(),(range_end).gobj()); } void Gtk::TextBuffer::on_begin_user_action() { 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->begin_user_action) (*base->begin_user_action)(gobj()); } void Gtk::TextBuffer::on_end_user_action() { 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->end_user_action) (*base->end_user_action)(gobj()); } } // namespace Gtk