Property definitions

gtk $ GtkCornerType :: defaultinit
#enum GtkCornerType
#Specifies which corner a child widget should be placed in when packed into a GtkScrolledWindow. This is effectively the opposite of where the scroll bars are placed.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkCornerType
extern class GtkCornerType `{GtkCornerType`}
	#Place the scrollbars on the right and bottom of the widget (default behaviour).
	new top_left `{ return GTK_CORNER_TOP_LEFT; `}

	#Place the scrollbars on the right and bottom of the widget (default behaviour).
	new bottom_left `{ return GTK_CORNER_BOTTOM_LEFT; `}

	#Place the scrollbars on the left and bottom of the widget.
	new top_right `{ return GTK_CORNER_TOP_RIGHT; `}

	#Place the scrollbars on the top and left of the widget.
	new bottom_right `{ return GTK_CORNER_BOTTOM_RIGHT; `}
end
lib/gtk/v3_4/gtk_enums.nit:92,1--107,3