comparison finch/libgnt/gntfilesel.h @ 15936:0f1ab43db297

fix file saving
author Richard Nelson <wabz@pidgin.im>
date Tue, 27 Mar 2007 00:46:18 +0000
parents 9ac4e6b097d3
children e05e5b148723
comparison
equal deleted inserted replaced
15934:cc3c50816cc9 15936:0f1ab43db297
31 31
32 GntWidget *select; /* select button */ 32 GntWidget *select; /* select button */
33 GntWidget *cancel; /* cancel button */ 33 GntWidget *cancel; /* cancel button */
34 34
35 char *current; /* Full path of the current location */ 35 char *current; /* Full path of the current location */
36 char *suggest; /* Suggested filename */
36 /* XXX: someone should make these useful */ 37 /* XXX: someone should make these useful */
37 gboolean must_exist; /* Make sure the selected file (the name entered in 'location') exists */ 38 gboolean must_exist; /* Make sure the selected file (the name entered in 'location') exists */
38 gboolean dirsonly; /* Show only directories */ 39 gboolean dirsonly; /* Show only directories */
39 gboolean multiselect; 40 gboolean multiselect;
40 GList *tags; /* List of tagged files when multiselect is set */ 41 GList *tags; /* List of tagged files when multiselect is set */
71 72
72 GList *gnt_file_sel_get_selected_multi_files(GntFileSel *sel); 73 GList *gnt_file_sel_get_selected_multi_files(GntFileSel *sel);
73 74
74 void gnt_file_sel_set_multi_select(GntFileSel *sel, gboolean set); 75 void gnt_file_sel_set_multi_select(GntFileSel *sel, gboolean set);
75 76
77 void gnt_file_sel_set_suggested_filename(GntFileSel *sel, const char *suggest);
78
76 G_END_DECLS 79 G_END_DECLS
77 80
78 #endif /* GNT_FILE_SEL_H */ 81 #endif /* GNT_FILE_SEL_H */
79 82