Property definitions

gtk $ GdkGravity :: defaultinit
# enum GdkGravity
# Defines the reference point of a window and the meaning of coordinates passed to gtk_window_move().
# See: https://developer.gnome.org/gdk3/stable/gdk3-Windows.html#GdkGravity
extern class GdkGravity `{GdkGravity`}
	# The reference point is at the top left corner.
	new north_west `{ return GDK_GRAVITY_NORTH_WEST; `}

	# The reference point is in the middle of the top edge.
	new north `{ return GDK_GRAVITY_NORTH; `}

	# The reference point is at the top right corner.
	new north_east `{ return GDK_GRAVITY_NORTH_EAST; `}

	# The reference point is at the middle of the left edge.
	new west `{ return GDK_GRAVITY_WEST; `}

	# The reference point is at the center of the window
	new center `{ return GDK_GRAVITY_CENTER; `}

	# The reference point is at the middle of the right edge.
	new east `{ return GDK_GRAVITY_EAST; `}

	# The reference point is at the lower left corner.
	new south_west `{ return GDK_GRAVITY_SOUTH_WEST; `}

	# The reference point is at the middle of the lower edge.
	new south `{ return GDK_GRAVITY_SOUTH; `}

	# The reference point is at the lower right corner.
	new south_east `{ return GDK_GRAVITY_SOUTH_EAST; `}

	# The reference point is at the top left corner of the window itself, ignoring window manager decorations.
	new static `{ return GDK_GRAVITY_STATIC; `}
end
lib/gtk/v3_4/gdk_enums.nit:24,1--57,3