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