MiscProtocol
public protocol MiscProtocol : WidgetProtocol
The GtkMisc widget is an abstract widget which is not useful itself, but
is used to derive subclasses which have alignment and padding attributes.
The horizontal and vertical padding attributes allows extra space to be added around the widget.
The horizontal and vertical alignment attributes enable the widget to be positioned within its allocated area. Note that if the widget is added to a container in such a way that it expands automatically to fill its allocated area, the alignment settings will not alter the widget’s position.
Note that the desired effect can in most cases be achieved by using the
GtkWidget:halign, GtkWidget:valign and GtkWidget:margin properties
on the child widget, so GtkMisc should not be used in new code. To reflect
this fact, all GtkMisc API has been deprecated.
The MiscProtocol protocol exposes the methods and properties of an underlying GtkMisc 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 Misc.
Alternatively, use MiscRef as a lighweight, unowned reference if you already have an instance you just want to use.
-
Untyped pointer to the underlying
GtkMiscinstance.Declaration
Swift
var ptr: UnsafeMutableRawPointer! { get } -
misc_ptrDefault implementationTyped pointer to the underlying
GtkMiscinstance.Default Implementation
Return the stored, untyped pointer as a typed pointer to the
GtkMiscinstance.Declaration
Swift
var misc_ptr: UnsafeMutablePointer<GtkMisc>! { get } -
Required Initialiser for types conforming to
MiscProtocolDeclaration
Swift
init(raw: UnsafeMutableRawPointer)
-
bind(property:Extension methodto: _: flags: transformFrom: transformTo: ) Bind a
MiscPropertyNamesource property to a given target object.Declaration
Swift
@discardableResult @inlinable func bind<Q, T>(property source_property: MiscPropertyName, 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 : ObjectProtocolParameters
source_propertythe source property to bind
targetthe target object to bind to
target_propertythe target property to bind to
flagsthe flags to pass to the
Bindingtransform_fromValueTransformerto use for forward transformationtransform_toValueTransformerto use for backwards transformationReturn Value
binding reference or
nilin case of an error -
get(property:Extension method) Get the value of a Misc property
Declaration
Swift
@inlinable func get(property: MiscPropertyName) -> GLibObject.ValueParameters
propertythe property to get the value for
Return Value
the value of the named property
-
set(property:Extension methodvalue: ) Set the value of a Misc property. Note that this will only have an effect on properties that are writable and not construct-only!
Declaration
Swift
@inlinable func set(property: MiscPropertyName, value v: GLibObject.Value)Parameters
propertythe property to get the value for
Return Value
the value of the named property
-
getAlignment(xalign:Extension methodyalign: ) Gets the X and Y alignment of the widget within its allocation. See
gtk_misc_set_alignment().get_alignment is deprecated: Use #GtkWidget alignment and margin properties.
Declaration
Swift
@available(*, deprecated) @inlinable func getAlignment(xalign: UnsafeMutablePointer<gfloat>! = nil, yalign: UnsafeMutablePointer<gfloat>! = nil) -
getPadding(xpad:Extension methodypad: ) Gets the padding in the X and Y directions of the widget. See
gtk_misc_set_padding().get_padding is deprecated: Use #GtkWidget alignment and margin properties.
Declaration
Swift
@available(*, deprecated) @inlinable func getPadding(xpad: UnsafeMutablePointer<gint>! = nil, ypad: UnsafeMutablePointer<gint>! = nil) -
setAlignment(xalign:Extension methodyalign: ) Sets the alignment of the widget.
set_alignment is deprecated: Use #GtkWidget’s alignment (#GtkWidget:halign and #GtkWidget:valign) and margin properties or #GtkLabel’s #GtkLabel:xalign and #GtkLabel:yalign properties.
Declaration
Swift
@available(*, deprecated) @inlinable func setAlignment(xalign: Double, yalign: Double) -
setPadding(xpad:Extension methodypad: ) Sets the amount of space to add around the widget.
set_padding is deprecated: Use #GtkWidget alignment and margin properties.
Declaration
Swift
@available(*, deprecated) @inlinable func setPadding(xpad: Int, ypad: Int) -
widgetExtension methodUndocumented
Declaration
Swift
@inlinable var widget: GtkWidget { get }
View on GitHub
Install in Dash
MiscProtocol Protocol Reference