r1996: Cope slightly better with invalid filenames in various places (reported by
[rox-filer.git] / ROX-Filer / src / filer.h
blobb5240a70f095d395d66a1f5ab6def692636bb704
1 /*
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@users.sourceforge.net>.
6 */
8 #ifndef _FILER_H
9 #define _FILER_H
11 #include <gtk/gtk.h>
13 enum {
14 RESIZE_STYLE = 0,
15 RESIZE_ALWAYS = 1,
16 RESIZE_NEVER = 2,
19 typedef enum
21 OPEN_SHIFT = 0x01, /* Do ShiftOpen */
22 OPEN_SAME_WINDOW = 0x02, /* Directories open in same window */
23 OPEN_CLOSE_WINDOW = 0x04, /* Opening files closes the window */
24 OPEN_FROM_MINI = 0x08, /* Non-dir => close minibuffer */
25 } OpenFlags;
27 typedef enum
29 FILER_NEEDS_RESCAN = 0x01, /* Call may_rescan after scanning */
30 FILER_UPDATING = 0x02, /* (scanning) items may already exist */
31 FILER_CREATE_THUMBS = 0x04, /* Create thumbs when scan ends */
32 } FilerFlags;
34 /* iter's next method has just returned the clicked item... */
35 typedef void (*TargetFunc)(FilerWindow *filer_window,
36 ViewIter *iter,
37 gpointer data);
39 struct _FilerWindow
41 GtkWidget *window;
42 GtkBox *toplevel_vbox;
43 gboolean scanning; /* State of the 'scanning' indicator */
44 gchar *sym_path; /* Path the user sees */
45 gchar *real_path; /* realpath(sym_path) */
46 ViewIface *view;
47 gboolean temp_item_selected;
48 gboolean show_hidden;
49 FilerFlags flags;
50 int (*sort_fn)(const void *a, const void *b);
52 DetailsType details_type;
53 DisplayStyle display_style;
55 Directory *directory;
57 gboolean had_cursor; /* (before changing directory) */
58 char *auto_select; /* If it we find while scanning */
60 GtkWidget *message; /* The 'Running as ...' message */
62 GtkWidget *minibuffer_area; /* The hbox to show/hide */
63 GtkWidget *minibuffer_label; /* The operation name */
64 GtkWidget *minibuffer; /* The text entry */
65 int mini_cursor_base; /* XXX */
66 MiniType mini_type;
68 /* TRUE if hidden files are shown because the minibuffer leafname
69 * starts with a dot.
71 gboolean temp_show_hidden;
73 TargetFunc target_cb;
74 gpointer target_data;
76 GtkWidget *toolbar;
77 GtkWidget *toolbar_text;
78 GtkWidget *scrollbar;
80 gint open_timeout; /* Will resize and show window... */
82 GtkStateType selection_state; /* for drawing selection */
84 gboolean show_thumbs;
85 GList *thumb_queue; /* paths to thumbnail */
86 GtkWidget *thumb_bar, *thumb_progress;
87 int max_thumbs; /* total for this batch */
90 extern FilerWindow *window_with_focus;
91 extern GList *all_filer_windows;
92 extern GHashTable *child_to_filer;
93 extern Option o_filer_auto_resize, o_unique_filer_windows;
94 extern Option o_filer_size_limit;
96 /* Prototypes */
97 void filer_init(void);
98 FilerWindow *filer_opendir(const char *path, FilerWindow *src_win, const gchar *wm_class);
99 void filer_update_dir(FilerWindow *filer_window, gboolean warning);
100 void filer_update_all(void);
101 DirItem *filer_selected_item(FilerWindow *filer_window);
102 void change_to_parent(FilerWindow *filer_window);
103 void full_refresh(void);
104 void filer_openitem(FilerWindow *filer_window, ViewIter *iter, OpenFlags flags);
105 void filer_check_mounted(const char *real_path);
106 void filer_close_recursive(const char *path);
107 void filer_change_to(FilerWindow *filer_window,
108 const char *path, const char *from);
109 gboolean filer_exists(FilerWindow *filer_window);
110 void filer_open_parent(FilerWindow *filer_window);
111 void filer_detach_rescan(FilerWindow *filer_window);
112 void filer_target_mode(FilerWindow *filer_window,
113 TargetFunc fn,
114 gpointer data,
115 const char *reason);
116 void filer_window_autosize(FilerWindow *filer_window);
117 GList *filer_selected_items(FilerWindow *filer_window);
118 void filer_create_thumb(FilerWindow *filer_window, const gchar *pathname);
119 void filer_cancel_thumbnails(FilerWindow *filer_window);
120 void filer_set_title(FilerWindow *filer_window);
121 void filer_create_thumbs(FilerWindow *filer_window);
122 void filer_add_tip_details(FilerWindow *filer_window,
123 GString *tip, DirItem *item);
124 void filer_selection_changed(FilerWindow *filer_window, gint time);
125 void filer_lost_selection(FilerWindow *filer_window, guint time);
126 void filer_window_set_size(FilerWindow *filer_window, int w, int h);
128 #endif /* _FILER_H */