Table
open class Table : Container, TableProtocol
The GtkTable
functions allow the programmer to arrange widgets in rows and
columns, making it easy to align many widgets next to each other,
horizontally and vertically.
Tables are created with a call to gtk_table_new()
, the size of which can
later be changed with gtk_table_resize()
.
Widgets can be added to a table using gtk_table_attach()
or the more
convenient (but slightly less flexible) gtk_table_attach_defaults()
.
To alter the space next to a specific row, use gtk_table_set_row_spacing()
,
and for a column, gtk_table_set_col_spacing()
.
The gaps between all rows or columns can be changed by
calling gtk_table_set_row_spacings()
or gtk_table_set_col_spacings()
respectively. Note that spacing is added between the
children, while padding added by gtk_table_attach()
is added on
either side of the widget it belongs to.
gtk_table_set_homogeneous()
, can be used to set whether all cells in the
table will resize themselves to the size of the largest widget in the table.
> GtkTable
has been deprecated. Use GtkGrid
instead. It provides the same
> capabilities as GtkTable for arranging widgets in a rectangular grid, but
> does support height-for-width geometry management.
The Table
type acts as a reference-counted owner of an underlying GtkTable
instance.
It provides the methods that can operate on this data type through TableProtocol
conformance.
Use Table
as a strong reference or owner of a GtkTable
instance.
-
Designated initialiser from the underlying `C` data type.
This creates an instance without performing an unbalanced retain i.e., ownership is transferred to the
Table
instance.Declaration
Swift
@inlinable public init(_ op: UnsafeMutablePointer<GtkTable>)
Parameters
op
pointer to the underlying object
-
Designated initialiser from a constant pointer to the underlying
C
data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to theTable
instance.Declaration
Swift
@inlinable public init(_ op: UnsafePointer<GtkTable>)
Parameters
op
pointer to the underlying object
-
Optional initialiser from a non-mutating
gpointer
to the underlyingC
data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to theTable
instance.Declaration
Swift
@inlinable override public init!(gpointer op: gpointer?)
Parameters
op
gpointer to the underlying object
-
Optional initialiser from a non-mutating
gconstpointer
to the underlyingC
data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to theTable
instance.Declaration
Swift
@inlinable override public init!(gconstpointer op: gconstpointer?)
Parameters
op
pointer to the underlying object
-
Optional initialiser from a constant pointer to the underlying
C
data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to theTable
instance.Declaration
Swift
@inlinable public init!(_ op: UnsafePointer<GtkTable>?)
Parameters
op
pointer to the underlying object
-
Optional initialiser from the underlying
C
data type. This creates an instance without performing an unbalanced retain i.e., ownership is transferred to theTable
instance.Declaration
Swift
@inlinable public init!(_ op: UnsafeMutablePointer<GtkTable>?)
Parameters
op
pointer to the underlying object
-
Designated initialiser from the underlying
C
data type. Will retainGtkTable
. i.e., ownership is transferred to theTable
instance.Declaration
Swift
@inlinable public init(retaining op: UnsafeMutablePointer<GtkTable>)
Parameters
op
pointer to the underlying object
-
Reference intialiser for a related type that implements
TableProtocol
Will retainGtkTable
.Declaration
Swift
@inlinable public init<T>(table other: T) where T : TableProtocol
Parameters
other
an instance of a related type that implements
TableProtocol
-
Unsafe typed initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable override public init<T>(cPointer p: UnsafeMutablePointer<T>)
Parameters
cPointer
pointer to the underlying object
-
Unsafe typed, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable override public init<T>(retainingCPointer cPointer: UnsafeMutablePointer<T>)
Parameters
cPointer
pointer to the underlying object
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable override public init(raw p: UnsafeRawPointer)
Parameters
p
raw pointer to the underlying object
-
Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable override public init(retainingRaw raw: UnsafeRawPointer)
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable public required init(raw p: UnsafeMutableRawPointer)
Parameters
p
mutable raw pointer to the underlying object
-
Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable required public init(retainingRaw raw: UnsafeMutableRawPointer)
Parameters
raw
mutable raw pointer to the underlying object
-
Unsafe untyped initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable override public init(opaquePointer p: OpaquePointer)
Parameters
p
opaque pointer to the underlying object
-
Unsafe untyped, retaining initialiser. Do not use unless you know the underlying data type the pointer points to conforms to
TableProtocol
.Declaration
Swift
@inlinable override public init(retainingOpaquePointer p: OpaquePointer)
Parameters
p
opaque pointer to the underlying object
-
Used to create a new table widget. An initial size must be given by specifying how many rows and columns the table should have, although this can be changed later with
gtk_table_resize()
.rows
andcolumns
must both be in the range 1 .. 65535. For historical reasons, 0 is accepted as well and is silently interpreted as 1.new is deprecated: Use gtk_grid_new().
Declaration
Swift
@available(*, deprecated) @inlinable public init(rows: Int, columns: Int, homogeneous: Bool)