gtk.editable_mixin

Module for [Editable] interface mixin

Templates 2

tmplEditableT()

[gtk.editable.Editable] is an interface for text editing widgets.

Typical examples of editable widgets are [gtk.entry.Entry] and [gtk.spin_button.SpinButton]. 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 modify the behavior of a widget.

As an example of the latter usage, by connecting the following handler to signal@Gtk.Editable::insert-text, an application can convert all entry into a widget into uppercase.

Forcing entry to uppercase.

#include <ctype.h>

void
insert_text_handler (GtkEditable *editable,
                    const char  *text,
                    int          length,
                    int         *position,
                    gpointer     data)
{
 char *result = g_utf8_strup (text, length);

 g_signal_handlers_block_by_func (editable,
                              (gpointer) insert_text_handler, data);
 gtk_editable_insert_text (editable, result, length, position);
 g_signal_handlers_unblock_by_func (editable,
                                    (gpointer) insert_text_handler, data);

 g_signal_stop_emission_by_name (editable, "insert_text");

 g_free (result);
}

Implementing GtkEditable

The most likely scenario for implementing [gtk.editable.Editable] on your own widget is that you will embed a [gtk.text.Text] inside a complex widget, and want to delegate the editable functionality to that text widget. [gtk.editable.Editable] provides some utility functions to make this easy.

In your class_init function, call [gtk.editable.Editable.installProperties], passing the first available property ID:

static void
my_class_init (MyClass *class)
{
 ...
 g_object_class_install_properties (object_class, NUM_PROPERTIES, props);
 gtk_editable_install_properties (object_clas, NUM_PROPERTIES);
 ...
}

In your interface_init function for the [gtk.editable.Editable] interface, provide an implementation for the get_delegate vfunc that returns your text widget:

GtkEditable *
get_editable_delegate (GtkEditable *editable)
{
 return GTK_EDITABLE (MY_WIDGET (editable)->text_widget);
}

static void
my_editable_init (GtkEditableInterface *iface)
{
 iface->get_delegate = get_editable_delegate;
}

You don't need to provide any other vfuncs. The default implementations work by forwarding to the delegate that the GtkEditableInterface.get_delegate() vfunc returns.

In your instance_init function, create your text widget, and then call [gtk.editable.Editable.initDelegate]:

static void
my_widget_init (MyWidget *self)
{
 ...
 self->text_widget = gtk_text_new ();
 gtk_editable_init_delegate (GTK_EDITABLE (self));
 ...
}

In your dispose function, call [gtk.editable.Editable.finishDelegate] before destroying your text widget:

static void
my_widget_dispose (GObject *object)
{
 ...
 gtk_editable_finish_delegate (GTK_EDITABLE (self));
 g_clear_pointer (&self->text_widget, gtk_widget_unparent);
 ...
}

Finally, use [gtk.editable.Editable.delegateSetProperty] in your set_property function (and similar for get_property), to set the editable properties:

...
 if (gtk_editable_delegate_set_property (object, prop_id, value, pspec))
   return;

 switch (prop_id)
 ...

It is important to note that if you create a [gtk.editable.Editable] that uses a delegate, the low level signal@Gtk.Editable::insert-text and signal@Gtk.Editable::delete-text signals will be propagated from the "wrapper" editable to the delegate, but they will not be propagated from the delegate to the "wrapper" editable, as they would cause an infinite recursion. If you wish to connect to the signal@Gtk.Editable::insert-text and signal@Gtk.Editable::delete-text signals, you will need to connect to them on the delegate obtained via [gtk.editable.Editable.getDelegate].

Functions
int cursorPosition()

Get cursorPosition property.

Returns

The current position of the insertion cursor in chars.
bool editable()

Get editable property.

Returns

Whether the entry contents can be edited.
void editable(bool propval)

Set editable property.

Parameters

propvalWhether the entry contents can be edited.
bool enableUndo()

Get enableUndo property.

Returns

If undo/redo should be enabled for the editable.
void enableUndo(bool propval)

Set enableUndo property.

Parameters

propvalIf undo/redo should be enabled for the editable.
int maxWidthChars()

Get maxWidthChars property.

Returns

The desired maximum width of the entry, in characters.
void maxWidthChars(int propval)

Set maxWidthChars property.

Parameters

propvalThe desired maximum width of the entry, in characters.
int selectionBound()

Get selectionBound property.

Returns

The position of the opposite end of the selection from the cursor in chars.
string text()

Get text property.

Returns

The contents of the entry.
void text(string propval)

Set text property.

Parameters

propvalThe contents of the entry.
int widthChars()

Get widthChars property.

Returns

Number of characters to leave space for in the entry.
void widthChars(int propval)

Set widthChars property.

Parameters

propvalNumber of characters to leave space for in the entry.
float xalign()

Get xalign property.

Returns

The horizontal alignment, from 0 (left) to 1 (right).

Reversed for RTL layouts.

void xalign(float propval)

Set xalign property.

Parameters

propvalThe horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts.
bool delegateGetAccessiblePlatformState(gtk.types.AccessiblePlatformState state)

Retrieves the accessible platform state from the editable delegate.

This is an helper function to retrieve the accessible state for [gtk.editable.Editable] interface implementations using a delegate pattern.

You should call this function in your editable widget implementation of the vfuncGtk.Accessible.get_platform_state virtual function, for instance:

static void
accessible_interface_init (GtkAccessibleInterface *iface)
{
 iface->get_platform_state = your_editable_get_accessible_platform_state;
}

static gboolean
your_editable_get_accessible_platform_state (GtkAccessible *accessible,
                                            GtkAccessiblePlatformState state)
{
 return gtk_editable_delegate_get_accessible_platform_state (GTK_EDITABLE (accessible), state);
}

Parameters

statewhat kind of accessible state to retrieve

Returns

void deleteSelection()

Deletes the currently selected text of the editable.

This call doesn’t do anything if there is no selected text.

void deleteText(int startPos, int endPos)

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.

Parameters

startPosstart position
endPosend position
void finishDelegate()

Undoes the setup done by [gtk.editable.Editable.initDelegate].

This is a helper function that should be called from dispose, before removing the delegate object.

float getAlignment()

Gets the alignment of the editable.

Returns

the alignment
string getChars(int startPos, int endPos)

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.

Note that positions are specified in characters, not bytes.

Parameters

startPosstart of text
endPosend of text

Returns

a pointer to the contents of the widget as a

string. This string is allocated by the [gtk.editable.Editable] implementation and should be freed by the caller.

gtk.editable.Editable getDelegate()

Gets the [gtk.editable.Editable] that editable is delegating its implementation to.

Typically, the delegate is a [gtk.text.Text] widget.

Returns

the delegate [gtk.editable.Editable]
bool getEditable()

Retrieves whether editable is editable.

Returns

true if editable is editable.
bool getEnableUndo()

Gets if undo/redo actions are enabled for editable

Returns

true if undo is enabled
int getMaxWidthChars()

Retrieves the desired maximum width of editable, in characters.

Returns

the maximum width of the entry, in characters
int getPosition()

Retrieves the current position of the cursor relative to the start of the content of the editable.

Note that this position is in characters, not in bytes.

Returns

the cursor position
bool getSelectionBounds(out int startPos, out int endPos)

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.

Parameters

startPoslocation to store the starting position
endPoslocation to store the end position

Returns

true if there is a non-empty selection, false otherwise
string getText()

Retrieves the contents of editable.

The returned string is owned by GTK and must not be modified or freed.

Returns

a pointer to the contents of the editable
int getWidthChars()

Gets the number of characters of space reserved for the contents of the editable.

Returns

number of chars to request space for, or negative if unset
void initDelegate()

Sets up a delegate for [gtk.editable.Editable].

This is assuming that the get_delegate vfunc in the [gtk.editable.Editable] interface has been set up for the editable's type.

This is a helper function that should be called in instance init, after creating the delegate object.

void insertText(string text, ref int position)

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.

Parameters

textthe text to insert
positionlocation of the position text will be inserted at
void selectRegion(int startPos, int endPos)

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.

Parameters

startPosstart of region
endPosend of region
void setAlignment(float xalign)

Sets the alignment for the contents of the editable.

This controls the horizontal positioning of the contents when the displayed text is shorter than the width of the editable.

Parameters

xalignThe horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts
void setEditable(bool isEditable)

Determines if the user can edit the text in the editable widget.

Parameters

isEditabletrue if the user is allowed to edit the text in the widget
void setEnableUndo(bool enableUndo)

If enabled, changes to editable will be saved for undo/redo actions.

This results in an additional copy of text changes and are not stored in secure memory. As such, undo is forcefully disabled when [gtk.text.Text.visibility] is set to false.

Parameters

enableUndoif undo/redo should be enabled
void setMaxWidthChars(int nChars)

Sets the desired maximum width in characters of editable.

Parameters

nCharsthe new desired maximum width, in characters
void setPosition(int position)

Sets the cursor position in the editable to the given value.

The cursor is displayed before the character with the given (base 0) index in the contents of the editable. The value must be less than or equal to the number of characters in the editable. A value of -1 indicates that the position should be set after the last character of the editable. Note that position is in characters, not in bytes.

Parameters

positionthe position of the cursor
void setText(string text)

Sets the text in the editable to the given value.

This is replacing the current contents.

Parameters

textthe text to set
void setWidthChars(int nChars)

Changes the size request of the editable to be about the right size for n_chars characters.

Note that it changes the size request, the size can still be affected by how you pack the widget into containers. If n_chars is -1, the size reverts to the default size.

Parameters

nCharswidth in chars
gulong connectChanged(T)(T callback, Flag!"After" after = No.After) if (isCallable!T && is(ReturnType!T == void) && (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] : gtk.editable.Editable))) && Parameters!T.length < 2)

Connect to Changed signal.

Emitted at the end of a single user-visible operation on the contents.

E.g., a paste operation that replaces the contents of the selection will cause only one signal emission (even though it is implemented by first deleting the selection, then inserting the new content, and may cause multiple ::notify::text signals to be emitted).

Parameters

callbacksignal callback delegate or function to connect void callback(gtk.editable.Editable editable) editable the instance the signal is connected to (optional)
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID
gulong connectDeleteText(T)(T callback, Flag!"After" after = No.After) if (isCallable!T && is(ReturnType!T == void) && (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == int))) && (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] == int))) && (Parameters!T.length < 3 || (ParameterStorageClassTuple!T[2] == ParameterStorageClass.none && is(Parameters!T[2] : gtk.editable.Editable))) && Parameters!T.length < 4)

Connect to DeleteText signal.

Emitted when text is deleted from the widget by the user.

The default handler for this signal will normally be responsible for deleting the text, so by connecting to this signal and then stopping the signal with [gobject.global.signalStopEmission], it is possible to modify the range of deleted text, or prevent it from being deleted entirely.

The start_pos and end_pos parameters are interpreted as for [gtk.editable.Editable.deleteText].

Parameters

callbacksignal callback delegate or function to connect void callback(int startPos, int endPos, gtk.editable.Editable editable) startPos the starting position (optional) endPos the end position (optional) editable the instance the signal is connected to (optional)
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID
gulong connectInsertText(T)(T callback, Flag!"After" after = No.After) if (isCallable!T && is(ReturnType!T == void) && (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == string))) && (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.ref_ && is(Parameters!T[1] == int))) && (Parameters!T.length < 3 || (ParameterStorageClassTuple!T[2] == ParameterStorageClass.none && is(Parameters!T[2] : gtk.editable.Editable))) && Parameters!T.length < 4)

Connect to InsertText signal.

Emitted when text is inserted into the widget by the user.

The default handler for this signal will normally be responsible for inserting the text, so by connecting to this signal and then stopping the signal with [gobject.global.signalStopEmission], it is possible to modify the inserted text, or prevent it from being inserted entirely.

Parameters

callbacksignal callback delegate or function to connect void callback(string text, ref int position, gtk.editable.Editable editable) text the new text to insert (optional) position the position, in characters, at which to insert the new text. this is an in-out parameter. After the signal emission is finished, it should point after the newly inserted text. (optional) editable the instance the signal is connected to (optional)
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID
tmplEditableGidBuilderT()
Functions
T editable(bool propval)

Set editable property.

Parameters

propvalWhether the entry contents can be edited.

Returns

Builder instance for fluent chaining
T enableUndo(bool propval)

Set enableUndo property.

Parameters

propvalIf undo/redo should be enabled for the editable.

Returns

Builder instance for fluent chaining
T maxWidthChars(int propval)

Set maxWidthChars property.

Parameters

propvalThe desired maximum width of the entry, in characters.

Returns

Builder instance for fluent chaining
T text(string propval)

Set text property.

Parameters

propvalThe contents of the entry.

Returns

Builder instance for fluent chaining
T widthChars(int propval)

Set widthChars property.

Parameters

propvalNumber of characters to leave space for in the entry.

Returns

Builder instance for fluent chaining
T xalign(float propval)

Set xalign property.

Parameters

propvalThe horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts.

Returns

Builder instance for fluent chaining