ButtonBoxProtocol
public protocol ButtonBoxProtocol : BoxProtocol
The ButtonBoxProtocol
protocol exposes the methods and properties of an underlying GtkButtonBox
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 ButtonBox
.
Alternatively, use ButtonBoxRef
as a lighweight, unowned
reference if you already have an instance you just want to use.
-
Untyped pointer to the underlying
GtkButtonBox
instance.Declaration
Swift
var ptr: UnsafeMutableRawPointer! { get }
-
button_box_ptr
Default implementationTyped pointer to the underlying
GtkButtonBox
instance.Default Implementation
Return the stored, untyped pointer as a typed pointer to the
GtkButtonBox
instance.Declaration
Swift
var button_box_ptr: UnsafeMutablePointer<GtkButtonBox>! { get }
-
Required Initialiser for types conforming to
ButtonBoxProtocol
Declaration
Swift
init(raw: UnsafeMutableRawPointer)
-
bind(property:
Extension methodto: _: flags: transformFrom: transformTo: ) Bind a
ButtonBoxPropertyName
source property to a given target object.Declaration
Swift
@discardableResult @inlinable func bind<Q, T>(property source_property: ButtonBoxPropertyName, 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 ButtonBox property
Declaration
Swift
@inlinable func get(property: ButtonBoxPropertyName) -> 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 ButtonBox property. Note that this will only have an effect on properties that are writable and not construct-only!
Declaration
Swift
@inlinable func set(property: ButtonBoxPropertyName, value v: GLibObject.Value)
Parameters
property
the property to get the value for
Return Value
the value of the named property
-
getChildNonHomogeneous(child:
Extension method) Returns whether the child is exempted from homogenous sizing.
Declaration
Swift
@inlinable func getChildNonHomogeneous<WidgetT>(child: WidgetT) -> Bool where WidgetT : WidgetProtocol
-
getChildSecondary(child:
Extension method) Returns whether
child
should appear in a secondary group of children.Declaration
Swift
@inlinable func getChildSecondary<WidgetT>(child: WidgetT) -> Bool where WidgetT : WidgetProtocol
-
getLayout()
Extension methodRetrieves the method being used to arrange the buttons in a button box.
Declaration
Swift
@inlinable func getLayout() -> GtkButtonBoxStyle
-
setChildNonHomogeneous(child:
Extension methodnonHomogeneous: ) Sets whether the child is exempted from homogeous sizing.
Declaration
Swift
@inlinable func setChildNonHomogeneous<WidgetT>(child: WidgetT, nonHomogeneous: Bool) where WidgetT : WidgetProtocol
-
setChildSecondary(child:
Extension methodisSecondary: ) Sets whether
child
should appear in a secondary group of children. A typical use of a secondary child is the help button in a dialog.This group appears after the other children if the style is
GTK_BUTTONBOX_START
,GTK_BUTTONBOX_SPREAD
orGTK_BUTTONBOX_EDGE
, and before the other children if the style isGTK_BUTTONBOX_END
. For horizontal button boxes, the definition of before/after depends on direction of the widget (seegtk_widget_set_direction()
). If the style isGTK_BUTTONBOX_START
orGTK_BUTTONBOX_END
, then the secondary children are aligned at the other end of the button box from the main children. For the other styles, they appear immediately next to the main children.Declaration
Swift
@inlinable func setChildSecondary<WidgetT>(child: WidgetT, isSecondary: Bool) where WidgetT : WidgetProtocol
-
set(layoutStyle:
Extension method) Changes the way buttons are arranged in their container.
Declaration
Swift
@inlinable func set(layoutStyle: GtkButtonBoxStyle)
-
layout
Extension methodRetrieves the method being used to arrange the buttons in a button box.
Declaration
Swift
@inlinable var layout: GtkButtonBoxStyle { get nonmutating set }
-
box
Extension methodUndocumented
Declaration
Swift
@inlinable var box: GtkBox { get }