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 |
GtkActionBar is designed to present contextual actions. It is expected to be displayed below the content and expand horizontally to fill the area.
It allows placing children at the start or the end. In addition, it contains an internal centered box which is centered with respect to the full width of the box, even if the children at either side take up different amounts of space.
CSS nodes
GtkActionBar has a single CSS node with name actionbar.
Synopsis
- newtype ActionBar = ActionBar (ManagedPtr ActionBar)
- class GObject o => IsActionBar o
- toActionBar :: (MonadIO m, IsActionBar o) => o -> m ActionBar
- noActionBar :: Maybe ActionBar
- actionBarGetCenterWidget :: (HasCallStack, MonadIO m, IsActionBar a) => a -> m (Maybe Widget)
- actionBarNew :: (HasCallStack, MonadIO m) => m ActionBar
- actionBarPackEnd :: (HasCallStack, MonadIO m, IsActionBar a, IsWidget b) => a -> b -> m ()
- actionBarPackStart :: (HasCallStack, MonadIO m, IsActionBar a, IsWidget b) => a -> b -> m ()
- actionBarSetCenterWidget :: (HasCallStack, MonadIO m, IsActionBar a, IsWidget b) => a -> Maybe b -> m ()
Exported types
Memory-managed wrapper type.
Instances
GObject ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar gobjectType :: ActionBar -> IO GType # | |
IsImplementorIface ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsObject ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsBuildable ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsBin ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsContainer ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsWidget ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsActionBar ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar |
class GObject o => IsActionBar o Source #
Type class for types which can be safely cast to ActionBar
, for instance with toActionBar
.
Instances
(GObject a, (UnknownAncestorError ActionBar a :: Constraint)) => IsActionBar a Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
IsActionBar ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar |
toActionBar :: (MonadIO m, IsActionBar o) => o -> m ActionBar Source #
Methods
getCenterWidget
actionBarGetCenterWidget Source #
:: (HasCallStack, MonadIO m, IsActionBar a) | |
=> a |
|
-> m (Maybe Widget) |
Retrieves the center bar widget of the bar.
Since: 3.12
new
:: (HasCallStack, MonadIO m) | |
=> m ActionBar | Returns: a new |
Creates a new ActionBar
widget.
Since: 3.12
packEnd
:: (HasCallStack, MonadIO m, IsActionBar a, IsWidget b) | |
=> a |
|
-> b |
|
-> m () |
Adds child
to actionBar
, packed with reference to the
end of the actionBar
.
Since: 3.12
packStart
:: (HasCallStack, MonadIO m, IsActionBar a, IsWidget b) | |
=> a |
|
-> b |
|
-> m () |
Adds child
to actionBar
, packed with reference to the
start of the actionBar
.
Since: 3.12
setCenterWidget
actionBarSetCenterWidget Source #
:: (HasCallStack, MonadIO m, IsActionBar a, IsWidget b) | |
=> a |
|
-> Maybe b |
|
-> m () |
Sets the center widget for the ActionBar
.
Since: 3.12