SignalRun Lastapply-SignalRun Lastbegin-Emitted at the beginning of a single user-visible operation on a Gtk.TextBuffer.
See also: Gtk.TextBuffer.begin_user_action, Gtk.TextBuffer.insert_interactive, Gtk.TextBuffer.insert_range_interactive, Gtk.TextBuffer.delete_interactive, Gtk.TextBuffer.backspace, Gtk.TextBuffer.delete_selection.
SignalRun LastchangedEmitted when the content of a Gtk.TextBuffer has changed.
SignalRun Lastdelete-Emitted to delete a range from a Gtk.TextBuffer.
Note that if your handler runs before the default handler
it must not invalidate the start and end iters (or has
to revalidate them). The default signal handler revalidates
the start and end iters to both point to the location
where text was deleted. Handlers which run after the default
handler (see g_signal_connect_after()) do not have access to
the deleted text.
See also: Gtk.TextBuffer.delete.
SignalRun Lastend-Emitted at the end of a single user-visible operation on the Gtk.TextBuffer.
See also: Gtk.TextBuffer.end_user_action, Gtk.TextBuffer.insert_interactive, Gtk.TextBuffer.insert_range_interactive, Gtk.TextBuffer.delete_interactive, Gtk.TextBuffer.backspace, Gtk.TextBuffer.delete_selection, Gtk.TextBuffer.backspace.
SignalRun Lastinsert-Emitted to insert a Gtk.TextChildAnchor 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 anchor.
See also: Gtk.TextBuffer.insert_child_anchor.
SignalRun Lastinsert-Emitted to insert a Gdk.Paintable 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 paintable.
See also: Gtk.TextBuffer.insert_paintable.
SignalRun Lastinsert-Emitted to insert text 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 point to the end of the inserted text.
See also: Gtk.TextBuffer.insert, Gtk.TextBuffer.insert_range.
SignalRun Lastmark-Emitted as notification after a Gtk.TextMark is deleted.
See also: Gtk.TextBuffer.delete_mark.
SignalRun Lastmark-Emitted as notification after a Gtk.TextMark is set.
See also: Gtk.TextBuffer.create_mark, Gtk.TextBuffer.move_mark.
SignalRun Lastmodified-Emitted when the modified bit of a Gtk.TextBuffer flips.
See also: Gtk.TextBuffer.set_modified.
SignalRun Lastpaste-Emitted after paste operation has been completed.
This is useful to properly scroll the view to the end of the pasted text. See Gtk.TextBuffer.paste_clipboard for more details.
SignalRun LastredoEmitted when a request has been made to redo the previously undone operation.
SignalRun Lastremove-Emitted to remove all occurrences of tag from a range
of text in a Gtk.TextBuffer.
Removal actually occurs in the default handler.
Note that if your handler runs before the default handler
it must not invalidate the start and end iters (or has
to revalidate them).
See also: Gtk.TextBuffer.remove_tag.
SignalRun LastundoEmitted when a request has been made to undo the previous operation or set of operations that have been grouped together.
SignalDetailedActionRun FirstnotifyThe notify signal is emitted on an object when one of its properties has
its value set through g_object_set_property(), g_object_set(), et al.
Note that getting this signal doesn’t itself guarantee that the value of
the property has actually changed. When it is emitted is determined by the
derived GObject class. If the implementor did not create the property with
GObject.ParamFlags.EXPLICIT_NOTIFY, then any call to g_object_set_property() results
in ::notify being emitted, even if the new value is the same as the old.
If they did pass GObject.ParamFlags.EXPLICIT_NOTIFY, then this signal is emitted only
when they explicitly call g_object_notify() or g_object_notify_by_pspec(),
and common practice is to do that only when the value has actually changed.
This signal is typically used to obtain change notification for a
single property, by specifying the property name as a detail in the
g_signal_connect() call, like this:
g_signal_connect (text_view->buffer, "notify::paste-target-list",
G_CALLBACK (gtk_text_view_target_list_notify),
text_view)
It is important to note that you must use [canonical parameter names][class@GObject.ParamSpec#parameter-names] as detail strings for the notify signal.
Emitted to apply a tag to a range of text in a Gtk.TextBuffer.
Applying actually occurs in the default handler.
Note that if your handler runs before the default handler it must not invalidate the
startandenditers (or has to revalidate them).See also: Gtk.TextBuffer.apply_tag, Gtk.TextBuffer.insert_with_tags, Gtk.TextBuffer.insert_range.