r1996: Cope slightly better with invalid filenames in various places (reported by
[rox-filer.git] / ROX-Filer / src / toolbar.h
blob9c628739ca227be3301a547784b5c46b5c366f08
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@users.sourceforge.net>.
6 */
8 #ifndef _TOOLBAR_H
9 #define _TOOLBAR_H
11 #include <gtk/gtk.h>
13 /* The values correspond to the menu indexes in the option widget */
14 typedef enum {
15 TOOLBAR_NONE = 0,
16 TOOLBAR_NORMAL = 1,
17 TOOLBAR_LARGE = 2,
18 TOOLBAR_HORIZONTAL = 3,
19 } ToolbarType;
21 extern Option o_toolbar, o_toolbar_info;
23 /* Prototypes */
24 void toolbar_init(void);
25 GtkWidget *toolbar_tool_option(int i);
26 void toolbar_update_info(FilerWindow *filer_window);
27 void toolbar_update_toolbar(FilerWindow *filer_window);
29 #endif /* _TOOLBAR_H */