Package: gtk

GEnum gtk-toolbar-style

Details

Used to customize the appearance of a gtk-toolbar widget. Note that setting the toolbar style overrides the preferences of the user for the default toolbar style. Note that if the button has only a label set and :icons is used, the label will be visible, and vice versa.
(define-g-enum "GtkToolbarStyle" gtk-toolbar-style
  (:export t
   :type-initializer "gtk_toolbar_style_get_type")
  (:icons 0)
  (:text 1)
  (:both 2)
  (:both-horiz 3))  
:icons
Buttons display only icons in the toolbar.
:text
Buttons display only text labels in the toolbar.
:both
Buttons display text and icons in the toolbar.
:both-horiz
Buttons display icons and text alongside each other, rather than vertically stacked
 

See also

2021-7-20