Property definitions

gtk $ GtkPackType :: defaultinit
#enum GtkPackType
#Represents the packing location GtkBox children.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkPackType
extern class GtkPackType `{GtkPackType`}
	#The child is packed into the start of the box.
	new start `{ return GTK_PACK_START; `}

	#The child is packed into the end of the box.
	new end_of_box `{ return GTK_PACK_END; `}
end
lib/gtk/v3_4/gtk_enums.nit:154,1--163,3