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