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