ListItemRef

public struct ListItemRef : ListItemProtocol, GWeakCapturing

GtkListItem is used by list widgets to represent items in a GListModel.

The GtkListItems are managed by the list widget (with its factory) and cannot be created by applications, but they need to be populated by application code. This is done by calling [methodGtk.ListItem.set_child].

GtkListItems exist in 2 stages:

  1. The unbound stage where the listitem is not currently connected to an item in the list. In that case, the [propertyGtk.ListItem:item] property is set to nil.

  2. The bound stage where the listitem references an item from the list. The [propertyGtk.ListItem:item] property is not nil.

The ListItemRef type acts as a lightweight Swift reference to an underlying GtkListItem instance. It exposes methods that can operate on this data type through ListItemProtocol conformance. Use ListItemRef only as an unowned reference to an existing GtkListItem instance.

  • ptr
    Untyped pointer to the underlying `GtkListItem` instance.
    

    For type-safe access, use the generated, typed pointer list_item_ptr property instead.

    Declaration

    Swift

    public let ptr: UnsafeMutableRawPointer!

ListItem Class

  • Designated initialiser from the underlying C data type

    Declaration

    Swift

    @inlinable
    init(_ p: UnsafeMutablePointer<GtkListItem>)
  • Designated initialiser from a constant pointer to the underlying C data type

    Declaration

    Swift

    @inlinable
    init(_ p: UnsafePointer<GtkListItem>)
  • Conditional initialiser from an optional pointer to the underlying C data type

    Declaration

    Swift

    @inlinable
    init!(_ maybePointer: UnsafeMutablePointer<GtkListItem>?)
  • Conditional initialiser from an optional, non-mutable pointer to the underlying C data type

    Declaration

    Swift

    @inlinable
    init!(_ maybePointer: UnsafePointer<GtkListItem>?)
  • Conditional initialiser from an optional gpointer

    Declaration

    Swift

    @inlinable
    init!(gpointer g: gpointer?)
  • Conditional initialiser from an optional, non-mutable gconstpointer

    Declaration

    Swift

    @inlinable
    init!(gconstpointer g: gconstpointer?)
  • Reference intialiser for a related type that implements ListItemProtocol

    Declaration

    Swift

    @inlinable
    init<T>(_ other: T) where T : ListItemProtocol
  • This factory is syntactic sugar for setting weak pointers wrapped in GWeak<T>

    Declaration

    Swift

    @inlinable
    static func unowned<T>(_ other: T) -> ListItemRef where T : ListItemProtocol
  • Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to ListItemProtocol.

    Declaration

    Swift

    @inlinable
    init<T>(cPointer: UnsafeMutablePointer<T>)
  • Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to ListItemProtocol.

    Declaration

    Swift

    @inlinable
    init<T>(constPointer: UnsafePointer<T>)
  • Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to ListItemProtocol.

    Declaration

    Swift

    @inlinable
    init(mutating raw: UnsafeRawPointer)
  • Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to ListItemProtocol.

    Declaration

    Swift

    @inlinable
    init(raw: UnsafeMutableRawPointer)
  • Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to ListItemProtocol.

    Declaration

    Swift

    @inlinable
    init(opaquePointer: OpaquePointer)