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