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