PopoverRef
public struct PopoverRef : PopoverProtocol, GWeakCapturing
GtkPopover is a bubble-like context window, primarily meant to
provide context-dependent information or options. Popovers are
attached to a widget, passed at construction time on gtk_popover_new()
,
or updated afterwards through gtk_popover_set_relative_to()
, by
default they will point to the whole widget area, although this
behavior can be changed through gtk_popover_set_pointing_to()
.
The position of a popover relative to the widget it is attached to
can also be changed through gtk_popover_set_position()
.
By default, GtkPopover
performs a GTK+ grab, in order to ensure
input events get redirected to it while it is shown, and also so
the popover is dismissed in the expected situations (clicks outside
the popover, or the Esc key being pressed). If no such modal behavior
is desired on a popover, gtk_popover_set_modal()
may be called on it
to tweak its behavior.
GtkPopover as menu replacement
GtkPopover is often used to replace menus. To facilitate this, it
supports being populated from a GMenuModel
, using
gtk_popover_new_from_model()
. In addition to all the regular menu
model features, this function supports rendering sections in the
model in a more compact form, as a row of icon buttons instead of
menu items.
To use this rendering, set the ”display-hint” attribute of the section to ”horizontal-buttons” and set the icons of your items with the ”verb-icon” attribute.
<section>
<attribute name="display-hint">horizontal-buttons</attribute>
<item>
<attribute name="label">Cut</attribute>
<attribute name="action">app.cut</attribute>
<attribute name="verb-icon">edit-cut-symbolic</attribute>
</item>
<item>
<attribute name="label">Copy</attribute>
<attribute name="action">app.copy</attribute>
<attribute name="verb-icon">edit-copy-symbolic</attribute>
</item>
<item>
<attribute name="label">Paste</attribute>
<attribute name="action">app.paste</attribute>
<attribute name="verb-icon">edit-paste-symbolic</attribute>
</item>
</section>
CSS nodes
GtkPopover has a single css node called popover. It always gets the
.background style class and it gets the .menu style class if it is
menu-like (e.g. GtkPopoverMenu
or created using gtk_popover_new_from_model()
.
Particular uses of GtkPopover, such as touch selection popups
or magnifiers in GtkEntry
or GtkTextView
get style classes
like .touch-selection or .magnifier to differentiate from
plain popovers.
The PopoverRef
type acts as a lightweight Swift reference to an underlying GtkPopover
instance.
It exposes methods that can operate on this data type through PopoverProtocol
conformance.
Use PopoverRef
only as an unowned
reference to an existing GtkPopover
instance.
-
Untyped pointer to the underlying `GtkPopover` instance.
For type-safe access, use the generated, typed pointer
popover_ptr
property instead.Declaration
Swift
public let ptr: UnsafeMutableRawPointer!
-
Designated initialiser from the underlying
C
data typeDeclaration
Swift
@inlinable init(_ p: UnsafeMutablePointer<GtkPopover>)
-
Designated initialiser from a constant pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init(_ p: UnsafePointer<GtkPopover>)
-
Conditional initialiser from an optional pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init!(_ maybePointer: UnsafeMutablePointer<GtkPopover>?)
-
Conditional initialiser from an optional, non-mutable pointer to the underlying
C
data typeDeclaration
Swift
@inlinable init!(_ maybePointer: UnsafePointer<GtkPopover>?)
-
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
PopoverProtocol
Declaration
Swift
@inlinable init<T>(_ other: T) where T : PopoverProtocol
-
This factory is syntactic sugar for setting weak pointers wrapped in
GWeak<T>
Declaration
Swift
@inlinable static func unowned<T>(_ other: T) -> PopoverRef where T : PopoverProtocol
-
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
PopoverProtocol
.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
PopoverProtocol
.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
PopoverProtocol
.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
PopoverProtocol
.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
PopoverProtocol
.Declaration
Swift
@inlinable init(opaquePointer: OpaquePointer)
-
Creates a new popover to point to
relative_to
Declaration
Swift
@inlinable init<WidgetT>(relativeTo: WidgetT?) where WidgetT : WidgetProtocol
-
Creates a
GtkPopover
and populates it according tomodel
. The popover is pointed to therelative_to
widget.The created buttons are connected to actions found in the
GtkApplicationWindow
to which the popover belongs - typically by means of being attached to a widget that is contained within theGtkApplicationWindows
widget hierarchy.Actions can also be added using
gtk_widget_insert_action_group()
on the menus attach widget or on any of its parent widgets.Declaration
Swift
@inlinable init<MenuModelT, WidgetT>(model relativeTo: WidgetT?, model: MenuModelT) where MenuModelT : MenuModelProtocol, WidgetT : WidgetProtocol
-
Creates a
GtkPopover
and populates it according tomodel
. The popover is pointed to therelative_to
widget.The created buttons are connected to actions found in the
GtkApplicationWindow
to which the popover belongs - typically by means of being attached to a widget that is contained within theGtkApplicationWindows
widget hierarchy.Actions can also be added using
gtk_widget_insert_action_group()
on the menus attach widget or on any of its parent widgets.Declaration
Swift
@inlinable static func newFrom<MenuModelT, WidgetT>(model relativeTo: WidgetT?, model: MenuModelT) -> WidgetRef! where MenuModelT : MenuModelProtocol, WidgetT : WidgetProtocol