r183: Added the TODO file. Info permissions are displayed in symbolic form.
[rox-filer.git] / ROX-Filer / src / gui_support.h
blobcb5d1869c248c1a3c9c9d2cc6712962bbbf3c8e5
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
6 */
8 #ifndef _GUI_SUPPORT_H
9 #define _GUI_SUPPORT_H
11 #include <gtk/gtk.h>
13 #define WIN_STATE_STICKY (1<<0) /* Fixed relative to screen */
14 #define WIN_STATE_HIDDEN (1<<4) /* Not on taskbar but window visible */
15 #define WIN_STATE_FIXED_POSITION (1<<8) /* Window is fixed in position even */
16 #define WIN_STATE_ARRANGE_IGNORE (1<<9) /* Ignore for auto arranging */
18 extern GdkFont *fixed_font;
19 extern GtkStyle *fixed_style;
21 void gui_support_init();
22 int get_choice(char *title,
23 char *message,
24 int number_of_buttons, ...);
25 void report_error(char *title, char *message);
26 void set_cardinal_property(GdkWindow *window, GdkAtom prop, guint32 value);
27 void make_panel_window(GdkWindow *window);
28 gint hide_dialog_event(GtkWidget *widget, GdkEvent *event, gpointer window);
29 void delayed_error(char *title, char *error);
30 gboolean load_file(char *pathname, char **data_out, long *length_out);
32 #endif /* _GUI_SUPPORT_H */