Fix #601: Show over-/underexposed
[geeqie.git] / src / typedefs.h
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef TYPEDEFS_H
23 #define TYPEDEFS_H
24
25 typedef enum {
26         ZOOM_RESET_ORIGINAL     = 0,
27         ZOOM_RESET_FIT_WINDOW   = 1,
28         ZOOM_RESET_NONE         = 2
29 } ZoomMode;
30
31 typedef enum {
32         PRIMARY = 0,
33         CLIPBOARD = 1,
34 } ClipboardSelection;
35
36 typedef enum {
37         MOUSE_BUTTON_LEFT       = 1,
38         MOUSE_BUTTON_MIDDLE     = 2,
39         MOUSE_BUTTON_RIGHT      = 3,
40         MOUSE_BUTTON_WHEEL_UP   = 4,
41         MOUSE_BUTTON_WHEEL_DOWN = 5,
42         MOUSE_BUTTON_BACK       = 8,
43         MOUSE_BUTTON_FORWARD    = 9
44 } MouseButton;
45
46 typedef enum {
47         DIRVIEW_LIST,
48         DIRVIEW_TREE,
49
50         // Keep this up to date!
51         DIRVIEW_LAST = DIRVIEW_TREE
52 } DirViewType;
53
54 typedef enum {
55         FILEVIEW_LIST,
56         FILEVIEW_ICON,
57
58         // Keep this up to date!
59         FILEVIEW_LAST = FILEVIEW_ICON
60 } FileViewType;
61
62 #define CMD_COPY     "geeqie-copy-command.desktop"
63 #define CMD_MOVE     "geeqie-move-command.desktop"
64 #define CMD_RENAME   "geeqie-rename-command.desktop"
65 #define CMD_DELETE   "geeqie-delete-command.desktop"
66 #define CMD_FOLDER   "geeqie-folder-command.desktop"
67
68 typedef enum {
69         SORT_NONE,
70         SORT_NAME,
71         SORT_SIZE,
72         SORT_TIME,
73         SORT_CTIME,
74         SORT_PATH,
75         SORT_NUMBER,
76         SORT_EXIFTIME,
77         SORT_EXIFTIMEDIGITIZED,
78         SORT_RATING,
79         SORT_CLASS
80 } SortType;
81
82 typedef enum {
83         ALTER_NONE,             /* do nothing */
84         ALTER_ROTATE_90,
85         ALTER_ROTATE_90_CC,     /* counterclockwise */
86         ALTER_ROTATE_180,
87         ALTER_MIRROR,
88         ALTER_FLIP,
89 } AlterType;
90
91 typedef enum {
92         LAYOUT_HIDE   = 0,
93         LAYOUT_LEFT   = 1 << 0,
94         LAYOUT_RIGHT  = 1 << 1,
95         LAYOUT_TOP    = 1 << 2,
96         LAYOUT_BOTTOM = 1 << 3
97 } LayoutLocation;
98
99
100 typedef enum {
101         IMAGE_STATE_NONE        = 0,
102         IMAGE_STATE_IMAGE       = 1 << 0,
103         IMAGE_STATE_LOADING     = 1 << 1,
104         IMAGE_STATE_ERROR       = 1 << 2,
105         IMAGE_STATE_COLOR_ADJ   = 1 << 3,
106         IMAGE_STATE_ROTATE_AUTO = 1 << 4,
107         IMAGE_STATE_ROTATE_USER = 1 << 5,
108         IMAGE_STATE_DELAY_FLIP  = 1 << 6
109 } ImageState;
110
111 typedef enum {
112         SPLIT_NONE = 0,
113         SPLIT_VERT,
114         SPLIT_HOR,
115         SPLIT_QUAD,
116 } ImageSplitMode;
117
118 typedef enum {
119         FILEDATA_CHANGE_DELETE,
120         FILEDATA_CHANGE_MOVE,
121         FILEDATA_CHANGE_RENAME,
122         FILEDATA_CHANGE_COPY,
123         FILEDATA_CHANGE_UNSPECIFIED,
124         FILEDATA_CHANGE_WRITE_METADATA
125 } FileDataChangeType;
126
127 typedef enum {
128         MTS_MODE_MINUS,
129         MTS_MODE_SET,
130         MTS_MODE_OR,
131         MTS_MODE_AND
132 } MarkToSelectionMode;
133
134 typedef enum {
135         STM_MODE_RESET,
136         STM_MODE_SET,
137         STM_MODE_TOGGLE
138 } SelectionToMarkMode;
139
140 typedef enum {
141         FORMAT_CLASS_UNKNOWN,
142         FORMAT_CLASS_IMAGE,
143         FORMAT_CLASS_RAWIMAGE,
144         FORMAT_CLASS_META,
145         FORMAT_CLASS_VIDEO,
146         FORMAT_CLASS_COLLECTION,
147         FORMAT_CLASS_PDF,
148         FILE_FORMAT_CLASSES
149 } FileFormatClass;
150
151 extern gchar *format_class_list[];
152
153 typedef enum {
154         SS_ERR_NONE = 0,
155         SS_ERR_DISABLED, /**< secsave is disabled. */
156         SS_ERR_OUT_OF_MEM, /**< memory allocation failure */
157
158         /* see err field in SecureSaveInfo */
159         SS_ERR_OPEN_READ,
160         SS_ERR_OPEN_WRITE,
161         SS_ERR_STAT,
162         SS_ERR_ACCESS,
163         SS_ERR_MKSTEMP,
164         SS_ERR_RENAME,
165         SS_ERR_OTHER,
166 } SecureSaveErrno;
167
168 typedef enum {
169         NOTIFY_PRIORITY_HIGH = 0,
170         NOTIFY_PRIORITY_MEDIUM,
171         NOTIFY_PRIORITY_LOW
172 } NotifyPriority;
173
174 typedef enum {
175         NOTIFY_MARKS            = 1 << 1, /* changed marks */
176         NOTIFY_PIXBUF           = 1 << 2, /* image was read into fd->pixbuf */
177         NOTIFY_HISTMAP          = 1 << 3, /* histmap was read into fd->histmap */
178         NOTIFY_ORIENTATION      = 1 << 4, /* image was rotated */
179         NOTIFY_METADATA         = 1 << 5, /* changed image metadata, not yet written */
180         NOTIFY_GROUPING         = 1 << 6, /* change in fd->sidecar_files or fd->parent */
181         NOTIFY_REREAD           = 1 << 7, /* changed file size, date, etc., file name remains unchanged */
182         NOTIFY_CHANGE           = 1 << 8  /* generic change described by fd->change */
183 } NotifyType;
184
185 typedef enum {
186         CHANGE_OK                      = 0,
187         CHANGE_WARN_DEST_EXISTS        = 1 << 0,
188         CHANGE_WARN_NO_WRITE_PERM      = 1 << 1,
189         CHANGE_WARN_SAME               = 1 << 2,
190         CHANGE_WARN_CHANGED_EXT        = 1 << 3,
191         CHANGE_WARN_UNSAVED_META       = 1 << 4,
192         CHANGE_WARN_NO_WRITE_PERM_DEST_DIR  = 1 << 5,
193         CHANGE_ERROR_MASK              = (~0U) << 8, /* the values below are fatal errors */
194         CHANGE_NO_READ_PERM            = 1 << 8,
195         CHANGE_NO_WRITE_PERM_DIR       = 1 << 9,
196         CHANGE_NO_DEST_DIR             = 1 << 10,
197         CHANGE_DUPLICATE_DEST          = 1 << 11,
198         CHANGE_NO_WRITE_PERM_DEST      = 1 << 12,
199         CHANGE_DEST_EXISTS             = 1 << 13,
200         CHANGE_NO_SRC                  = 1 << 14,
201         CHANGE_GENERIC_ERROR           = 1 << 16
202 } ChangeError;
203
204 typedef enum {
205         METADATA_PLAIN          = 0, /* format that can be edited and written back */
206         METADATA_FORMATTED      = 1  /* for display only */
207 } MetadataFormat;
208
209 typedef enum {
210         STARTUP_PATH_CURRENT    = 0,
211         STARTUP_PATH_LAST,
212         STARTUP_PATH_HOME,
213 } StartUpPath;
214
215 typedef enum {
216         TOOLBAR_MAIN,
217         TOOLBAR_STATUS,
218         TOOLBAR_COUNT
219 } ToolbarType;
220
221 typedef enum {
222         PR_STEREO_NONE             = 0,   /* do nothing */
223         PR_STEREO_DUAL             = 1 << 0, /* independent stereo buffers, for example nvidia opengl */
224         PR_STEREO_FIXED            = 1 << 1,  /* custom position */
225         PR_STEREO_HORIZ            = 1 << 2,  /* side by side */
226         PR_STEREO_VERT             = 1 << 3,  /* above below */
227         PR_STEREO_RIGHT            = 1 << 4,  /* render right buffer */
228         PR_STEREO_ANAGLYPH_RC      = 1 << 5,  /* anaglyph red-cyan */
229         PR_STEREO_ANAGLYPH_GM      = 1 << 6,  /* anaglyph green-magenta */
230         PR_STEREO_ANAGLYPH_YB      = 1 << 7,  /* anaglyph yellow-blue */
231         PR_STEREO_ANAGLYPH_GRAY_RC = 1 << 8,  /* anaglyph gray red-cyan*/
232         PR_STEREO_ANAGLYPH_GRAY_GM = 1 << 9,  /* anaglyph gray green-magenta */
233         PR_STEREO_ANAGLYPH_GRAY_YB = 1 << 10, /* anaglyph gray yellow-blue */
234         PR_STEREO_ANAGLYPH_DB_RC   = 1 << 11, /* anaglyph dubois red-cyan */
235         PR_STEREO_ANAGLYPH_DB_GM   = 1 << 12, /* anaglyph dubois green-magenta */
236         PR_STEREO_ANAGLYPH_DB_YB   = 1 << 13, /* anaglyph dubois yellow-blue */
237         PR_STEREO_ANAGLYPH         = PR_STEREO_ANAGLYPH_RC |
238                                      PR_STEREO_ANAGLYPH_GM |
239                                      PR_STEREO_ANAGLYPH_YB |
240                                      PR_STEREO_ANAGLYPH_GRAY_RC |
241                                      PR_STEREO_ANAGLYPH_GRAY_GM |
242                                      PR_STEREO_ANAGLYPH_GRAY_YB |
243                                      PR_STEREO_ANAGLYPH_DB_RC |
244                                      PR_STEREO_ANAGLYPH_DB_GM |
245                                      PR_STEREO_ANAGLYPH_DB_YB, /* anaglyph mask */
246
247         PR_STEREO_MIRROR_LEFT      = 1 << 14, /* mirror */
248         PR_STEREO_FLIP_LEFT        = 1 << 15, /* flip */
249
250         PR_STEREO_MIRROR_RIGHT     = 1 << 16, /* mirror */
251         PR_STEREO_FLIP_RIGHT       = 1 << 17, /* flip */
252
253         PR_STEREO_MIRROR           = PR_STEREO_MIRROR_LEFT | PR_STEREO_MIRROR_RIGHT, /* mirror mask*/
254         PR_STEREO_FLIP             = PR_STEREO_FLIP_LEFT | PR_STEREO_FLIP_RIGHT, /* flip mask*/
255         PR_STEREO_SWAP             = 1 << 18,  /* swap left and right buffers */
256         PR_STEREO_TEMP_DISABLE     = 1 << 19,  /* temporarily disable stereo mode if source image is not stereo */
257         PR_STEREO_HALF             = 1 << 20
258 } PixbufRendererStereoMode;
259
260 typedef enum {
261         STEREO_PIXBUF_DEFAULT  = 0,
262         STEREO_PIXBUF_SBS      = 1,
263         STEREO_PIXBUF_CROSS    = 2,
264         STEREO_PIXBUF_NONE     = 3
265 } StereoPixbufData;
266
267 #define MAX_SPLIT_IMAGES 4
268
269 typedef enum {
270         SELECTION_NONE          = 0,
271         SELECTION_SELECTED      = 1 << 0,
272         SELECTION_PRELIGHT      = 1 << 1,
273         SELECTION_FOCUS         = 1 << 2
274 } SelectionType;
275
276 typedef struct _ImageLoader ImageLoader;
277 typedef struct _ThumbLoader ThumbLoader;
278
279 typedef struct _AnimationData AnimationData;
280
281 typedef struct _CollectInfo CollectInfo;
282 typedef struct _CollectionData CollectionData;
283 typedef struct _CollectTable CollectTable;
284 typedef struct _CollectWindow CollectWindow;
285
286 typedef struct _ImageWindow ImageWindow;
287
288 typedef struct _FileData FileData;
289 typedef struct _FileDataChangeInfo FileDataChangeInfo;
290
291 typedef struct _LayoutWindow LayoutWindow;
292 typedef struct _LayoutOptions LayoutOptions;
293
294 typedef struct _ViewDir ViewDir;
295 typedef struct _ViewDirInfoList ViewDirInfoList;
296 typedef struct _ViewDirInfoTree ViewDirInfoTree;
297
298 typedef struct _ViewFile ViewFile;
299 typedef struct _ViewFileInfoList ViewFileInfoList;
300 typedef struct _ViewFileInfoIcon ViewFileInfoIcon;
301
302 typedef struct _SlideShowData SlideShowData;
303 typedef struct _FullScreenData FullScreenData;
304
305 typedef struct _PixmapFolders PixmapFolders;
306 typedef struct _Histogram Histogram;
307 typedef struct _HistMap HistMap;
308
309 typedef struct _SecureSaveInfo SecureSaveInfo;
310
311 typedef struct _ExifData ExifData;
312
313 typedef struct _EditorDescription EditorDescription;
314
315 typedef struct _CommandLine CommandLine;
316
317 struct _Histogram {
318         gint histogram_channel; /* drawing mode for histogram */
319         gint histogram_mode;     /* logarithmical or not */
320         guint vgrid; /* number of vertical divisions, 0 for none */
321         guint hgrid; /* number of horizontal divisions, 0 for none */
322         struct {
323                 int R; /* red */
324                 int G; /* green */
325                 int B; /* blue */
326                 int A; /* alpha */
327         } grid_color;  /* grid color */
328
329 };
330
331
332
333 struct _ImageLoader;
334
335 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
336
337 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
338
339 struct _ThumbLoader
340 {
341         gboolean standard_loader;
342
343         ImageLoader *il;
344         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
345
346         gboolean cache_enable;
347         gboolean cache_hit;
348         gdouble percent_done;
349
350         gint max_w;
351         gint max_h;
352
353         ThumbLoaderFunc func_done;
354         ThumbLoaderFunc func_error;
355         ThumbLoaderFunc func_progress;
356
357         gpointer data;
358
359         guint idle_done_id; /* event source id */
360 };
361
362 struct _AnimationData
363 {
364         ImageWindow *iw;
365         GdkPixbufAnimation *gpa;
366         GdkPixbufAnimationIter *iter;
367         GdkPixbuf *gpb;
368         FileData *data_adr;
369         guint delay;
370         gboolean valid;
371 };
372
373 struct _CollectInfo
374 {
375         FileData *fd;
376         GdkPixbuf *pixbuf;
377         guint flag_mask;
378 };
379
380 struct _CollectionData
381 {
382         gchar *path;
383         gchar *name;
384         GList *list;
385         SortType sort_method;
386
387         ThumbLoader *thumb_loader;
388         CollectInfo *thumb_info;
389
390         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
391         gpointer info_updated_data;
392
393         gint ref;
394
395         /* geometry */
396         gint window_read;
397         gint window_x;
398         gint window_y;
399         gint window_w;
400         gint window_h;
401
402         /* contents changed since save flag */
403         gboolean changed;
404
405         GHashTable *existence;
406 };
407
408 struct _CollectTable
409 {
410         GtkWidget *scrolled;
411         GtkWidget *listview;
412         gint columns;
413         gint rows;
414
415         CollectionData *cd;
416
417         GList *selection;
418         CollectInfo *prev_selection;
419
420         CollectInfo *click_info;
421
422         GtkWidget *tip_window;
423         guint tip_delay_id; /* event source id */
424         CollectInfo *tip_info;
425
426         GdkWindow *marker_window;
427         CollectInfo *marker_info;
428
429         GtkWidget *status_label;
430         GtkWidget *extra_label;
431
432         gint focus_row;
433         gint focus_column;
434         CollectInfo *focus_info;
435
436         GtkWidget *popup;
437         CollectInfo *drop_info;
438         GList *drop_list;
439
440         guint sync_idle_id; /* event source id */
441         guint drop_idle_id; /* event source id */
442
443         gboolean show_text;
444         gboolean show_stars;
445
446         /* file list for edit menu */
447         GList *editmenu_fd_list;
448 };
449
450 struct _CollectWindow
451 {
452         GtkWidget *window;
453         CollectTable *table;
454         GtkWidget *status_box;
455
456         GtkWidget *close_dialog;
457
458         CollectionData *cd;
459 };
460
461 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
462                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
463 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
464                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
465
466 struct _ImageWindow
467 {
468         GtkWidget *widget;      /* use this to add it and show it */
469         GtkWidget *pr;
470         GtkWidget *frame;
471
472         FileData *image_fd;
473
474         gboolean unknown;               /* failed to load image */
475
476         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
477                                    sending callbacks to multiple ImageWindows in parallel */
478
479         gint has_frame;  /* not boolean, see image_new() */
480
481         /* top level (not necessarily parent) window */
482         gboolean top_window_sync;       /* resize top_window when image dimensions change */
483         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
484         gchar *title;           /* window title to display left of file name */
485         gchar *title_right;     /* window title to display right of file name */
486         gboolean title_show_zoom;       /* option to include zoom in window title */
487
488         gboolean completed;
489         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
490
491         void (*func_update)(ImageWindow *imd, gpointer data);
492         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
493         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
494         ImageTileRequestFunc func_tile_request;
495         ImageTileDisposeFunc func_tile_dispose;
496
497         gpointer data_update;
498         gpointer data_complete;
499         gpointer data_state;
500         gpointer data_tile;
501
502         /* button, scroll functions */
503         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
504         void (*func_drag)(ImageWindow *, GdkEventMotion *event, gdouble dx, gdouble dy, gpointer);
505         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
506         void (*func_focus_in)(ImageWindow *, gpointer);
507
508         gpointer data_button;
509         gpointer data_drag;
510         gpointer data_scroll;
511         gpointer data_focus_in;
512
513         /* scroll notification (for scroll bar implementation) */
514         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
515
516         gpointer data_scroll_notify;
517
518         /* collection info */
519         CollectionData *collection;
520         CollectInfo *collection_info;
521
522         /* color profiles */
523         gboolean color_profile_enable;
524         gint color_profile_input;
525         gboolean color_profile_use_image;
526         gint color_profile_from_image;
527         gpointer cm;
528
529         AlterType delay_alter_type;
530
531         FileData *read_ahead_fd;
532         ImageLoader *read_ahead_il;
533
534         gint prev_color_row;
535
536         gboolean auto_refresh;
537
538         gboolean delay_flip;
539         gint orientation;
540         gboolean desaturate;
541         gboolean overunderexposed;
542         gint user_stereo;
543
544         gboolean mouse_wheel_mode;
545 };
546
547 #define FILEDATA_MARKS_SIZE 10
548
549 struct _FileDataChangeInfo {
550         FileDataChangeType type;
551         gchar *source;
552         gchar *dest;
553         gint error;
554         gboolean regroup_when_finished;
555 };
556
557 struct _FileData {
558         guint magick;
559         gint type;
560         gchar *original_path; /* key to file_data_pool hash table */
561         gchar *path;
562         const gchar *name;
563         const gchar *extension;
564         gchar *extended_extension;
565         FileFormatClass format_class;
566         gchar *collate_key_name;
567         gchar *collate_key_name_nocase;
568         gint64 size;
569         time_t date;
570         time_t cdate;
571         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
572         gint sidecar_priority;
573
574         guint marks; /* each bit represents one mark */
575         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
576
577
578         GList *sidecar_files;
579         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
580         FileDataChangeInfo *change; /* for rename, move ... */
581         GdkPixbuf *thumb_pixbuf;
582
583         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
584                               all FileData with non-NULL pixbuf are referenced by image_cache */
585
586         HistMap *histmap;
587
588         gboolean locked;
589         gint ref;
590         gint version; /* increased when any field in this structure is changed */
591         gboolean disable_grouping;
592
593         gint user_orientation;
594         gint exif_orientation;
595
596         ExifData *exif;
597         time_t exifdate;
598         time_t exifdate_digitized;
599         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
600         GList *cached_metadata;
601         gint rating;
602         gboolean metadata_in_idle_loaded;
603
604         gchar *owner;
605         gchar *group;
606         gchar *sym_link;
607
608         SelectionType selected;  // Used by view_file_icon.
609 };
610
611 struct _LayoutOptions
612 {
613         gchar *id;
614
615         gchar *order;
616         gint style;
617
618         DirViewType dir_view_type;
619         FileViewType file_view_type;
620
621         gboolean show_thumbnails;
622         gboolean show_marks;
623         gboolean show_file_filter;
624         gboolean show_directory_date;
625         gboolean show_info_pixel;
626
627         struct {
628                 gint w;
629                 gint h;
630                 gint x;
631                 gint y;
632                 gboolean maximized;
633                 gint hdivider_pos;
634                 gint vdivider_pos;
635         } main_window;
636
637         struct {
638                 gint w;
639                 gint h;
640                 gint x;
641                 gint y;
642                 gint vdivider_pos;
643         } float_window;
644
645         struct {
646                 gint vdivider_pos;
647         } folder_window;
648
649         struct {
650                 gint w;
651                 gint h;
652         } properties_window;
653
654         struct {
655                 guint state;
656                 gint histogram_channel;
657                 gint histogram_mode;
658         } image_overlay;
659
660         struct {
661                 gint w;
662                 gint h;
663                 gint x;
664                 gint y;
665         } log_window;
666
667         gboolean tools_float;
668         gboolean tools_hidden;
669         gboolean toolbar_hidden;
670
671         struct {
672                 gboolean info;
673                 gboolean sort;
674                 gboolean tools_float;
675                 gboolean tools_hidden;
676                 gboolean hidden;
677         } bars_state;
678
679         gchar *home_path;
680         gchar *last_path;
681
682         StartUpPath startup_path;
683
684         gboolean exit_on_close;
685
686         gboolean animate;
687 };
688
689 struct _LayoutWindow
690 {
691         LayoutOptions options;
692
693         FileData *dir_fd;
694
695         /* base */
696
697         GtkWidget *window;
698
699         GtkWidget *main_box;
700
701         GtkWidget *group_box;
702         GtkWidget *h_pane;
703         GtkWidget *v_pane;
704
705         /* menus, path selector */
706
707         GtkActionGroup *action_group;
708         GtkActionGroup *action_group_editors;
709         guint ui_editors_id;
710         GtkUIManager *ui_manager;
711         guint toolbar_merge_id[TOOLBAR_COUNT];
712         GList *toolbar_actions[TOOLBAR_COUNT];
713
714         GtkWidget *path_entry;
715
716         /* image */
717
718         LayoutLocation image_location;
719
720         ImageWindow *image;
721
722         ImageWindow *split_images[MAX_SPLIT_IMAGES];
723         ImageSplitMode split_mode;
724         gint active_split_image;
725
726         GtkWidget *split_image_widget;
727         GtkSizeGroup *split_image_sizegroup;
728
729         /* tools window (float) */
730
731         GtkWidget *tools;
732         GtkWidget *tools_pane;
733
734 //      gint tools_float;
735 //      gint tools_hidden;
736         GtkWidget *menu_tool_bar; /*Combined menu and toolbar box */
737         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
738         /* toolbar */
739
740         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
741 //      gint toolbar_hidden;
742
743 //      GtkWidget *thumb_button;
744 //      gint thumbs_enabled;
745 //      gint marks_enabled;
746
747         GtkWidget *back_button;
748
749         /* dir view */
750
751         LayoutLocation dir_location;
752
753         ViewDir *vd;
754         GtkWidget *dir_view;
755
756 //      DirViewType dir_view_type;
757
758         /* file view */
759
760         LayoutLocation file_location;
761
762         ViewFile *vf;
763 //      FileViewType file_view_type;
764
765         GtkWidget *file_view;
766
767         SortType sort_method;
768         gboolean sort_ascend;
769
770         /* status bar */
771
772         GtkWidget *info_box;
773         GtkWidget *info_progress_bar;
774         GtkWidget *info_sort;
775         GtkWidget *info_status;
776         GtkWidget *info_details;
777         GtkWidget *info_zoom;
778         GtkWidget *info_pixel;
779
780         /* slide show */
781
782         SlideShowData *slideshow;
783
784         /* full screen */
785
786         FullScreenData *full_screen;
787
788         /* dividers */
789
790 //      gint div_h;
791 //      gint div_v;
792 //      gint div_float;
793
794         /* misc */
795
796         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
797         GtkWidget *utility_paned; /* between image and bar */
798         GtkWidget *bar_sort;
799         GtkWidget *bar;
800
801         gboolean bar_sort_enabled; /* Set during start-up, and checked when the editors have loaded */
802 //      gint bar_enabled;
803
804 //      gint bar_width;
805
806         GtkWidget *exif_window;
807
808         AnimationData *animation;
809
810         GtkWidget *log_window;
811 };
812
813 struct _ViewDir
814 {
815         DirViewType type;
816         gpointer info;
817
818         GtkWidget *widget;
819         GtkWidget *view;
820
821         FileData *dir_fd;
822
823         FileData *click_fd;
824
825         FileData *drop_fd;
826         GList *drop_list;
827         guint drop_scroll_id; /* event source id */
828
829         /* func list */
830         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
831         gpointer select_data;
832
833         void (*dnd_drop_update_func)(ViewDir *vd);
834         void (*dnd_drop_leave_func)(ViewDir *vd);
835
836         LayoutWindow *layout;
837
838         GtkWidget *popup;
839
840         PixmapFolders *pf;
841 };
842
843 struct _ViewDirInfoList
844 {
845         GList *list;
846 };
847
848 struct _ViewDirInfoTree
849 {
850         guint drop_expand_id; /* event source id */
851         gint busy_ref;
852 };
853
854
855 struct _ViewFile
856 {
857         FileViewType type;
858         // TODO(xsdg): Turn this into a union (see VFLIST and VFICON from view_file.h).
859         gpointer info;
860
861         GtkWidget *widget;
862         GtkWidget *listview;
863         GtkWidget *scrolled;
864         GtkWidget *filter;
865         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
866
867         struct {
868                 GtkWidget *combo;
869                 GtkWidget *frame;
870                 gint count;
871                 gint last_selected;
872         } file_filter;
873
874         FileData *dir_fd;
875         GList *list;
876
877         SortType sort_method;
878         gboolean sort_ascend;
879
880         /* func list */
881         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
882         gpointer data_thumb_status;
883
884         void (*func_status)(ViewFile *vf, gpointer data);
885         gpointer data_status;
886
887         LayoutWindow *layout;
888
889         GtkWidget *popup;
890
891         /* thumbs updates*/
892         gboolean thumbs_running;
893         ThumbLoader *thumbs_loader;
894         FileData *thumbs_filedata;
895
896         /* marks */
897         gboolean marks_enabled;
898         gint active_mark;
899         gint clicked_mark;
900
901         /* refresh */
902         guint refresh_idle_id; /* event source id */
903         time_t time_refresh_set; /* time when refresh_idle_id was set */
904
905         /* file list for edit menu */
906         GList *editmenu_fd_list;
907
908         guint read_metadata_in_idle_id;
909 };
910
911 struct _ViewFileInfoList
912 {
913         FileData *click_fd;
914         FileData *select_fd;
915
916         gboolean thumbs_enabled;
917
918         guint select_idle_id; /* event source id */
919 };
920
921 struct _ViewFileInfoIcon
922 {
923         /* table stuff */
924         gint columns;
925         gint rows;
926
927         GList *selection;
928         FileData *prev_selection;
929
930         GtkWidget *tip_window;
931         guint tip_delay_id; /* event source id */
932         FileData *tip_fd;
933
934         FileData *click_fd;
935
936         FileData *focus_fd;
937         gint focus_row;
938         gint focus_column;
939
940         gboolean show_text;
941 };
942
943 struct _SlideShowData
944 {
945         LayoutWindow *lw;        /* use this window to display the slideshow */
946         ImageWindow *imd;        /* use this window only if lw is not available,
947                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
948
949         GList *filelist;
950         CollectionData *cd;
951         FileData *dir_fd;
952
953         GList *list;
954         GList *list_done;
955
956         FileData *slide_fd;
957
958         guint slide_count;
959         guint timeout_id; /* event source id */
960
961         gboolean from_selection;
962
963         void (*stop_func)(SlideShowData *, gpointer);
964         gpointer stop_data;
965
966         gboolean paused;
967 };
968
969 struct _FullScreenData
970 {
971         GtkWidget *window;
972         ImageWindow *imd;
973
974         GtkWidget *normal_window;
975         ImageWindow *normal_imd;
976
977         guint hide_mouse_id; /* event source id */
978         guint busy_mouse_id; /* event source id */
979
980         gint cursor_state;
981
982         guint saver_block_id; /* event source id */
983
984         void (*stop_func)(FullScreenData *, gpointer);
985         gpointer stop_data;
986
987         gboolean same_region; /* the returned region will overlap the current location of widget. */
988 };
989
990 struct _PixmapFolders
991 {
992         GdkPixbuf *close;
993         GdkPixbuf *open;
994         GdkPixbuf *deny;
995         GdkPixbuf *parent;
996         GdkPixbuf *link;
997 };
998
999 struct _SecureSaveInfo {
1000         FILE *fp; /**< file stream pointer */
1001         gchar *file_name; /**< final file name */
1002         gchar *tmp_file_name; /**< temporary file name */
1003         gint err; /**< set to non-zero value in case of error */
1004         gboolean secure_save; /**< use secure save for this file, internal use only */
1005         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
1006         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
1007         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
1008 };
1009
1010 struct _CommandLine
1011 {
1012         int argc;
1013         gchar **argv;
1014         gboolean startup_blank;
1015         gboolean startup_full_screen;
1016         gboolean startup_in_slideshow;
1017         gboolean startup_command_line_collection;
1018         gboolean tools_hide;
1019         gboolean tools_show;
1020         gboolean log_window_show;
1021         gchar *path;
1022         gchar *file;
1023         GList *cmd_list;
1024         GList *collection_list;
1025         gchar *geometry;
1026         gchar *regexp;
1027         gchar *log_file;
1028         SecureSaveInfo *ssi;
1029 };
1030
1031 #endif
1032 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */