Trim trailing white spaces on empty lines.
[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         gint ref;
518         gint version; /* increased when any field in this structure is changed */
519         gboolean disable_grouping;
520
521         gint user_orientation;
522         gint exif_orientation;
523
524         ExifData *exif;
525         time_t exifdate;
526         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
527         GList *cached_metadata;
528 };
529
530 struct _LayoutOptions
531 {
532         gchar *id;
533
534         gchar *order;
535         gint style;
536
537         DirViewType dir_view_type;
538         FileViewType file_view_type;
539
540         gboolean show_thumbnails;
541         gboolean show_marks;
542         gboolean show_directory_date;
543         gboolean show_info_pixel;
544
545         struct {
546                 gint w;
547                 gint h;
548                 gint x;
549                 gint y;
550                 gboolean maximized;
551                 gint hdivider_pos;
552                 gint vdivider_pos;
553         } main_window;
554
555         struct {
556                 gint w;
557                 gint h;
558                 gint x;
559                 gint y;
560                 gint vdivider_pos;
561         } float_window;
562
563         struct {
564                 gint w;
565                 gint h;
566         } properties_window;
567
568         struct {
569                 guint state;
570                 gint histogram_channel;
571                 gint histogram_mode;
572         } image_overlay;
573
574         gboolean tools_float;
575         gboolean tools_hidden;
576         gboolean toolbar_hidden;
577
578         gchar *home_path;
579         gchar *last_path;
580
581         StartUpPath startup_path;
582
583         gboolean exit_on_close;
584 };
585
586 struct _LayoutWindow
587 {
588         LayoutOptions options;
589
590         FileData *dir_fd;
591
592         /* base */
593
594         GtkWidget *window;
595
596         GtkWidget *main_box;
597
598         GtkWidget *group_box;
599         GtkWidget *h_pane;
600         GtkWidget *v_pane;
601
602         /* menus, path selector */
603
604         GtkActionGroup *action_group;
605         GtkActionGroup *action_group_editors;
606         guint ui_editors_id;
607         GtkUIManager *ui_manager;
608         guint toolbar_merge_id[TOOLBAR_COUNT];
609         GList *toolbar_actions[TOOLBAR_COUNT];
610
611         GtkWidget *path_entry;
612
613         /* image */
614
615         LayoutLocation image_location;
616
617         ImageWindow *image;
618
619         ImageWindow *split_images[MAX_SPLIT_IMAGES];
620         ImageSplitMode split_mode;
621         gint active_split_image;
622
623         GtkWidget *split_image_widget;
624         GtkSizeGroup *split_image_sizegroup;
625
626         /* tools window (float) */
627
628         GtkWidget *tools;
629         GtkWidget *tools_pane;
630
631 //      gint tools_float;
632 //      gint tools_hidden;
633
634         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
635         /* toolbar */
636
637         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
638 //      gint toolbar_hidden;
639
640 //      GtkWidget *thumb_button;
641 //      gint thumbs_enabled;
642 //      gint marks_enabled;
643
644         GtkWidget *back_button;
645
646         /* dir view */
647
648         LayoutLocation dir_location;
649
650         ViewDir *vd;
651         GtkWidget *dir_view;
652
653 //      DirViewType dir_view_type;
654
655         /* file view */
656
657         LayoutLocation file_location;
658
659         ViewFile *vf;
660 //      FileViewType file_view_type;
661
662         GtkWidget *file_view;
663
664         SortType sort_method;
665         gboolean sort_ascend;
666
667         /* status bar */
668
669         GtkWidget *info_box;
670         GtkWidget *info_progress_bar;
671         GtkWidget *info_sort;
672         GtkWidget *info_status;
673         GtkWidget *info_details;
674         GtkWidget *info_zoom;
675         GtkWidget *info_pixel;
676
677         /* slide show */
678
679         SlideShowData *slideshow;
680
681         /* full screen */
682
683         FullScreenData *full_screen;
684
685         /* dividers */
686
687 //      gint div_h;
688 //      gint div_v;
689 //      gint div_float;
690
691         /* misc */
692
693         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
694         GtkWidget *utility_paned; /* between image and bar */
695         GtkWidget *bar_sort;
696         GtkWidget *bar;
697
698 //      gint bar_sort_enabled;
699 //      gint bar_enabled;
700
701 //      gint bar_width;
702
703         GtkWidget *exif_window;
704 };
705
706 struct _ViewDir
707 {
708         DirViewType type;
709         gpointer info;
710
711         GtkWidget *widget;
712         GtkWidget *view;
713
714         FileData *dir_fd;
715
716         FileData *click_fd;
717
718         FileData *drop_fd;
719         GList *drop_list;
720         guint drop_scroll_id; /* event source id */
721
722         /* func list */
723         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
724         gpointer select_data;
725
726         void (*dnd_drop_update_func)(ViewDir *vd);
727         void (*dnd_drop_leave_func)(ViewDir *vd);
728
729         LayoutWindow *layout;
730
731         GtkWidget *popup;
732
733         PixmapFolders *pf;
734 };
735
736 struct _ViewDirInfoList
737 {
738         GList *list;
739 };
740
741 struct _ViewDirInfoTree
742 {
743         guint drop_expand_id; /* event source id */
744         gint busy_ref;
745 };
746
747
748 struct _ViewFile
749 {
750         FileViewType type;
751         gpointer info;
752
753         GtkWidget *widget;
754         GtkWidget *listview;
755         GtkWidget *scrolled;
756         GtkWidget *filter;
757         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
758
759         FileData *dir_fd;
760         GList *list;
761
762         SortType sort_method;
763         gboolean sort_ascend;
764
765         /* func list */
766         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
767         gpointer data_thumb_status;
768
769         void (*func_status)(ViewFile *vf, gpointer data);
770         gpointer data_status;
771
772         LayoutWindow *layout;
773
774         GtkWidget *popup;
775
776         /* thumbs updates*/
777         gboolean thumbs_running;
778         ThumbLoader *thumbs_loader;
779         FileData *thumbs_filedata;
780
781         /* marks */
782         gboolean marks_enabled;
783         gint active_mark;
784         gint clicked_mark;
785
786         /* refresh */
787         guint refresh_idle_id; /* event source id */
788         time_t time_refresh_set; /* time when refresh_idle_id was set */
789
790         /* file list for edit menu */
791         GList *editmenu_fd_list;
792 };
793
794 struct _ViewFileInfoList
795 {
796         FileData *click_fd;
797         FileData *select_fd;
798
799         gboolean thumbs_enabled;
800
801         guint select_idle_id; /* event source id */
802 };
803
804 struct _IconData;
805
806 struct _ViewFileInfoIcon
807 {
808         /* table stuff */
809         gint columns;
810         gint rows;
811
812         GList *selection;
813         struct _IconData *prev_selection;
814
815         GtkWidget *tip_window;
816         guint tip_delay_id; /* event source id */
817         struct _IconData *tip_id;
818
819         struct _IconData *click_id;
820
821         struct _IconData *focus_id;
822         gint focus_row;
823         gint focus_column;
824
825         gboolean show_text;
826 };
827
828 struct _SlideShowData
829 {
830         LayoutWindow *lw;        /* use this window to display the slideshow */
831         ImageWindow *imd;        /* use this window only if lw is not available,
832                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
833
834         GList *filelist;
835         CollectionData *cd;
836         FileData *dir_fd;
837
838         GList *list;
839         GList *list_done;
840
841         FileData *slide_fd;
842
843         guint slide_count;
844         guint timeout_id; /* event source id */
845
846         gboolean from_selection;
847
848         void (*stop_func)(SlideShowData *, gpointer);
849         gpointer stop_data;
850
851         gboolean paused;
852 };
853
854 struct _FullScreenData
855 {
856         GtkWidget *window;
857         ImageWindow *imd;
858
859         GtkWidget *normal_window;
860         ImageWindow *normal_imd;
861
862         guint hide_mouse_id; /* event source id */
863         guint busy_mouse_id; /* event source id */
864
865         gint cursor_state;
866
867         guint saver_block_id; /* event source id */
868
869         void (*stop_func)(FullScreenData *, gpointer);
870         gpointer stop_data;
871
872         gboolean same_region; /* the returned region will overlap the current location of widget. */
873 };
874
875 struct _PixmapFolders
876 {
877         GdkPixbuf *close;
878         GdkPixbuf *open;
879         GdkPixbuf *deny;
880         GdkPixbuf *parent;
881 };
882
883 struct _SecureSaveInfo {
884         FILE *fp; /**< file stream pointer */
885         gchar *file_name; /**< final file name */
886         gchar *tmp_file_name; /**< temporary file name */
887         gint err; /**< set to non-zero value in case of error */
888         gboolean secure_save; /**< use secure save for this file, internal use only */
889         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
890         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
891         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
892 };
893
894 struct _CommandLine
895 {
896         int argc;
897         gchar **argv;
898         gboolean startup_blank;
899         gboolean startup_full_screen;
900         gboolean startup_in_slideshow;
901         gboolean startup_command_line_collection;
902         gboolean tools_hide;
903         gboolean tools_show;
904         gchar *path;
905         gchar *file;
906         GList *cmd_list;
907         GList *collection_list;
908         gchar *geometry;
909 };
910
911 #endif
912 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */