File: //usr/local/ssl/include/libbonoboui-2.0/bonobo/bonobo-file-selector-util.h
/*
* bonobo-file-selector-util.h - functions for getting files from a
* selector
*
* Authors:
* Jacob Berkman <jacob@ximian.com>
*
* Copyright 2001 Ximian, Inc.
*
*/
#ifndef _BONOBO_FILE_SELECTOR_UTIL_H_
#define _BONOBO_FILE_SELECTOR_UTIL_H_
#include <glib/gmacros.h>
#include <gtk/gtkwindow.h>
G_BEGIN_DECLS
char *bonobo_file_selector_open (GtkWindow *parent,
gboolean enable_vfs,
const char *title,
const char *mime_types,
const char *default_path);
char **bonobo_file_selector_open_multi (GtkWindow *parent,
gboolean enable_vfs,
const char *title,
const char *mime_types,
const char *default_path);
char *bonobo_file_selector_save (GtkWindow *parent,
gboolean enable_vfs,
const char *title,
const char *mime_types,
const char *default_path,
const char *default_filename);
G_END_DECLS
#endif /* _BONOBO_FILE_SELECTOR_UTIL_H_ */