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 |
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.
Synopsis
- 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
Memory-managed wrapper type.
Instances
GObject Misc Source # | |
Defined in GI.Gtk.Objects.Misc gobjectType :: Misc -> IO GType # | |
IsImplementorIface Misc Source # | |
Defined in GI.Gtk.Objects.Misc | |
IsObject Misc Source # | |
Defined in GI.Gtk.Objects.Misc | |
IsBuildable Misc Source # | |
Defined in GI.Gtk.Objects.Misc | |
IsMisc Misc Source # | |
Defined in GI.Gtk.Objects.Misc | |
IsWidget Misc Source # | |
Defined in GI.Gtk.Objects.Misc |
class GObject o => IsMisc o Source #
Instances
(GObject a, (UnknownAncestorError Misc a :: Constraint)) => IsMisc a Source # | |
Defined in GI.Gtk.Objects.Misc | |
IsMisc Label Source # | |
Defined in GI.Gtk.Objects.Label | |
IsMisc Misc Source # | |
Defined in GI.Gtk.Objects.Misc | |
IsMisc Arrow Source # | |
Defined in GI.Gtk.Objects.Arrow | |
IsMisc AccelLabel Source # | |
Defined in GI.Gtk.Objects.AccelLabel | |
IsMisc Image Source # | |
Defined in GI.Gtk.Objects.Image |
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
:: (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
The horizontal alignment. A value of 0.0 means left alignment (or right on RTL locales); a value of 1.0 means right alignment (or left on RTL locales).
constructMiscXalign :: IsMisc o => Float -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “xalign
” property. This is rarely needed directly, but it is used by new
.
getMiscXalign :: (MonadIO m, IsMisc o) => o -> m Float Source #
Get the value of the “xalign
” property.
When overloading is enabled, this is equivalent to
get
misc #xalign
setMiscXalign :: (MonadIO m, IsMisc o) => o -> Float -> m () Source #
Set the value of the “xalign
” property.
When overloading is enabled, this is equivalent to
set
misc [ #xalign:=
value ]
xpad
The amount of space to add on the left and right of the widget, in pixels.
constructMiscXpad :: IsMisc o => Int32 -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “xpad
” property. This is rarely needed directly, but it is used by new
.
getMiscXpad :: (MonadIO m, IsMisc o) => o -> m Int32 Source #
Get the value of the “xpad
” property.
When overloading is enabled, this is equivalent to
get
misc #xpad
setMiscXpad :: (MonadIO m, IsMisc o) => o -> Int32 -> m () Source #
Set the value of the “xpad
” property.
When overloading is enabled, this is equivalent to
set
misc [ #xpad:=
value ]
yalign
The vertical alignment. A value of 0.0 means top alignment; a value of 1.0 means bottom alignment.
constructMiscYalign :: IsMisc o => Float -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “yalign
” property. This is rarely needed directly, but it is used by new
.
getMiscYalign :: (MonadIO m, IsMisc o) => o -> m Float Source #
Get the value of the “yalign
” property.
When overloading is enabled, this is equivalent to
get
misc #yalign
setMiscYalign :: (MonadIO m, IsMisc o) => o -> Float -> m () Source #
Set the value of the “yalign
” property.
When overloading is enabled, this is equivalent to
set
misc [ #yalign:=
value ]
ypad
The amount of space to add on the top and bottom of the widget, in pixels.
constructMiscYpad :: IsMisc o => Int32 -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “ypad
” property. This is rarely needed directly, but it is used by new
.
getMiscYpad :: (MonadIO m, IsMisc o) => o -> m Int32 Source #
Get the value of the “ypad
” property.
When overloading is enabled, this is equivalent to
get
misc #ypad
setMiscYpad :: (MonadIO m, IsMisc o) => o -> Int32 -> m () Source #
Set the value of the “ypad
” property.
When overloading is enabled, this is equivalent to
set
misc [ #ypad:=
value ]