Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (inaki@blueleaf.cc) |
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, IsDescendantOf ActionBar 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 :: IO GType # | |
HasParentTypes ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar | |
type ParentTypes ActionBar Source # | |
Defined in GI.Gtk.Objects.ActionBar type ParentTypes ActionBar = Bin ': (Container ': (Widget ': (Object ': (ImplementorIface ': (Buildable ': ([] :: [Type])))))) |
class (GObject o, IsDescendantOf ActionBar o) => IsActionBar o Source #
Type class for types which can be safely cast to ActionBar
, for instance with toActionBar
.
Instances
(GObject o, IsDescendantOf ActionBar o) => IsActionBar o 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