Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
GI.Gtk.Objects.CellAreaBox
Description
The CellAreaBox
renders cell renderers into a row or a column
depending on its Orientation
.
GtkCellAreaBox uses a notion of packing. Packing
refers to adding cell renderers with reference to a particular position
in a CellAreaBox
. There are two reference positions: the
start and the end of the box.
When the CellAreaBox
is oriented in the OrientationVertical
orientation, the start is defined as the top of the box and the end is
defined as the bottom. In the OrientationHorizontal
orientation
start is defined as the left side and the end is defined as the right
side.
Alignments of GtkCellRenderers
rendered in adjacent rows can be
configured by configuring the CellAreaBox
align child cell property
with cellAreaCellSetProperty
or by specifying the "align"
argument to cellAreaBoxPackStart
and cellAreaBoxPackEnd
.
- newtype CellAreaBox = CellAreaBox (ManagedPtr CellAreaBox)
- class GObject o => IsCellAreaBox o
- toCellAreaBox :: (MonadIO m, IsCellAreaBox o) => o -> m CellAreaBox
- noCellAreaBox :: Maybe CellAreaBox
- cellAreaBoxGetSpacing :: (HasCallStack, MonadIO m, IsCellAreaBox a) => a -> m Int32
- cellAreaBoxNew :: (HasCallStack, MonadIO m) => m CellAreaBox
- cellAreaBoxPackEnd :: (HasCallStack, MonadIO m, IsCellAreaBox a, IsCellRenderer b) => a -> b -> Bool -> Bool -> Bool -> m ()
- cellAreaBoxPackStart :: (HasCallStack, MonadIO m, IsCellAreaBox a, IsCellRenderer b) => a -> b -> Bool -> Bool -> Bool -> m ()
- cellAreaBoxSetSpacing :: (HasCallStack, MonadIO m, IsCellAreaBox a) => a -> Int32 -> m ()
- constructCellAreaBoxSpacing :: IsCellAreaBox o => Int32 -> IO (GValueConstruct o)
- getCellAreaBoxSpacing :: (MonadIO m, IsCellAreaBox o) => o -> m Int32
- setCellAreaBoxSpacing :: (MonadIO m, IsCellAreaBox o) => o -> Int32 -> m ()
Exported types
newtype CellAreaBox Source #
Constructors
CellAreaBox (ManagedPtr CellAreaBox) |
class GObject o => IsCellAreaBox o Source #
Instances
toCellAreaBox :: (MonadIO m, IsCellAreaBox o) => o -> m CellAreaBox Source #
Methods
getSpacing
cellAreaBoxGetSpacing Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellAreaBox a) | |
=> a |
|
-> m Int32 | Returns: the space added between cell renderers in |
Gets the spacing added between cell renderers.
Since: 3.0
new
Arguments
:: (HasCallStack, MonadIO m) | |
=> m CellAreaBox | Returns: a newly created |
Creates a new CellAreaBox
.
Since: 3.0
packEnd
Arguments
:: (HasCallStack, MonadIO m, IsCellAreaBox a, IsCellRenderer b) | |
=> a |
|
-> b |
|
-> Bool |
|
-> Bool |
|
-> Bool |
|
-> m () |
Adds renderer
to box
, packed with reference to the end of box
.
The renderer
is packed after (away from end of) any other
CellRenderer
packed with reference to the end of box
.
Since: 3.0
packStart
Arguments
:: (HasCallStack, MonadIO m, IsCellAreaBox a, IsCellRenderer b) | |
=> a |
|
-> b |
|
-> Bool |
|
-> Bool |
|
-> Bool |
|
-> m () |
Adds renderer
to box
, packed with reference to the start of box
.
The renderer
is packed after any other CellRenderer
packed
with reference to the start of box
.
Since: 3.0
setSpacing
cellAreaBoxSetSpacing Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellAreaBox a) | |
=> a |
|
-> Int32 |
|
-> m () |
Sets the spacing to add between cell renderers in box
.
Since: 3.0
Properties
spacing
constructCellAreaBoxSpacing :: IsCellAreaBox o => Int32 -> IO (GValueConstruct o) Source #
getCellAreaBoxSpacing :: (MonadIO m, IsCellAreaBox o) => o -> m Int32 Source #
setCellAreaBoxSpacing :: (MonadIO m, IsCellAreaBox o) => o -> Int32 -> m () Source #