ListViewProtocol
public protocol ListViewProtocol : ListBaseProtocol
GtkListView
presents a large dynamic list of items.
GtkListView
uses its factory to generate one row widget for each visible
item and shows them in a linear display, either vertically or horizontally.
The [propertyGtk.ListView:show-separators
] property offers a simple way to
display separators between the rows.
GtkListView
allows the user to select items according to the selection
characteristics of the model. For models that allow multiple selected items,
it is possible to turn on rubberband selection, using
[propertyGtk.ListView:enable-rubberband
].
If you need multiple columns with headers, see [classGtk.ColumnView
].
To learn more about the list widget framework, see the overview.
An example of using GtkListView
:
static void
setup_listitem_cb (GtkListItemFactory *factory,
GtkListItem *list_item)
{
GtkWidget *image;
image = gtk_image_new ();
gtk_image_set_icon_size (GTK_IMAGE (image), GTK_ICON_SIZE_LARGE);
gtk_list_item_set_child (list_item, image);
}
static void
bind_listitem_cb (GtkListItemFactory *factory,
GtkListItem *list_item)
{
GtkWidget *image;
GAppInfo *app_info;
image = gtk_list_item_get_child (list_item);
app_info = gtk_list_item_get_item (list_item);
gtk_image_set_from_gicon (GTK_IMAGE (image), g_app_info_get_icon (app_info));
}
static void
activate_cb (GtkListView *list,
guint position,
gpointer unused)
{
GAppInfo *app_info;
app_info = g_list_model_get_item (G_LIST_MODEL (gtk_list_view_get_model (list)), position);
g_app_info_launch (app_info, NULL, NULL, NULL);
g_object_unref (app_info);
}
...
model = create_application_list ();
factory = gtk_signal_list_item_factory_new ();
g_signal_connect (factory, "setup", G_CALLBACK (setup_listitem_cb), NULL);
g_signal_connect (factory, "bind", G_CALLBACK (bind_listitem_cb), NULL);
list = gtk_list_view_new (GTK_SELECTION_MODEL (gtk_single_selection_new (model)), factory);
g_signal_connect (list, "activate", G_CALLBACK (activate_cb), NULL);
gtk_scrolled_window_set_child (GTK_SCROLLED_WINDOW (sw), list);
CSS nodes
listview[.separators][.rich-list][.navigation-sidebar][.data-table]
├── row[.activatable]
│
├── row[.activatable]
│
┊
╰── [rubberband]
GtkListView
uses a single CSS node named listview
. It may carry the
.separators
style class, when [propertyGtk.ListView:show-separators
]
property is set. Each child widget uses a single CSS node named row
.
If the [propertyGtk.ListItem:activatable
] property is set, the
corresponding row will have the .activatable
style class. For
rubberband selection, a node with name rubberband
is used.
The main listview node may also carry style classes to select the style of list presentation: .rich-list, .navigation-sidebar or .data-table.
Accessibility
GtkListView
uses the GTK_ACCESSIBLE_ROLE_LIST
role, and the list
items use the GTK_ACCESSIBLE_ROLE_LIST_ITEM
role.
The ListViewProtocol
protocol exposes the methods and properties of an underlying GtkListView
instance.
The default implementation of these can be found in the protocol extension below.
For a concrete class that implements these methods and properties, see ListView
.
Alternatively, use ListViewRef
as a lighweight, unowned
reference if you already have an instance you just want to use.
-
Untyped pointer to the underlying
GtkListView
instance.Declaration
Swift
var ptr: UnsafeMutableRawPointer! { get }
-
list_view_ptr
Default implementationTyped pointer to the underlying
GtkListView
instance.Default Implementation
Return the stored, untyped pointer as a typed pointer to the
GtkListView
instance.Declaration
Swift
var list_view_ptr: UnsafeMutablePointer<GtkListView>! { get }
-
Required Initialiser for types conforming to
ListViewProtocol
Declaration
Swift
init(raw: UnsafeMutableRawPointer)
-
bind(property:
Extension methodto: _: flags: transformFrom: transformTo: ) Bind a
ListViewPropertyName
source property to a given target object.Declaration
Swift
@discardableResult @inlinable func bind<Q, T>(property source_property: ListViewPropertyName, to target: T, _ target_property: Q, flags f: BindingFlags = .default, transformFrom transform_from: @escaping GLibObject.ValueTransformer = { $0.transform(destValue: $1) }, transformTo transform_to: @escaping GLibObject.ValueTransformer = { $0.transform(destValue: $1) }) -> BindingRef! where Q : PropertyNameProtocol, T : ObjectProtocol
Parameters
source_property
the source property to bind
target
the target object to bind to
target_property
the target property to bind to
flags
the flags to pass to the
Binding
transform_from
ValueTransformer
to use for forward transformationtransform_to
ValueTransformer
to use for backwards transformationReturn Value
binding reference or
nil
in case of an error -
get(property:
Extension method) Get the value of a ListView property
Declaration
Swift
@inlinable func get(property: ListViewPropertyName) -> GLibObject.Value
Parameters
property
the property to get the value for
Return Value
the value of the named property
-
set(property:
Extension methodvalue: ) Set the value of a ListView property. Note that this will only have an effect on properties that are writable and not construct-only!
Declaration
Swift
@inlinable func set(property: ListViewPropertyName, value v: GLibObject.Value)
Parameters
property
the property to get the value for
Return Value
the value of the named property
-
connect(signal:
Extension methodflags: handler: ) Connect a Swift signal handler to the given, typed
ListViewSignalName
signalDeclaration
Swift
@discardableResult @inlinable func connect(signal s: ListViewSignalName, flags f: ConnectFlags = ConnectFlags(0), handler h: @escaping SignalHandler) -> Int
Parameters
signal
The signal to connect
flags
The connection flags to use
data
A pointer to user data to provide to the callback
destroyData
A
GClosureNotify
C function to destroy the data pointed to byuserData
handler
The Swift signal handler (function or callback) to invoke on the given signal
Return Value
The signal handler ID (always greater than 0 for successful connections)
-
connect(signal:
Extension methodflags: data: destroyData: signalHandler: ) Connect a C signal handler to the given, typed
ListViewSignalName
signalDeclaration
Swift
@discardableResult @inlinable func connect(signal s: ListViewSignalName, flags f: ConnectFlags = ConnectFlags(0), data userData: gpointer!, destroyData destructor: GClosureNotify? = nil, signalHandler h: @escaping GCallback) -> Int
Parameters
signal
The signal to connect
flags
The connection flags to use
data
A pointer to user data to provide to the callback
destroyData
A
GClosureNotify
C function to destroy the data pointed to byuserData
signalHandler
The C function to be called on the given signal
Return Value
The signal handler ID (always greater than 0 for successful connections)
-
onActivate(flags:
Extension methodhandler: ) Emitted when a row has been activated by the user, usually via activating the GtkListView|list.activate-item action.
This allows for a convenient way to handle activation in a listview. See [method
Gtk.ListItem.set_activatable
] for details on how to use this signal.Note
This represents the underlyingactivate
signalDeclaration
Swift
@discardableResult @inlinable func onActivate(flags: ConnectFlags = ConnectFlags(0), handler: @escaping (_ unownedSelf: ListViewRef, _ position: UInt) -> Void) -> Int
Parameters
flags
Flags
unownedSelf
Reference to instance of self
position
position of item to activate
handler
The signal handler to call Run the given callback whenever the
activate
signal is emitted -
activateSignal
Extension methodTyped
activate
signal for using theconnect(signal:)
methodsDeclaration
Swift
static var activateSignal: ListViewSignalName { get }
-
onNotifyEnableRubberband(flags:
Extension methodhandler: ) 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.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
G_PARAM_EXPLICIT_NOTIFY
, then any call tog_object_set_property()
results innotify
being emitted, even if the new value is the same as the old. If they did passG_PARAM_EXPLICIT_NOTIFY
, then this signal is emitted only when they explicitly callg_object_notify()
org_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:(C Language Example):
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 as detail strings for the notify signal.
Note
This represents the underlyingnotify::enable-rubberband
signalDeclaration
Swift
@discardableResult @inlinable func onNotifyEnableRubberband(flags: ConnectFlags = ConnectFlags(0), handler: @escaping (_ unownedSelf: ListViewRef, _ pspec: ParamSpecRef) -> Void) -> Int
Parameters
flags
Flags
unownedSelf
Reference to instance of self
pspec
the
GParamSpec
of the property which changed.handler
The signal handler to call Run the given callback whenever the
notifyEnableRubberband
signal is emitted -
notifyEnableRubberbandSignal
Extension methodTyped
notify::enable-rubberband
signal for using theconnect(signal:)
methodsDeclaration
Swift
static var notifyEnableRubberbandSignal: ListViewSignalName { get }
-
onNotifyFactory(flags:
Extension methodhandler: ) 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.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
G_PARAM_EXPLICIT_NOTIFY
, then any call tog_object_set_property()
results innotify
being emitted, even if the new value is the same as the old. If they did passG_PARAM_EXPLICIT_NOTIFY
, then this signal is emitted only when they explicitly callg_object_notify()
org_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:(C Language Example):
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 as detail strings for the notify signal.
Note
This represents the underlyingnotify::factory
signalDeclaration
Swift
@discardableResult @inlinable func onNotifyFactory(flags: ConnectFlags = ConnectFlags(0), handler: @escaping (_ unownedSelf: ListViewRef, _ pspec: ParamSpecRef) -> Void) -> Int
Parameters
flags
Flags
unownedSelf
Reference to instance of self
pspec
the
GParamSpec
of the property which changed.handler
The signal handler to call Run the given callback whenever the
notifyFactory
signal is emitted -
notifyFactorySignal
Extension methodTyped
notify::factory
signal for using theconnect(signal:)
methodsDeclaration
Swift
static var notifyFactorySignal: ListViewSignalName { get }
-
onNotifyModel(flags:
Extension methodhandler: ) 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.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
G_PARAM_EXPLICIT_NOTIFY
, then any call tog_object_set_property()
results innotify
being emitted, even if the new value is the same as the old. If they did passG_PARAM_EXPLICIT_NOTIFY
, then this signal is emitted only when they explicitly callg_object_notify()
org_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:(C Language Example):
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 as detail strings for the notify signal.
Note
This represents the underlyingnotify::model
signalDeclaration
Swift
@discardableResult @inlinable func onNotifyModel(flags: ConnectFlags = ConnectFlags(0), handler: @escaping (_ unownedSelf: ListViewRef, _ pspec: ParamSpecRef) -> Void) -> Int
Parameters
flags
Flags
unownedSelf
Reference to instance of self
pspec
the
GParamSpec
of the property which changed.handler
The signal handler to call Run the given callback whenever the
notifyModel
signal is emitted -
notifyModelSignal
Extension methodTyped
notify::model
signal for using theconnect(signal:)
methodsDeclaration
Swift
static var notifyModelSignal: ListViewSignalName { get }
-
onNotifyShowSeparators(flags:
Extension methodhandler: ) 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.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
G_PARAM_EXPLICIT_NOTIFY
, then any call tog_object_set_property()
results innotify
being emitted, even if the new value is the same as the old. If they did passG_PARAM_EXPLICIT_NOTIFY
, then this signal is emitted only when they explicitly callg_object_notify()
org_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:(C Language Example):
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 as detail strings for the notify signal.
Note
This represents the underlyingnotify::show-separators
signalDeclaration
Swift
@discardableResult @inlinable func onNotifyShowSeparators(flags: ConnectFlags = ConnectFlags(0), handler: @escaping (_ unownedSelf: ListViewRef, _ pspec: ParamSpecRef) -> Void) -> Int
Parameters
flags
Flags
unownedSelf
Reference to instance of self
pspec
the
GParamSpec
of the property which changed.handler
The signal handler to call Run the given callback whenever the
notifyShowSeparators
signal is emitted -
notifyShowSeparatorsSignal
Extension methodTyped
notify::show-separators
signal for using theconnect(signal:)
methodsDeclaration
Swift
static var notifyShowSeparatorsSignal: ListViewSignalName { get }
-
onNotifySingleClickActivate(flags:
Extension methodhandler: ) 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.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
G_PARAM_EXPLICIT_NOTIFY
, then any call tog_object_set_property()
results innotify
being emitted, even if the new value is the same as the old. If they did passG_PARAM_EXPLICIT_NOTIFY
, then this signal is emitted only when they explicitly callg_object_notify()
org_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:(C Language Example):
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 as detail strings for the notify signal.
Note
This represents the underlyingnotify::single-click-activate
signalDeclaration
Swift
@discardableResult @inlinable func onNotifySingleClickActivate(flags: ConnectFlags = ConnectFlags(0), handler: @escaping (_ unownedSelf: ListViewRef, _ pspec: ParamSpecRef) -> Void) -> Int
Parameters
flags
Flags
unownedSelf
Reference to instance of self
pspec
the
GParamSpec
of the property which changed.handler
The signal handler to call Run the given callback whenever the
notifySingleClickActivate
signal is emitted -
notifySingleClickActivateSignal
Extension methodTyped
notify::single-click-activate
signal for using theconnect(signal:)
methodsDeclaration
Swift
static var notifySingleClickActivateSignal: ListViewSignalName { get }
-
getEnableRubberband()
Extension methodReturns whether rows can be selected by dragging with the mouse.
Declaration
Swift
@inlinable func getEnableRubberband() -> Bool
-
getFactory()
Extension methodGets the factory that’s currently used to populate list items.
Declaration
Swift
@inlinable func getFactory() -> ListItemFactoryRef!
-
getModel()
Extension methodGets the model that’s currently used to read the items displayed.
Declaration
Swift
@inlinable func getModel() -> SelectionModelRef!
-
getShowSeparators()
Extension methodReturns whether the list box should show separators between rows.
Declaration
Swift
@inlinable func getShowSeparators() -> Bool
-
getSingleClickActivate()
Extension methodReturns whether rows will be activated on single click and selected on hover.
Declaration
Swift
@inlinable func getSingleClickActivate() -> Bool
-
set(enableRubberband:
Extension method) Sets whether selections can be changed by dragging with the mouse.
Declaration
Swift
@inlinable func set(enableRubberband: Bool)
-
set(factory:
Extension method) Sets the
GtkListItemFactory
to use for populating list items.Declaration
Swift
@inlinable func set(factory: ListItemFactoryRef? = nil)
-
set(factory:
Extension method) Sets the
GtkListItemFactory
to use for populating list items.Declaration
Swift
@inlinable func set<ListItemFactoryT>(factory: ListItemFactoryT?) where ListItemFactoryT : ListItemFactoryProtocol
-
set(model:
Extension method) Sets the model to use.
This must be a [iface
Gtk.SelectionModel
] to use.Declaration
Swift
@inlinable func set(model: SelectionModelRef? = nil)
-
set(model:
Extension method) Sets the model to use.
This must be a [iface
Gtk.SelectionModel
] to use.Declaration
Swift
@inlinable func set<SelectionModelT>(model: SelectionModelT?) where SelectionModelT : SelectionModelProtocol
-
set(showSeparators:
Extension method) Sets whether the list box should show separators between rows.
Declaration
Swift
@inlinable func set(showSeparators: Bool)
-
set(singleClickActivate:
Extension method) Sets whether rows should be activated on single click and selected on hover.
Declaration
Swift
@inlinable func set(singleClickActivate: Bool)
-
enableRubberband
Extension methodReturns whether rows can be selected by dragging with the mouse.
Declaration
Swift
@inlinable var enableRubberband: Bool { get nonmutating set }
-
factory
Extension methodFactory for populating list items.
Declaration
Swift
@inlinable var factory: ListItemFactoryRef! { get nonmutating set }
-
model
Extension methodModel for the items displayed.
Declaration
Swift
@inlinable var model: SelectionModelRef! { get nonmutating set }
-
showSeparators
Extension methodReturns whether the list box should show separators between rows.
Declaration
Swift
@inlinable var showSeparators: Bool { get nonmutating set }
-
singleClickActivate
Extension methodReturns whether rows will be activated on single click and selected on hover.
Declaration
Swift
@inlinable var singleClickActivate: Bool { get nonmutating set }