Reputation: 2750
In GTK, the GtkFileSelection (via gtk_file_selection_new) and the GtkFileChooserDialog (via gtk_file_chooser_dialog_new) look like they're intended for the same purpose but with different appearances.
Is there any reason I should prefer one over the other or is it just a matter of picking the one that is most visually appealing?
Upvotes: 0
Views: 282
Reputation: 916
GtkFileSelection
is deprecated in the current stable version. You should use GtkFileChooserDialog
.
Upvotes: 3