e4b41f1f4918f69f44762b4f4e5cfdac83dd6abc
[geeqie.git] / src / rcfile.c
1 /*
2  * GQview image viewer
3  * (C)2000 John Ellis
4  *
5  * Author: John Ellis
6  *
7  */
8
9 #include "gqview.h"
10
11 static gchar *quoted_value(gchar *text);
12 static void write_char_option(FILE *f, gchar *label, gchar *text);
13 static gchar *read_char_option(FILE *f, gchar *option, gchar *label, gchar *value, gchar *text);
14 static void write_int_option(FILE *f, gchar *label, gint n);
15 static gint read_int_option(FILE *f, gchar *option, gchar *label, gchar *value, gint n);
16 static void write_bool_option(FILE *f, gchar *label, gint n);
17 static gint read_bool_option(FILE *f, gchar *option, gchar *label, gchar *value, gint n);
18
19 /*
20  *-----------------------------------------------------------------------------
21  * line write/parse routines (private)
22  *-----------------------------------------------------------------------------
23  */ 
24
25 static gchar *quoted_value(gchar *text)
26 {
27         gchar *ptr;
28         gint c = 0;
29         gint l = strlen(text);
30
31         if (l == 0) return NULL;
32
33         while (c < l && text[c] !='"') c++;
34         if (text[c] == '"')
35                 {
36                 c++;
37                 ptr = text + c;
38                 while (c < l && text[c] !='"') c++;
39                 if (text[c] == '"')
40                         {
41                         text[c] = '\0';
42                         if (strlen(ptr) > 0)
43                                 {
44                                 return g_strdup(ptr);
45                                 }
46                         }
47                 }
48         else
49                 /* for compatibility with older formats (<0.3.7)
50                  * read a line without quotes too */
51                 {
52                 c = 0;
53                 while (c < l && text[c] !=' ' && text[c] !=8 && text[c] != '\n') c++;
54                 if (c != 0)
55                         {
56                         text[c] = '\0';
57                         return g_strdup(text);
58                         }
59                 }
60
61         return NULL;
62 }
63
64 static void write_char_option(FILE *f, gchar *label, gchar *text)
65 {
66         if (text)
67                 fprintf(f,"%s: \"%s\"\n", label, text);
68         else
69                 fprintf(f,"%s: \n", label);
70 }
71
72 static gchar *read_char_option(FILE *f, gchar *option, gchar *label, gchar *value, gchar *text)
73 {
74         if (!strcasecmp(option, label))
75                 {
76                 g_free(text);
77                 text = quoted_value(value);
78                 }
79         return text;
80 }
81
82 static void write_int_option(FILE *f, gchar *label, gint n)
83 {
84         fprintf(f,"%s: %d\n\n", label, n);
85 }
86
87 static gint read_int_option(FILE *f, gchar *option, gchar *label, gchar *value, gint n)
88 {
89         if (!strcasecmp(option, label))
90                 {
91                 n = strtol(value,NULL,0);
92                 }
93         return n;
94 }
95
96 static void write_bool_option(FILE *f, gchar *label, gint n)
97 {
98         fprintf(f,"%s: ", label);
99         if (n) fprintf(f,"true\n"); else fprintf(f,"false\n");
100         fprintf(f,"\n");
101 }
102
103 static gint read_bool_option(FILE *f, gchar *option, gchar *label, gchar *value, gint n)
104 {
105         if (!strcasecmp(option, label))
106                 {
107                 if (!strcasecmp(value, "true"))
108                         n = TRUE;
109                 else
110                         n = FALSE;
111                 }
112         return n;
113 }
114
115 /*
116  *-----------------------------------------------------------------------------
117  * save configuration (public)
118  *-----------------------------------------------------------------------------
119  */ 
120
121 void save_options()
122 {
123         FILE *f;
124         gchar *rc_path;
125         gint i;
126
127         rc_path = g_strconcat(homedir(), "/", RC_FILE_NAME, NULL);
128
129         f = fopen(rc_path,"w");
130         if (!f)
131                 {
132                 printf(_("error saving config file: %s\n"), rc_path);
133                 g_free(rc_path);
134                 return;
135                 }
136
137         fprintf(f,"######################################################################\n");
138         fprintf(f,"#                         GQview config file         version %7s #\n", VERSION);
139         fprintf(f,"#                                                                    #\n");
140         fprintf(f,"#  Everything in this file can be changed in the option dialogs.     #\n");
141         fprintf(f,"#      (so there should be no need to edit this file by hand)        #\n");
142         fprintf(f,"#                                                                    #\n");
143         fprintf(f,"######################################################################\n");
144         fprintf(f,"\n");
145         fprintf(f,"##### General Options #####\n\n");
146
147         write_bool_option(f, "enable_startup_path", startup_path_enable);
148         write_char_option(f, "startup_path", startup_path);
149         fprintf(f,"\n");
150
151         fprintf(f,"zoom_mode: ");
152         if (zoom_mode == ZOOM_RESET_ORIGINAL) fprintf(f,"original\n");
153         if (zoom_mode == ZOOM_RESET_FIT_WINDOW) fprintf(f,"fit\n");
154         if (zoom_mode == ZOOM_RESET_NONE) fprintf(f,"dont_change\n");
155         fprintf(f,"\n");
156
157         write_bool_option(f, "fit_window_to_image", fit_window);
158         write_bool_option(f, "limit_window_size", limit_window_size);
159         write_int_option(f, "max_window_size", max_window_size);
160         fprintf(f,"\n");
161
162         write_bool_option(f, "progressive_keyboard_scrolling", progressive_key_scrolling);
163         fprintf(f,"\n");
164
165         write_bool_option(f, "enable_thumbnails", thumbnails_enabled);
166         write_int_option(f, "thumbnail_width", thumb_max_width);
167         write_int_option(f, "thumbnail_height", thumb_max_height);
168         write_bool_option(f, "cache_thumbnails", enable_thumb_caching);
169         write_bool_option(f, "use_xvpics_thumbnails", use_xvpics_thumbnails);
170         fprintf(f,"\n");
171
172         write_bool_option(f, "confirm_delete", confirm_delete);
173         fprintf(f,"\n");
174         write_bool_option(f, "tools_float", tools_float);
175         write_bool_option(f, "tools_hidden", tools_hidden);
176         write_bool_option(f, "restore_tool_state", restore_tool);
177
178         fprintf(f,"\n##### Slideshow Options #####\n\n");
179
180         write_int_option(f, "slideshow_delay", slideshow_delay);
181
182         write_bool_option(f, "slideshow_random", slideshow_random);
183         write_bool_option(f, "slideshow_repeat", slideshow_repeat);
184
185         fprintf(f,"\n##### Filtering Options #####\n\n");
186
187         write_bool_option(f, "show_dotfiles", show_dot_files);
188         write_bool_option(f, "disable_filtering", file_filter_disable);
189         fprintf(f,"\n");
190         write_bool_option(f, "filter_ppm", filter_include_ppm);
191         write_bool_option(f, "filter_png", filter_include_png);
192         write_bool_option(f, "filter_jpg", filter_include_jpg);
193         write_bool_option(f, "filter_tif", filter_include_tif);
194         write_bool_option(f, "filter_pgm", filter_include_pgm);
195         write_bool_option(f, "filter_xpm", filter_include_xpm);
196         write_bool_option(f, "filter_gif", filter_include_gif);
197         write_bool_option(f, "filter_pcx", filter_include_pcx);
198         write_bool_option(f, "filter_bmp", filter_include_bmp);
199         fprintf(f,"\n");
200         write_char_option(f, "custom_filter", custom_filter);
201
202         fprintf(f,"\n##### External Programs #####\n");
203         fprintf(f,"# Maximum of 8 programs (external_1 through external 8)\n");
204         fprintf(f,"# format: external_n: \"menu name\" \"command line\"\n\n");
205
206         for (i=0; i<8; i++)
207                 {
208                 fprintf(f,"external_%d: \"", i+1);
209                 if (editor_name[i]) fprintf(f, editor_name[i]);
210                 fprintf(f, "\" \"");
211                 if (editor_command[i]) fprintf(f, editor_command[i]);
212                 fprintf(f, "\"\n");
213                 }
214
215         fprintf(f,"\n##### Window Positions #####\n\n");
216
217         write_bool_option(f, "restore_window_positions", save_window_positions);
218         fprintf(f,"\n");
219         write_int_option(f, "main_window_x", main_window_x);
220         write_int_option(f, "main_window_y", main_window_y);
221         write_int_option(f, "main_window_width", main_window_w);
222         write_int_option(f, "main_window_height", main_window_h);
223         write_int_option(f, "float_window_x", float_window_x);
224         write_int_option(f, "float_window_y", float_window_y);
225         write_int_option(f, "float_window_width", float_window_w);
226         write_int_option(f, "float_window_height", float_window_h);
227
228         fprintf(f,"######################################################################\n");
229         fprintf(f,"#                      end of GQview config file                     #\n");
230         fprintf(f,"######################################################################\n");
231
232         fclose(f);
233
234         g_free(rc_path);
235 }
236
237 /*
238  *-----------------------------------------------------------------------------
239  * load configuration (public)
240  *-----------------------------------------------------------------------------
241  */ 
242
243 void load_options()
244 {
245         FILE *f;
246         gchar *rc_path;
247         gchar s_buf[1024];
248         gchar *s_buf_ptr;
249         gchar option[1024];
250         gchar value[1024];
251         gchar value_all[1024];
252         gint c,l,i;
253         rc_path = g_strconcat(homedir(), "/", RC_FILE_NAME, NULL);
254
255         f = fopen(rc_path,"r");
256         if (!f)
257                 {
258                 g_free(rc_path);
259                 return;
260                 }
261
262         while (fgets(s_buf,1024,f))
263                 {
264                 if (s_buf[0]=='#') continue;
265                 if (s_buf[0]=='\n') continue;
266                 c = 0;
267                 l = strlen(s_buf);
268                 while (s_buf[c] != ':' && c < l) c++;
269                 if (c >= l) continue;
270                 s_buf[c] = '\0';
271                 c++;
272                 while (s_buf[c] == ' ' && c < l) c++;
273                 while (s_buf[c] == 8 && c < l) c++;
274                 while (s_buf[c] == ' ' && c < l) c++;
275                 s_buf_ptr = s_buf + c;
276                 strcpy(value_all,s_buf_ptr);
277                 while (s_buf[c] != 8 && s_buf[c] != ' ' && s_buf[c] != '\n' && c < l) c++;
278                 s_buf[c] = '\0';
279                 strcpy(option,s_buf);
280                 strcpy(value,s_buf_ptr);
281
282                 /* general options */
283
284                 startup_path_enable = read_bool_option(f, option,
285                         "enable_startup_path", value, startup_path_enable);
286                 startup_path = read_char_option(f, option,
287                         "startup_path", value_all, startup_path);
288
289                 if (!strcasecmp(option,"zoom_mode"))
290                         {
291                         if (!strcasecmp(value,"original")) zoom_mode = ZOOM_RESET_ORIGINAL;
292                         if (!strcasecmp(value,"fit")) zoom_mode = ZOOM_RESET_FIT_WINDOW;
293                         if (!strcasecmp(value,"dont_change")) zoom_mode = ZOOM_RESET_NONE;
294                         }
295
296                 fit_window = read_bool_option(f, option,
297                         "fit_window_to_image", value, fit_window);
298                 limit_window_size = read_bool_option(f, option,
299                         "limit_window_size", value, limit_window_size);
300                 max_window_size = read_int_option(f, option,
301                         "max_window_size", value, max_window_size);
302                 progressive_key_scrolling = read_bool_option(f, option,
303                         "progressive_keyboard_scrolling", value, progressive_key_scrolling);
304
305                 thumbnails_enabled = read_bool_option(f, option,
306                         "enable_thumbnails", value, thumbnails_enabled);
307                 thumb_max_width = read_int_option(f, option,
308                         "thumbnail_width", value, thumb_max_width);
309                 thumb_max_height = read_int_option(f, option,
310                         "thumbnail_height", value, thumb_max_height);
311                 enable_thumb_caching = read_bool_option(f, option,
312                         "cache_thumbnails", value, enable_thumb_caching);
313                 use_xvpics_thumbnails = read_bool_option(f, option,
314                         "use_xvpics_thumbnails", value, use_xvpics_thumbnails);
315
316                 confirm_delete = read_bool_option(f, option,
317                         "confirm_delete", value, confirm_delete);
318
319                 tools_float = read_bool_option(f, option,
320                         "tools_float", value, tools_float);
321                 tools_hidden = read_bool_option(f, option,
322                         "tools_hidden", value, tools_hidden);
323                 restore_tool = read_bool_option(f, option,
324                         "restore_tool_state", value, restore_tool);
325
326                 /* slideshow opitons */
327
328                 slideshow_delay = read_int_option(f, option,
329                         "slideshow_delay", value, slideshow_delay);
330                 slideshow_random = read_bool_option(f, option,
331                         "slideshow_random", value, slideshow_random);
332                 slideshow_repeat = read_bool_option(f, option,
333                         "slideshow_repeat", value, slideshow_repeat);
334
335                 /* filtering options */
336
337                 show_dot_files = read_bool_option(f, option,
338                         "show_dotfiles", value, show_dot_files);
339                 file_filter_disable = read_bool_option(f, option,
340                         "disable_filtering", value, file_filter_disable);
341
342                 filter_include_ppm = read_bool_option(f, option,
343                         "filter_ppm", value, filter_include_ppm);
344                 filter_include_png = read_bool_option(f, option,
345                         "filter_png", value, filter_include_png);
346                 filter_include_jpg = read_bool_option(f, option,
347                         "filter_jpg", value, filter_include_jpg);
348                 filter_include_tif = read_bool_option(f, option,
349                         "filter_tif", value, filter_include_tif);
350                 filter_include_pgm = read_bool_option(f, option,
351                         "filter_pgm", value, filter_include_pgm);
352                 filter_include_xpm = read_bool_option(f, option,
353                         "filter_xpm", value, filter_include_xpm);
354                 filter_include_gif = read_bool_option(f, option,
355                         "filter_gif", value, filter_include_gif);
356                 filter_include_pcx = read_bool_option(f, option,
357                         "filter_pcx", value, filter_include_pcx);
358                 filter_include_bmp = read_bool_option(f, option,
359                         "filter_bmp", value, filter_include_bmp);
360
361                 custom_filter = read_char_option(f, option,
362                         "custom_filter", value_all, custom_filter);
363
364                 /* External Programs */
365
366                 if (!strncasecmp(option,"external_",9))
367                         {
368                         i = strtol(option + 9, NULL, 0);
369                         if (i>0 && i<9)
370                                 {
371                                 gchar *ptr1, *ptr2;
372                                 i--;
373                                 c = 0;
374                                 l = strlen(value_all);
375                                 ptr1 = value_all;
376
377                                 g_free(editor_name[i]);
378                                 editor_name[i] = NULL;
379                                 g_free(editor_command[i]);
380                                 editor_command[i] = NULL;
381
382                                 while (c<l && value_all[c] !='"') c++;
383                                 if (ptr1[c] == '"')
384                                         {
385                                         c++;
386                                         ptr2 = ptr1 + c;
387                                         while (c<l && value_all[c] !='"') c++;
388                                         if (ptr1[c] == '"')
389                                                 {
390                                                 ptr1[c] = '\0';
391                                                 if (ptr1 + c - 1 != ptr2)
392                                                         editor_name[i] = g_strdup(ptr2);
393                                                 c++;
394                                                 while (c<l && value_all[c] !='"') c++;
395                                                 if (ptr1[c] == '"')
396                                                         {
397                                                         c++;
398                                                         ptr2 = ptr1 + c;
399                                                         while (c<l && value_all[c] !='"') c++;
400                                                         if (ptr1[c] == '"' && ptr1 + c - 1 != ptr2)
401                                                                 {
402                                                                 ptr1[c] = '\0';
403                                                                 editor_command[i] = g_strdup(ptr2);
404                                                                 }
405                                                         }
406                                                 }
407                                         }
408                                 }
409                         }
410
411                 /* window positions */
412
413                 save_window_positions = read_bool_option(f, option,
414                         "restore_window_positions", value, save_window_positions);
415
416                 main_window_x = read_int_option(f, option,
417                         "main_window_x", value, main_window_x);
418                 main_window_y = read_int_option(f, option,
419                         "main_window_y", value, main_window_y);
420                 main_window_w = read_int_option(f, option,
421                         "main_window_width", value, main_window_w);
422                 main_window_h = read_int_option(f, option,
423                         "main_window_height", value, main_window_h);
424                 float_window_x = read_int_option(f, option,
425                         "float_window_x", value, float_window_x);
426                 float_window_y = read_int_option(f, option,
427                         "float_window_y", value, float_window_y);
428                 float_window_w = read_int_option(f, option,
429                         "float_window_width", value, float_window_w);
430                 float_window_h = read_int_option(f, option,
431                         "float_window_height", value, float_window_h);
432                 }
433
434         fclose(f);
435         g_free(rc_path);
436 }
437