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