Property definitions

gtk $ GtkPositionType :: defaultinit
#enum GtkPositionType
#Describes which edge of a widget a certain feature is positioned.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkPositionType
extern class GtkPositionType `{GtkPositionType`}
	#The feature is at the left edge.
	new left `{ return GTK_POS_LEFT; `}

	#The feature is at the right edge.
	new right `{ return GTK_POS_RIGHT; `}

	#The feature is at the top edge.
	new top `{ return GTK_POS_TOP; `}

	#The feature is at the bottom edge.
	new bottom `{ return GTK_POS_BOTTOM; `}
end
lib/gtk/v3_4/gtk_enums.nit:179,1--194,3