Property definitions

gtk $ GtkArrowType :: defaultinit
#enum GtkArrowType
#Used to indicate the direction in which a GtkArrow should point.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkArrowType
extern class GtkArrowType `{GtkArrowType`}
	#Represents an upward pointing arrow.
	new up `{ return GTK_ARROW_UP; `}

	#Represents an downward pointing arrow.
	new down `{ return GTK_ARROW_DOWN; `}

	#Represents a left pointing arrow.
	new left `{ return GTK_ARROW_LEFT; `}

	#Represents a right pointing arrow.
	new right `{ return GTK_ARROW_RIGHT; `}

	#No arrow
	new none `{ return GTK_ARROW_NONE; `}
end
lib/gtk/v3_4/gtk_enums.nit:38,1--56,3