Ref #332: include pdf-view
[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         gint user_stereo;
542
543         gboolean mouse_wheel_mode;
544 };
545
546 #define FILEDATA_MARKS_SIZE 10
547
548 struct _FileDataChangeInfo {
549         FileDataChangeType type;
550         gchar *source;
551         gchar *dest;
552         gint error;
553         gboolean regroup_when_finished;
554 };
555
556 struct _FileData {
557         guint magick;
558         gint type;
559         gchar *original_path; /* key to file_data_pool hash table */
560         gchar *path;
561         const gchar *name;
562         const gchar *extension;
563         gchar *extended_extension;
564         FileFormatClass format_class;
565         gchar *collate_key_name;
566         gchar *collate_key_name_nocase;
567         gint64 size;
568         time_t date;
569         time_t cdate;
570         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
571         gint sidecar_priority;
572
573         guint marks; /* each bit represents one mark */
574         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
575
576
577         GList *sidecar_files;
578         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
579         FileDataChangeInfo *change; /* for rename, move ... */
580         GdkPixbuf *thumb_pixbuf;
581
582         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
583                               all FileData with non-NULL pixbuf are referenced by image_cache */
584
585         HistMap *histmap;
586
587         gboolean locked;
588         gint ref;
589         gint version; /* increased when any field in this structure is changed */
590         gboolean disable_grouping;
591
592         gint user_orientation;
593         gint exif_orientation;
594
595         ExifData *exif;
596         time_t exifdate;
597         time_t exifdate_digitized;
598         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
599         GList *cached_metadata;
600         gint rating;
601         gboolean metadata_in_idle_loaded;
602
603         gchar *owner;
604         gchar *group;
605         gchar *sym_link;
606
607         SelectionType selected;  // Used by view_file_icon.
608 };
609
610 struct _LayoutOptions
611 {
612         gchar *id;
613
614         gchar *order;
615         gint style;
616
617         DirViewType dir_view_type;
618         FileViewType file_view_type;
619
620         gboolean show_thumbnails;
621         gboolean show_marks;
622         gboolean show_directory_date;
623         gboolean show_info_pixel;
624
625         struct {
626                 gint w;
627                 gint h;
628                 gint x;
629                 gint y;
630                 gboolean maximized;
631                 gint hdivider_pos;
632                 gint vdivider_pos;
633         } main_window;
634
635         struct {
636                 gint w;
637                 gint h;
638                 gint x;
639                 gint y;
640                 gint vdivider_pos;
641         } float_window;
642
643         struct {
644                 gint vdivider_pos;
645         } folder_window;
646
647         struct {
648                 gint w;
649                 gint h;
650         } properties_window;
651
652         struct {
653                 guint state;
654                 gint histogram_channel;
655                 gint histogram_mode;
656         } image_overlay;
657
658         struct {
659                 gint w;
660                 gint h;
661                 gint x;
662                 gint y;
663         } log_window;
664
665         gboolean tools_float;
666         gboolean tools_hidden;
667         gboolean toolbar_hidden;
668
669         struct {
670                 gboolean info;
671                 gboolean sort;
672                 gboolean tools_float;
673                 gboolean tools_hidden;
674                 gboolean hidden;
675         } bars_state;
676
677         gchar *home_path;
678         gchar *last_path;
679
680         StartUpPath startup_path;
681
682         gboolean exit_on_close;
683
684         gboolean animate;
685 };
686
687 struct _LayoutWindow
688 {
689         LayoutOptions options;
690
691         FileData *dir_fd;
692
693         /* base */
694
695         GtkWidget *window;
696
697         GtkWidget *main_box;
698
699         GtkWidget *group_box;
700         GtkWidget *h_pane;
701         GtkWidget *v_pane;
702
703         /* menus, path selector */
704
705         GtkActionGroup *action_group;
706         GtkActionGroup *action_group_editors;
707         guint ui_editors_id;
708         GtkUIManager *ui_manager;
709         guint toolbar_merge_id[TOOLBAR_COUNT];
710         GList *toolbar_actions[TOOLBAR_COUNT];
711
712         GtkWidget *path_entry;
713
714         /* image */
715
716         LayoutLocation image_location;
717
718         ImageWindow *image;
719
720         ImageWindow *split_images[MAX_SPLIT_IMAGES];
721         ImageSplitMode split_mode;
722         gint active_split_image;
723
724         GtkWidget *split_image_widget;
725         GtkSizeGroup *split_image_sizegroup;
726
727         /* tools window (float) */
728
729         GtkWidget *tools;
730         GtkWidget *tools_pane;
731
732 //      gint tools_float;
733 //      gint tools_hidden;
734
735         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
736         /* toolbar */
737
738         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
739 //      gint toolbar_hidden;
740
741 //      GtkWidget *thumb_button;
742 //      gint thumbs_enabled;
743 //      gint marks_enabled;
744
745         GtkWidget *back_button;
746
747         /* dir view */
748
749         LayoutLocation dir_location;
750
751         ViewDir *vd;
752         GtkWidget *dir_view;
753
754 //      DirViewType dir_view_type;
755
756         /* file view */
757
758         LayoutLocation file_location;
759
760         ViewFile *vf;
761 //      FileViewType file_view_type;
762
763         GtkWidget *file_view;
764
765         SortType sort_method;
766         gboolean sort_ascend;
767
768         /* status bar */
769
770         GtkWidget *info_box;
771         GtkWidget *info_progress_bar;
772         GtkWidget *info_sort;
773         GtkWidget *info_status;
774         GtkWidget *info_details;
775         GtkWidget *info_zoom;
776         GtkWidget *info_pixel;
777
778         /* slide show */
779
780         SlideShowData *slideshow;
781
782         /* full screen */
783
784         FullScreenData *full_screen;
785
786         /* dividers */
787
788 //      gint div_h;
789 //      gint div_v;
790 //      gint div_float;
791
792         /* misc */
793
794         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
795         GtkWidget *utility_paned; /* between image and bar */
796         GtkWidget *bar_sort;
797         GtkWidget *bar;
798
799         gboolean bar_sort_enabled; /* Set during start-up, and checked when the editors have loaded */
800 //      gint bar_enabled;
801
802 //      gint bar_width;
803
804         GtkWidget *exif_window;
805
806         AnimationData *animation;
807
808         GtkWidget *log_window;
809 };
810
811 struct _ViewDir
812 {
813         DirViewType type;
814         gpointer info;
815
816         GtkWidget *widget;
817         GtkWidget *view;
818
819         FileData *dir_fd;
820
821         FileData *click_fd;
822
823         FileData *drop_fd;
824         GList *drop_list;
825         guint drop_scroll_id; /* event source id */
826
827         /* func list */
828         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
829         gpointer select_data;
830
831         void (*dnd_drop_update_func)(ViewDir *vd);
832         void (*dnd_drop_leave_func)(ViewDir *vd);
833
834         LayoutWindow *layout;
835
836         GtkWidget *popup;
837
838         PixmapFolders *pf;
839 };
840
841 struct _ViewDirInfoList
842 {
843         GList *list;
844 };
845
846 struct _ViewDirInfoTree
847 {
848         guint drop_expand_id; /* event source id */
849         gint busy_ref;
850 };
851
852
853 struct _ViewFile
854 {
855         FileViewType type;
856         // TODO(xsdg): Turn this into a union (see VFLIST and VFICON from view_file.h).
857         gpointer info;
858
859         GtkWidget *widget;
860         GtkWidget *listview;
861         GtkWidget *scrolled;
862         GtkWidget *filter;
863         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
864
865         FileData *dir_fd;
866         GList *list;
867
868         SortType sort_method;
869         gboolean sort_ascend;
870
871         /* func list */
872         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
873         gpointer data_thumb_status;
874
875         void (*func_status)(ViewFile *vf, gpointer data);
876         gpointer data_status;
877
878         LayoutWindow *layout;
879
880         GtkWidget *popup;
881
882         /* thumbs updates*/
883         gboolean thumbs_running;
884         ThumbLoader *thumbs_loader;
885         FileData *thumbs_filedata;
886
887         /* marks */
888         gboolean marks_enabled;
889         gint active_mark;
890         gint clicked_mark;
891
892         /* refresh */
893         guint refresh_idle_id; /* event source id */
894         time_t time_refresh_set; /* time when refresh_idle_id was set */
895
896         /* file list for edit menu */
897         GList *editmenu_fd_list;
898
899         guint read_metadata_in_idle_id;
900 };
901
902 struct _ViewFileInfoList
903 {
904         FileData *click_fd;
905         FileData *select_fd;
906
907         gboolean thumbs_enabled;
908
909         guint select_idle_id; /* event source id */
910 };
911
912 struct _ViewFileInfoIcon
913 {
914         /* table stuff */
915         gint columns;
916         gint rows;
917
918         GList *selection;
919         FileData *prev_selection;
920
921         GtkWidget *tip_window;
922         guint tip_delay_id; /* event source id */
923         FileData *tip_fd;
924
925         FileData *click_fd;
926
927         FileData *focus_fd;
928         gint focus_row;
929         gint focus_column;
930
931         gboolean show_text;
932 };
933
934 struct _SlideShowData
935 {
936         LayoutWindow *lw;        /* use this window to display the slideshow */
937         ImageWindow *imd;        /* use this window only if lw is not available,
938                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
939
940         GList *filelist;
941         CollectionData *cd;
942         FileData *dir_fd;
943
944         GList *list;
945         GList *list_done;
946
947         FileData *slide_fd;
948
949         guint slide_count;
950         guint timeout_id; /* event source id */
951
952         gboolean from_selection;
953
954         void (*stop_func)(SlideShowData *, gpointer);
955         gpointer stop_data;
956
957         gboolean paused;
958 };
959
960 struct _FullScreenData
961 {
962         GtkWidget *window;
963         ImageWindow *imd;
964
965         GtkWidget *normal_window;
966         ImageWindow *normal_imd;
967
968         guint hide_mouse_id; /* event source id */
969         guint busy_mouse_id; /* event source id */
970
971         gint cursor_state;
972
973         guint saver_block_id; /* event source id */
974
975         void (*stop_func)(FullScreenData *, gpointer);
976         gpointer stop_data;
977
978         gboolean same_region; /* the returned region will overlap the current location of widget. */
979 };
980
981 struct _PixmapFolders
982 {
983         GdkPixbuf *close;
984         GdkPixbuf *open;
985         GdkPixbuf *deny;
986         GdkPixbuf *parent;
987 };
988
989 struct _SecureSaveInfo {
990         FILE *fp; /**< file stream pointer */
991         gchar *file_name; /**< final file name */
992         gchar *tmp_file_name; /**< temporary file name */
993         gint err; /**< set to non-zero value in case of error */
994         gboolean secure_save; /**< use secure save for this file, internal use only */
995         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
996         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
997         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
998 };
999
1000 struct _CommandLine
1001 {
1002         int argc;
1003         gchar **argv;
1004         gboolean startup_blank;
1005         gboolean startup_full_screen;
1006         gboolean startup_in_slideshow;
1007         gboolean startup_command_line_collection;
1008         gboolean tools_hide;
1009         gboolean tools_show;
1010         gboolean log_window_show;
1011         gchar *path;
1012         gchar *file;
1013         GList *cmd_list;
1014         GList *collection_list;
1015         gchar *geometry;
1016         gchar *regexp;
1017         gchar *log_file;
1018         SecureSaveInfo *ssi;
1019 };
1020
1021 #endif
1022 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */