4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
12 #include <collection.h>
14 #include <sys/types.h>
17 typedef struct _FilerWindow FilerWindow
;
18 typedef struct _FileItem FileItem
;
22 ITEM_FLAG_SYMLINK
= 0x1, /* Is a symlink */
23 ITEM_FLAG_APPDIR
= 0x2, /* Contains /AppInfo */
24 ITEM_FLAG_MOUNT_POINT
= 0x4, /* Is in /etc/fstab */
30 char *path
; /* pathname */
31 Collection
*collection
;
35 gint idle_scan_id
; /* (only if dir != NULL) */
42 int base_type
; /* (regular file, dir, pipe, etc) */
50 extern FilerWindow
*window_with_focus
;
51 extern GHashTable
*child_to_filer
;
55 void filer_opendir(char *path
);
56 void scan_dir(FilerWindow
*filer_window
);