Connect to Changed signal.
Connect to DeleteText signal.
Connect to InsertText signal.
Copies the contents of the currently selected content in the editable and puts it on the clipboard.
Removes the contents of the currently selected content in the editable and puts it on the clipboard.
Deletes the currently selected text of the editable. This call doesn’t do anything if there is no selected text.
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.
Retrieves a sequence of characters. The characters that are retrieved are those characters at positions from start_pos up to, but not including end_pos. If end_pos is negative, then the characters retrieved are those characters from start_pos to the end of the text.
Retrieves whether editable is editable. See gtk.editable.Editable.setEditable.
Retrieves the current position of the cursor relative to the start of the content of the editable.
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.
Inserts new_text_length bytes of new_text into the contents of the widget, at position position.
Pastes the content of the clipboard to the current position of the cursor in the editable.
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.
Determines if the user can edit the text in the editable widget or not.
Sets the cursor position in the editable to the given value.
The #GtkEditable interface is an interface which should be implemented by text editing widgets, such as #GtkEntry and #GtkSpinButton. It contains functions for generically manipulating an editable widget, a large number of action signals used for key bindings, and several signals that an application can connect to to modify the behavior of a widget.
As an example of the latter usage, by connecting the following handler to #GtkEditable::insert-text, an application can convert all entry into a widget into uppercase.
Forcing entry to uppercase.