Property definitions

gtk $ GtkToolbarStyle :: defaultinit
#enum GtkToolbarStyle
#Used to customize the appearance of a GtkToolbar.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkToolbarStyle
extern class GtkToolbarStyle `{GtkToolbarStyle`}
	#Buttons display only icons in the toolbar.
	new icons `{ return GTK_TOOLBAR_ICONS; `}

	#Buttons display only text labels in the toolbar.
	new text `{ return GTK_TOOLBAR_TEXT; `}

	#Buttons display text and icons in the toolbar.
	new both `{ return GTK_TOOLBAR_BOTH; `}

	#Buttons display icons and text alongside each other, rather than vertically stacked
	new both_horiz `{ return GTK_TOOLBAR_BOTH_HORIZ; `}
end
lib/gtk/v3_4/gtk_enums.nit:308,1--323,3