Virtualvfunc_Virtualvfunc_Deletes a sequence of characters.
The characters that are deleted are those characters at positions
from start_pos up to, but not including end_pos. If end_pos is
negative, then the characters deleted are those from start_pos to
the end of the text.
Note that the positions are specified in characters, not bytes.
start position
end position
Virtualvfunc_Deletes a sequence of characters.
The characters that are deleted are those characters at positions
from start_pos up to, but not including end_pos. If end_pos is
negative, then the characters deleted are those from start_pos to
the end of the text.
Note that the positions are specified in characters, not bytes.
start position
end position
Virtualvfunc_Inserts length bytes of text into the contents of the
widget, at position position.
Note that the position is in characters, not in bytes.
The function updates position to point after the newly
inserted text.
the text to insert
the length of the text in bytes, or -1
location of the position text will be inserted at
Virtualvfunc_Gets the Gtk.Editable that editable is delegating its
implementation to.
Typically, the delegate is a Gtk.Text widget.
Virtualvfunc_Retrieves the selection bound of the editable.
start_pos will be filled with the start of the selection and
end_pos with end. If no text was selected both will be identical
and false will be returned.
Note that positions are specified in characters, not bytes.
Virtualvfunc_Retrieves the contents of editable.
The returned string is owned by GTK and must not be modified or freed.
Virtualvfunc_Inserts length bytes of text into the contents of the
widget, at position position.
Note that the position is in characters, not in bytes.
The function updates position to point after the newly
inserted text.
the text to insert
the length of the text in bytes, or -1
location of the position text will be inserted at
Virtualvfunc_Selects a region of text.
The characters that are selected are those characters at positions
from start_pos up to, but not including end_pos. If end_pos is
negative, then the characters selected are those characters from
start_pos to the end of the text.
Note that positions are specified in characters, not bytes.
start of region
end of region
Interface for implementing Editable. Contains only the virtual methods that need to be implemented.