Property definitions

gtk $ GtkFileChooserDialog :: defaultinit
# A file chooser dialog, suitable for "File/Open" or "File/Save" commands
# See: https://developer.gnome.org/gtk3/stable/GtkFileChooserDialog.html
extern class GtkFileChooserDialog `{GtkFileChooserDialog *`}
	super GtkDialog

	new (title: String, parent: GtkWindow, action: GtkFileChooserAction)
	import String.to_cstring `{
		return (GtkFileChooserDialog *)gtk_file_chooser_dialog_new(
			String_to_cstring(title), parent, action, "", NULL);
	`}
end
lib/gtk/v3_4/gtk_dialogs.nit:168,1--178,3