gtk :: GtkArrowType
Used to indicate the direction in which a GtkArrow should point. @https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkArrowType
gtk $ GtkArrowType :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			core :: Object :: defaultinit
gtk :: GtkArrowType :: defaultinit
core :: Pointer :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).
#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