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.Misc
Contents
Description
The Misc
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
Widget
:halign
, Widget
:valign
and Widget
:margin
properties
on the child widget, so GtkMisc should not be used in new code. To reflect
this fact, all Misc
API has been deprecated.
- newtype Misc = Misc (ManagedPtr Misc)
- class GObject o => IsMisc o
- toMisc :: (MonadIO m, IsMisc o) => o -> m Misc
- noMisc :: Maybe Misc
- miscGetAlignment :: (HasCallStack, MonadIO m, IsMisc a) => a -> m (Float, Float)
- miscGetPadding :: (HasCallStack, MonadIO m, IsMisc a) => a -> m (Int32, Int32)
- miscSetAlignment :: (HasCallStack, MonadIO m, IsMisc a) => a -> Float -> Float -> m ()
- miscSetPadding :: (HasCallStack, MonadIO m, IsMisc a) => a -> Int32 -> Int32 -> m ()
- constructMiscXalign :: IsMisc o => Float -> IO (GValueConstruct o)
- getMiscXalign :: (MonadIO m, IsMisc o) => o -> m Float
- setMiscXalign :: (MonadIO m, IsMisc o) => o -> Float -> m ()
- constructMiscXpad :: IsMisc o => Int32 -> IO (GValueConstruct o)
- getMiscXpad :: (MonadIO m, IsMisc o) => o -> m Int32
- setMiscXpad :: (MonadIO m, IsMisc o) => o -> Int32 -> m ()
- constructMiscYalign :: IsMisc o => Float -> IO (GValueConstruct o)
- getMiscYalign :: (MonadIO m, IsMisc o) => o -> m Float
- setMiscYalign :: (MonadIO m, IsMisc o) => o -> Float -> m ()
- constructMiscYpad :: IsMisc o => Int32 -> IO (GValueConstruct o)
- getMiscYpad :: (MonadIO m, IsMisc o) => o -> m Int32
- setMiscYpad :: (MonadIO m, IsMisc o) => o -> Int32 -> m ()
Exported types
Constructors
Misc (ManagedPtr Misc) |
Methods
getAlignment
Deprecated: (Since version 3.14)Use Widget
alignment and margin properties.
Gets the X and Y alignment of the widget within its allocation.
See miscSetAlignment
.
getPadding
Deprecated: (Since version 3.14)Use Widget
alignment and margin properties.
Gets the padding in the X and Y directions of the widget.
See miscSetPadding
.
setAlignment
setPadding
Arguments
:: (HasCallStack, MonadIO m, IsMisc a) | |
=> a |
|
-> Int32 |
|
-> Int32 |
|
-> m () |
Deprecated: (Since version 3.14)Use Widget
alignment and margin properties.
Sets the amount of space to add around the widget.
Properties
xalign
constructMiscXalign :: IsMisc o => Float -> IO (GValueConstruct o) Source #
xpad
constructMiscXpad :: IsMisc o => Int32 -> IO (GValueConstruct o) Source #
yalign
constructMiscYalign :: IsMisc o => Float -> IO (GValueConstruct o) Source #
ypad
constructMiscYpad :: IsMisc o => Int32 -> IO (GValueConstruct o) Source #