separated "normal" and advanced exif, "Normal" exif is now in the
[geeqie.git] / src / typedefs.h
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2009 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef TYPEDEFS_H
15 #define TYPEDEFS_H
16
17 typedef enum {
18         ZOOM_RESET_ORIGINAL     = 0,
19         ZOOM_RESET_FIT_WINDOW   = 1,
20         ZOOM_RESET_NONE         = 2
21 } ZoomMode;
22
23 typedef enum {
24         MOUSE_BUTTON_LEFT       = 1,
25         MOUSE_BUTTON_MIDDLE     = 2,
26         MOUSE_BUTTON_RIGHT      = 3,
27         MOUSE_BUTTON_WHEEL_UP   = 4,
28         MOUSE_BUTTON_WHEEL_DOWN = 5
29 } MouseButton;
30
31 typedef enum {
32         DIRVIEW_LIST,
33         DIRVIEW_TREE
34 } DirViewType;
35
36 typedef enum {
37         FILEVIEW_LIST,
38         FILEVIEW_ICON
39 } FileViewType;
40
41 #define CMD_COPY     "geeqie-copy-command.desktop"
42 #define CMD_MOVE     "geeqie-move-command.desktop"
43 #define CMD_RENAME   "geeqie-rename-command.desktop"
44 #define CMD_DELETE   "geeqie-delete-command.desktop"
45 #define CMD_FOLDER   "geeqie-folder-command.desktop"
46
47 typedef enum {
48         SORT_NONE,
49         SORT_NAME,
50         SORT_SIZE,
51         SORT_TIME,
52         SORT_PATH,
53         SORT_NUMBER
54 } SortType;
55
56 typedef enum {
57         ALTER_NONE,             /* do nothing */
58         ALTER_ROTATE_90,
59         ALTER_ROTATE_90_CC,     /* counterclockwise */
60         ALTER_ROTATE_180,
61         ALTER_MIRROR,
62         ALTER_FLIP,
63         ALTER_DESATURATE
64 } AlterType;
65
66 typedef enum {
67         LAYOUT_HIDE   = 0,
68         LAYOUT_LEFT   = 1 << 0,
69         LAYOUT_RIGHT  = 1 << 1,
70         LAYOUT_TOP    = 1 << 2,
71         LAYOUT_BOTTOM = 1 << 3
72 } LayoutLocation;
73
74
75 typedef enum {
76         IMAGE_STATE_NONE        = 0,
77         IMAGE_STATE_IMAGE       = 1 << 0,
78         IMAGE_STATE_LOADING     = 1 << 1,
79         IMAGE_STATE_ERROR       = 1 << 2,
80         IMAGE_STATE_COLOR_ADJ   = 1 << 3,
81         IMAGE_STATE_ROTATE_AUTO = 1 << 4,
82         IMAGE_STATE_ROTATE_USER = 1 << 5,
83         IMAGE_STATE_DELAY_FLIP  = 1 << 6
84 } ImageState;
85
86 typedef enum {
87         SPLIT_NONE = 0,
88         SPLIT_VERT,
89         SPLIT_HOR,
90         SPLIT_QUAD,
91 } ImageSplitMode;
92
93 typedef enum {
94         FILEDATA_CHANGE_DELETE,
95         FILEDATA_CHANGE_MOVE,
96         FILEDATA_CHANGE_RENAME,
97         FILEDATA_CHANGE_COPY,
98         FILEDATA_CHANGE_UNSPECIFIED,
99         FILEDATA_CHANGE_WRITE_METADATA
100 } FileDataChangeType;
101
102 typedef enum {
103         MTS_MODE_MINUS,
104         MTS_MODE_SET,
105         MTS_MODE_OR,
106         MTS_MODE_AND
107 } MarkToSelectionMode;
108
109 typedef enum {
110         STM_MODE_RESET,
111         STM_MODE_SET,
112         STM_MODE_TOGGLE
113 } SelectionToMarkMode;
114
115 typedef enum {
116         FORMAT_CLASS_UNKNOWN,
117         FORMAT_CLASS_IMAGE,
118         FORMAT_CLASS_RAWIMAGE,
119         FORMAT_CLASS_META,
120         FILE_FORMAT_CLASSES
121 } FileFormatClass;
122
123 typedef enum {
124         SS_ERR_NONE = 0,
125         SS_ERR_DISABLED, /**< secsave is disabled. */
126         SS_ERR_OUT_OF_MEM, /**< memory allocation failure */
127
128         /* see err field in SecureSaveInfo */
129         SS_ERR_OPEN_READ,
130         SS_ERR_OPEN_WRITE,
131         SS_ERR_STAT,
132         SS_ERR_ACCESS,
133         SS_ERR_MKSTEMP,
134         SS_ERR_RENAME,
135         SS_ERR_OTHER,
136 } SecureSaveErrno;
137
138 typedef enum {
139         NOTIFY_PRIORITY_HIGH = 0,
140         NOTIFY_PRIORITY_MEDIUM,
141         NOTIFY_PRIORITY_LOW
142 } NotifyPriority;
143         
144 typedef enum {
145         NOTIFY_TYPE_INTERNAL = 0, /* changed internal data only, like marks */
146         NOTIFY_TYPE_REREAD,       /* changed file size, date, etc., file name remains unchanged */
147         NOTIFY_TYPE_CHANGE        /* generic change described by fd->change */
148 } NotifyType;
149
150 typedef enum {
151         CHANGE_OK                      = 0,
152         CHANGE_WARN_DEST_EXISTS        = 1 << 0,
153         CHANGE_WARN_NO_WRITE_PERM      = 1 << 1,
154         CHANGE_WARN_SAME               = 1 << 2,
155         CHANGE_WARN_CHANGED_EXT        = 1 << 3,
156         CHANGE_ERROR_MASK              = (~0) << 4, /* the values below are fatal errors */
157         CHANGE_NO_READ_PERM            = 1 << 4,
158         CHANGE_NO_WRITE_PERM_DIR       = 1 << 5,
159         CHANGE_NO_DEST_DIR             = 1 << 6,
160         CHANGE_NO_WRITE_PERM_DEST_DIR  = 1 << 7,
161         CHANGE_NO_WRITE_PERM_DEST      = 1 << 8,
162         CHANGE_DEST_EXISTS             = 1 << 9,
163         CHANGE_NO_SRC                  = 1 << 10,
164         CHANGE_GENERIC_ERROR           = 1 << 16
165 } ChangeError;
166
167 typedef enum {
168         METADATA_PLAIN          = 0, /* format that can be edited and written back */
169         METADATA_FORMATTED      = 1  /* for display only */
170 } MetadataFormat;
171
172
173 #define MAX_SPLIT_IMAGES 4
174
175 typedef struct _ImageLoader ImageLoader;
176 typedef struct _ThumbLoader ThumbLoader;
177
178 typedef struct _CollectInfo CollectInfo;
179 typedef struct _CollectionData CollectionData;
180 typedef struct _CollectTable CollectTable;
181 typedef struct _CollectWindow CollectWindow;
182
183 typedef struct _ImageWindow ImageWindow;
184
185 typedef struct _FileData FileData;
186 typedef struct _FileDataChangeInfo FileDataChangeInfo;
187
188 typedef struct _LayoutWindow LayoutWindow;
189
190 typedef struct _ViewDir ViewDir;
191 typedef struct _ViewDirInfoList ViewDirInfoList;
192 typedef struct _ViewDirInfoTree ViewDirInfoTree;
193
194 typedef struct _ViewFile ViewFile;
195 typedef struct _ViewFileInfoList ViewFileInfoList;
196 typedef struct _ViewFileInfoIcon ViewFileInfoIcon;
197
198 typedef struct _SlideShowData SlideShowData;
199 typedef struct _FullScreenData FullScreenData;
200
201 typedef struct _PixmapFolders PixmapFolders;
202 typedef struct _Histogram Histogram;
203
204 typedef struct _SecureSaveInfo SecureSaveInfo;
205
206 typedef struct _ExifData ExifData;
207
208 typedef struct _EditorDescription EditorDescription;
209
210 struct _EditorDescription {
211         gchar *key;             /* desktop file name, not including path, including extension */
212         gchar *name;            /* Name, localized name presented to user */
213         gchar *icon;            /* Icon */
214         gchar *exec;            /* Exec */
215         gchar *menu_path;       
216         gchar *hotkey;
217         GList *ext_list;
218         gchar *file;
219         guint flags;
220         gboolean hidden;
221 };
222
223
224 struct _ImageLoader;
225
226 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
227
228 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
229
230 struct _ThumbLoader
231 {
232         gint standard_loader;
233
234         ImageLoader *il;
235         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
236
237         gint cache_enable;
238         gint cache_hit;
239         gdouble percent_done;
240
241         gint max_w;
242         gint max_h;
243
244         ThumbLoaderFunc func_done;
245         ThumbLoaderFunc func_error;
246         ThumbLoaderFunc func_progress;
247
248         gpointer data;
249
250         gint idle_done_id;
251 };
252
253 struct _CollectInfo
254 {
255         FileData *fd;
256         GdkPixbuf *pixbuf;
257         guint flag_mask;
258 };
259
260 struct _CollectionData
261 {
262         gchar *path;
263         gchar *name;
264         GList *list;
265         SortType sort_method;
266
267         ThumbLoader *thumb_loader;
268         CollectInfo *thumb_info;
269
270         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
271         gpointer info_updated_data;
272
273         gint ref;
274
275         /* geometry */
276         gint window_read;
277         gint window_x;
278         gint window_y;
279         gint window_w;
280         gint window_h;
281
282         /* contents changed since save flag */
283         gint changed;
284
285         GHashTable *existence;
286 };
287
288 struct _CollectTable
289 {
290         GtkWidget *scrolled;
291         GtkWidget *listview;
292         gint columns;
293         gint rows;
294
295         CollectionData *cd;
296
297         GList *selection;
298         CollectInfo *prev_selection;
299
300         CollectInfo *click_info;
301
302         GtkWidget *tip_window;
303         gint tip_delay_id;
304         CollectInfo *tip_info;
305
306         GdkWindow *marker_window;
307         CollectInfo *marker_info;
308
309         GtkWidget *status_label;
310         GtkWidget *extra_label;
311
312         gint focus_row;
313         gint focus_column;
314         CollectInfo *focus_info;
315
316         GtkWidget *popup;
317         CollectInfo *drop_info;
318         GList *drop_list;
319
320         gint sync_idle_id;
321         gint drop_idle_id;
322
323         gint show_text;
324 };
325
326 struct _CollectWindow
327 {
328         GtkWidget *window;
329         CollectTable *table;
330         GtkWidget *status_box;
331         GList *list;
332
333         GtkWidget *close_dialog;
334
335         CollectionData *cd;
336 };
337
338 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
339                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
340 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
341                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
342
343 struct _ImageWindow
344 {
345         GtkWidget *widget;      /* use this to add it and show it */
346         GtkWidget *pr;
347         GtkWidget *frame;
348
349         FileData *image_fd;
350
351         gint unknown;           /* failed to load image */
352
353         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
354                                    sending callbacks to multiple ImageWindows in parallel */
355
356         gint has_frame;
357
358         /* top level (not necessarily parent) window */
359         gint top_window_sync;   /* resize top_window when image dimensions change */
360         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
361         gchar *title;           /* window title to display left of file name */
362         gchar *title_right;     /* window title to display right of file name */
363         gint title_show_zoom;   /* option to include zoom in window title */
364
365         gint completed;
366         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
367
368         void (*func_update)(ImageWindow *imd, gpointer data);
369         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
370         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
371         ImageTileRequestFunc func_tile_request;
372         ImageTileDisposeFunc func_tile_dispose;
373
374         gpointer data_update;
375         gpointer data_complete;
376         gpointer data_state;
377         gpointer data_tile;
378
379         /* button, scroll functions */
380         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
381         void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
382         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
383
384         gpointer data_button;
385         gpointer data_drag;
386         gpointer data_scroll;
387
388         /* scroll notification (for scroll bar implementation) */
389         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
390
391         gpointer data_scroll_notify;
392
393         /* collection info */
394         CollectionData *collection;
395         CollectInfo *collection_info;
396
397         /* color profiles */
398         gint color_profile_enable;
399         gint color_profile_input;
400         gint color_profile_screen;
401         gint color_profile_use_image;
402         gint color_profile_from_image;
403         gpointer cm;
404
405         AlterType delay_alter_type;
406
407         FileData *read_ahead_fd;
408         ImageLoader *read_ahead_il;
409
410         gint prev_color_row;
411
412         gint auto_refresh;
413
414         gint delay_flip;
415         gint orientation;
416         gint desaturate;
417
418         gint overlay_show_zoom; /* set to true if overlay is showing zoom ratio */
419 };
420
421 #define FILEDATA_MARKS_SIZE 6
422
423 struct _FileDataChangeInfo {
424         FileDataChangeType type;
425         gchar *source;
426         gchar *dest;
427         gint error;
428 };
429
430 struct _FileData {
431         gint magick;
432         gint type;
433         gchar *original_path; /* key to file_data_pool hash table */
434         gchar *path;
435         const gchar *name;
436         const gchar *extension;
437         gchar *collate_key_name;
438         gchar *collate_key_name_nocase;
439         gint64 size;
440         time_t date;
441         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
442         
443         guint marks; /* each bit represents one mark */
444         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
445
446
447         GList *sidecar_files;
448         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
449         FileDataChangeInfo *change; /* for rename, move ... */
450         GdkPixbuf *thumb_pixbuf;
451
452         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
453                               all FileData with non-NULL pixbuf are referenced by image_cache */
454
455         gint ref;
456         gint version; /* increased when any field in this structure is changed */
457         gint disable_grouping;
458
459         gint user_orientation;
460         gint exif_orientation;
461         
462         ExifData *exif;
463         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
464 };
465
466 struct _LayoutWindow
467 {
468         FileData *dir_fd;
469
470         /* base */
471
472         GtkWidget *window;
473
474         GtkWidget *main_box;
475
476         GtkWidget *group_box;
477         GtkWidget *h_pane;
478         GtkWidget *v_pane;
479
480         /* menus, path selector */
481
482         GtkActionGroup *action_group;
483         GtkActionGroup *action_group_external;
484         GtkUIManager *ui_manager;
485
486         GtkWidget *path_entry;
487
488         /* image */
489
490         LayoutLocation image_location;
491
492         ImageWindow *image;
493
494         ImageWindow *split_images[MAX_SPLIT_IMAGES];
495         ImageSplitMode split_mode;
496         gint active_split_image;
497
498         GtkWidget *split_image_widget;
499         GtkSizeGroup *split_image_sizegroup;
500
501         /* tools window (float) */
502
503         GtkWidget *tools;
504         GtkWidget *tools_pane;
505
506         gint tools_float;
507         gint tools_hidden;
508
509         /* toolbar */
510
511         GtkWidget *toolbar;
512         gint toolbar_hidden;
513
514         GtkWidget *thumb_button;
515         gint thumbs_enabled;
516         gint marks_enabled;
517
518         GtkWidget *back_button;
519
520         /* dir view */
521
522         LayoutLocation dir_location;
523
524         ViewDir *vd;
525         GtkWidget *dir_view;
526
527         DirViewType dir_view_type;
528
529         /* file view */
530
531         LayoutLocation file_location;
532
533         ViewFile *vf;
534         FileViewType file_view_type;
535
536         GtkWidget *file_view;
537
538         SortType sort_method;
539         gint sort_ascend;
540
541         /* status bar */
542
543         GtkWidget *info_box;
544         GtkWidget *info_progress_bar;
545         GtkWidget *info_sort;
546         GtkWidget *info_color;
547         GtkWidget *info_status;
548         GtkWidget *info_details;
549         GtkWidget *info_zoom;
550         GtkWidget *info_write;
551
552         /* slide show */
553
554         SlideShowData *slideshow;
555
556         /* full screen */
557
558         FullScreenData *full_screen;
559
560         /* dividers */
561
562         gint div_h;
563         gint div_v;
564         gint div_float;
565
566         /* misc */
567
568         GtkWidget *utility_box;
569         GtkWidget *bar_sort;
570         GtkWidget *bar;
571
572         gint bar_sort_enabled;
573         gint bar_enabled;
574
575         gint bar_width;
576
577         GtkWidget *exif_window;
578 };
579
580 struct _ViewDir
581 {
582         DirViewType type;
583         gpointer info;
584
585         GtkWidget *widget;
586         GtkWidget *view;
587
588         FileData *dir_fd;
589
590         FileData *click_fd;
591
592         FileData *drop_fd;
593         GList *drop_list;
594         gint drop_scroll_id;
595
596         /* func list */
597         void (*select_func)(ViewDir *vd, const gchar *path, gpointer data);
598         gpointer select_data;
599
600         void (*dnd_drop_update_func)(ViewDir *vd);
601         void (*dnd_drop_leave_func)(ViewDir *vd);
602
603         LayoutWindow *layout;
604
605         GtkWidget *popup;
606
607         PixmapFolders *pf;
608 };
609
610 struct _ViewDirInfoList
611 {
612         GList *list;
613 };
614
615 struct _ViewDirInfoTree
616 {
617         gint drop_expand_id;
618         gint busy_ref;
619 };
620
621
622 struct _ViewFile
623 {
624         FileViewType type;
625         gpointer info;
626
627         GtkWidget *widget;
628         GtkWidget *listview;
629         GtkWidget *scrolled;
630         GtkWidget *filter;
631         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
632
633         FileData *dir_fd;
634         GList *list;
635
636         SortType sort_method;
637         gint sort_ascend;
638
639         /* func list */
640         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
641         gpointer data_thumb_status;
642
643         void (*func_status)(ViewFile *vf, gpointer data);
644         gpointer data_status;
645
646         LayoutWindow *layout;
647
648         GtkWidget *popup;
649
650         /* thumbs updates*/
651         gint thumbs_running;
652         ThumbLoader *thumbs_loader;
653         FileData *thumbs_filedata;
654
655         /* marks */
656         gint marks_enabled;
657         gint active_mark;
658         gint clicked_mark;
659         
660         /* refresh */
661         gint refresh_idle_id;
662 };
663
664 struct _ViewFileInfoList
665 {
666         FileData *click_fd;
667         FileData *select_fd;
668
669         gint thumbs_enabled;
670
671         gint select_idle_id;
672 };
673
674 struct _IconData;
675
676 struct _ViewFileInfoIcon
677 {
678         /* table stuff */
679         gint columns;
680         gint rows;
681
682         GList *selection;
683         struct _IconData *prev_selection;
684
685         GtkWidget *tip_window;
686         gint tip_delay_id;
687         struct _IconData *tip_id;
688
689         struct _IconData *click_id;
690
691         struct _IconData *focus_id;
692         gint focus_row;
693         gint focus_column;
694
695         gint show_text;
696 };
697
698 struct _SlideShowData
699 {
700         ImageWindow *imd;
701
702         GList *filelist;
703         CollectionData *cd;
704         FileData *dir_fd;
705         LayoutWindow *layout;
706
707         GList *list;
708         GList *list_done;
709
710         FileData *slide_fd;
711
712         guint slide_count;
713         gint timeout_id;
714
715         gint from_selection;
716
717         void (*stop_func)(SlideShowData *, gpointer);
718         gpointer stop_data;
719
720         gint paused;
721 };
722
723 struct _FullScreenData
724 {
725         GtkWidget *window;
726         ImageWindow *imd;
727
728         GtkWidget *normal_window;
729         ImageWindow *normal_imd;
730
731         gint hide_mouse_id;
732         gint busy_mouse_id;
733         gint cursor_state;
734
735         gint saver_block_id;
736
737         void (*stop_func)(FullScreenData *, gpointer);
738         gpointer stop_data;
739 };
740
741 struct _PixmapFolders
742 {
743         GdkPixbuf *close;
744         GdkPixbuf *open;
745         GdkPixbuf *deny;
746         GdkPixbuf *parent;
747 };
748
749 struct _SecureSaveInfo {
750         FILE *fp; /**< file stream pointer */
751         gchar *file_name; /**< final file name */
752         gchar *tmp_file_name; /**< temporary file name */
753         gint err; /**< set to non-zero value in case of error */
754         gint secure_save; /**< use secure save for this file, internal use only */
755         gint preserve_perms; /**< whether to preserve perms, TRUE by default */
756         gint preserve_mtime; /**< whether to preserve mtime, FALSE by default */
757         gint unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
758 };
759
760 #endif
761 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */