Property definitions

gtk $ GtkArrowPlacement :: defaultinit
#enum GtkArrowPlacement
#Used to specify the placement of scroll arrows in scrolling menus.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkArrowPlacement
extern class GtkArrowPlacement `{GtkArrowPlacement`}
	#Place one arrow on each end of the menu.
	new both `{ return GTK_ARROWS_BOTH; `}

	#Place both arrows at the top of the menu.
	new top `{ return GTK_ARROWS_START; `}

	#Place both arrows at the bottom of the menu.
	new bottom `{ return GTK_ARROWS_END; `}
end
lib/gtk/v3_4/gtk_enums.nit:24,1--36,3