Property definitions

gtk $ GtkMessageType :: defaultinit
# enum GtkMessageType
# The type of message being displayed in the dialog.
# See: https://developer.gnome.org/gtk3/stable/GtkMessageDialog.html#GtkMessageType
extern class GtkMessageType `{GtkMessageType`}
	# Informational message
	new info `{ return GTK_MESSAGE_INFO; `}

	# Non-fatal warning message.
	new warning `{ return GTK_MESSAGE_WARNING; `}

	# Question requiring a choice.
	new question `{ return GTK_MESSAGE_QUESTION; `}

	# Fatal error message.
	new error `{ return GTK_MESSAGE_ERROR; `}

	# None of the above, doesn't get an icon.
	new other `{ return GTK_MESSAGE_OTHER; `}
end
lib/gtk/v3_4/gtk_dialogs.nit:249,1--267,3