- handle color profile and write metadata buttons on statusbar by ui_manager
[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_ERROR_MASK              = (~0) << 4, /* the values below are fatal errors */
161         CHANGE_NO_READ_PERM            = 1 << 4,
162         CHANGE_NO_WRITE_PERM_DIR       = 1 << 5,
163         CHANGE_NO_DEST_DIR             = 1 << 6,
164         CHANGE_NO_WRITE_PERM_DEST_DIR  = 1 << 7,
165         CHANGE_NO_WRITE_PERM_DEST      = 1 << 8,
166         CHANGE_DEST_EXISTS             = 1 << 9,
167         CHANGE_NO_SRC                  = 1 << 10,
168         CHANGE_GENERIC_ERROR           = 1 << 16
169 } ChangeError;
170
171 typedef enum {
172         METADATA_PLAIN          = 0, /* format that can be edited and written back */
173         METADATA_FORMATTED      = 1  /* for display only */
174 } MetadataFormat;
175
176 typedef enum {
177         STARTUP_PATH_CURRENT    = 0,
178         STARTUP_PATH_LAST,
179         STARTUP_PATH_HOME,
180 } StartUpPath;
181
182 typedef enum {
183         TOOLBAR_MAIN,
184         TOOLBAR_STATUS,
185         TOOLBAR_COUNT
186 } ToolbarType;
187
188 #define MAX_SPLIT_IMAGES 4
189
190 typedef struct _ImageLoader ImageLoader;
191 typedef struct _ThumbLoader ThumbLoader;
192
193 typedef struct _CollectInfo CollectInfo;
194 typedef struct _CollectionData CollectionData;
195 typedef struct _CollectTable CollectTable;
196 typedef struct _CollectWindow CollectWindow;
197
198 typedef struct _ImageWindow ImageWindow;
199
200 typedef struct _FileData FileData;
201 typedef struct _FileDataChangeInfo FileDataChangeInfo;
202
203 typedef struct _LayoutWindow LayoutWindow;
204 typedef struct _LayoutOptions LayoutOptions;
205
206 typedef struct _ViewDir ViewDir;
207 typedef struct _ViewDirInfoList ViewDirInfoList;
208 typedef struct _ViewDirInfoTree ViewDirInfoTree;
209
210 typedef struct _ViewFile ViewFile;
211 typedef struct _ViewFileInfoList ViewFileInfoList;
212 typedef struct _ViewFileInfoIcon ViewFileInfoIcon;
213
214 typedef struct _SlideShowData SlideShowData;
215 typedef struct _FullScreenData FullScreenData;
216
217 typedef struct _PixmapFolders PixmapFolders;
218 typedef struct _Histogram Histogram;
219 typedef struct _HistMap HistMap;
220
221 typedef struct _SecureSaveInfo SecureSaveInfo;
222
223 typedef struct _ExifData ExifData;
224
225 typedef struct _EditorDescription EditorDescription;
226
227 typedef struct _CommandLine CommandLine;
228
229 struct _Histogram {
230         gint histogram_channel; /* drawing mode for histogram */
231         gint histogram_mode;     /* logarithmical or not */
232         guint vgrid; /* number of vertical divisions, 0 for none */
233         guint hgrid; /* number of horizontal divisions, 0 for none */
234         struct {
235                 int R; /* red */
236                 int G; /* green */
237                 int B; /* blue */
238                 int A; /* alpha */
239         } grid_color;  /* grid color */
240
241 };
242
243
244
245 struct _ImageLoader;
246
247 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
248
249 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
250
251 struct _ThumbLoader
252 {
253         gboolean standard_loader;
254
255         ImageLoader *il;
256         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
257
258         gboolean cache_enable;
259         gboolean cache_hit;
260         gdouble percent_done;
261
262         gint max_w;
263         gint max_h;
264
265         ThumbLoaderFunc func_done;
266         ThumbLoaderFunc func_error;
267         ThumbLoaderFunc func_progress;
268
269         gpointer data;
270
271         guint idle_done_id; /* event source id */
272 };
273
274 struct _CollectInfo
275 {
276         FileData *fd;
277         GdkPixbuf *pixbuf;
278         guint flag_mask;
279 };
280
281 struct _CollectionData
282 {
283         gchar *path;
284         gchar *name;
285         GList *list;
286         SortType sort_method;
287
288         ThumbLoader *thumb_loader;
289         CollectInfo *thumb_info;
290
291         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
292         gpointer info_updated_data;
293
294         gint ref;
295
296         /* geometry */
297         gint window_read;
298         gint window_x;
299         gint window_y;
300         gint window_w;
301         gint window_h;
302
303         /* contents changed since save flag */
304         gboolean changed;
305
306         GHashTable *existence;
307 };
308
309 struct _CollectTable
310 {
311         GtkWidget *scrolled;
312         GtkWidget *listview;
313         gint columns;
314         gint rows;
315
316         CollectionData *cd;
317
318         GList *selection;
319         CollectInfo *prev_selection;
320
321         CollectInfo *click_info;
322
323         GtkWidget *tip_window;
324         guint tip_delay_id; /* event source id */
325         CollectInfo *tip_info;
326
327         GdkWindow *marker_window;
328         CollectInfo *marker_info;
329
330         GtkWidget *status_label;
331         GtkWidget *extra_label;
332
333         gint focus_row;
334         gint focus_column;
335         CollectInfo *focus_info;
336
337         GtkWidget *popup;
338         CollectInfo *drop_info;
339         GList *drop_list;
340
341         guint sync_idle_id; /* event source id */
342         guint drop_idle_id; /* event source id */
343
344         gboolean show_text;
345
346         /* file list for edit menu */
347         GList *editmenu_fd_list;
348 };
349
350 struct _CollectWindow
351 {
352         GtkWidget *window;
353         CollectTable *table;
354         GtkWidget *status_box;
355         GList *list;
356
357         GtkWidget *close_dialog;
358
359         CollectionData *cd;
360 };
361
362 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
363                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
364 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
365                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
366
367 struct _ImageWindow
368 {
369         GtkWidget *widget;      /* use this to add it and show it */
370         GtkWidget *pr;
371         GtkWidget *frame;
372
373         FileData *image_fd;
374
375         gboolean unknown;               /* failed to load image */
376
377         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
378                                    sending callbacks to multiple ImageWindows in parallel */
379
380         gint has_frame;  /* not boolean, see image_new() */
381
382         /* top level (not necessarily parent) window */
383         gboolean top_window_sync;       /* resize top_window when image dimensions change */
384         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
385         gchar *title;           /* window title to display left of file name */
386         gchar *title_right;     /* window title to display right of file name */
387         gboolean title_show_zoom;       /* option to include zoom in window title */
388
389         gboolean completed;
390         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
391
392         void (*func_update)(ImageWindow *imd, gpointer data);
393         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
394         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
395         ImageTileRequestFunc func_tile_request;
396         ImageTileDisposeFunc func_tile_dispose;
397
398         gpointer data_update;
399         gpointer data_complete;
400         gpointer data_state;
401         gpointer data_tile;
402
403         /* button, scroll functions */
404         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
405         void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
406         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
407         void (*func_focus_in)(ImageWindow *, gpointer);
408
409         gpointer data_button;
410         gpointer data_drag;
411         gpointer data_scroll;
412         gpointer data_focus_in;
413
414         /* scroll notification (for scroll bar implementation) */
415         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
416
417         gpointer data_scroll_notify;
418
419         /* collection info */
420         CollectionData *collection;
421         CollectInfo *collection_info;
422
423         /* color profiles */
424         gboolean color_profile_enable;
425         gint color_profile_input;
426         gboolean color_profile_use_image;
427         gint color_profile_from_image;
428         gpointer cm;
429
430         AlterType delay_alter_type;
431
432         FileData *read_ahead_fd;
433         ImageLoader *read_ahead_il;
434
435         gint prev_color_row;
436
437         gboolean auto_refresh;
438
439         gboolean delay_flip;
440         gint orientation;
441         gboolean desaturate;
442
443         gboolean overlay_show_zoom; /* set to true if overlay is showing zoom ratio */
444 };
445
446 #define FILEDATA_MARKS_SIZE 6
447
448 struct _FileDataChangeInfo {
449         FileDataChangeType type;
450         gchar *source;
451         gchar *dest;
452         gint error;
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
507         struct {
508                 gint w;
509                 gint h;
510                 gint x;
511                 gint y;
512                 gboolean maximized;
513                 gint hdivider_pos;
514                 gint vdivider_pos;
515         } main_window;
516
517         struct {
518                 gint w;
519                 gint h;
520                 gint x;
521                 gint y;
522                 gint vdivider_pos;
523         } float_window;
524
525         struct {
526                 gint w;
527                 gint h;
528         } properties_window;
529
530         struct {
531                 guint state;
532                 gint histogram_channel;
533                 gint histogram_mode;
534         } image_overlay;
535
536         gboolean tools_float;
537         gboolean tools_hidden;
538         gboolean toolbar_hidden;
539         gboolean info_pixel_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         /* file list for edit menu */
669         GList *editmenu_fd_list;
670 };
671
672 struct _ViewDir
673 {
674         DirViewType type;
675         gpointer info;
676
677         GtkWidget *widget;
678         GtkWidget *view;
679
680         FileData *dir_fd;
681
682         FileData *click_fd;
683
684         FileData *drop_fd;
685         GList *drop_list;
686         guint drop_scroll_id; /* event source id */
687
688         /* func list */
689         void (*select_func)(ViewDir *vd, const gchar *path, gpointer data);
690         gpointer select_data;
691
692         void (*dnd_drop_update_func)(ViewDir *vd);
693         void (*dnd_drop_leave_func)(ViewDir *vd);
694
695         LayoutWindow *layout;
696
697         GtkWidget *popup;
698
699         PixmapFolders *pf;
700 };
701
702 struct _ViewDirInfoList
703 {
704         GList *list;
705 };
706
707 struct _ViewDirInfoTree
708 {
709         guint drop_expand_id; /* event source id */
710         gint busy_ref;
711 };
712
713
714 struct _ViewFile
715 {
716         FileViewType type;
717         gpointer info;
718
719         GtkWidget *widget;
720         GtkWidget *listview;
721         GtkWidget *scrolled;
722         GtkWidget *filter;
723         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
724
725         FileData *dir_fd;
726         GList *list;
727
728         SortType sort_method;
729         gboolean sort_ascend;
730
731         /* func list */
732         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
733         gpointer data_thumb_status;
734
735         void (*func_status)(ViewFile *vf, gpointer data);
736         gpointer data_status;
737
738         LayoutWindow *layout;
739
740         GtkWidget *popup;
741
742         /* thumbs updates*/
743         gboolean thumbs_running;
744         ThumbLoader *thumbs_loader;
745         FileData *thumbs_filedata;
746
747         /* marks */
748         gboolean marks_enabled;
749         gint active_mark;
750         gint clicked_mark;
751         
752         /* refresh */
753         guint refresh_idle_id; /* event source id */
754
755         /* file list for edit menu */
756         GList *editmenu_fd_list;
757 };
758
759 struct _ViewFileInfoList
760 {
761         FileData *click_fd;
762         FileData *select_fd;
763
764         gboolean thumbs_enabled;
765
766         guint select_idle_id; /* event source id */
767 };
768
769 struct _IconData;
770
771 struct _ViewFileInfoIcon
772 {
773         /* table stuff */
774         gint columns;
775         gint rows;
776
777         GList *selection;
778         struct _IconData *prev_selection;
779
780         GtkWidget *tip_window;
781         guint tip_delay_id; /* event source id */
782         struct _IconData *tip_id;
783
784         struct _IconData *click_id;
785
786         struct _IconData *focus_id;
787         gint focus_row;
788         gint focus_column;
789
790         gboolean show_text;
791 };
792
793 struct _SlideShowData
794 {
795         ImageWindow *imd;
796
797         GList *filelist;
798         CollectionData *cd;
799         FileData *dir_fd;
800         LayoutWindow *layout;
801
802         GList *list;
803         GList *list_done;
804
805         FileData *slide_fd;
806
807         guint slide_count;
808         guint timeout_id; /* event source id */
809
810         gboolean from_selection;
811
812         void (*stop_func)(SlideShowData *, gpointer);
813         gpointer stop_data;
814
815         gboolean paused;
816 };
817
818 struct _FullScreenData
819 {
820         GtkWidget *window;
821         ImageWindow *imd;
822
823         GtkWidget *normal_window;
824         ImageWindow *normal_imd;
825
826         guint hide_mouse_id; /* event source id */
827         guint busy_mouse_id; /* event source id */
828
829         gint cursor_state;
830
831         guint saver_block_id; /* event source id */
832
833         void (*stop_func)(FullScreenData *, gpointer);
834         gpointer stop_data;
835 };
836
837 struct _PixmapFolders
838 {
839         GdkPixbuf *close;
840         GdkPixbuf *open;
841         GdkPixbuf *deny;
842         GdkPixbuf *parent;
843 };
844
845 struct _SecureSaveInfo {
846         FILE *fp; /**< file stream pointer */
847         gchar *file_name; /**< final file name */
848         gchar *tmp_file_name; /**< temporary file name */
849         gint err; /**< set to non-zero value in case of error */
850         gboolean secure_save; /**< use secure save for this file, internal use only */
851         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
852         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
853         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
854 };
855
856 struct _CommandLine
857 {
858         int argc;
859         gchar **argv;
860         gboolean startup_blank;
861         gboolean startup_full_screen;
862         gboolean startup_in_slideshow;
863         gboolean startup_command_line_collection;
864         gboolean tools_hide;
865         gboolean tools_show;
866         gchar *path;
867         gchar *file;
868         GList *cmd_list;
869         GList *collection_list;
870         gchar *geometry;
871 };
872
873 #endif
874 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */