signal callback delegate or function to connect
void callback(gtk.text_iter.TextIter location, gdkpixbuf.pixbuf.Pixbuf pixbuf, gtk.text_buffer.TextBuffer textBuffer)
location position to insert pixbuf in textbuffer (optional)
pixbuf the #GdkPixbuf to be inserted (optional)
textBuffer the instance the signal is connected to (optional)
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to InsertPixbuf signal.
The ::insert-pixbuf signal is emitted to insert a #GdkPixbuf in a #GtkTextBuffer. Insertion actually occurs in the default handler.
Note that if your handler runs before the default handler it must not invalidate the location iter (or has to revalidate it). The default signal handler revalidates it to be placed after the inserted pixbuf.
See also: gtk.text_buffer.TextBuffer.insertPixbuf.