Gtk.TextBuffer::insert-pixbuf

function callback(text_buffer, location:Gtk.TextIter, pixbuf:GdkPixbuf.Pixbuf, ):void;

The ::insert-pixbuf signal is emitted to insert a GdkPixbuf.Pixbuf in a Gtk.TextBuffer. 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.TextBuffer.prototype.insert_pixbuf.

text_buffer

instance of Gtk.TextBuffer that is emitting the signal

location

position to insert pixbuf in @textbuffer

pixbuf

the GdkPixbuf.Pixbuf to be inserted