Property definitions

gtk $ GtkJustification :: defaultinit
#enum GtkJustification
#Used for justifying the text inside a GtkLabel widget.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkJustification
extern class GtkJustification `{GtkJustification`}
	#The text is placed at the left edge of the label.
	new left `{ return GTK_JUSTIFY_LEFT; `}

	#The text is placed at the right edge of the label.
	new right `{ return GTK_JUSTIFY_RIGHT; `}

	#The text is placed in the center of the label.
	new center `{ return GTK_JUSTIFY_CENTER; `}

	#The text is placed is distributed across the label.
	new fill `{ return GTK_JUSTIFY_FILL; `}
end
lib/gtk/v3_4/gtk_enums.nit:126,1--141,3