added more anaglyph modes
[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 };
525
526 struct _LayoutOptions
527 {
528         gchar *id;
529
530         gchar *order;
531         gint style;
532
533         DirViewType dir_view_type;
534         FileViewType file_view_type;
535
536         gboolean show_thumbnails;
537         gboolean show_marks;
538         gboolean show_directory_date;
539         gboolean show_info_pixel;
540
541         struct {
542                 gint w;
543                 gint h;
544                 gint x;
545                 gint y;
546                 gboolean maximized;
547                 gint hdivider_pos;
548                 gint vdivider_pos;
549         } main_window;
550
551         struct {
552                 gint w;
553                 gint h;
554                 gint x;
555                 gint y;
556                 gint vdivider_pos;
557         } float_window;
558
559         struct {
560                 gint w;
561                 gint h;
562         } properties_window;
563
564         struct {
565                 guint state;
566                 gint histogram_channel;
567                 gint histogram_mode;
568         } image_overlay;
569
570         gboolean tools_float;
571         gboolean tools_hidden;
572         gboolean toolbar_hidden;
573
574         gchar *home_path;
575         gchar *last_path;
576
577         StartUpPath startup_path;
578
579         gboolean exit_on_close;
580 };
581
582 struct _LayoutWindow
583 {
584         LayoutOptions options;
585
586         FileData *dir_fd;
587
588         /* base */
589
590         GtkWidget *window;
591
592         GtkWidget *main_box;
593
594         GtkWidget *group_box;
595         GtkWidget *h_pane;
596         GtkWidget *v_pane;
597
598         /* menus, path selector */
599
600         GtkActionGroup *action_group;
601         GtkActionGroup *action_group_editors;
602         guint ui_editors_id;
603         GtkUIManager *ui_manager;
604         guint toolbar_merge_id[TOOLBAR_COUNT];
605         GList *toolbar_actions[TOOLBAR_COUNT];
606
607         GtkWidget *path_entry;
608
609         /* image */
610
611         LayoutLocation image_location;
612
613         ImageWindow *image;
614
615         ImageWindow *split_images[MAX_SPLIT_IMAGES];
616         ImageSplitMode split_mode;
617         gint active_split_image;
618
619         GtkWidget *split_image_widget;
620         GtkSizeGroup *split_image_sizegroup;
621
622         /* tools window (float) */
623
624         GtkWidget *tools;
625         GtkWidget *tools_pane;
626
627 //      gint tools_float;
628 //      gint tools_hidden;
629
630         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
631         /* toolbar */
632
633         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
634 //      gint toolbar_hidden;
635
636 //      GtkWidget *thumb_button;
637 //      gint thumbs_enabled;
638 //      gint marks_enabled;
639
640         GtkWidget *back_button;
641
642         /* dir view */
643
644         LayoutLocation dir_location;
645
646         ViewDir *vd;
647         GtkWidget *dir_view;
648
649 //      DirViewType dir_view_type;
650
651         /* file view */
652
653         LayoutLocation file_location;
654
655         ViewFile *vf;
656 //      FileViewType file_view_type;
657
658         GtkWidget *file_view;
659
660         SortType sort_method;
661         gboolean sort_ascend;
662
663         /* status bar */
664
665         GtkWidget *info_box;
666         GtkWidget *info_progress_bar;
667         GtkWidget *info_sort;
668         GtkWidget *info_status;
669         GtkWidget *info_details;
670         GtkWidget *info_zoom;
671         GtkWidget *info_pixel;
672         
673         /* slide show */
674
675         SlideShowData *slideshow;
676
677         /* full screen */
678
679         FullScreenData *full_screen;
680
681         /* dividers */
682
683 //      gint div_h;
684 //      gint div_v;
685 //      gint div_float;
686
687         /* misc */
688
689         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
690         GtkWidget *utility_paned; /* between image and bar */
691         GtkWidget *bar_sort;
692         GtkWidget *bar;
693
694 //      gint bar_sort_enabled;
695 //      gint bar_enabled;
696
697 //      gint bar_width;
698
699         GtkWidget *exif_window;
700 };
701
702 struct _ViewDir
703 {
704         DirViewType type;
705         gpointer info;
706
707         GtkWidget *widget;
708         GtkWidget *view;
709
710         FileData *dir_fd;
711
712         FileData *click_fd;
713
714         FileData *drop_fd;
715         GList *drop_list;
716         guint drop_scroll_id; /* event source id */
717
718         /* func list */
719         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
720         gpointer select_data;
721
722         void (*dnd_drop_update_func)(ViewDir *vd);
723         void (*dnd_drop_leave_func)(ViewDir *vd);
724
725         LayoutWindow *layout;
726
727         GtkWidget *popup;
728
729         PixmapFolders *pf;
730 };
731
732 struct _ViewDirInfoList
733 {
734         GList *list;
735 };
736
737 struct _ViewDirInfoTree
738 {
739         guint drop_expand_id; /* event source id */
740         gint busy_ref;
741 };
742
743
744 struct _ViewFile
745 {
746         FileViewType type;
747         gpointer info;
748
749         GtkWidget *widget;
750         GtkWidget *listview;
751         GtkWidget *scrolled;
752         GtkWidget *filter;
753         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
754
755         FileData *dir_fd;
756         GList *list;
757
758         SortType sort_method;
759         gboolean sort_ascend;
760
761         /* func list */
762         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
763         gpointer data_thumb_status;
764
765         void (*func_status)(ViewFile *vf, gpointer data);
766         gpointer data_status;
767
768         LayoutWindow *layout;
769
770         GtkWidget *popup;
771
772         /* thumbs updates*/
773         gboolean thumbs_running;
774         ThumbLoader *thumbs_loader;
775         FileData *thumbs_filedata;
776
777         /* marks */
778         gboolean marks_enabled;
779         gint active_mark;
780         gint clicked_mark;
781         
782         /* refresh */
783         guint refresh_idle_id; /* event source id */
784         time_t time_refresh_set; /* time when refresh_idle_id was set */
785
786         /* file list for edit menu */
787         GList *editmenu_fd_list;
788 };
789
790 struct _ViewFileInfoList
791 {
792         FileData *click_fd;
793         FileData *select_fd;
794
795         gboolean thumbs_enabled;
796
797         guint select_idle_id; /* event source id */
798 };
799
800 struct _IconData;
801
802 struct _ViewFileInfoIcon
803 {
804         /* table stuff */
805         gint columns;
806         gint rows;
807
808         GList *selection;
809         struct _IconData *prev_selection;
810
811         GtkWidget *tip_window;
812         guint tip_delay_id; /* event source id */
813         struct _IconData *tip_id;
814
815         struct _IconData *click_id;
816
817         struct _IconData *focus_id;
818         gint focus_row;
819         gint focus_column;
820
821         gboolean show_text;
822 };
823
824 struct _SlideShowData
825 {
826         LayoutWindow *lw;        /* use this window to display the slideshow */
827         ImageWindow *imd;        /* use this window only if lw is not available,
828                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
829
830         GList *filelist;
831         CollectionData *cd;
832         FileData *dir_fd;
833
834         GList *list;
835         GList *list_done;
836
837         FileData *slide_fd;
838
839         guint slide_count;
840         guint timeout_id; /* event source id */
841
842         gboolean from_selection;
843
844         void (*stop_func)(SlideShowData *, gpointer);
845         gpointer stop_data;
846
847         gboolean paused;
848 };
849
850 struct _FullScreenData
851 {
852         GtkWidget *window;
853         ImageWindow *imd;
854
855         GtkWidget *normal_window;
856         ImageWindow *normal_imd;
857
858         guint hide_mouse_id; /* event source id */
859         guint busy_mouse_id; /* event source id */
860
861         gint cursor_state;
862
863         guint saver_block_id; /* event source id */
864
865         void (*stop_func)(FullScreenData *, gpointer);
866         gpointer stop_data;
867 };
868
869 struct _PixmapFolders
870 {
871         GdkPixbuf *close;
872         GdkPixbuf *open;
873         GdkPixbuf *deny;
874         GdkPixbuf *parent;
875 };
876
877 struct _SecureSaveInfo {
878         FILE *fp; /**< file stream pointer */
879         gchar *file_name; /**< final file name */
880         gchar *tmp_file_name; /**< temporary file name */
881         gint err; /**< set to non-zero value in case of error */
882         gboolean secure_save; /**< use secure save for this file, internal use only */
883         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
884         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
885         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
886 };
887
888 struct _CommandLine
889 {
890         int argc;
891         gchar **argv;
892         gboolean startup_blank;
893         gboolean startup_full_screen;
894         gboolean startup_in_slideshow;
895         gboolean startup_command_line_collection;
896         gboolean tools_hide;
897         gboolean tools_show;
898         gchar *path;
899         gchar *file;
900         GList *cmd_list;
901         GList *collection_list;
902         gchar *geometry;
903 };
904
905 #endif
906 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */