Class
GtkStringList
Description [src]
final class Gtk.StringList : GObject.Object {
/* No available fields */
}
GtkStringList
is a list model that wraps an array of strings.
The objects in the model have a “string” property.
GtkStringList
is well-suited for any place where you would
typically use a char*[]
, but need a list model.
GtkStringList as GtkBuildable
The GtkStringList
implementation of the GtkBuildable
interface
supports adding items directly using the
Here is a UI definition fragment specifying a GtkStringList
<object class="GtkStringList">
<items>
<item translatable="yes">Factory</item>
<item translatable="yes">Home</item>
<item translatable="yes">Subway</item>
</items>
</object>
Constructors
gtk_string_list_new
Creates a new GtkStringList
with the given strings
.
Instance methods
gtk_string_list_append
Appends string
to self
.
gtk_string_list_get_string
Gets the string that is at position
in self
.
gtk_string_list_remove
Removes the string at position
from self
.
gtk_string_list_splice
Changes self
by removing n_removals
strings and adding additions
to it.
gtk_string_list_take
Adds string
to self at the end, and takes
ownership of it.
Methods inherited from GListModel (5)
g_list_model_get_item
Get the item at position
. If position
is greater than the number of
items in list
, NULL
is returned.
Available since: 2.44
g_list_model_get_item_type
Gets the type of the items in list
. All items returned from
g_list_model_get_type()
are of that type or a subtype, or are an
implementation of that interface.
Available since: 2.44
g_list_model_get_n_items
Gets the number of items in list
.
Available since: 2.44
g_list_model_get_object
Get the item at position
. If position
is greater than the number of
items in list
, NULL
is returned.
Available since: 2.44
g_list_model_items_changed
Emits the GListModel::items-changed
signal on list
.
Available since: 2.44
Methods inherited from GtkBuildable (1)
gtk_buildable_get_buildable_id
Gets the ID of the buildable
object.
Signals
Signals inherited from GObject (1)
GObject.Object::notify
The 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.
Signals inherited from GListModel (1)
Gio.ListModel::items-changed
This signal is emitted whenever items were added to or removed
from list
. At position
, removed
items were removed and added
items were added in their place.
Available since: 2.44