added half-size (3dtv) stereo mode
[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       = 1 << 5, /* anaglyph */
197
198         PR_STEREO_MIRROR_LEFT    = 1 << 6, /* mirror */
199         PR_STEREO_FLIP_LEFT      = 1 << 7, /* flip */
200
201         PR_STEREO_MIRROR_RIGHT   = 1 << 8, /* mirror */
202         PR_STEREO_FLIP_RIGHT     = 1 << 9, /* flip */
203
204         PR_STEREO_MIRROR         = PR_STEREO_MIRROR_LEFT | PR_STEREO_MIRROR_RIGHT, /* mirror mask*/
205         PR_STEREO_FLIP           = PR_STEREO_FLIP_LEFT | PR_STEREO_FLIP_RIGHT, /* flip mask*/
206         PR_STEREO_SWAP           = 1 << 10,  /* swap left and right buffers */
207         PR_STEREO_TEMP_DISABLE   = 1 << 11,  /* temporarily disable stereo mode if source image is not stereo */
208         PR_STEREO_HALF           = 1 << 12
209 } PixbufRendererStereoMode;
210
211 typedef enum {
212         STEREO_PIXBUF_DEFAULT  = 0,
213         STEREO_PIXBUF_SBS      = 1,
214         STEREO_PIXBUF_CROSS    = 2,
215         STEREO_PIXBUF_NONE     = 3
216 } StereoPixbufData;
217
218 #define MAX_SPLIT_IMAGES 4
219
220 typedef struct _ImageLoader ImageLoader;
221 typedef struct _ThumbLoader ThumbLoader;
222
223 typedef struct _CollectInfo CollectInfo;
224 typedef struct _CollectionData CollectionData;
225 typedef struct _CollectTable CollectTable;
226 typedef struct _CollectWindow CollectWindow;
227
228 typedef struct _ImageWindow ImageWindow;
229
230 typedef struct _FileData FileData;
231 typedef struct _FileDataChangeInfo FileDataChangeInfo;
232
233 typedef struct _LayoutWindow LayoutWindow;
234 typedef struct _LayoutOptions LayoutOptions;
235
236 typedef struct _ViewDir ViewDir;
237 typedef struct _ViewDirInfoList ViewDirInfoList;
238 typedef struct _ViewDirInfoTree ViewDirInfoTree;
239
240 typedef struct _ViewFile ViewFile;
241 typedef struct _ViewFileInfoList ViewFileInfoList;
242 typedef struct _ViewFileInfoIcon ViewFileInfoIcon;
243
244 typedef struct _SlideShowData SlideShowData;
245 typedef struct _FullScreenData FullScreenData;
246
247 typedef struct _PixmapFolders PixmapFolders;
248 typedef struct _Histogram Histogram;
249 typedef struct _HistMap HistMap;
250
251 typedef struct _SecureSaveInfo SecureSaveInfo;
252
253 typedef struct _ExifData ExifData;
254
255 typedef struct _EditorDescription EditorDescription;
256
257 typedef struct _CommandLine CommandLine;
258
259 struct _Histogram {
260         gint histogram_channel; /* drawing mode for histogram */
261         gint histogram_mode;     /* logarithmical or not */
262         guint vgrid; /* number of vertical divisions, 0 for none */
263         guint hgrid; /* number of horizontal divisions, 0 for none */
264         struct {
265                 int R; /* red */
266                 int G; /* green */
267                 int B; /* blue */
268                 int A; /* alpha */
269         } grid_color;  /* grid color */
270
271 };
272
273
274
275 struct _ImageLoader;
276
277 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
278
279 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
280
281 struct _ThumbLoader
282 {
283         gboolean standard_loader;
284
285         ImageLoader *il;
286         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
287
288         gboolean cache_enable;
289         gboolean cache_hit;
290         gdouble percent_done;
291
292         gint max_w;
293         gint max_h;
294
295         ThumbLoaderFunc func_done;
296         ThumbLoaderFunc func_error;
297         ThumbLoaderFunc func_progress;
298
299         gpointer data;
300
301         guint idle_done_id; /* event source id */
302 };
303
304 struct _CollectInfo
305 {
306         FileData *fd;
307         GdkPixbuf *pixbuf;
308         guint flag_mask;
309 };
310
311 struct _CollectionData
312 {
313         gchar *path;
314         gchar *name;
315         GList *list;
316         SortType sort_method;
317
318         ThumbLoader *thumb_loader;
319         CollectInfo *thumb_info;
320
321         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
322         gpointer info_updated_data;
323
324         gint ref;
325
326         /* geometry */
327         gint window_read;
328         gint window_x;
329         gint window_y;
330         gint window_w;
331         gint window_h;
332
333         /* contents changed since save flag */
334         gboolean changed;
335
336         GHashTable *existence;
337 };
338
339 struct _CollectTable
340 {
341         GtkWidget *scrolled;
342         GtkWidget *listview;
343         gint columns;
344         gint rows;
345
346         CollectionData *cd;
347
348         GList *selection;
349         CollectInfo *prev_selection;
350
351         CollectInfo *click_info;
352
353         GtkWidget *tip_window;
354         guint tip_delay_id; /* event source id */
355         CollectInfo *tip_info;
356
357         GdkWindow *marker_window;
358         CollectInfo *marker_info;
359
360         GtkWidget *status_label;
361         GtkWidget *extra_label;
362
363         gint focus_row;
364         gint focus_column;
365         CollectInfo *focus_info;
366
367         GtkWidget *popup;
368         CollectInfo *drop_info;
369         GList *drop_list;
370
371         guint sync_idle_id; /* event source id */
372         guint drop_idle_id; /* event source id */
373
374         gboolean show_text;
375
376         /* file list for edit menu */
377         GList *editmenu_fd_list;
378 };
379
380 struct _CollectWindow
381 {
382         GtkWidget *window;
383         CollectTable *table;
384         GtkWidget *status_box;
385         GList *list;
386
387         GtkWidget *close_dialog;
388
389         CollectionData *cd;
390 };
391
392 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
393                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
394 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
395                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
396
397 struct _ImageWindow
398 {
399         GtkWidget *widget;      /* use this to add it and show it */
400         GtkWidget *pr;
401         GtkWidget *frame;
402
403         FileData *image_fd;
404
405         gboolean unknown;               /* failed to load image */
406
407         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
408                                    sending callbacks to multiple ImageWindows in parallel */
409
410         gint has_frame;  /* not boolean, see image_new() */
411
412         /* top level (not necessarily parent) window */
413         gboolean top_window_sync;       /* resize top_window when image dimensions change */
414         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
415         gchar *title;           /* window title to display left of file name */
416         gchar *title_right;     /* window title to display right of file name */
417         gboolean title_show_zoom;       /* option to include zoom in window title */
418
419         gboolean completed;
420         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
421
422         void (*func_update)(ImageWindow *imd, gpointer data);
423         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
424         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
425         ImageTileRequestFunc func_tile_request;
426         ImageTileDisposeFunc func_tile_dispose;
427
428         gpointer data_update;
429         gpointer data_complete;
430         gpointer data_state;
431         gpointer data_tile;
432
433         /* button, scroll functions */
434         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
435         void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
436         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
437         void (*func_focus_in)(ImageWindow *, gpointer);
438
439         gpointer data_button;
440         gpointer data_drag;
441         gpointer data_scroll;
442         gpointer data_focus_in;
443
444         /* scroll notification (for scroll bar implementation) */
445         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
446
447         gpointer data_scroll_notify;
448
449         /* collection info */
450         CollectionData *collection;
451         CollectInfo *collection_info;
452
453         /* color profiles */
454         gboolean color_profile_enable;
455         gint color_profile_input;
456         gboolean color_profile_use_image;
457         gint color_profile_from_image;
458         gpointer cm;
459
460         AlterType delay_alter_type;
461
462         FileData *read_ahead_fd;
463         ImageLoader *read_ahead_il;
464
465         gint prev_color_row;
466
467         gboolean auto_refresh;
468
469         gboolean delay_flip;
470         gint orientation;
471         gboolean desaturate;
472         gint user_stereo;
473 };
474
475 #define FILEDATA_MARKS_SIZE 6
476
477 struct _FileDataChangeInfo {
478         FileDataChangeType type;
479         gchar *source;
480         gchar *dest;
481         gint error;
482         gboolean regroup_when_finished;
483 };
484
485 struct _FileData {
486         gint magick;
487         gint type;
488         gchar *original_path; /* key to file_data_pool hash table */
489         gchar *path;
490         const gchar *name;
491         const gchar *extension;
492         gchar *collate_key_name;
493         gchar *collate_key_name_nocase;
494         gint64 size;
495         time_t date;
496         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
497         
498         guint marks; /* each bit represents one mark */
499         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
500
501
502         GList *sidecar_files;
503         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
504         FileDataChangeInfo *change; /* for rename, move ... */
505         GdkPixbuf *thumb_pixbuf;
506
507         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
508                               all FileData with non-NULL pixbuf are referenced by image_cache */
509                               
510         HistMap *histmap;
511
512         gint ref;
513         gint version; /* increased when any field in this structure is changed */
514         gboolean disable_grouping;
515
516         gint user_orientation;
517         gint exif_orientation;
518         
519         ExifData *exif;
520         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
521 };
522
523 struct _LayoutOptions
524 {
525         gchar *id;
526
527         gchar *order;
528         gint style;
529
530         DirViewType dir_view_type;
531         FileViewType file_view_type;
532
533         gboolean show_thumbnails;
534         gboolean show_marks;
535         gboolean show_directory_date;
536         gboolean show_info_pixel;
537
538         struct {
539                 gint w;
540                 gint h;
541                 gint x;
542                 gint y;
543                 gboolean maximized;
544                 gint hdivider_pos;
545                 gint vdivider_pos;
546         } main_window;
547
548         struct {
549                 gint w;
550                 gint h;
551                 gint x;
552                 gint y;
553                 gint vdivider_pos;
554         } float_window;
555
556         struct {
557                 gint w;
558                 gint h;
559         } properties_window;
560
561         struct {
562                 guint state;
563                 gint histogram_channel;
564                 gint histogram_mode;
565         } image_overlay;
566
567         gboolean tools_float;
568         gboolean tools_hidden;
569         gboolean toolbar_hidden;
570
571         gchar *home_path;
572         gchar *last_path;
573
574         StartUpPath startup_path;
575
576         gboolean exit_on_close;
577 };
578
579 struct _LayoutWindow
580 {
581         LayoutOptions options;
582
583         FileData *dir_fd;
584
585         /* base */
586
587         GtkWidget *window;
588
589         GtkWidget *main_box;
590
591         GtkWidget *group_box;
592         GtkWidget *h_pane;
593         GtkWidget *v_pane;
594
595         /* menus, path selector */
596
597         GtkActionGroup *action_group;
598         GtkActionGroup *action_group_editors;
599         guint ui_editors_id;
600         GtkUIManager *ui_manager;
601         guint toolbar_merge_id[TOOLBAR_COUNT];
602         GList *toolbar_actions[TOOLBAR_COUNT];
603
604         GtkWidget *path_entry;
605
606         /* image */
607
608         LayoutLocation image_location;
609
610         ImageWindow *image;
611
612         ImageWindow *split_images[MAX_SPLIT_IMAGES];
613         ImageSplitMode split_mode;
614         gint active_split_image;
615
616         GtkWidget *split_image_widget;
617         GtkSizeGroup *split_image_sizegroup;
618
619         /* tools window (float) */
620
621         GtkWidget *tools;
622         GtkWidget *tools_pane;
623
624 //      gint tools_float;
625 //      gint tools_hidden;
626
627         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
628         /* toolbar */
629
630         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
631 //      gint toolbar_hidden;
632
633 //      GtkWidget *thumb_button;
634 //      gint thumbs_enabled;
635 //      gint marks_enabled;
636
637         GtkWidget *back_button;
638
639         /* dir view */
640
641         LayoutLocation dir_location;
642
643         ViewDir *vd;
644         GtkWidget *dir_view;
645
646 //      DirViewType dir_view_type;
647
648         /* file view */
649
650         LayoutLocation file_location;
651
652         ViewFile *vf;
653 //      FileViewType file_view_type;
654
655         GtkWidget *file_view;
656
657         SortType sort_method;
658         gboolean sort_ascend;
659
660         /* status bar */
661
662         GtkWidget *info_box;
663         GtkWidget *info_progress_bar;
664         GtkWidget *info_sort;
665         GtkWidget *info_status;
666         GtkWidget *info_details;
667         GtkWidget *info_zoom;
668         GtkWidget *info_pixel;
669         
670         /* slide show */
671
672         SlideShowData *slideshow;
673
674         /* full screen */
675
676         FullScreenData *full_screen;
677
678         /* dividers */
679
680 //      gint div_h;
681 //      gint div_v;
682 //      gint div_float;
683
684         /* misc */
685
686         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
687         GtkWidget *utility_paned; /* between image and bar */
688         GtkWidget *bar_sort;
689         GtkWidget *bar;
690
691 //      gint bar_sort_enabled;
692 //      gint bar_enabled;
693
694 //      gint bar_width;
695
696         GtkWidget *exif_window;
697 };
698
699 struct _ViewDir
700 {
701         DirViewType type;
702         gpointer info;
703
704         GtkWidget *widget;
705         GtkWidget *view;
706
707         FileData *dir_fd;
708
709         FileData *click_fd;
710
711         FileData *drop_fd;
712         GList *drop_list;
713         guint drop_scroll_id; /* event source id */
714
715         /* func list */
716         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
717         gpointer select_data;
718
719         void (*dnd_drop_update_func)(ViewDir *vd);
720         void (*dnd_drop_leave_func)(ViewDir *vd);
721
722         LayoutWindow *layout;
723
724         GtkWidget *popup;
725
726         PixmapFolders *pf;
727 };
728
729 struct _ViewDirInfoList
730 {
731         GList *list;
732 };
733
734 struct _ViewDirInfoTree
735 {
736         guint drop_expand_id; /* event source id */
737         gint busy_ref;
738 };
739
740
741 struct _ViewFile
742 {
743         FileViewType type;
744         gpointer info;
745
746         GtkWidget *widget;
747         GtkWidget *listview;
748         GtkWidget *scrolled;
749         GtkWidget *filter;
750         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
751
752         FileData *dir_fd;
753         GList *list;
754
755         SortType sort_method;
756         gboolean sort_ascend;
757
758         /* func list */
759         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
760         gpointer data_thumb_status;
761
762         void (*func_status)(ViewFile *vf, gpointer data);
763         gpointer data_status;
764
765         LayoutWindow *layout;
766
767         GtkWidget *popup;
768
769         /* thumbs updates*/
770         gboolean thumbs_running;
771         ThumbLoader *thumbs_loader;
772         FileData *thumbs_filedata;
773
774         /* marks */
775         gboolean marks_enabled;
776         gint active_mark;
777         gint clicked_mark;
778         
779         /* refresh */
780         guint refresh_idle_id; /* event source id */
781         time_t time_refresh_set; /* time when refresh_idle_id was set */
782
783         /* file list for edit menu */
784         GList *editmenu_fd_list;
785 };
786
787 struct _ViewFileInfoList
788 {
789         FileData *click_fd;
790         FileData *select_fd;
791
792         gboolean thumbs_enabled;
793
794         guint select_idle_id; /* event source id */
795 };
796
797 struct _IconData;
798
799 struct _ViewFileInfoIcon
800 {
801         /* table stuff */
802         gint columns;
803         gint rows;
804
805         GList *selection;
806         struct _IconData *prev_selection;
807
808         GtkWidget *tip_window;
809         guint tip_delay_id; /* event source id */
810         struct _IconData *tip_id;
811
812         struct _IconData *click_id;
813
814         struct _IconData *focus_id;
815         gint focus_row;
816         gint focus_column;
817
818         gboolean show_text;
819 };
820
821 struct _SlideShowData
822 {
823         LayoutWindow *lw;        /* use this window to display the slideshow */
824         ImageWindow *imd;        /* use this window only if lw is not available,
825                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
826
827         GList *filelist;
828         CollectionData *cd;
829         FileData *dir_fd;
830
831         GList *list;
832         GList *list_done;
833
834         FileData *slide_fd;
835
836         guint slide_count;
837         guint timeout_id; /* event source id */
838
839         gboolean from_selection;
840
841         void (*stop_func)(SlideShowData *, gpointer);
842         gpointer stop_data;
843
844         gboolean paused;
845 };
846
847 struct _FullScreenData
848 {
849         GtkWidget *window;
850         ImageWindow *imd;
851
852         GtkWidget *normal_window;
853         ImageWindow *normal_imd;
854
855         guint hide_mouse_id; /* event source id */
856         guint busy_mouse_id; /* event source id */
857
858         gint cursor_state;
859
860         guint saver_block_id; /* event source id */
861
862         void (*stop_func)(FullScreenData *, gpointer);
863         gpointer stop_data;
864 };
865
866 struct _PixmapFolders
867 {
868         GdkPixbuf *close;
869         GdkPixbuf *open;
870         GdkPixbuf *deny;
871         GdkPixbuf *parent;
872 };
873
874 struct _SecureSaveInfo {
875         FILE *fp; /**< file stream pointer */
876         gchar *file_name; /**< final file name */
877         gchar *tmp_file_name; /**< temporary file name */
878         gint err; /**< set to non-zero value in case of error */
879         gboolean secure_save; /**< use secure save for this file, internal use only */
880         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
881         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
882         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
883 };
884
885 struct _CommandLine
886 {
887         int argc;
888         gchar **argv;
889         gboolean startup_blank;
890         gboolean startup_full_screen;
891         gboolean startup_in_slideshow;
892         gboolean startup_command_line_collection;
893         gboolean tools_hide;
894         gboolean tools_show;
895         gchar *path;
896         gchar *file;
897         GList *cmd_list;
898         GList *collection_list;
899         gchar *geometry;
900 };
901
902 #endif
903 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */