Property definitions

gtk $ GtkOrientable :: defaultinit
# A widget that can switch orientation
extern class GtkOrientable `{GtkOrientable *`}
	super GtkWidget

	# Get the orientation of this widget
	fun orientation: GtkOrientation `{
		return gtk_orientable_get_orientation(self);
	`}

	# Set the orientation of this widget
	fun orientation=(orientation: GtkOrientation) `{
		gtk_orientable_set_orientation(self, orientation);
	`}
end
lib/gtk/v3_4/gtk_core.nit:394,1--407,3