Used for justifying the text inside a GtkLabel widget. @https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkJustification
gtk :: GtkJustification :: center
The text is placed in the center of the label.gtk :: GtkJustification :: defaultinit
gtk :: GtkJustification :: fill
The text is placed is distributed across the label.gtk :: GtkJustification :: left
The text is placed at the left edge of the label.gtk :: GtkJustification :: right
The text is placed at the right edge of the label.gtk $ GtkJustification :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?gtk :: GtkJustification :: center
The text is placed in the center of the label.core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			core :: Pointer :: defaultinit
gtk :: GtkJustification :: defaultinit
core :: Object :: defaultinit
gtk :: GtkJustification :: fill
The text is placed is distributed across the label.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.
			gtk :: GtkJustification :: left
The text is placed at the left edge of the label.core :: Object :: output_class_name
Display class name on stdout (debug only).gtk :: GtkJustification :: right
The text is placed at the right edge of the label.
#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