Method
Gtk.TextBuffer.insert_range_interactive
Declaration [src]
gboolean
gtk_text_buffer_insert_range_interactive (
GtkTextBuffer* buffer,
GtkTextIter* iter,
const GtkTextIter* start,
const GtkTextIter* end,
gboolean default_editable
)
Description [src]
Copies text, tags, and paintables between start
and end
and inserts the copy at iter
.
Same as gtk_text_buffer_insert_range()
, but does nothing
if the insertion point isn’t editable. The default_editable
parameter indicates whether the text is editable at iter
if
no tags enclosing iter
affect editability. Typically the result
of gtk_text_view_get_editable()
is appropriate here.
Parameters
iter |
GtkTextIter |
a position in |
|
Ownership is not transferred to the callee | |
start |
GtkTextIter |
a position in a |
|
Ownership is not transferred to the callee | |
end |
GtkTextIter |
another position in the same buffer as |
|
Ownership is not transferred to the callee | |
default_editable |
gboolean |
default editability of the buffer |