added long-term cache for keywords
[geeqie.git] / src / typedefs.h
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2010 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef TYPEDEFS_H
15 #define TYPEDEFS_H
16
17 typedef enum {
18         ZOOM_RESET_ORIGINAL     = 0,
19         ZOOM_RESET_FIT_WINDOW   = 1,
20         ZOOM_RESET_NONE         = 2
21 } ZoomMode;
22
23 typedef enum {
24         MOUSE_BUTTON_LEFT       = 1,
25         MOUSE_BUTTON_MIDDLE     = 2,
26         MOUSE_BUTTON_RIGHT      = 3,
27         MOUSE_BUTTON_WHEEL_UP   = 4,
28         MOUSE_BUTTON_WHEEL_DOWN = 5
29 } MouseButton;
30
31 typedef enum {
32         DIRVIEW_LIST,
33         DIRVIEW_TREE
34 } DirViewType;
35
36 typedef enum {
37         FILEVIEW_LIST,
38         FILEVIEW_ICON
39 } FileViewType;
40
41 #define CMD_COPY     "geeqie-copy-command.desktop"
42 #define CMD_MOVE     "geeqie-move-command.desktop"
43 #define CMD_RENAME   "geeqie-rename-command.desktop"
44 #define CMD_DELETE   "geeqie-delete-command.desktop"
45 #define CMD_FOLDER   "geeqie-folder-command.desktop"
46
47 typedef enum {
48         SORT_NONE,
49         SORT_NAME,
50         SORT_SIZE,
51         SORT_TIME,
52         SORT_PATH,
53         SORT_NUMBER
54 } SortType;
55
56 typedef enum {
57         ALTER_NONE,             /* do nothing */
58         ALTER_ROTATE_90,
59         ALTER_ROTATE_90_CC,     /* counterclockwise */
60         ALTER_ROTATE_180,
61         ALTER_MIRROR,
62         ALTER_FLIP,
63 } AlterType;
64
65 typedef enum {
66         LAYOUT_HIDE   = 0,
67         LAYOUT_LEFT   = 1 << 0,
68         LAYOUT_RIGHT  = 1 << 1,
69         LAYOUT_TOP    = 1 << 2,
70         LAYOUT_BOTTOM = 1 << 3
71 } LayoutLocation;
72
73
74 typedef enum {
75         IMAGE_STATE_NONE        = 0,
76         IMAGE_STATE_IMAGE       = 1 << 0,
77         IMAGE_STATE_LOADING     = 1 << 1,
78         IMAGE_STATE_ERROR       = 1 << 2,
79         IMAGE_STATE_COLOR_ADJ   = 1 << 3,
80         IMAGE_STATE_ROTATE_AUTO = 1 << 4,
81         IMAGE_STATE_ROTATE_USER = 1 << 5,
82         IMAGE_STATE_DELAY_FLIP  = 1 << 6
83 } ImageState;
84
85 typedef enum {
86         SPLIT_NONE = 0,
87         SPLIT_VERT,
88         SPLIT_HOR,
89         SPLIT_QUAD,
90 } ImageSplitMode;
91
92 typedef enum {
93         FILEDATA_CHANGE_DELETE,
94         FILEDATA_CHANGE_MOVE,
95         FILEDATA_CHANGE_RENAME,
96         FILEDATA_CHANGE_COPY,
97         FILEDATA_CHANGE_UNSPECIFIED,
98         FILEDATA_CHANGE_WRITE_METADATA
99 } FileDataChangeType;
100
101 typedef enum {
102         MTS_MODE_MINUS,
103         MTS_MODE_SET,
104         MTS_MODE_OR,
105         MTS_MODE_AND
106 } MarkToSelectionMode;
107
108 typedef enum {
109         STM_MODE_RESET,
110         STM_MODE_SET,
111         STM_MODE_TOGGLE
112 } SelectionToMarkMode;
113
114 typedef enum {
115         FORMAT_CLASS_UNKNOWN,
116         FORMAT_CLASS_IMAGE,
117         FORMAT_CLASS_RAWIMAGE,
118         FORMAT_CLASS_META,
119         FILE_FORMAT_CLASSES
120 } FileFormatClass;
121
122 typedef enum {
123         SS_ERR_NONE = 0,
124         SS_ERR_DISABLED, /**< secsave is disabled. */
125         SS_ERR_OUT_OF_MEM, /**< memory allocation failure */
126
127         /* see err field in SecureSaveInfo */
128         SS_ERR_OPEN_READ,
129         SS_ERR_OPEN_WRITE,
130         SS_ERR_STAT,
131         SS_ERR_ACCESS,
132         SS_ERR_MKSTEMP,
133         SS_ERR_RENAME,
134         SS_ERR_OTHER,
135 } SecureSaveErrno;
136
137 typedef enum {
138         NOTIFY_PRIORITY_HIGH = 0,
139         NOTIFY_PRIORITY_MEDIUM,
140         NOTIFY_PRIORITY_LOW
141 } NotifyPriority;
142         
143 typedef enum {
144         NOTIFY_MARKS            = 1 << 1, /* changed marks */
145         NOTIFY_PIXBUF           = 1 << 2, /* image was read into fd->pixbuf */
146         NOTIFY_HISTMAP          = 1 << 3, /* histmap was read into fd->histmap */
147         NOTIFY_ORIENTATION      = 1 << 4, /* image was rotated */
148         NOTIFY_METADATA         = 1 << 5, /* changed image metadata, not yet written */
149         NOTIFY_GROUPING         = 1 << 6, /* change in fd->sidecar_files or fd->parent */
150         NOTIFY_REREAD           = 1 << 7, /* changed file size, date, etc., file name remains unchanged */
151         NOTIFY_CHANGE           = 1 << 8  /* generic change described by fd->change */
152 } NotifyType;
153
154 typedef enum {
155         CHANGE_OK                      = 0,
156         CHANGE_WARN_DEST_EXISTS        = 1 << 0,
157         CHANGE_WARN_NO_WRITE_PERM      = 1 << 1,
158         CHANGE_WARN_SAME               = 1 << 2,
159         CHANGE_WARN_CHANGED_EXT        = 1 << 3,
160         CHANGE_WARN_UNSAVED_META       = 1 << 4,
161         CHANGE_ERROR_MASK              = (~0) << 8, /* the values below are fatal errors */
162         CHANGE_NO_READ_PERM            = 1 << 8,
163         CHANGE_NO_WRITE_PERM_DIR       = 1 << 9,
164         CHANGE_NO_DEST_DIR             = 1 << 10,
165         CHANGE_NO_WRITE_PERM_DEST_DIR  = 1 << 11,
166         CHANGE_NO_WRITE_PERM_DEST      = 1 << 12,
167         CHANGE_DEST_EXISTS             = 1 << 13,
168         CHANGE_NO_SRC                  = 1 << 14,
169         CHANGE_GENERIC_ERROR           = 1 << 16
170 } ChangeError;
171
172 typedef enum {
173         METADATA_PLAIN          = 0, /* format that can be edited and written back */
174         METADATA_FORMATTED      = 1  /* for display only */
175 } MetadataFormat;
176
177 typedef enum {
178         STARTUP_PATH_CURRENT    = 0,
179         STARTUP_PATH_LAST,
180         STARTUP_PATH_HOME,
181 } StartUpPath;
182
183 typedef enum {
184         TOOLBAR_MAIN,
185         TOOLBAR_STATUS,
186         TOOLBAR_COUNT
187 } ToolbarType;
188
189 typedef enum {
190         PR_STEREO_NONE           = 0,     /* do nothing */
191         PR_STEREO_DUAL           = 1 << 0, /* independent stereo buffers, for example nvidia opengl */
192         PR_STEREO_FIXED          = 1 << 1, /* custom position */
193         PR_STEREO_HORIZ          = 1 << 2, /* side by side */
194         PR_STEREO_VERT           = 1 << 3, /* above below */
195         PR_STEREO_RIGHT          = 1 << 4, /* render right buffer */
196         PR_STEREO_ANAGLYPH_RC    = 1 << 5, /* anaglyph red-cyan */
197         PR_STEREO_ANAGLYPH_GRAY  = 1 << 6, /* anaglyph gray red-cyan*/
198         PR_STEREO_ANAGLYPH_DB    = 1 << 7, /* anaglyph dubois*/
199         PR_STEREO_ANAGLYPH       = PR_STEREO_ANAGLYPH_RC | PR_STEREO_ANAGLYPH_GRAY | PR_STEREO_ANAGLYPH_DB, /* anaglyph mask */
200
201         PR_STEREO_MIRROR_LEFT    = 1 << 8, /* mirror */
202         PR_STEREO_FLIP_LEFT      = 1 << 9, /* flip */
203
204         PR_STEREO_MIRROR_RIGHT   = 1 << 10, /* mirror */
205         PR_STEREO_FLIP_RIGHT     = 1 << 11, /* flip */
206
207         PR_STEREO_MIRROR         = PR_STEREO_MIRROR_LEFT | PR_STEREO_MIRROR_RIGHT, /* mirror mask*/
208         PR_STEREO_FLIP           = PR_STEREO_FLIP_LEFT | PR_STEREO_FLIP_RIGHT, /* flip mask*/
209         PR_STEREO_SWAP           = 1 << 12,  /* swap left and right buffers */
210         PR_STEREO_TEMP_DISABLE   = 1 << 13,  /* temporarily disable stereo mode if source image is not stereo */
211         PR_STEREO_HALF           = 1 << 14
212 } PixbufRendererStereoMode;
213
214 typedef enum {
215         STEREO_PIXBUF_DEFAULT  = 0,
216         STEREO_PIXBUF_SBS      = 1,
217         STEREO_PIXBUF_CROSS    = 2,
218         STEREO_PIXBUF_NONE     = 3
219 } StereoPixbufData;
220
221 #define MAX_SPLIT_IMAGES 4
222
223 typedef struct _ImageLoader ImageLoader;
224 typedef struct _ThumbLoader ThumbLoader;
225
226 typedef struct _CollectInfo CollectInfo;
227 typedef struct _CollectionData CollectionData;
228 typedef struct _CollectTable CollectTable;
229 typedef struct _CollectWindow CollectWindow;
230
231 typedef struct _ImageWindow ImageWindow;
232
233 typedef struct _FileData FileData;
234 typedef struct _FileDataChangeInfo FileDataChangeInfo;
235
236 typedef struct _LayoutWindow LayoutWindow;
237 typedef struct _LayoutOptions LayoutOptions;
238
239 typedef struct _ViewDir ViewDir;
240 typedef struct _ViewDirInfoList ViewDirInfoList;
241 typedef struct _ViewDirInfoTree ViewDirInfoTree;
242
243 typedef struct _ViewFile ViewFile;
244 typedef struct _ViewFileInfoList ViewFileInfoList;
245 typedef struct _ViewFileInfoIcon ViewFileInfoIcon;
246
247 typedef struct _SlideShowData SlideShowData;
248 typedef struct _FullScreenData FullScreenData;
249
250 typedef struct _PixmapFolders PixmapFolders;
251 typedef struct _Histogram Histogram;
252 typedef struct _HistMap HistMap;
253
254 typedef struct _SecureSaveInfo SecureSaveInfo;
255
256 typedef struct _ExifData ExifData;
257
258 typedef struct _EditorDescription EditorDescription;
259
260 typedef struct _CommandLine CommandLine;
261
262 struct _Histogram {
263         gint histogram_channel; /* drawing mode for histogram */
264         gint histogram_mode;     /* logarithmical or not */
265         guint vgrid; /* number of vertical divisions, 0 for none */
266         guint hgrid; /* number of horizontal divisions, 0 for none */
267         struct {
268                 int R; /* red */
269                 int G; /* green */
270                 int B; /* blue */
271                 int A; /* alpha */
272         } grid_color;  /* grid color */
273
274 };
275
276
277
278 struct _ImageLoader;
279
280 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
281
282 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
283
284 struct _ThumbLoader
285 {
286         gboolean standard_loader;
287
288         ImageLoader *il;
289         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
290
291         gboolean cache_enable;
292         gboolean cache_hit;
293         gdouble percent_done;
294
295         gint max_w;
296         gint max_h;
297
298         ThumbLoaderFunc func_done;
299         ThumbLoaderFunc func_error;
300         ThumbLoaderFunc func_progress;
301
302         gpointer data;
303
304         guint idle_done_id; /* event source id */
305 };
306
307 struct _CollectInfo
308 {
309         FileData *fd;
310         GdkPixbuf *pixbuf;
311         guint flag_mask;
312 };
313
314 struct _CollectionData
315 {
316         gchar *path;
317         gchar *name;
318         GList *list;
319         SortType sort_method;
320
321         ThumbLoader *thumb_loader;
322         CollectInfo *thumb_info;
323
324         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
325         gpointer info_updated_data;
326
327         gint ref;
328
329         /* geometry */
330         gint window_read;
331         gint window_x;
332         gint window_y;
333         gint window_w;
334         gint window_h;
335
336         /* contents changed since save flag */
337         gboolean changed;
338
339         GHashTable *existence;
340 };
341
342 struct _CollectTable
343 {
344         GtkWidget *scrolled;
345         GtkWidget *listview;
346         gint columns;
347         gint rows;
348
349         CollectionData *cd;
350
351         GList *selection;
352         CollectInfo *prev_selection;
353
354         CollectInfo *click_info;
355
356         GtkWidget *tip_window;
357         guint tip_delay_id; /* event source id */
358         CollectInfo *tip_info;
359
360         GdkWindow *marker_window;
361         CollectInfo *marker_info;
362
363         GtkWidget *status_label;
364         GtkWidget *extra_label;
365
366         gint focus_row;
367         gint focus_column;
368         CollectInfo *focus_info;
369
370         GtkWidget *popup;
371         CollectInfo *drop_info;
372         GList *drop_list;
373
374         guint sync_idle_id; /* event source id */
375         guint drop_idle_id; /* event source id */
376
377         gboolean show_text;
378
379         /* file list for edit menu */
380         GList *editmenu_fd_list;
381 };
382
383 struct _CollectWindow
384 {
385         GtkWidget *window;
386         CollectTable *table;
387         GtkWidget *status_box;
388         GList *list;
389
390         GtkWidget *close_dialog;
391
392         CollectionData *cd;
393 };
394
395 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
396                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
397 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
398                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
399
400 struct _ImageWindow
401 {
402         GtkWidget *widget;      /* use this to add it and show it */
403         GtkWidget *pr;
404         GtkWidget *frame;
405
406         FileData *image_fd;
407
408         gboolean unknown;               /* failed to load image */
409
410         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
411                                    sending callbacks to multiple ImageWindows in parallel */
412
413         gint has_frame;  /* not boolean, see image_new() */
414
415         /* top level (not necessarily parent) window */
416         gboolean top_window_sync;       /* resize top_window when image dimensions change */
417         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
418         gchar *title;           /* window title to display left of file name */
419         gchar *title_right;     /* window title to display right of file name */
420         gboolean title_show_zoom;       /* option to include zoom in window title */
421
422         gboolean completed;
423         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
424
425         void (*func_update)(ImageWindow *imd, gpointer data);
426         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
427         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
428         ImageTileRequestFunc func_tile_request;
429         ImageTileDisposeFunc func_tile_dispose;
430
431         gpointer data_update;
432         gpointer data_complete;
433         gpointer data_state;
434         gpointer data_tile;
435
436         /* button, scroll functions */
437         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
438         void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
439         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
440         void (*func_focus_in)(ImageWindow *, gpointer);
441
442         gpointer data_button;
443         gpointer data_drag;
444         gpointer data_scroll;
445         gpointer data_focus_in;
446
447         /* scroll notification (for scroll bar implementation) */
448         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
449
450         gpointer data_scroll_notify;
451
452         /* collection info */
453         CollectionData *collection;
454         CollectInfo *collection_info;
455
456         /* color profiles */
457         gboolean color_profile_enable;
458         gint color_profile_input;
459         gboolean color_profile_use_image;
460         gint color_profile_from_image;
461         gpointer cm;
462
463         AlterType delay_alter_type;
464
465         FileData *read_ahead_fd;
466         ImageLoader *read_ahead_il;
467
468         gint prev_color_row;
469
470         gboolean auto_refresh;
471
472         gboolean delay_flip;
473         gint orientation;
474         gboolean desaturate;
475         gint user_stereo;
476 };
477
478 #define FILEDATA_MARKS_SIZE 6
479
480 struct _FileDataChangeInfo {
481         FileDataChangeType type;
482         gchar *source;
483         gchar *dest;
484         gint error;
485         gboolean regroup_when_finished;
486 };
487
488 struct _FileData {
489         gint magick;
490         gint type;
491         gchar *original_path; /* key to file_data_pool hash table */
492         gchar *path;
493         const gchar *name;
494         const gchar *extension;
495         gchar *collate_key_name;
496         gchar *collate_key_name_nocase;
497         gint64 size;
498         time_t date;
499         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
500         
501         guint marks; /* each bit represents one mark */
502         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
503
504
505         GList *sidecar_files;
506         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
507         FileDataChangeInfo *change; /* for rename, move ... */
508         GdkPixbuf *thumb_pixbuf;
509
510         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
511                               all FileData with non-NULL pixbuf are referenced by image_cache */
512                               
513         HistMap *histmap;
514
515         gint ref;
516         gint version; /* increased when any field in this structure is changed */
517         gboolean disable_grouping;
518
519         gint user_orientation;
520         gint exif_orientation;
521         
522         ExifData *exif;
523         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
524         GList *cached_metadata;
525 };
526
527 struct _LayoutOptions
528 {
529         gchar *id;
530
531         gchar *order;
532         gint style;
533
534         DirViewType dir_view_type;
535         FileViewType file_view_type;
536
537         gboolean show_thumbnails;
538         gboolean show_marks;
539         gboolean show_directory_date;
540         gboolean show_info_pixel;
541
542         struct {
543                 gint w;
544                 gint h;
545                 gint x;
546                 gint y;
547                 gboolean maximized;
548                 gint hdivider_pos;
549                 gint vdivider_pos;
550         } main_window;
551
552         struct {
553                 gint w;
554                 gint h;
555                 gint x;
556                 gint y;
557                 gint vdivider_pos;
558         } float_window;
559
560         struct {
561                 gint w;
562                 gint h;
563         } properties_window;
564
565         struct {
566                 guint state;
567                 gint histogram_channel;
568                 gint histogram_mode;
569         } image_overlay;
570
571         gboolean tools_float;
572         gboolean tools_hidden;
573         gboolean toolbar_hidden;
574
575         gchar *home_path;
576         gchar *last_path;
577
578         StartUpPath startup_path;
579
580         gboolean exit_on_close;
581 };
582
583 struct _LayoutWindow
584 {
585         LayoutOptions options;
586
587         FileData *dir_fd;
588
589         /* base */
590
591         GtkWidget *window;
592
593         GtkWidget *main_box;
594
595         GtkWidget *group_box;
596         GtkWidget *h_pane;
597         GtkWidget *v_pane;
598
599         /* menus, path selector */
600
601         GtkActionGroup *action_group;
602         GtkActionGroup *action_group_editors;
603         guint ui_editors_id;
604         GtkUIManager *ui_manager;
605         guint toolbar_merge_id[TOOLBAR_COUNT];
606         GList *toolbar_actions[TOOLBAR_COUNT];
607
608         GtkWidget *path_entry;
609
610         /* image */
611
612         LayoutLocation image_location;
613
614         ImageWindow *image;
615
616         ImageWindow *split_images[MAX_SPLIT_IMAGES];
617         ImageSplitMode split_mode;
618         gint active_split_image;
619
620         GtkWidget *split_image_widget;
621         GtkSizeGroup *split_image_sizegroup;
622
623         /* tools window (float) */
624
625         GtkWidget *tools;
626         GtkWidget *tools_pane;
627
628 //      gint tools_float;
629 //      gint tools_hidden;
630
631         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
632         /* toolbar */
633
634         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
635 //      gint toolbar_hidden;
636
637 //      GtkWidget *thumb_button;
638 //      gint thumbs_enabled;
639 //      gint marks_enabled;
640
641         GtkWidget *back_button;
642
643         /* dir view */
644
645         LayoutLocation dir_location;
646
647         ViewDir *vd;
648         GtkWidget *dir_view;
649
650 //      DirViewType dir_view_type;
651
652         /* file view */
653
654         LayoutLocation file_location;
655
656         ViewFile *vf;
657 //      FileViewType file_view_type;
658
659         GtkWidget *file_view;
660
661         SortType sort_method;
662         gboolean sort_ascend;
663
664         /* status bar */
665
666         GtkWidget *info_box;
667         GtkWidget *info_progress_bar;
668         GtkWidget *info_sort;
669         GtkWidget *info_status;
670         GtkWidget *info_details;
671         GtkWidget *info_zoom;
672         GtkWidget *info_pixel;
673         
674         /* slide show */
675
676         SlideShowData *slideshow;
677
678         /* full screen */
679
680         FullScreenData *full_screen;
681
682         /* dividers */
683
684 //      gint div_h;
685 //      gint div_v;
686 //      gint div_float;
687
688         /* misc */
689
690         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
691         GtkWidget *utility_paned; /* between image and bar */
692         GtkWidget *bar_sort;
693         GtkWidget *bar;
694
695 //      gint bar_sort_enabled;
696 //      gint bar_enabled;
697
698 //      gint bar_width;
699
700         GtkWidget *exif_window;
701 };
702
703 struct _ViewDir
704 {
705         DirViewType type;
706         gpointer info;
707
708         GtkWidget *widget;
709         GtkWidget *view;
710
711         FileData *dir_fd;
712
713         FileData *click_fd;
714
715         FileData *drop_fd;
716         GList *drop_list;
717         guint drop_scroll_id; /* event source id */
718
719         /* func list */
720         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
721         gpointer select_data;
722
723         void (*dnd_drop_update_func)(ViewDir *vd);
724         void (*dnd_drop_leave_func)(ViewDir *vd);
725
726         LayoutWindow *layout;
727
728         GtkWidget *popup;
729
730         PixmapFolders *pf;
731 };
732
733 struct _ViewDirInfoList
734 {
735         GList *list;
736 };
737
738 struct _ViewDirInfoTree
739 {
740         guint drop_expand_id; /* event source id */
741         gint busy_ref;
742 };
743
744
745 struct _ViewFile
746 {
747         FileViewType type;
748         gpointer info;
749
750         GtkWidget *widget;
751         GtkWidget *listview;
752         GtkWidget *scrolled;
753         GtkWidget *filter;
754         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
755
756         FileData *dir_fd;
757         GList *list;
758
759         SortType sort_method;
760         gboolean sort_ascend;
761
762         /* func list */
763         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
764         gpointer data_thumb_status;
765
766         void (*func_status)(ViewFile *vf, gpointer data);
767         gpointer data_status;
768
769         LayoutWindow *layout;
770
771         GtkWidget *popup;
772
773         /* thumbs updates*/
774         gboolean thumbs_running;
775         ThumbLoader *thumbs_loader;
776         FileData *thumbs_filedata;
777
778         /* marks */
779         gboolean marks_enabled;
780         gint active_mark;
781         gint clicked_mark;
782         
783         /* refresh */
784         guint refresh_idle_id; /* event source id */
785         time_t time_refresh_set; /* time when refresh_idle_id was set */
786
787         /* file list for edit menu */
788         GList *editmenu_fd_list;
789 };
790
791 struct _ViewFileInfoList
792 {
793         FileData *click_fd;
794         FileData *select_fd;
795
796         gboolean thumbs_enabled;
797
798         guint select_idle_id; /* event source id */
799 };
800
801 struct _IconData;
802
803 struct _ViewFileInfoIcon
804 {
805         /* table stuff */
806         gint columns;
807         gint rows;
808
809         GList *selection;
810         struct _IconData *prev_selection;
811
812         GtkWidget *tip_window;
813         guint tip_delay_id; /* event source id */
814         struct _IconData *tip_id;
815
816         struct _IconData *click_id;
817
818         struct _IconData *focus_id;
819         gint focus_row;
820         gint focus_column;
821
822         gboolean show_text;
823 };
824
825 struct _SlideShowData
826 {
827         LayoutWindow *lw;        /* use this window to display the slideshow */
828         ImageWindow *imd;        /* use this window only if lw is not available,
829                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
830
831         GList *filelist;
832         CollectionData *cd;
833         FileData *dir_fd;
834
835         GList *list;
836         GList *list_done;
837
838         FileData *slide_fd;
839
840         guint slide_count;
841         guint timeout_id; /* event source id */
842
843         gboolean from_selection;
844
845         void (*stop_func)(SlideShowData *, gpointer);
846         gpointer stop_data;
847
848         gboolean paused;
849 };
850
851 struct _FullScreenData
852 {
853         GtkWidget *window;
854         ImageWindow *imd;
855
856         GtkWidget *normal_window;
857         ImageWindow *normal_imd;
858
859         guint hide_mouse_id; /* event source id */
860         guint busy_mouse_id; /* event source id */
861
862         gint cursor_state;
863
864         guint saver_block_id; /* event source id */
865
866         void (*stop_func)(FullScreenData *, gpointer);
867         gpointer stop_data;
868 };
869
870 struct _PixmapFolders
871 {
872         GdkPixbuf *close;
873         GdkPixbuf *open;
874         GdkPixbuf *deny;
875         GdkPixbuf *parent;
876 };
877
878 struct _SecureSaveInfo {
879         FILE *fp; /**< file stream pointer */
880         gchar *file_name; /**< final file name */
881         gchar *tmp_file_name; /**< temporary file name */
882         gint err; /**< set to non-zero value in case of error */
883         gboolean secure_save; /**< use secure save for this file, internal use only */
884         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
885         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
886         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
887 };
888
889 struct _CommandLine
890 {
891         int argc;
892         gchar **argv;
893         gboolean startup_blank;
894         gboolean startup_full_screen;
895         gboolean startup_in_slideshow;
896         gboolean startup_command_line_collection;
897         gboolean tools_hide;
898         gboolean tools_show;
899         gchar *path;
900         gchar *file;
901         GList *cmd_list;
902         GList *collection_list;
903         gchar *geometry;
904 };
905
906 #endif
907 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */