save and restore toolbar configuration
[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 struct _EditorDescription {
230         gchar *key;             /* desktop file name, not including path, including extension */
231         gchar *name;            /* Name, localized name presented to user */
232         gchar *icon;            /* Icon */
233         gchar *exec;            /* Exec */
234         gchar *menu_path;       
235         gchar *hotkey;
236         GList *ext_list;
237         gchar *file;
238         guint flags;
239         gboolean hidden;
240 };
241
242
243 struct _ImageLoader;
244
245 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
246
247 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
248
249 struct _ThumbLoader
250 {
251         gint standard_loader;
252
253         ImageLoader *il;
254         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
255
256         gint cache_enable;
257         gint cache_hit;
258         gdouble percent_done;
259
260         gint max_w;
261         gint max_h;
262
263         ThumbLoaderFunc func_done;
264         ThumbLoaderFunc func_error;
265         ThumbLoaderFunc func_progress;
266
267         gpointer data;
268
269         gint idle_done_id;
270 };
271
272 struct _CollectInfo
273 {
274         FileData *fd;
275         GdkPixbuf *pixbuf;
276         guint flag_mask;
277 };
278
279 struct _CollectionData
280 {
281         gchar *path;
282         gchar *name;
283         GList *list;
284         SortType sort_method;
285
286         ThumbLoader *thumb_loader;
287         CollectInfo *thumb_info;
288
289         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
290         gpointer info_updated_data;
291
292         gint ref;
293
294         /* geometry */
295         gint window_read;
296         gint window_x;
297         gint window_y;
298         gint window_w;
299         gint window_h;
300
301         /* contents changed since save flag */
302         gint changed;
303
304         GHashTable *existence;
305 };
306
307 struct _CollectTable
308 {
309         GtkWidget *scrolled;
310         GtkWidget *listview;
311         gint columns;
312         gint rows;
313
314         CollectionData *cd;
315
316         GList *selection;
317         CollectInfo *prev_selection;
318
319         CollectInfo *click_info;
320
321         GtkWidget *tip_window;
322         gint tip_delay_id;
323         CollectInfo *tip_info;
324
325         GdkWindow *marker_window;
326         CollectInfo *marker_info;
327
328         GtkWidget *status_label;
329         GtkWidget *extra_label;
330
331         gint focus_row;
332         gint focus_column;
333         CollectInfo *focus_info;
334
335         GtkWidget *popup;
336         CollectInfo *drop_info;
337         GList *drop_list;
338
339         gint sync_idle_id;
340         gint drop_idle_id;
341
342         gint show_text;
343 };
344
345 struct _CollectWindow
346 {
347         GtkWidget *window;
348         CollectTable *table;
349         GtkWidget *status_box;
350         GList *list;
351
352         GtkWidget *close_dialog;
353
354         CollectionData *cd;
355 };
356
357 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
358                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
359 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
360                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
361
362 struct _ImageWindow
363 {
364         GtkWidget *widget;      /* use this to add it and show it */
365         GtkWidget *pr;
366         GtkWidget *frame;
367
368         FileData *image_fd;
369
370         gint unknown;           /* failed to load image */
371
372         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
373                                    sending callbacks to multiple ImageWindows in parallel */
374
375         gint has_frame;
376
377         /* top level (not necessarily parent) window */
378         gint top_window_sync;   /* resize top_window when image dimensions change */
379         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
380         gchar *title;           /* window title to display left of file name */
381         gchar *title_right;     /* window title to display right of file name */
382         gint title_show_zoom;   /* option to include zoom in window title */
383
384         gint completed;
385         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
386
387         void (*func_update)(ImageWindow *imd, gpointer data);
388         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
389         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
390         ImageTileRequestFunc func_tile_request;
391         ImageTileDisposeFunc func_tile_dispose;
392
393         gpointer data_update;
394         gpointer data_complete;
395         gpointer data_state;
396         gpointer data_tile;
397
398         /* button, scroll functions */
399         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
400         void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
401         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
402
403         gpointer data_button;
404         gpointer data_drag;
405         gpointer data_scroll;
406
407         /* scroll notification (for scroll bar implementation) */
408         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
409
410         gpointer data_scroll_notify;
411
412         /* collection info */
413         CollectionData *collection;
414         CollectInfo *collection_info;
415
416         /* color profiles */
417         gint color_profile_enable;
418         gint color_profile_input;
419         gint color_profile_screen;
420         gint color_profile_use_image;
421         gint color_profile_from_image;
422         gpointer cm;
423
424         AlterType delay_alter_type;
425
426         FileData *read_ahead_fd;
427         ImageLoader *read_ahead_il;
428
429         gint prev_color_row;
430
431         gint auto_refresh;
432
433         gint delay_flip;
434         gint orientation;
435         gint desaturate;
436
437         gint overlay_show_zoom; /* set to true if overlay is showing zoom ratio */
438 };
439
440 #define FILEDATA_MARKS_SIZE 6
441
442 struct _FileDataChangeInfo {
443         FileDataChangeType type;
444         gchar *source;
445         gchar *dest;
446         gint error;
447 };
448
449 struct _FileData {
450         gint magick;
451         gint type;
452         gchar *original_path; /* key to file_data_pool hash table */
453         gchar *path;
454         const gchar *name;
455         const gchar *extension;
456         gchar *collate_key_name;
457         gchar *collate_key_name_nocase;
458         gint64 size;
459         time_t date;
460         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
461         
462         guint marks; /* each bit represents one mark */
463         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
464
465
466         GList *sidecar_files;
467         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
468         FileDataChangeInfo *change; /* for rename, move ... */
469         GdkPixbuf *thumb_pixbuf;
470
471         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
472                               all FileData with non-NULL pixbuf are referenced by image_cache */
473                               
474         HistMap *histmap;
475
476         gint ref;
477         gint version; /* increased when any field in this structure is changed */
478         gint disable_grouping;
479
480         gint user_orientation;
481         gint exif_orientation;
482         
483         ExifData *exif;
484         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
485 };
486
487 struct _LayoutOptions
488 {
489         gchar *order;
490         gint style;
491
492         DirViewType dir_view_type;
493         FileViewType file_view_type;
494
495         gboolean show_thumbnails;
496         gboolean show_marks;
497         gboolean show_directory_date;
498
499         struct {
500                 gint w;
501                 gint h;
502                 gint x;
503                 gint y;
504                 gboolean maximized;
505                 gint hdivider_pos;
506                 gint vdivider_pos;
507         } main_window;
508
509         struct {
510                 gint w;
511                 gint h;
512                 gint x;
513                 gint y;
514                 gint vdivider_pos;
515         } float_window;
516
517         struct {
518                 gint w;
519                 gint h;
520         } properties_window;
521
522         gboolean save_window_positions;
523
524         gboolean tools_float;
525         gboolean tools_hidden;
526         gboolean tools_restore_state;
527
528         gboolean toolbar_hidden;
529         
530         gchar *home_path;
531 };
532
533 struct _LayoutWindow
534 {
535         LayoutOptions options;
536
537         FileData *dir_fd;
538
539         /* base */
540
541         GtkWidget *window;
542
543         GtkWidget *main_box;
544
545         GtkWidget *group_box;
546         GtkWidget *h_pane;
547         GtkWidget *v_pane;
548
549         /* menus, path selector */
550
551         GtkActionGroup *action_group;
552         GtkActionGroup *action_group_external;
553         GtkUIManager *ui_manager;
554         guint toolbar_merge_id;
555         GList *toolbar_actions;
556
557         GtkWidget *path_entry;
558
559         /* image */
560
561         LayoutLocation image_location;
562
563         ImageWindow *image;
564
565         ImageWindow *split_images[MAX_SPLIT_IMAGES];
566         ImageSplitMode split_mode;
567         gint active_split_image;
568
569         GtkWidget *split_image_widget;
570         GtkSizeGroup *split_image_sizegroup;
571
572         /* tools window (float) */
573
574         GtkWidget *tools;
575         GtkWidget *tools_pane;
576
577 //      gint tools_float;
578 //      gint tools_hidden;
579
580         /* toolbar */
581
582         GtkWidget *toolbar;
583 //      gint toolbar_hidden;
584
585 //      GtkWidget *thumb_button;
586 //      gint thumbs_enabled;
587 //      gint marks_enabled;
588
589         GtkWidget *back_button;
590
591         /* dir view */
592
593         LayoutLocation dir_location;
594
595         ViewDir *vd;
596         GtkWidget *dir_view;
597
598 //      DirViewType dir_view_type;
599
600         /* file view */
601
602         LayoutLocation file_location;
603
604         ViewFile *vf;
605         FileViewType file_view_type;
606
607         GtkWidget *file_view;
608
609         SortType sort_method;
610         gint sort_ascend;
611
612         /* status bar */
613
614         GtkWidget *info_box;
615         GtkWidget *info_progress_bar;
616         GtkWidget *info_sort;
617         GtkWidget *info_color;
618         GtkWidget *info_status;
619         GtkWidget *info_details;
620         GtkWidget *info_zoom;
621         GtkWidget *info_write;
622
623         /* slide show */
624
625         SlideShowData *slideshow;
626
627         /* full screen */
628
629         FullScreenData *full_screen;
630
631         /* dividers */
632
633 //      gint div_h;
634 //      gint div_v;
635 //      gint div_float;
636
637         /* misc */
638
639         GtkWidget *utility_box;
640         GtkWidget *bar_sort;
641         GtkWidget *bar;
642
643 //      gint bar_sort_enabled;
644 //      gint bar_enabled;
645
646 //      gint bar_width;
647
648         GtkWidget *exif_window;
649 };
650
651 struct _ViewDir
652 {
653         DirViewType type;
654         gpointer info;
655
656         GtkWidget *widget;
657         GtkWidget *view;
658
659         FileData *dir_fd;
660
661         FileData *click_fd;
662
663         FileData *drop_fd;
664         GList *drop_list;
665         gint drop_scroll_id;
666
667         /* func list */
668         void (*select_func)(ViewDir *vd, const gchar *path, gpointer data);
669         gpointer select_data;
670
671         void (*dnd_drop_update_func)(ViewDir *vd);
672         void (*dnd_drop_leave_func)(ViewDir *vd);
673
674         LayoutWindow *layout;
675
676         GtkWidget *popup;
677
678         PixmapFolders *pf;
679 };
680
681 struct _ViewDirInfoList
682 {
683         GList *list;
684 };
685
686 struct _ViewDirInfoTree
687 {
688         gint drop_expand_id;
689         gint busy_ref;
690 };
691
692
693 struct _ViewFile
694 {
695         FileViewType type;
696         gpointer info;
697
698         GtkWidget *widget;
699         GtkWidget *listview;
700         GtkWidget *scrolled;
701         GtkWidget *filter;
702         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
703
704         FileData *dir_fd;
705         GList *list;
706
707         SortType sort_method;
708         gint sort_ascend;
709
710         /* func list */
711         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
712         gpointer data_thumb_status;
713
714         void (*func_status)(ViewFile *vf, gpointer data);
715         gpointer data_status;
716
717         LayoutWindow *layout;
718
719         GtkWidget *popup;
720
721         /* thumbs updates*/
722         gint thumbs_running;
723         ThumbLoader *thumbs_loader;
724         FileData *thumbs_filedata;
725
726         /* marks */
727         gint marks_enabled;
728         gint active_mark;
729         gint clicked_mark;
730         
731         /* refresh */
732         gint refresh_idle_id;
733 };
734
735 struct _ViewFileInfoList
736 {
737         FileData *click_fd;
738         FileData *select_fd;
739
740         gint thumbs_enabled;
741
742         gint select_idle_id;
743 };
744
745 struct _IconData;
746
747 struct _ViewFileInfoIcon
748 {
749         /* table stuff */
750         gint columns;
751         gint rows;
752
753         GList *selection;
754         struct _IconData *prev_selection;
755
756         GtkWidget *tip_window;
757         gint tip_delay_id;
758         struct _IconData *tip_id;
759
760         struct _IconData *click_id;
761
762         struct _IconData *focus_id;
763         gint focus_row;
764         gint focus_column;
765
766         gint show_text;
767 };
768
769 struct _SlideShowData
770 {
771         ImageWindow *imd;
772
773         GList *filelist;
774         CollectionData *cd;
775         FileData *dir_fd;
776         LayoutWindow *layout;
777
778         GList *list;
779         GList *list_done;
780
781         FileData *slide_fd;
782
783         guint slide_count;
784         gint timeout_id;
785
786         gint from_selection;
787
788         void (*stop_func)(SlideShowData *, gpointer);
789         gpointer stop_data;
790
791         gint paused;
792 };
793
794 struct _FullScreenData
795 {
796         GtkWidget *window;
797         ImageWindow *imd;
798
799         GtkWidget *normal_window;
800         ImageWindow *normal_imd;
801
802         gint hide_mouse_id;
803         gint busy_mouse_id;
804         gint cursor_state;
805
806         gint saver_block_id;
807
808         void (*stop_func)(FullScreenData *, gpointer);
809         gpointer stop_data;
810 };
811
812 struct _PixmapFolders
813 {
814         GdkPixbuf *close;
815         GdkPixbuf *open;
816         GdkPixbuf *deny;
817         GdkPixbuf *parent;
818 };
819
820 struct _SecureSaveInfo {
821         FILE *fp; /**< file stream pointer */
822         gchar *file_name; /**< final file name */
823         gchar *tmp_file_name; /**< temporary file name */
824         gint err; /**< set to non-zero value in case of error */
825         gint secure_save; /**< use secure save for this file, internal use only */
826         gint preserve_perms; /**< whether to preserve perms, TRUE by default */
827         gint preserve_mtime; /**< whether to preserve mtime, FALSE by default */
828         gint unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
829 };
830
831 struct _CommandLine
832 {
833         int argc;
834         gchar **argv;
835         gboolean startup_blank;
836         gboolean startup_full_screen;
837         gboolean startup_in_slideshow;
838         gboolean startup_command_line_collection;
839         gboolean tools_hide;
840         gboolean tools_show;
841         gchar *path;
842         gchar *file;
843         GList *cmd_list;
844         GList *collection_list;
845         gchar *geometry;
846 };
847
848 #endif
849 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */