X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/09d47ac404e82ab5e7005971c1ccc83f19a21871..e8518759e6c64fac28783cf190b82705dc4bbb87:/src/vikfileentry.h?ds=sidebyside diff --git a/src/vikfileentry.h b/src/vikfileentry.h index 5ce93b85..d5585f2e 100644 --- a/src/vikfileentry.h +++ b/src/vikfileentry.h @@ -44,8 +44,17 @@ struct _VikFileEntryClass GType vik_file_entry_get_type (); -GtkWidget *vik_file_entry_new (GtkFileChooserAction action); -G_CONST_RETURN gchar *vik_file_entry_get_filename ( VikFileEntry *vfe ); +typedef enum { + VF_FILTER_NONE = 0, + VF_FILTER_IMAGE, // JPG+PNG + VF_FILTER_MBTILES, + VF_FILTER_LAST +} vf_filter_type; + +GtkWidget *vik_file_entry_new (GtkFileChooserAction action, vf_filter_type filter_type); +const gchar *vik_file_entry_get_filename ( VikFileEntry *vfe ); void vik_file_entry_set_filename ( VikFileEntry *vfe, const gchar *filename ); +G_END_DECLS + #endif