Top |
TeplFileChooserTeplFileChooser — Extra functions for GtkFileChooser |
void | tepl_file_chooser_set_modal () |
void | tepl_file_chooser_set_parent () |
void | tepl_file_chooser_show () |
Extra functions for GtkFileChooser, to have common code between GtkFileChooserDialog and GtkFileChooserNative.
void tepl_file_chooser_set_modal (GtkFileChooser *chooser
,gboolean modal
);
Calls either gtk_native_dialog_set_modal()
or gtk_window_set_modal()
depending on the chooser
type.
Since: 5.0
void tepl_file_chooser_set_parent (GtkFileChooser *chooser
,GtkWindow *parent
);
Sets or unsets a parent GtkWindow for the chooser
dialog. It calls the
right functions depending on the type of chooser
.
Since: 5.0
void
tepl_file_chooser_show (GtkFileChooser *chooser
);
Calls gtk_native_dialog_show()
or gtk_window_present()
depending on the type
of chooser
.
Since: 5.0