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