]> git.donarmstrong.com Git - xournal.git/blob - src/xo-file.c
ad596201a0196fc15232769515cdd4547b445ac3
[xournal.git] / src / xo-file.c
1 #ifdef HAVE_CONFIG_H
2 #  include <config.h>
3 #endif
4
5 #include <signal.h>
6 #include <memory.h>
7 #include <string.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <gtk/gtk.h>
11 #include <libgnomecanvas/libgnomecanvas.h>
12 #include <zlib.h>
13 #include <math.h>
14 #include <gdk/gdkx.h>
15 #include <X11/Xlib.h>
16 #include <locale.h>
17 #include <glib.h>
18 #include <glib/gstdio.h>
19 #include <poppler/glib/poppler.h>
20
21 #include "xournal.h"
22 #include "xo-interface.h"
23 #include "xo-support.h"
24 #include "xo-callbacks.h"
25 #include "xo-misc.h"
26 #include "xo-file.h"
27 #include "xo-paint.h"
28
29 const char *tool_names[NUM_TOOLS] = {"pen", "eraser", "highlighter", "text", "", "selectrect", "vertspace", "hand"};
30 const char *color_names[COLOR_MAX] = {"black", "blue", "red", "green",
31    "gray", "lightblue", "lightgreen", "magenta", "orange", "yellow", "white"};
32 const char *bgtype_names[3] = {"solid", "pixmap", "pdf"};
33 const char *bgcolor_names[COLOR_MAX] = {"", "blue", "pink", "green",
34    "", "", "", "", "orange", "yellow", "white"};
35 const char *bgstyle_names[4] = {"plain", "lined", "ruled", "graph"};
36 const char *file_domain_names[3] = {"absolute", "attach", "clone"};
37 const char *unit_names[4] = {"cm", "in", "px", "pt"};
38 int PDFTOPPM_PRINTING_DPI, GS_BITMAP_DPI;
39
40 // creates a new empty journal
41
42 void new_journal(void)
43 {
44   journal.npages = 1;
45   journal.pages = g_list_append(NULL, new_page(&ui.default_page));
46   journal.last_attach_no = 0;
47   ui.pageno = 0;
48   ui.layerno = 0;
49   ui.cur_page = (struct Page *) journal.pages->data;
50   ui.cur_layer = (struct Layer *) ui.cur_page->layers->data;
51   ui.saved = TRUE;
52   ui.filename = NULL;
53   update_file_name(NULL);
54 }
55
56 // check attachment names
57
58 void chk_attach_names(void)
59 {
60   GList *list;
61   struct Background *bg;
62   
63   for (list = journal.pages; list!=NULL; list = list->next) {
64     bg = ((struct Page *)list->data)->bg;
65     if (bg->type == BG_SOLID || bg->file_domain != DOMAIN_ATTACH ||
66         bg->filename->s != NULL) continue;
67     bg->filename->s = g_strdup_printf("bg_%d.png", ++journal.last_attach_no);
68   }
69 }
70
71 // saves the journal to a file: returns true on success, false on error
72
73 gboolean save_journal(const char *filename)
74 {
75   gzFile f;
76   struct Page *pg, *tmppg;
77   struct Layer *layer;
78   struct Item *item;
79   int i, is_clone;
80   char *tmpfn, *tmpstr;
81   gboolean success;
82   FILE *tmpf;
83   GList *pagelist, *layerlist, *itemlist, *list;
84   GtkWidget *dialog;
85   
86   f = gzopen(filename, "w");
87   if (f==NULL) return FALSE;
88   chk_attach_names();
89
90   setlocale(LC_NUMERIC, "C");
91   
92   gzprintf(f, "<?xml version=\"1.0\" standalone=\"no\"?>\n"
93      "<xournal version=\"" VERSION "\">\n"
94      "<title>Xournal document - see http://math.mit.edu/~auroux/software/xournal/</title>\n");
95   for (pagelist = journal.pages; pagelist!=NULL; pagelist = pagelist->next) {
96     pg = (struct Page *)pagelist->data;
97     gzprintf(f, "<page width=\"%.2f\" height=\"%.2f\">\n", pg->width, pg->height);
98     gzprintf(f, "<background type=\"%s\" ", bgtype_names[pg->bg->type]); 
99     if (pg->bg->type == BG_SOLID) {
100       gzputs(f, "color=\"");
101       if (pg->bg->color_no >= 0) gzputs(f, bgcolor_names[pg->bg->color_no]);
102       else gzprintf(f, "#%08x", pg->bg->color_rgba);
103       gzprintf(f, "\" style=\"%s\" ", bgstyle_names[pg->bg->ruling]);
104     }
105     else if (pg->bg->type == BG_PIXMAP) {
106       is_clone = -1;
107       for (list = journal.pages, i = 0; list!=pagelist; list = list->next, i++) {
108         tmppg = (struct Page *)list->data;
109         if (tmppg->bg->type == BG_PIXMAP && 
110             tmppg->bg->pixbuf == pg->bg->pixbuf &&
111             tmppg->bg->filename == pg->bg->filename)
112           { is_clone = i; break; }
113       }
114       if (is_clone >= 0)
115         gzprintf(f, "domain=\"clone\" filename=\"%d\" ", is_clone);
116       else {
117         if (pg->bg->file_domain == DOMAIN_ATTACH) {
118           tmpfn = g_strdup_printf("%s.%s", filename, pg->bg->filename->s);
119           if (!gdk_pixbuf_save(pg->bg->pixbuf, tmpfn, "png", NULL, NULL)) {
120             dialog = gtk_message_dialog_new(GTK_WINDOW(winMain), GTK_DIALOG_MODAL,
121               GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, 
122               _("Could not write background '%s'. Continuing anyway."), tmpfn);
123             gtk_dialog_run(GTK_DIALOG(dialog));
124             gtk_widget_destroy(dialog);
125           }
126           g_free(tmpfn);
127         }
128         tmpstr = g_markup_escape_text(pg->bg->filename->s, -1);
129         gzprintf(f, "domain=\"%s\" filename=\"%s\" ", 
130           file_domain_names[pg->bg->file_domain], tmpstr);
131         g_free(tmpstr);
132       }
133     }
134     else if (pg->bg->type == BG_PDF) {
135       is_clone = 0;
136       for (list = journal.pages; list!=pagelist; list = list->next) {
137         tmppg = (struct Page *)list->data;
138         if (tmppg->bg->type == BG_PDF) { is_clone = 1; break; }
139       }
140       if (!is_clone) {
141         if (pg->bg->file_domain == DOMAIN_ATTACH) {
142           tmpfn = g_strdup_printf("%s.%s", filename, pg->bg->filename->s);
143           success = FALSE;
144           if (bgpdf.status != STATUS_NOT_INIT && bgpdf.file_contents != NULL)
145           {
146             tmpf = fopen(tmpfn, "w");
147             if (tmpf != NULL && fwrite(bgpdf.file_contents, 1, bgpdf.file_length, tmpf) == bgpdf.file_length)
148               success = TRUE;
149             fclose(tmpf);
150           }
151           if (!success) {
152             dialog = gtk_message_dialog_new(GTK_WINDOW(winMain), GTK_DIALOG_MODAL,
153               GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, 
154               _("Could not write background '%s'. Continuing anyway."), tmpfn);
155             gtk_dialog_run(GTK_DIALOG(dialog));
156             gtk_widget_destroy(dialog);
157           }
158           g_free(tmpfn);
159         }
160         tmpstr = g_markup_escape_text(pg->bg->filename->s, -1);
161         gzprintf(f, "domain=\"%s\" filename=\"%s\" ", 
162           file_domain_names[pg->bg->file_domain], tmpstr);
163         g_free(tmpstr);
164       }
165       gzprintf(f, "pageno=\"%d\" ", pg->bg->file_page_seq);
166     }
167     gzprintf(f, "/>\n");
168     for (layerlist = pg->layers; layerlist!=NULL; layerlist = layerlist->next) {
169       layer = (struct Layer *)layerlist->data;
170       gzprintf(f, "<layer>\n");
171       for (itemlist = layer->items; itemlist!=NULL; itemlist = itemlist->next) {
172         item = (struct Item *)itemlist->data;
173         if (item->type == ITEM_STROKE) {
174           gzprintf(f, "<stroke tool=\"%s\" color=\"", 
175                           tool_names[item->brush.tool_type]);
176           if (item->brush.color_no >= 0)
177             gzputs(f, color_names[item->brush.color_no]);
178           else
179             gzprintf(f, "#%08x", item->brush.color_rgba);
180           gzprintf(f, "\" width=\"%.2f", item->brush.thickness);
181           if (item->brush.variable_width)
182             for (i=0;i<item->path->num_points-1;i++)
183               gzprintf(f, " %.2f", item->widths[i]);
184           gzprintf(f, "\">\n");
185           for (i=0;i<2*item->path->num_points;i++)
186             gzprintf(f, "%.2f ", item->path->coords[i]);
187           gzprintf(f, "\n</stroke>\n");
188         }
189         if (item->type == ITEM_TEXT) {
190           tmpstr = g_markup_escape_text(item->font_name, -1);
191           gzprintf(f, "<text font=\"%s\" size=\"%.2f\" x=\"%.2f\" y=\"%.2f\" color=\"",
192             tmpstr, item->font_size, item->bbox.left, item->bbox.top);
193           g_free(tmpstr);
194           if (item->brush.color_no >= 0)
195             gzputs(f, color_names[item->brush.color_no]);
196           else
197             gzprintf(f, "#%08x", item->brush.color_rgba);
198           tmpstr = g_markup_escape_text(item->text, -1);
199           gzprintf(f, "\">%s</text>\n", tmpstr);
200           g_free(tmpstr);
201         }
202       }
203       gzprintf(f, "</layer>\n");
204     }
205     gzprintf(f, "</page>\n");
206   }
207   gzprintf(f, "</xournal>\n");
208   gzclose(f);
209   setlocale(LC_NUMERIC, "");
210
211   return TRUE;
212 }
213
214 // closes a journal: returns true on success, false on abort
215
216 gboolean close_journal(void)
217 {
218   if (!ok_to_close()) return FALSE;
219   
220   // free everything...
221   reset_selection();
222   reset_recognizer();
223   clear_redo_stack();
224   clear_undo_stack();
225
226   shutdown_bgpdf();
227   delete_journal(&journal);
228   
229   return TRUE;
230   /* note: various members of ui and journal are now in invalid states,
231      use new_journal() to reinitialize them */
232 }
233
234 // sanitize a string containing floats, in case it may have , instead of .
235
236 void cleanup_numeric(char *s)
237 {
238   while (*s!=0) { if (*s==',') *s='.'; s++; }
239 }
240
241 // the XML parser functions for open_journal()
242
243 struct Journal tmpJournal;
244 struct Page *tmpPage;
245 struct Layer *tmpLayer;
246 struct Item *tmpItem;
247 char *tmpFilename;
248 struct Background *tmpBg_pdf;
249
250 GError *xoj_invalid(void)
251 {
252   return g_error_new(G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, _("Invalid file contents"));
253 }
254
255 void xoj_parser_start_element(GMarkupParseContext *context,
256    const gchar *element_name, const gchar **attribute_names, 
257    const gchar **attribute_values, gpointer user_data, GError **error)
258 {
259   int has_attr, i;
260   char *ptr, *tmpptr;
261   struct Background *tmpbg;
262   char *tmpbg_filename;
263   gdouble val;
264   GtkWidget *dialog;
265   
266   if (!strcmp(element_name, "title") || !strcmp(element_name, "xournal")) {
267     if (tmpPage != NULL) {
268       *error = xoj_invalid();
269       return;
270     }
271     // nothing special to do
272   }
273   else if (!strcmp(element_name, "page")) { // start of a page
274     if (tmpPage != NULL) {
275       *error = xoj_invalid();
276       return;
277     }
278     tmpPage = (struct Page *)g_malloc(sizeof(struct Page));
279     tmpPage->layers = NULL;
280     tmpPage->nlayers = 0;
281     tmpPage->group = NULL;
282     tmpPage->bg = g_new(struct Background, 1);
283     tmpPage->bg->type = -1;
284     tmpPage->bg->canvas_item = NULL;
285     tmpPage->bg->pixbuf = NULL;
286     tmpPage->bg->filename = NULL;
287     tmpJournal.pages = g_list_append(tmpJournal.pages, tmpPage);
288     tmpJournal.npages++;
289     // scan for height and width attributes
290     has_attr = 0;
291     while (*attribute_names!=NULL) {
292       if (!strcmp(*attribute_names, "width")) {
293         if (has_attr & 1) *error = xoj_invalid();
294         cleanup_numeric((gchar *)*attribute_values);
295         tmpPage->width = g_ascii_strtod(*attribute_values, &ptr);
296         if (ptr == *attribute_values) *error = xoj_invalid();
297         has_attr |= 1;
298       }
299       else if (!strcmp(*attribute_names, "height")) {
300         if (has_attr & 2) *error = xoj_invalid();
301         cleanup_numeric((gchar *)*attribute_values);
302         tmpPage->height = g_ascii_strtod(*attribute_values, &ptr);
303         if (ptr == *attribute_values) *error = xoj_invalid();
304         has_attr |= 2;
305       }
306       else *error = xoj_invalid();
307       attribute_names++;
308       attribute_values++;
309     }
310     if (has_attr!=3) *error = xoj_invalid();
311   }
312   else if (!strcmp(element_name, "background")) {
313     if (tmpPage == NULL || tmpLayer !=NULL || tmpPage->bg->type >= 0) {
314       *error = xoj_invalid();
315       return;
316     }
317     has_attr = 0;
318     while (*attribute_names!=NULL) {
319       if (!strcmp(*attribute_names, "type")) {
320         if (has_attr) *error = xoj_invalid();
321         for (i=0; i<3; i++)
322           if (!strcmp(*attribute_values, bgtype_names[i]))
323             tmpPage->bg->type = i;
324         if (tmpPage->bg->type < 0) *error = xoj_invalid();
325         has_attr |= 1;
326         if (tmpPage->bg->type == BG_PDF) {
327           if (tmpBg_pdf == NULL) tmpBg_pdf = tmpPage->bg;
328           else {
329             has_attr |= 24;
330             tmpPage->bg->filename = refstring_ref(tmpBg_pdf->filename);
331             tmpPage->bg->file_domain = tmpBg_pdf->file_domain;
332           }
333         }
334       }
335       else if (!strcmp(*attribute_names, "color")) {
336         if (tmpPage->bg->type != BG_SOLID) *error = xoj_invalid();
337         if (has_attr & 2) *error = xoj_invalid();
338         tmpPage->bg->color_no = COLOR_OTHER;
339         for (i=0; i<COLOR_MAX; i++)
340           if (!strcmp(*attribute_values, bgcolor_names[i])) {
341             tmpPage->bg->color_no = i;
342             tmpPage->bg->color_rgba = predef_bgcolors_rgba[i];
343           }
344         // there's also the case of hex (#rrggbbaa) colors
345         if (tmpPage->bg->color_no == COLOR_OTHER && **attribute_values == '#') {
346           tmpPage->bg->color_rgba = strtoul(*attribute_values + 1, &ptr, 16);
347           if (*ptr!=0) *error = xoj_invalid();
348         }
349         has_attr |= 2;
350       }
351       else if (!strcmp(*attribute_names, "style")) {
352         if (tmpPage->bg->type != BG_SOLID) *error = xoj_invalid();
353         if (has_attr & 4) *error = xoj_invalid();
354         tmpPage->bg->ruling = -1;
355         for (i=0; i<4; i++)
356           if (!strcmp(*attribute_values, bgstyle_names[i]))
357             tmpPage->bg->ruling = i;
358         if (tmpPage->bg->ruling < 0) *error = xoj_invalid();
359         has_attr |= 4;
360       }
361       else if (!strcmp(*attribute_names, "domain")) {
362         if (tmpPage->bg->type <= BG_SOLID || (has_attr & 8))
363           { *error = xoj_invalid(); return; }
364         tmpPage->bg->file_domain = -1;
365         for (i=0; i<3; i++)
366           if (!strcmp(*attribute_values, file_domain_names[i]))
367             tmpPage->bg->file_domain = i;
368         if (tmpPage->bg->file_domain < 0)
369           { *error = xoj_invalid(); return; }
370         has_attr |= 8;
371       }
372       else if (!strcmp(*attribute_names, "filename")) {
373         if (tmpPage->bg->type <= BG_SOLID || (has_attr != 9)) 
374           { *error = xoj_invalid(); return; }
375         if (tmpPage->bg->file_domain == DOMAIN_CLONE) {
376           // filename is a page number
377           i = strtol(*attribute_values, &ptr, 10);
378           if (ptr == *attribute_values || i < 0 || i > tmpJournal.npages-2)
379             { *error = xoj_invalid(); return; }
380           tmpbg = ((struct Page *)g_list_nth_data(tmpJournal.pages, i))->bg;
381           if (tmpbg->type != tmpPage->bg->type)
382             { *error = xoj_invalid(); return; }
383           tmpPage->bg->filename = refstring_ref(tmpbg->filename);
384           tmpPage->bg->pixbuf = tmpbg->pixbuf;
385           if (tmpbg->pixbuf!=NULL) gdk_pixbuf_ref(tmpbg->pixbuf);
386           tmpPage->bg->file_domain = tmpbg->file_domain;
387         }
388         else {
389           tmpPage->bg->filename = new_refstring(*attribute_values);
390           if (tmpPage->bg->type == BG_PIXMAP) {
391             if (tmpPage->bg->file_domain == DOMAIN_ATTACH) {
392               tmpbg_filename = g_strdup_printf("%s.%s", tmpFilename, *attribute_values);
393               if (sscanf(*attribute_values, "bg_%d.png", &i) == 1)
394                 if (i > tmpJournal.last_attach_no) 
395                   tmpJournal.last_attach_no = i;
396             }
397             else tmpbg_filename = g_strdup(*attribute_values);
398             tmpPage->bg->pixbuf = gdk_pixbuf_new_from_file(tmpbg_filename, NULL);
399             if (tmpPage->bg->pixbuf == NULL) {
400               dialog = gtk_message_dialog_new(GTK_WINDOW(winMain), GTK_DIALOG_MODAL,
401                 GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, 
402                 _("Could not open background '%s'. Setting background to white."),
403                 tmpbg_filename);
404               gtk_dialog_run(GTK_DIALOG(dialog));
405               gtk_widget_destroy(dialog);
406               tmpPage->bg->pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, 1, 1);
407               gdk_pixbuf_fill(tmpPage->bg->pixbuf, 0xffffffff); // solid white
408             }
409             g_free(tmpbg_filename);
410           }
411         }
412         has_attr |= 16;
413       }
414       else if (!strcmp(*attribute_names, "pageno")) {
415         if (tmpPage->bg->type != BG_PDF || (has_attr & 32))
416           { *error = xoj_invalid(); return; }
417         tmpPage->bg->file_page_seq = strtol(*attribute_values, &ptr, 10);
418         if (ptr == *attribute_values) *error = xoj_invalid();
419         has_attr |= 32;
420       }
421       else *error = xoj_invalid();
422       attribute_names++;
423       attribute_values++;
424     }
425     if (tmpPage->bg->type < 0) *error = xoj_invalid();
426     if (tmpPage->bg->type == BG_SOLID && has_attr != 7) *error = xoj_invalid();
427     if (tmpPage->bg->type == BG_PIXMAP && has_attr != 25) *error = xoj_invalid();
428     if (tmpPage->bg->type == BG_PDF && has_attr != 57) *error = xoj_invalid();
429   }
430   else if (!strcmp(element_name, "layer")) { // start of a layer
431     if (tmpPage == NULL || tmpLayer != NULL) {
432       *error = xoj_invalid();
433       return;
434     }
435     tmpLayer = (struct Layer *)g_malloc(sizeof(struct Layer));
436     tmpLayer->items = NULL;
437     tmpLayer->nitems = 0;
438     tmpLayer->group = NULL;
439     tmpPage->layers = g_list_append(tmpPage->layers, tmpLayer);
440     tmpPage->nlayers++;
441   }
442   else if (!strcmp(element_name, "stroke")) { // start of a stroke
443     if (tmpLayer == NULL || tmpItem != NULL) {
444       *error = xoj_invalid();
445       return;
446     }
447     tmpItem = (struct Item *)g_malloc(sizeof(struct Item));
448     tmpItem->type = ITEM_STROKE;
449     tmpItem->path = NULL;
450     tmpItem->canvas_item = NULL;
451     tmpItem->widths = NULL;
452     tmpLayer->items = g_list_append(tmpLayer->items, tmpItem);
453     tmpLayer->nitems++;
454     // scan for tool, color, and width attributes
455     has_attr = 0;
456     while (*attribute_names!=NULL) {
457       if (!strcmp(*attribute_names, "width")) {
458         if (has_attr & 1) *error = xoj_invalid();
459         cleanup_numeric((gchar *)*attribute_values);
460         tmpItem->brush.thickness = g_ascii_strtod(*attribute_values, &ptr);
461         if (ptr == *attribute_values) *error = xoj_invalid();
462         i = 0;
463         while (*ptr!=0) {
464           realloc_cur_widths(i+1);
465           ui.cur_widths[i] = g_ascii_strtod(ptr, &tmpptr);
466           if (tmpptr == ptr) break;
467           ptr = tmpptr;
468           i++;
469         }
470         tmpItem->brush.variable_width = (i>0);
471         if (i>0) {
472           tmpItem->brush.variable_width = TRUE;
473           tmpItem->widths = (gdouble *) g_memdup(ui.cur_widths, i*sizeof(gdouble));
474           ui.cur_path.num_points =  i+1;
475         }
476         has_attr |= 1;
477       }
478       else if (!strcmp(*attribute_names, "color")) {
479         if (has_attr & 2) *error = xoj_invalid();
480         tmpItem->brush.color_no = COLOR_OTHER;
481         for (i=0; i<COLOR_MAX; i++)
482           if (!strcmp(*attribute_values, color_names[i])) {
483             tmpItem->brush.color_no = i;
484             tmpItem->brush.color_rgba = predef_colors_rgba[i];
485           }
486         // there's also the case of hex (#rrggbbaa) colors
487         if (tmpItem->brush.color_no == COLOR_OTHER && **attribute_values == '#') {
488           tmpItem->brush.color_rgba = strtoul(*attribute_values + 1, &ptr, 16);
489           if (*ptr!=0) *error = xoj_invalid();
490         }
491         has_attr |= 2;
492       }
493       else if (!strcmp(*attribute_names, "tool")) {
494         if (has_attr & 4) *error = xoj_invalid();
495         tmpItem->brush.tool_type = -1;
496         for (i=0; i<NUM_STROKE_TOOLS; i++)
497           if (!strcmp(*attribute_values, tool_names[i])) {
498             tmpItem->brush.tool_type = i;
499           }
500         if (tmpItem->brush.tool_type == -1) *error = xoj_invalid();
501         has_attr |= 4;
502       }
503       else *error = xoj_invalid();
504       attribute_names++;
505       attribute_values++;
506     }
507     if (has_attr!=7) *error = xoj_invalid();
508     // finish filling the brush info
509     tmpItem->brush.thickness_no = 0;  // who cares ?
510     tmpItem->brush.tool_options = 0;  // who cares ?
511     tmpItem->brush.ruler = FALSE;
512     tmpItem->brush.recognizer = FALSE;
513     if (tmpItem->brush.tool_type == TOOL_HIGHLIGHTER) {
514       if (tmpItem->brush.color_no >= 0)
515         tmpItem->brush.color_rgba &= ui.hiliter_alpha_mask;
516     }
517   }
518   else if (!strcmp(element_name, "text")) { // start of a text item
519     if (tmpLayer == NULL || tmpItem != NULL) {
520       *error = xoj_invalid();
521       return;
522     }
523     tmpItem = (struct Item *)g_malloc0(sizeof(struct Item));
524     tmpItem->type = ITEM_TEXT;
525     tmpItem->canvas_item = NULL;
526     tmpLayer->items = g_list_append(tmpLayer->items, tmpItem);
527     tmpLayer->nitems++;
528     // scan for font, size, x, y, and color attributes
529     has_attr = 0;
530     while (*attribute_names!=NULL) {
531       if (!strcmp(*attribute_names, "font")) {
532         if (has_attr & 1) *error = xoj_invalid();
533         tmpItem->font_name = g_strdup(*attribute_values);
534         has_attr |= 1;
535       }
536       else if (!strcmp(*attribute_names, "size")) {
537         if (has_attr & 2) *error = xoj_invalid();
538         cleanup_numeric((gchar *)*attribute_values);
539         tmpItem->font_size = g_ascii_strtod(*attribute_values, &ptr);
540         if (ptr == *attribute_values) *error = xoj_invalid();
541         has_attr |= 2;
542       }
543       else if (!strcmp(*attribute_names, "x")) {
544         if (has_attr & 4) *error = xoj_invalid();
545         cleanup_numeric((gchar *)*attribute_values);
546         tmpItem->bbox.left = g_ascii_strtod(*attribute_values, &ptr);
547         if (ptr == *attribute_values) *error = xoj_invalid();
548         has_attr |= 4;
549       }
550       else if (!strcmp(*attribute_names, "y")) {
551         if (has_attr & 8) *error = xoj_invalid();
552         cleanup_numeric((gchar *)*attribute_values);
553         tmpItem->bbox.top = g_ascii_strtod(*attribute_values, &ptr);
554         if (ptr == *attribute_values) *error = xoj_invalid();
555         has_attr |= 8;
556       }
557       else if (!strcmp(*attribute_names, "color")) {
558         if (has_attr & 16) *error = xoj_invalid();
559         tmpItem->brush.color_no = COLOR_OTHER;
560         for (i=0; i<COLOR_MAX; i++)
561           if (!strcmp(*attribute_values, color_names[i])) {
562             tmpItem->brush.color_no = i;
563             tmpItem->brush.color_rgba = predef_colors_rgba[i];
564           }
565         // there's also the case of hex (#rrggbbaa) colors
566         if (tmpItem->brush.color_no == COLOR_OTHER && **attribute_values == '#') {
567           tmpItem->brush.color_rgba = strtoul(*attribute_values + 1, &ptr, 16);
568           if (*ptr!=0) *error = xoj_invalid();
569         }
570         has_attr |= 16;
571       }
572       else *error = xoj_invalid();
573       attribute_names++;
574       attribute_values++;
575     }
576     if (has_attr!=31) *error = xoj_invalid();
577   }
578 }
579
580 void xoj_parser_end_element(GMarkupParseContext *context,
581    const gchar *element_name, gpointer user_data, GError **error)
582 {
583   if (!strcmp(element_name, "page")) {
584     if (tmpPage == NULL || tmpLayer != NULL) {
585       *error = xoj_invalid();
586       return;
587     }
588     if (tmpPage->nlayers == 0 || tmpPage->bg->type < 0) *error = xoj_invalid();
589     tmpPage = NULL;
590   }
591   if (!strcmp(element_name, "layer")) {
592     if (tmpLayer == NULL || tmpItem != NULL) {
593       *error = xoj_invalid();
594       return;
595     }
596     tmpLayer = NULL;
597   }
598   if (!strcmp(element_name, "stroke")) {
599     if (tmpItem == NULL) {
600       *error = xoj_invalid();
601       return;
602     }
603     update_item_bbox(tmpItem);
604     tmpItem = NULL;
605   }
606   if (!strcmp(element_name, "text")) {
607     if (tmpItem == NULL) {
608       *error = xoj_invalid();
609       return;
610     }
611     tmpItem = NULL;
612   }
613 }
614
615 void xoj_parser_text(GMarkupParseContext *context,
616    const gchar *text, gsize text_len, gpointer user_data, GError **error)
617 {
618   const gchar *element_name, *ptr;
619   int n;
620   
621   element_name = g_markup_parse_context_get_element(context);
622   if (element_name == NULL) return;
623   if (!strcmp(element_name, "stroke")) {
624     cleanup_numeric((gchar *)text);
625     ptr = text;
626     n = 0;
627     while (text_len > 0) {
628       realloc_cur_path(n/2 + 1);
629       ui.cur_path.coords[n] = g_ascii_strtod(text, (char **)(&ptr));
630       if (ptr == text) break;
631       text_len -= (ptr - text);
632       text = ptr;
633       if (!finite(ui.cur_path.coords[n])) {
634         if (n>=2) ui.cur_path.coords[n] = ui.cur_path.coords[n-2];
635         else ui.cur_path.coords[n] = 0;
636       }
637       n++;
638     }
639     if (n<4 || n&1 || 
640         (tmpItem->brush.variable_width && (n!=2*ui.cur_path.num_points))) 
641       { *error = xoj_invalid(); return; } // wrong number of points
642     tmpItem->path = gnome_canvas_points_new(n/2);
643     g_memmove(tmpItem->path->coords, ui.cur_path.coords, n*sizeof(double));
644   }
645   if (!strcmp(element_name, "text")) {
646     tmpItem->text = g_malloc(text_len+1);
647     g_memmove(tmpItem->text, text, text_len);
648     tmpItem->text[text_len]=0;
649   }
650 }
651
652 gboolean user_wants_second_chance(char **filename)
653 {
654   GtkWidget *dialog;
655   GtkFileFilter *filt_all, *filt_pdf;
656   GtkResponseType response;
657
658   dialog = gtk_message_dialog_new(GTK_WINDOW(winMain), GTK_DIALOG_MODAL,
659     GTK_MESSAGE_ERROR, GTK_BUTTONS_YES_NO, 
660     _("Could not open background '%s'.\nSelect another file?"),
661     *filename);
662   response = gtk_dialog_run(GTK_DIALOG(dialog));
663   gtk_widget_destroy(dialog);
664   if (response != GTK_RESPONSE_YES) return FALSE;
665   dialog = gtk_file_chooser_dialog_new(_("Open PDF"), GTK_WINDOW (winMain),
666      GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
667      GTK_STOCK_OPEN, GTK_RESPONSE_OK, NULL);
668 #ifdef FILE_DIALOG_SIZE_BUGFIX
669   gtk_window_set_default_size(GTK_WINDOW(dialog), 500, 400);
670 #endif
671   
672   filt_all = gtk_file_filter_new();
673   gtk_file_filter_set_name(filt_all, _("All files"));
674   gtk_file_filter_add_pattern(filt_all, "*");
675   filt_pdf = gtk_file_filter_new();
676   gtk_file_filter_set_name(filt_pdf, _("PDF files"));
677   gtk_file_filter_add_pattern(filt_pdf, "*.pdf");
678   gtk_file_chooser_add_filter(GTK_FILE_CHOOSER (dialog), filt_pdf);
679   gtk_file_chooser_add_filter(GTK_FILE_CHOOSER (dialog), filt_all);
680
681   if (ui.default_path!=NULL) gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER (dialog), ui.default_path);
682
683   if (gtk_dialog_run(GTK_DIALOG(dialog)) != GTK_RESPONSE_OK) {
684     gtk_widget_destroy(dialog);
685     return FALSE;
686   }
687   g_free(*filename);
688   *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
689   gtk_widget_destroy(dialog);
690   return TRUE;    
691 }
692
693 gboolean open_journal(char *filename)
694 {
695   const GMarkupParser parser = { xoj_parser_start_element, 
696                                  xoj_parser_end_element, 
697                                  xoj_parser_text, NULL, NULL};
698   GMarkupParseContext *context;
699   GError *error;
700   GtkWidget *dialog;
701   gboolean valid;
702   gzFile f;
703   char buffer[1000];
704   int len;
705   gchar *tmpfn, *tmpfn2, *p, *q;
706   gboolean maybe_pdf;
707   
708   tmpfn = g_strdup_printf("%s.xoj", filename);
709   if (ui.autoload_pdf_xoj && g_file_test(tmpfn, G_FILE_TEST_EXISTS) &&
710       (g_str_has_suffix(filename, ".pdf") || g_str_has_suffix(filename, ".PDF")))
711   {
712     valid = open_journal(tmpfn);
713     g_free(tmpfn);
714     return valid;
715   }
716   g_free(tmpfn);
717
718   f = gzopen(filename, "r");
719   if (f==NULL) return FALSE;
720   if (filename[0]=='/') {
721     if (ui.default_path != NULL) g_free(ui.default_path);
722     ui.default_path = g_path_get_dirname(filename);
723   }
724   
725   context = g_markup_parse_context_new(&parser, 0, NULL, NULL);
726   valid = TRUE;
727   tmpJournal.npages = 0;
728   tmpJournal.pages = NULL;
729   tmpJournal.last_attach_no = 0;
730   tmpPage = NULL;
731   tmpLayer = NULL;
732   tmpItem = NULL;
733   tmpFilename = filename;
734   error = NULL;
735   tmpBg_pdf = NULL;
736   maybe_pdf = TRUE;
737
738   while (valid && !gzeof(f)) {
739     len = gzread(f, buffer, 1000);
740     if (len<0) valid = FALSE;
741     if (maybe_pdf && len>=4 && !strncmp(buffer, "%PDF", 4))
742       { valid = FALSE; break; } // most likely pdf
743     else maybe_pdf = FALSE;
744     if (len<=0) break;
745     valid = g_markup_parse_context_parse(context, buffer, len, &error);
746   }
747   gzclose(f);
748   if (valid) valid = g_markup_parse_context_end_parse(context, &error);
749   if (tmpJournal.npages == 0) valid = FALSE;
750   g_markup_parse_context_free(context);
751   
752   if (!valid) {
753     delete_journal(&tmpJournal);
754     if (!maybe_pdf) return FALSE;
755     // essentially same as on_fileNewBackground from here on
756     ui.saved = TRUE;
757     close_journal();
758     while (bgpdf.status != STATUS_NOT_INIT) gtk_main_iteration();
759     new_journal();
760     ui.zoom = ui.startup_zoom;
761     gnome_canvas_set_pixels_per_unit(canvas, ui.zoom);
762     update_page_stuff();
763     return init_bgpdf(filename, TRUE, DOMAIN_ABSOLUTE);
764   }
765   
766   ui.saved = TRUE; // force close_journal() to do its job
767   close_journal();
768   g_memmove(&journal, &tmpJournal, sizeof(struct Journal));
769   
770   // if we need to initialize a fresh pdf loader
771   if (tmpBg_pdf!=NULL) { 
772     while (bgpdf.status != STATUS_NOT_INIT) gtk_main_iteration();
773     if (tmpBg_pdf->file_domain == DOMAIN_ATTACH)
774       tmpfn = g_strdup_printf("%s.%s", filename, tmpBg_pdf->filename->s);
775     else
776       tmpfn = g_strdup(tmpBg_pdf->filename->s);
777     valid = init_bgpdf(tmpfn, FALSE, tmpBg_pdf->file_domain);
778     // if file name is invalid: first try in xoj file's directory
779     if (!valid && tmpBg_pdf->file_domain != DOMAIN_ATTACH) {
780       p = g_path_get_dirname(filename);
781       q = g_path_get_basename(tmpfn);
782       tmpfn2 = g_strdup_printf("%s/%s", p, q);
783       g_free(p); g_free(q);
784       valid = init_bgpdf(tmpfn2, FALSE, tmpBg_pdf->file_domain);
785       if (valid) {  // change the file name...
786         printf("substituting %s -> %s\n", tmpfn, tmpfn2);
787         g_free(tmpBg_pdf->filename->s);
788         tmpBg_pdf->filename->s = tmpfn2;
789       }
790       else g_free(tmpfn2);
791     }
792     // if file name is invalid: next prompt user
793     if (!valid && tmpBg_pdf->file_domain != DOMAIN_ATTACH)
794       if (user_wants_second_chance(&tmpfn)) {
795         valid = init_bgpdf(tmpfn, FALSE, tmpBg_pdf->file_domain);
796         if (valid) { // change the file name...
797           g_free(tmpBg_pdf->filename->s);
798           tmpBg_pdf->filename->s = g_strdup(tmpfn);
799         }
800       }
801     if (valid) {
802       refstring_unref(bgpdf.filename);
803       bgpdf.filename = refstring_ref(tmpBg_pdf->filename);
804     } else {
805       dialog = gtk_message_dialog_new(GTK_WINDOW(winMain), GTK_DIALOG_MODAL,
806         GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Could not open background '%s'."),
807         tmpfn);
808       gtk_dialog_run(GTK_DIALOG(dialog));
809       gtk_widget_destroy(dialog);
810     }
811     g_free(tmpfn);
812   }
813   
814   ui.pageno = 0;
815   ui.cur_page = (struct Page *)journal.pages->data;
816   ui.layerno = ui.cur_page->nlayers-1;
817   ui.cur_layer = (struct Layer *)(g_list_last(ui.cur_page->layers)->data);
818   ui.saved = TRUE;
819   ui.zoom = ui.startup_zoom;
820   update_file_name(g_strdup(filename));
821   gnome_canvas_set_pixels_per_unit(canvas, ui.zoom);
822   make_canvas_items();
823   update_page_stuff();
824   rescale_bg_pixmaps(); // this requests the PDF pages if need be
825   gtk_adjustment_set_value(gtk_layout_get_vadjustment(GTK_LAYOUT(canvas)), 0);
826   return TRUE;
827 }
828
829 /************ file backgrounds *************/
830
831 struct Background *attempt_load_pix_bg(char *filename, gboolean attach)
832 {
833   struct Background *bg;
834   GdkPixbuf *pix;
835   
836   pix = gdk_pixbuf_new_from_file(filename, NULL);
837   if (pix == NULL) return NULL;
838   
839   bg = g_new(struct Background, 1);
840   bg->type = BG_PIXMAP;
841   bg->canvas_item = NULL;
842   bg->pixbuf = pix;
843   bg->pixbuf_scale = DEFAULT_ZOOM;
844   if (attach) {
845     bg->filename = new_refstring(NULL);
846     bg->file_domain = DOMAIN_ATTACH;
847   } else {
848     bg->filename = new_refstring(filename);
849     bg->file_domain = DOMAIN_ABSOLUTE;
850   }
851   return bg;
852 }
853
854 #define BUFSIZE 65536 // a reasonable buffer size for reads from gs pipe
855
856 GList *attempt_load_gv_bg(char *filename)
857 {
858   struct Background *bg;
859   GList *bg_list;
860   GdkPixbuf *pix;
861   GdkPixbufLoader *loader;
862   FILE *gs_pipe, *f;
863   unsigned char *buf;
864   char *pipename;
865   int buflen, remnlen, file_pageno;
866   
867   f = fopen(filename, "r");
868   if (f == NULL) return NULL;
869   buf = g_malloc(BUFSIZE); // a reasonable buffer size
870   if (fread(buf, 1, 4, f) !=4 ||
871         (strncmp((char *)buf, "%!PS", 4) && strncmp((char *)buf, "%PDF", 4))) {
872     fclose(f);
873     g_free(buf);
874     return NULL;
875   }
876   
877   fclose(f);
878   pipename = g_strdup_printf(GS_CMDLINE, (double)GS_BITMAP_DPI, filename);
879   gs_pipe = popen(pipename, "r");
880   g_free(pipename);
881   
882   bg_list = NULL;
883   remnlen = 0;
884   file_pageno = 0;
885   loader = NULL;
886   if (gs_pipe!=NULL)
887   while (!feof(gs_pipe)) {
888     if (!remnlen) { // new page: get a BMP header ?
889       buflen = fread(buf, 1, 54, gs_pipe);
890       if (buflen < 6) buflen += fread(buf, 1, 54-buflen, gs_pipe);
891       if (buflen < 6 || buf[0]!='B' || buf[1]!='M') break; // fatal: abort
892       remnlen = (int)(buf[5]<<24) + (buf[4]<<16) + (buf[3]<<8) + (buf[2]);
893       loader = gdk_pixbuf_loader_new();
894     }
895     else buflen = fread(buf, 1, (remnlen < BUFSIZE)?remnlen:BUFSIZE, gs_pipe);
896     remnlen -= buflen;
897     if (buflen == 0) break;
898     if (!gdk_pixbuf_loader_write(loader, buf, buflen, NULL)) break;
899     if (remnlen == 0) { // make a new bg
900       pix = gdk_pixbuf_loader_get_pixbuf(loader);
901       if (pix == NULL) break;
902       gdk_pixbuf_ref(pix);
903       gdk_pixbuf_loader_close(loader, NULL);
904       g_object_unref(loader);
905       loader = NULL;
906       bg = g_new(struct Background, 1);
907       bg->canvas_item = NULL;
908       bg->pixbuf = pix;
909       bg->pixbuf_scale = (GS_BITMAP_DPI/72.0);
910       bg->type = BG_PIXMAP;
911       bg->filename = new_refstring(NULL);
912       bg->file_domain = DOMAIN_ATTACH;
913       file_pageno++;
914       bg_list = g_list_append(bg_list, bg);
915     }
916   }
917   if (loader != NULL) gdk_pixbuf_loader_close(loader, NULL);
918   pclose(gs_pipe);
919   g_free(buf);
920   return bg_list;
921 }
922
923 struct Background *attempt_screenshot_bg(void)
924 {
925   struct Background *bg;
926   GdkPixbuf *pix;
927   XEvent x_event;
928   GdkWindow *window;
929   int x,y,w,h;
930   Window x_root, x_win;
931
932   x_root = gdk_x11_get_default_root_xwindow();
933   
934   if (!XGrabButton(GDK_DISPLAY(), AnyButton, AnyModifier, x_root, 
935       False, ButtonReleaseMask, GrabModeAsync, GrabModeSync, None, None))
936     return NULL;
937
938   XWindowEvent (GDK_DISPLAY(), x_root, ButtonReleaseMask, &x_event);
939   XUngrabButton(GDK_DISPLAY(), AnyButton, AnyModifier, x_root);
940
941   x_win = x_event.xbutton.subwindow;
942   if (x_win == None) x_win = x_root;
943
944   window = gdk_window_foreign_new_for_display(gdk_display_get_default(), x_win);
945     
946   gdk_window_get_geometry(window, &x, &y, &w, &h, NULL);
947   
948   pix = gdk_pixbuf_get_from_drawable(NULL, window,
949     gdk_colormap_get_system(), 0, 0, 0, 0, w, h);
950     
951   if (pix == NULL) return NULL;
952   
953   bg = g_new(struct Background, 1);
954   bg->type = BG_PIXMAP;
955   bg->canvas_item = NULL;
956   bg->pixbuf = pix;
957   bg->pixbuf_scale = DEFAULT_ZOOM;
958   bg->filename = new_refstring(NULL);
959   bg->file_domain = DOMAIN_ATTACH;
960   return bg;
961 }
962
963 /************** pdf annotation ***************/
964
965 /* cancel a request */
966
967 void cancel_bgpdf_request(struct BgPdfRequest *req)
968 {
969   GList *list_link;
970   
971   list_link = g_list_find(bgpdf.requests, req);
972   if (list_link == NULL) return;
973   // remove the request
974   bgpdf.requests = g_list_delete_link(bgpdf.requests, list_link);
975   g_free(req);
976 }
977
978 /* process a bg PDF request from the queue, and recurse */
979
980 gboolean bgpdf_scheduler_callback(gpointer data)
981 {
982   struct BgPdfRequest *req;
983   struct BgPdfPage *bgpg;
984   GdkPixbuf *pixbuf;
985   GtkWidget *dialog;
986   PopplerPage *pdfpage;
987   gdouble height, width;
988   int scaled_height, scaled_width;
989
990   // if all requests have been cancelled, remove ourselves from main loop
991   if (bgpdf.requests == NULL) { bgpdf.pid = 0; return FALSE; }
992   if (bgpdf.status == STATUS_NOT_INIT)
993     { printf("DEBUG: BGPDF not initialized??\n"); bgpdf.pid = 0; return FALSE; }
994
995   req = (struct BgPdfRequest *)bgpdf.requests->data;
996
997   // use poppler to generate the page
998   pixbuf = NULL;
999   pdfpage = poppler_document_get_page(bgpdf.document, req->pageno-1);
1000   if (pdfpage) {
1001 //    printf("DEBUG: Processing request for page %d at %f dpi\n", req->pageno, req->dpi);
1002     set_cursor_busy(TRUE);
1003     poppler_page_get_size(pdfpage, &width, &height);
1004     scaled_width = (int) (req->dpi * width/72);
1005     scaled_height = (int) (req->dpi * height/72);
1006     pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB,
1007                 FALSE, 8, scaled_width, scaled_height);
1008     poppler_page_render_to_pixbuf(
1009                 pdfpage, 0, 0, scaled_width, scaled_height,
1010                 req->dpi/72, 0, pixbuf);
1011     g_object_unref(pdfpage);
1012     set_cursor_busy(FALSE);
1013   }
1014
1015   // process the generated pixbuf...
1016   if (pixbuf != NULL) { // success
1017     while (req->pageno > bgpdf.npages) {
1018       bgpg = g_new(struct BgPdfPage, 1);
1019       bgpg->pixbuf = NULL;
1020       bgpdf.pages = g_list_append(bgpdf.pages, bgpg);
1021       bgpdf.npages++;
1022     }
1023     bgpg = g_list_nth_data(bgpdf.pages, req->pageno-1);
1024     if (bgpg->pixbuf!=NULL) gdk_pixbuf_unref(bgpg->pixbuf);
1025     bgpg->pixbuf = pixbuf;
1026     bgpg->dpi = req->dpi;
1027     bgpg->pixel_height = scaled_height;
1028     bgpg->pixel_width = scaled_width;
1029     bgpdf_update_bg(req->pageno, bgpg); // update all pages that have this bg
1030   } else { // failure
1031     if (!bgpdf.has_failed) {
1032       dialog = gtk_message_dialog_new(GTK_WINDOW(winMain), GTK_DIALOG_MODAL,
1033         GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Unable to render one or more PDF pages."));
1034       gtk_dialog_run(GTK_DIALOG(dialog));
1035       gtk_widget_destroy(dialog);
1036     }
1037     bgpdf.has_failed = TRUE;
1038   }
1039
1040   bgpdf.requests = g_list_delete_link(bgpdf.requests, bgpdf.requests);
1041   if (bgpdf.requests != NULL) return TRUE; // remain in the idle loop
1042   bgpdf.pid = 0;
1043   return FALSE; // we're done
1044 }
1045
1046 /* make a request */
1047
1048 gboolean add_bgpdf_request(int pageno, double zoom)
1049 {
1050   struct BgPdfRequest *req, *cmp_req;
1051   GList *list;
1052
1053   if (bgpdf.status == STATUS_NOT_INIT)
1054     return FALSE; // don't accept requests
1055   req = g_new(struct BgPdfRequest, 1);
1056   req->pageno = pageno;
1057   req->dpi = 72*zoom;
1058 //  printf("DEBUG: Enqueuing request for page %d at %f dpi\n", pageno, req->dpi);
1059
1060   // cancel any request this may supersede
1061   for (list = bgpdf.requests; list != NULL; ) {
1062     cmp_req = (struct BgPdfRequest *)list->data;
1063     list = list->next;
1064     if (cmp_req->pageno == pageno) cancel_bgpdf_request(cmp_req);
1065   }
1066
1067   // make the request
1068   bgpdf.requests = g_list_append(bgpdf.requests, req);
1069   if (!bgpdf.pid) bgpdf.pid = g_idle_add(bgpdf_scheduler_callback, NULL);
1070   return TRUE;
1071 }
1072
1073 /* shutdown the PDF reader */
1074
1075 void shutdown_bgpdf(void)
1076 {
1077   GList *list;
1078   struct BgPdfPage *pdfpg;
1079   struct BgPdfRequest *req;
1080
1081   if (bgpdf.status == STATUS_NOT_INIT) return;
1082   
1083   // cancel all requests and free data structures
1084   refstring_unref(bgpdf.filename);
1085   for (list = bgpdf.pages; list != NULL; list = list->next) {
1086     pdfpg = (struct BgPdfPage *)list->data;
1087     if (pdfpg->pixbuf!=NULL) gdk_pixbuf_unref(pdfpg->pixbuf);
1088     g_free(pdfpg);
1089   }
1090   g_list_free(bgpdf.pages);
1091   for (list = bgpdf.requests; list != NULL; list = list->next) {
1092     req = (struct BgPdfRequest *)list->data;
1093     g_free(req);
1094   }
1095   g_list_free(bgpdf.requests);
1096
1097   if (bgpdf.file_contents!=NULL) {
1098     g_free(bgpdf.file_contents); 
1099     bgpdf.file_contents = NULL;
1100   }
1101   if (bgpdf.document!=NULL) {
1102     g_object_unref(bgpdf.document);
1103     bgpdf.document = NULL;
1104   }
1105
1106   bgpdf.status = STATUS_NOT_INIT;
1107 }
1108
1109
1110 // initialize PDF background rendering 
1111
1112 gboolean init_bgpdf(char *pdfname, gboolean create_pages, int file_domain)
1113 {
1114   int i, n_pages;
1115   struct Background *bg;
1116   struct Page *pg;
1117   PopplerPage *pdfpage;
1118   gdouble width, height;
1119   
1120   if (bgpdf.status != STATUS_NOT_INIT) return FALSE;
1121   
1122   // make a copy of the file in memory and check it's a PDF
1123   if (!g_file_get_contents(pdfname, &(bgpdf.file_contents), &(bgpdf.file_length), NULL))
1124     return FALSE;
1125   if (bgpdf.file_length < 4 || strncmp(bgpdf.file_contents, "%PDF", 4))
1126     { g_free(bgpdf.file_contents); bgpdf.file_contents = NULL; return FALSE; }
1127
1128   // init bgpdf data structures and open poppler document
1129   bgpdf.status = STATUS_READY;
1130   bgpdf.filename = new_refstring((file_domain == DOMAIN_ATTACH) ? "bg.pdf" : pdfname);
1131   bgpdf.file_domain = file_domain;
1132   bgpdf.npages = 0;
1133   bgpdf.pages = NULL;
1134   bgpdf.requests = NULL;
1135   bgpdf.pid = 0;
1136   bgpdf.has_failed = FALSE;
1137
1138   bgpdf.document = poppler_document_new_from_data(bgpdf.file_contents, bgpdf.file_length, NULL, NULL);
1139   if (bgpdf.document == NULL) shutdown_bgpdf();
1140   
1141   if (pdfname[0]=='/' && ui.filename == NULL) {
1142     if (ui.default_path!=NULL) g_free(ui.default_path);
1143     ui.default_path = g_path_get_dirname(pdfname);
1144   }
1145
1146   if (!create_pages) return TRUE; // we're done
1147   
1148   // create pages with correct sizes if requested
1149   n_pages = poppler_document_get_n_pages(bgpdf.document);
1150   for (i=1; i<=n_pages; i++) {
1151     pdfpage = poppler_document_get_page(bgpdf.document, i-1);
1152     if (!pdfpage) continue;
1153     if (journal.npages < i) {
1154       bg = g_new(struct Background, 1);
1155       bg->canvas_item = NULL;
1156       pg = NULL;
1157     } else {
1158       pg = (struct Page *)g_list_nth_data(journal.pages, i-1);
1159       bg = pg->bg;
1160     }
1161     bg->type = BG_PDF;
1162     bg->filename = refstring_ref(bgpdf.filename);
1163     bg->file_domain = bgpdf.file_domain;
1164     bg->file_page_seq = i;
1165     bg->pixbuf = NULL;
1166     bg->pixbuf_scale = 0;
1167     poppler_page_get_size(pdfpage, &width, &height);
1168     g_object_unref(pdfpage);
1169     if (pg == NULL) {
1170       pg = new_page_with_bg(bg, width, height);
1171       journal.pages = g_list_append(journal.pages, pg);
1172       journal.npages++;
1173     } else {
1174       pg->width = width; 
1175       pg->height = height;
1176       make_page_clipbox(pg);
1177       update_canvas_bg(pg);
1178     }
1179   }
1180   update_page_stuff();
1181   rescale_bg_pixmaps(); // this actually requests the pages !!
1182   return TRUE;
1183 }
1184
1185
1186 // look for all journal pages with given pdf bg, and update their bg pixmaps
1187 void bgpdf_update_bg(int pageno, struct BgPdfPage *bgpg)
1188 {
1189   GList *list;
1190   struct Page *pg;
1191   
1192   for (list = journal.pages; list!= NULL; list = list->next) {
1193     pg = (struct Page *)list->data;
1194     if (pg->bg->type == BG_PDF && pg->bg->file_page_seq == pageno) {
1195       if (pg->bg->pixbuf!=NULL) gdk_pixbuf_unref(pg->bg->pixbuf);
1196       pg->bg->pixbuf = gdk_pixbuf_ref(bgpg->pixbuf);
1197       pg->bg->pixel_width = bgpg->pixel_width;
1198       pg->bg->pixel_height = bgpg->pixel_height;
1199       update_canvas_bg(pg);
1200     }
1201   }
1202 }
1203
1204 // initialize the recent files list
1205 void init_mru(void)
1206 {
1207   int i;
1208   gsize lfptr;
1209   char s[5];
1210   GIOChannel *f;
1211   gchar *str;
1212   GIOStatus status;
1213   
1214   g_strlcpy(s, "mru0", 5);
1215   for (s[3]='0', i=0; i<MRU_SIZE; s[3]++, i++) {
1216     ui.mrumenu[i] = GET_COMPONENT(s);
1217     ui.mru[i] = NULL;
1218   }
1219   f = g_io_channel_new_file(ui.mrufile, "r", NULL);
1220   if (f) status = G_IO_STATUS_NORMAL;
1221   else status = G_IO_STATUS_ERROR;
1222   i = 0;
1223   while (status == G_IO_STATUS_NORMAL && i<MRU_SIZE) {
1224     lfptr = 0;
1225     status = g_io_channel_read_line(f, &str, NULL, &lfptr, NULL);
1226     if (status == G_IO_STATUS_NORMAL && lfptr>0) {
1227       str[lfptr] = 0;
1228       ui.mru[i] = str;
1229       i++;
1230     }
1231   }
1232   if (f) {
1233     g_io_channel_shutdown(f, FALSE, NULL);
1234     g_io_channel_unref(f);
1235   }
1236   update_mru_menu();
1237 }
1238
1239 void update_mru_menu(void)
1240 {
1241   int i;
1242   gboolean anyone = FALSE;
1243   gchar *tmp;
1244   
1245   for (i=0; i<MRU_SIZE; i++) {
1246     if (ui.mru[i]!=NULL) {
1247       tmp = g_strdup_printf("_%d %s", i+1,
1248                g_strjoinv("__", g_strsplit_set(g_basename(ui.mru[i]),"_",-1)));
1249       gtk_label_set_text_with_mnemonic(GTK_LABEL(gtk_bin_get_child(GTK_BIN(ui.mrumenu[i]))),
1250           tmp);
1251       g_free(tmp);
1252       gtk_widget_show(ui.mrumenu[i]);
1253       anyone = TRUE;
1254     }
1255     else gtk_widget_hide(ui.mrumenu[i]);
1256   }
1257   gtk_widget_set_sensitive(GET_COMPONENT("fileRecentFiles"), anyone);
1258 }
1259
1260 void new_mru_entry(char *name)
1261 {
1262   int i, j;
1263   
1264   for (i=0;i<MRU_SIZE;i++) 
1265     if (ui.mru[i]!=NULL && !strcmp(ui.mru[i], name)) {
1266       g_free(ui.mru[i]);
1267       for (j=i+1; j<MRU_SIZE; j++) ui.mru[j-1] = ui.mru[j];
1268       ui.mru[MRU_SIZE-1]=NULL;
1269     }
1270   if (ui.mru[MRU_SIZE-1]!=NULL) g_free(ui.mru[MRU_SIZE-1]);
1271   for (j=MRU_SIZE-1; j>=1; j--) ui.mru[j] = ui.mru[j-1];
1272   ui.mru[0] = g_strdup(name);
1273   update_mru_menu();
1274 }
1275
1276 void delete_mru_entry(int which)
1277 {
1278   int i;
1279   
1280   if (ui.mru[which]!=NULL) g_free(ui.mru[which]);
1281   for (i=which+1;i<MRU_SIZE;i++) 
1282     ui.mru[i-1] = ui.mru[i];
1283   ui.mru[MRU_SIZE-1] = NULL;
1284   update_mru_menu();
1285 }
1286
1287 void save_mru_list(void)
1288 {
1289   FILE *f;
1290   int i;
1291   
1292   f = fopen(ui.mrufile, "w");
1293   if (f==NULL) return;
1294   for (i=0; i<MRU_SIZE; i++)
1295     if (ui.mru[i]!=NULL) fprintf(f, "%s\n", ui.mru[i]);
1296   fclose(f);
1297 }
1298
1299 void init_config_default(void)
1300 {
1301   int i, j;
1302
1303   DEFAULT_ZOOM = DISPLAY_DPI_DEFAULT/72.0;
1304   ui.zoom = ui.startup_zoom = 1.0*DEFAULT_ZOOM;
1305   ui.default_page.height = 792.0;
1306   ui.default_page.width = 612.0;
1307   ui.default_page.bg->type = BG_SOLID;
1308   ui.default_page.bg->color_no = COLOR_WHITE;
1309   ui.default_page.bg->color_rgba = predef_bgcolors_rgba[COLOR_WHITE];
1310   ui.default_page.bg->ruling = RULING_LINED;
1311   ui.view_continuous = TRUE;
1312   ui.allow_xinput = TRUE;
1313   ui.discard_corepointer = FALSE;
1314   ui.left_handed = FALSE;
1315   ui.shorten_menus = FALSE;
1316   ui.shorten_menu_items = g_strdup(DEFAULT_SHORTEN_MENUS);
1317   ui.auto_save_prefs = FALSE;
1318   ui.bg_apply_all_pages = FALSE;
1319   ui.use_erasertip = FALSE;
1320   ui.window_default_width = 720;
1321   ui.window_default_height = 480;
1322   ui.maximize_at_start = FALSE;
1323   ui.fullscreen = FALSE;
1324   ui.scrollbar_step_increment = 30;
1325   ui.zoom_step_increment = 1;
1326   ui.zoom_step_factor = 1.5;
1327   ui.progressive_bg = TRUE;
1328   ui.print_ruling = TRUE;
1329   ui.default_unit = UNIT_CM;
1330   ui.default_path = NULL;
1331   ui.default_font_name = g_strdup(DEFAULT_FONT);
1332   ui.default_font_size = DEFAULT_FONT_SIZE;
1333   ui.pressure_sensitivity = FALSE;
1334   ui.width_minimum_multiplier = 0.0;
1335   ui.width_maximum_multiplier = 1.25;
1336   ui.button_switch_mapping = FALSE;
1337   ui.autoload_pdf_xoj = FALSE;
1338   
1339   // the default UI vertical order
1340   ui.vertical_order[0][0] = 1; 
1341   ui.vertical_order[0][1] = 2; 
1342   ui.vertical_order[0][2] = 3; 
1343   ui.vertical_order[0][3] = 0; 
1344   ui.vertical_order[0][4] = 4;
1345   ui.vertical_order[1][0] = 2;
1346   ui.vertical_order[1][1] = 3;
1347   ui.vertical_order[1][2] = 0;
1348   ui.vertical_order[1][3] = ui.vertical_order[1][4] = -1;
1349
1350   ui.toolno[0] = ui.startuptool = TOOL_PEN;
1351   for (i=1; i<=NUM_BUTTONS; i++) {
1352     ui.toolno[i] = TOOL_ERASER;
1353   }
1354   for (i=0; i<=NUM_BUTTONS; i++)
1355     ui.linked_brush[i] = BRUSH_LINKED;
1356   ui.brushes[0][TOOL_PEN].color_no = COLOR_BLACK;
1357   ui.brushes[0][TOOL_ERASER].color_no = COLOR_WHITE;
1358   ui.brushes[0][TOOL_HIGHLIGHTER].color_no = COLOR_YELLOW;
1359   for (i=0; i < NUM_STROKE_TOOLS; i++) {
1360     ui.brushes[0][i].thickness_no = THICKNESS_MEDIUM;
1361     ui.brushes[0][i].tool_options = 0;
1362     ui.brushes[0][i].ruler = FALSE;
1363     ui.brushes[0][i].recognizer = FALSE;
1364     ui.brushes[0][i].variable_width = FALSE;
1365   }
1366   for (i=0; i< NUM_STROKE_TOOLS; i++)
1367     for (j=1; j<=NUM_BUTTONS; j++)
1368       g_memmove(&(ui.brushes[j][i]), &(ui.brushes[0][i]), sizeof(struct Brush));
1369
1370   // predef_thickness is already initialized as a global variable
1371   GS_BITMAP_DPI = 144;
1372   PDFTOPPM_PRINTING_DPI = 150;
1373   
1374   ui.hiliter_opacity = 0.5;
1375   
1376 #if GTK_CHECK_VERSION(2,10,0)
1377   ui.print_settings = NULL;
1378 #endif
1379   
1380 }
1381
1382 #if GLIB_CHECK_VERSION(2,6,0)
1383
1384 void update_keyval(const gchar *group_name, const gchar *key,
1385                 const gchar *comment, gchar *value)
1386 {
1387   gboolean has_it = g_key_file_has_key(ui.config_data, group_name, key, NULL);
1388   cleanup_numeric(value);
1389   g_key_file_set_value(ui.config_data, group_name, key, value);
1390   g_free(value);
1391   if (!has_it) g_key_file_set_comment(ui.config_data, group_name, key, comment, NULL);
1392 }
1393
1394 #endif
1395
1396 const char *vorder_usernames[VBOX_MAIN_NITEMS+1] = 
1397   {"drawarea", "menu", "main_toolbar", "pen_toolbar", "statusbar", NULL};
1398   
1399 gchar *verbose_vertical_order(int *order)
1400 {
1401   gchar buf[80], *p; // longer than needed
1402   int i;
1403
1404   p = buf;  
1405   for (i=0; i<VBOX_MAIN_NITEMS; i++) {
1406     if (order[i]<0 || order[i]>=VBOX_MAIN_NITEMS) continue;
1407     if (p!=buf) *(p++) = ' ';
1408     p = g_stpcpy(p, vorder_usernames[order[i]]);
1409   }
1410   return g_strdup(buf);
1411 }
1412
1413 void save_config_to_file(void)
1414 {
1415   gchar *buf;
1416   FILE *f;
1417
1418 #if GLIB_CHECK_VERSION(2,6,0)
1419   // no support for keyval files before Glib 2.6.0
1420   if (glib_minor_version<6) return; 
1421
1422   // save some data...
1423   ui.maximize_at_start = (gdk_window_get_state(winMain->window) & GDK_WINDOW_STATE_MAXIMIZED);
1424   if (!ui.maximize_at_start && !ui.fullscreen)
1425     gdk_drawable_get_size(winMain->window, 
1426       &ui.window_default_width, &ui.window_default_height);
1427
1428   update_keyval("general", "display_dpi",
1429     _(" the display resolution, in pixels per inch"),
1430     g_strdup_printf("%.2f", DEFAULT_ZOOM*72));
1431   update_keyval("general", "initial_zoom",
1432     _(" the initial zoom level, in percent"),
1433     g_strdup_printf("%.2f", 100*ui.zoom/DEFAULT_ZOOM));
1434   update_keyval("general", "window_maximize",
1435     _(" maximize the window at startup (true/false)"),
1436     g_strdup(ui.maximize_at_start?"true":"false"));
1437   update_keyval("general", "window_fullscreen",
1438     _(" start in full screen mode (true/false)"),
1439     g_strdup(ui.fullscreen?"true":"false"));
1440   update_keyval("general", "window_width",
1441     _(" the window width in pixels (when not maximized)"),
1442     g_strdup_printf("%d", ui.window_default_width));
1443   update_keyval("general", "window_height",
1444     _(" the window height in pixels"),
1445     g_strdup_printf("%d", ui.window_default_height));
1446   update_keyval("general", "scrollbar_speed",
1447     _(" scrollbar step increment (in pixels)"),
1448     g_strdup_printf("%d", ui.scrollbar_step_increment));
1449   update_keyval("general", "zoom_dialog_increment",
1450     _(" the step increment in the zoom dialog box"),
1451     g_strdup_printf("%d", ui.zoom_step_increment));
1452   update_keyval("general", "zoom_step_factor",
1453     _(" the multiplicative factor for zoom in/out"),
1454     g_strdup_printf("%.3f", ui.zoom_step_factor));
1455   update_keyval("general", "view_continuous",
1456     _(" document view (true = continuous, false = single page)"),
1457     g_strdup(ui.view_continuous?"true":"false"));
1458   update_keyval("general", "use_xinput",
1459     _(" use XInput extensions (true/false)"),
1460     g_strdup(ui.allow_xinput?"true":"false"));
1461   update_keyval("general", "discard_corepointer",
1462     _(" discard Core Pointer events in XInput mode (true/false)"),
1463     g_strdup(ui.discard_corepointer?"true":"false"));
1464   update_keyval("general", "use_erasertip",
1465     _(" always map eraser tip to eraser (true/false)"),
1466     g_strdup(ui.use_erasertip?"true":"false"));
1467   update_keyval("general", "buttons_switch_mappings",
1468     _(" buttons 2 and 3 switch mappings instead of drawing (useful for some tablets) (true/false)"),
1469     g_strdup(ui.button_switch_mapping?"true":"false"));
1470   update_keyval("general", "autoload_pdf_xoj",
1471     _(" automatically load filename.pdf.xoj instead of filename.pdf (true/false)"),
1472     g_strdup(ui.autoload_pdf_xoj?"true":"false"));
1473   update_keyval("general", "default_path",
1474     _(" default path for open/save (leave blank for current directory)"),
1475     g_strdup((ui.default_path!=NULL)?ui.default_path:""));
1476   update_keyval("general", "pressure_sensitivity",
1477      _(" use pressure sensitivity to control pen stroke width (true/false)"),
1478      g_strdup(ui.pressure_sensitivity?"true":"false"));
1479   update_keyval("general", "width_minimum_multiplier",
1480      _(" minimum width multiplier"),
1481      g_strdup_printf("%.2f", ui.width_minimum_multiplier));
1482   update_keyval("general", "width_maximum_multiplier",
1483      _(" maximum width multiplier"),
1484      g_strdup_printf("%.2f", ui.width_maximum_multiplier));
1485   update_keyval("general", "interface_order",
1486     _(" interface components from top to bottom\n valid values: drawarea menu main_toolbar pen_toolbar statusbar"),
1487     verbose_vertical_order(ui.vertical_order[0]));
1488   update_keyval("general", "interface_fullscreen",
1489     _(" interface components in fullscreen mode, from top to bottom"),
1490     verbose_vertical_order(ui.vertical_order[1]));
1491   update_keyval("general", "interface_lefthanded",
1492     _(" interface has left-handed scrollbar (true/false)"),
1493     g_strdup(ui.left_handed?"true":"false"));
1494   update_keyval("general", "shorten_menus",
1495     _(" hide some unwanted menu or toolbar items (true/false)"),
1496     g_strdup(ui.shorten_menus?"true":"false"));
1497   update_keyval("general", "shorten_menu_items",
1498     _(" interface items to hide (customize at your own risk!)\n see source file xo-interface.c for a list of item names"),
1499     g_strdup(ui.shorten_menu_items));
1500   update_keyval("general", "highlighter_opacity",
1501     _(" highlighter opacity (0 to 1, default 0.5)\n warning: opacity level is not saved in xoj files!"),
1502     g_strdup_printf("%.2f", ui.hiliter_opacity));
1503   update_keyval("general", "autosave_prefs",
1504     _(" auto-save preferences on exit (true/false)"),
1505     g_strdup(ui.auto_save_prefs?"true":"false"));
1506
1507   update_keyval("paper", "width",
1508     _(" the default page width, in points (1/72 in)"),
1509     g_strdup_printf("%.2f", ui.default_page.width));
1510   update_keyval("paper", "height",
1511     _(" the default page height, in points (1/72 in)"),
1512     g_strdup_printf("%.2f", ui.default_page.height));
1513   update_keyval("paper", "color",
1514     _(" the default paper color"),
1515     (ui.default_page.bg->color_no>=0)?
1516     g_strdup(bgcolor_names[ui.default_page.bg->color_no]):
1517     g_strdup_printf("#%08x", ui.default_page.bg->color_rgba));
1518   update_keyval("paper", "style",
1519     _(" the default paper style (plain, lined, ruled, or graph)"),
1520     g_strdup(bgstyle_names[ui.default_page.bg->ruling]));
1521   update_keyval("paper", "apply_all",
1522     _(" apply paper style changes to all pages (true/false)"),
1523     g_strdup(ui.bg_apply_all_pages?"true":"false"));
1524   update_keyval("paper", "default_unit",
1525     _(" preferred unit (cm, in, px, pt)"),
1526     g_strdup(unit_names[ui.default_unit]));
1527   update_keyval("paper", "print_ruling",
1528     _(" include paper ruling when printing or exporting to PDF (true/false)"),
1529     g_strdup(ui.print_ruling?"true":"false"));
1530   update_keyval("paper", "progressive_bg",
1531     _(" just-in-time update of page backgrounds (true/false)"),
1532     g_strdup(ui.progressive_bg?"true":"false"));
1533   update_keyval("paper", "gs_bitmap_dpi",
1534     _(" bitmap resolution of PS/PDF backgrounds rendered using ghostscript (dpi)"),
1535     g_strdup_printf("%d", GS_BITMAP_DPI));
1536   update_keyval("paper", "pdftoppm_printing_dpi",
1537     _(" bitmap resolution of PDF backgrounds when printing with libgnomeprint (dpi)"),
1538     g_strdup_printf("%d", PDFTOPPM_PRINTING_DPI));
1539
1540   update_keyval("tools", "startup_tool",
1541     _(" selected tool at startup (pen, eraser, highlighter, selectrect, vertspace, hand)"),
1542     g_strdup(tool_names[ui.startuptool]));
1543   update_keyval("tools", "pen_color",
1544     _(" default pen color"),
1545     (ui.default_brushes[TOOL_PEN].color_no>=0)?
1546     g_strdup(color_names[ui.default_brushes[TOOL_PEN].color_no]):
1547     g_strdup_printf("#%08x", ui.default_brushes[TOOL_PEN].color_rgba));
1548   update_keyval("tools", "pen_thickness",
1549     _(" default pen thickness (fine = 1, medium = 2, thick = 3)"),
1550     g_strdup_printf("%d", ui.default_brushes[TOOL_PEN].thickness_no));
1551   update_keyval("tools", "pen_ruler",
1552     _(" default pen is in ruler mode (true/false)"),
1553     g_strdup(ui.default_brushes[TOOL_PEN].ruler?"true":"false"));
1554   update_keyval("tools", "pen_recognizer",
1555     _(" default pen is in shape recognizer mode (true/false)"),
1556     g_strdup(ui.default_brushes[TOOL_PEN].recognizer?"true":"false"));
1557   update_keyval("tools", "eraser_thickness",
1558     _(" default eraser thickness (fine = 1, medium = 2, thick = 3)"),
1559     g_strdup_printf("%d", ui.default_brushes[TOOL_ERASER].thickness_no));
1560   update_keyval("tools", "eraser_mode",
1561     _(" default eraser mode (standard = 0, whiteout = 1, strokes = 2)"),
1562     g_strdup_printf("%d", ui.default_brushes[TOOL_ERASER].tool_options));
1563   update_keyval("tools", "highlighter_color",
1564     _(" default highlighter color"),
1565     (ui.default_brushes[TOOL_HIGHLIGHTER].color_no>=0)?
1566     g_strdup(color_names[ui.default_brushes[TOOL_HIGHLIGHTER].color_no]):
1567     g_strdup_printf("#%08x", ui.default_brushes[TOOL_HIGHLIGHTER].color_rgba));
1568   update_keyval("tools", "highlighter_thickness",
1569     _(" default highlighter thickness (fine = 1, medium = 2, thick = 3)"),
1570     g_strdup_printf("%d", ui.default_brushes[TOOL_HIGHLIGHTER].thickness_no));
1571   update_keyval("tools", "highlighter_ruler",
1572     _(" default highlighter is in ruler mode (true/false)"),
1573     g_strdup(ui.default_brushes[TOOL_HIGHLIGHTER].ruler?"true":"false"));
1574   update_keyval("tools", "highlighter_recognizer",
1575     _(" default highlighter is in shape recognizer mode (true/false)"),
1576     g_strdup(ui.default_brushes[TOOL_HIGHLIGHTER].recognizer?"true":"false"));
1577   update_keyval("tools", "btn2_tool",
1578     _(" button 2 tool (pen, eraser, highlighter, text, selectrect, vertspace, hand)"),
1579     g_strdup(tool_names[ui.toolno[1]]));
1580   update_keyval("tools", "btn2_linked",
1581     _(" button 2 brush linked to primary brush (true/false) (overrides all other settings)"),
1582     g_strdup((ui.linked_brush[1]==BRUSH_LINKED)?"true":"false"));
1583   update_keyval("tools", "btn2_color",
1584     _(" button 2 brush color (for pen or highlighter only)"),
1585     (ui.toolno[1]<NUM_STROKE_TOOLS)?
1586       ((ui.brushes[1][ui.toolno[1]].color_no>=0)?
1587        g_strdup(color_names[ui.brushes[1][ui.toolno[1]].color_no]):
1588        g_strdup_printf("#%08x", ui.brushes[1][ui.toolno[1]].color_rgba)):
1589       g_strdup("white"));
1590   update_keyval("tools", "btn2_thickness",
1591     _(" button 2 brush thickness (pen, eraser, or highlighter only)"),
1592     g_strdup_printf("%d", (ui.toolno[1]<NUM_STROKE_TOOLS)?
1593                             ui.brushes[1][ui.toolno[1]].thickness_no:0));
1594   update_keyval("tools", "btn2_ruler",
1595     _(" button 2 ruler mode (true/false) (for pen or highlighter only)"),
1596     g_strdup(((ui.toolno[1]<NUM_STROKE_TOOLS)?
1597               ui.brushes[1][ui.toolno[1]].ruler:FALSE)?"true":"false"));
1598   update_keyval("tools", "btn2_recognizer",
1599     _(" button 2 shape recognizer mode (true/false) (pen or highlighter only)"),
1600     g_strdup(((ui.toolno[1]<NUM_STROKE_TOOLS)?
1601               ui.brushes[1][ui.toolno[1]].recognizer:FALSE)?"true":"false"));
1602   update_keyval("tools", "btn2_erasermode",
1603     _(" button 2 eraser mode (eraser only)"),
1604     g_strdup_printf("%d", ui.brushes[1][TOOL_ERASER].tool_options));
1605   update_keyval("tools", "btn3_tool",
1606     _(" button 3 tool (pen, eraser, highlighter, text, selectrect, vertspace, hand)"),
1607     g_strdup(tool_names[ui.toolno[2]]));
1608   update_keyval("tools", "btn3_linked",
1609     _(" button 3 brush linked to primary brush (true/false) (overrides all other settings)"),
1610     g_strdup((ui.linked_brush[2]==BRUSH_LINKED)?"true":"false"));
1611   update_keyval("tools", "btn3_color",
1612     _(" button 3 brush color (for pen or highlighter only)"),
1613     (ui.toolno[2]<NUM_STROKE_TOOLS)?
1614       ((ui.brushes[2][ui.toolno[2]].color_no>=0)?
1615        g_strdup(color_names[ui.brushes[2][ui.toolno[2]].color_no]):
1616        g_strdup_printf("#%08x", ui.brushes[2][ui.toolno[2]].color_rgba)):
1617       g_strdup("white"));
1618   update_keyval("tools", "btn3_thickness",
1619     _(" button 3 brush thickness (pen, eraser, or highlighter only)"),
1620     g_strdup_printf("%d", (ui.toolno[2]<NUM_STROKE_TOOLS)?
1621                             ui.brushes[2][ui.toolno[2]].thickness_no:0));
1622   update_keyval("tools", "btn3_ruler",
1623     _(" button 3 ruler mode (true/false) (for pen or highlighter only)"),
1624     g_strdup(((ui.toolno[2]<NUM_STROKE_TOOLS)?
1625               ui.brushes[2][ui.toolno[2]].ruler:FALSE)?"true":"false"));
1626   update_keyval("tools", "btn3_recognizer",
1627     _(" button 3 shape recognizer mode (true/false) (pen or highlighter only)"),
1628     g_strdup(((ui.toolno[2]<NUM_STROKE_TOOLS)?
1629               ui.brushes[2][ui.toolno[2]].recognizer:FALSE)?"true":"false"));
1630   update_keyval("tools", "btn3_erasermode",
1631     _(" button 3 eraser mode (eraser only)"),
1632     g_strdup_printf("%d", ui.brushes[2][TOOL_ERASER].tool_options));
1633
1634   update_keyval("tools", "pen_thicknesses",
1635     _(" thickness of the various pens (in points, 1 pt = 1/72 in)"),
1636     g_strdup_printf("%.2f;%.2f;%.2f;%.2f;%.2f", 
1637       predef_thickness[TOOL_PEN][0], predef_thickness[TOOL_PEN][1],
1638       predef_thickness[TOOL_PEN][2], predef_thickness[TOOL_PEN][3],
1639       predef_thickness[TOOL_PEN][4]));
1640   update_keyval("tools", "eraser_thicknesses",
1641     _(" thickness of the various erasers (in points, 1 pt = 1/72 in)"),
1642     g_strdup_printf("%.2f;%.2f;%.2f", 
1643       predef_thickness[TOOL_ERASER][1], predef_thickness[TOOL_ERASER][2],
1644       predef_thickness[TOOL_ERASER][3]));
1645   update_keyval("tools", "highlighter_thicknesses",
1646     _(" thickness of the various highlighters (in points, 1 pt = 1/72 in)"),
1647     g_strdup_printf("%.2f;%.2f;%.2f", 
1648       predef_thickness[TOOL_HIGHLIGHTER][1], predef_thickness[TOOL_HIGHLIGHTER][2],
1649       predef_thickness[TOOL_HIGHLIGHTER][3]));
1650   update_keyval("tools", "default_font",
1651     _(" name of the default font"),
1652     g_strdup(ui.default_font_name));
1653   update_keyval("tools", "default_font_size",
1654     _(" default font size"),
1655     g_strdup_printf("%.1f", ui.default_font_size));
1656
1657   buf = g_key_file_to_data(ui.config_data, NULL, NULL);
1658   if (buf == NULL) return;
1659   f = fopen(ui.configfile, "w");
1660   if (f==NULL) { g_free(buf); return; }
1661   fputs(buf, f);
1662   fclose(f);
1663   g_free(buf);
1664 #endif
1665 }
1666
1667 #if GLIB_CHECK_VERSION(2,6,0)
1668 gboolean parse_keyval_float(const gchar *group, const gchar *key, double *val, double inf, double sup)
1669 {
1670   gchar *ret, *end;
1671   double conv;
1672   
1673   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1674   if (ret==NULL) return FALSE;
1675   conv = g_ascii_strtod(ret, &end);
1676   if (*end!=0) { g_free(ret); return FALSE; }
1677   g_free(ret);
1678   if (conv < inf || conv > sup) return FALSE;
1679   *val = conv;
1680   return TRUE;
1681 }
1682
1683 gboolean parse_keyval_floatlist(const gchar *group, const gchar *key, double *val, int n, double inf, double sup)
1684 {
1685   gchar *ret, *end;
1686   double conv[5];
1687   int i;
1688
1689   if (n>5) return FALSE;
1690   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1691   if (ret==NULL) return FALSE;
1692   end = ret;
1693   for (i=0; i<n; i++) {
1694     conv[i] = g_ascii_strtod(end, &end);
1695     if ((i==n-1 && *end!=0) || (i<n-1 && *end!=';') ||
1696         (conv[i] < inf) || (conv[i] > sup)) { g_free(ret); return FALSE; }
1697     end++;
1698   }
1699   g_free(ret);
1700   for (i=0; i<n; i++) val[i] = conv[i];
1701   return TRUE;
1702 }
1703
1704 gboolean parse_keyval_int(const gchar *group, const gchar *key, int *val, int inf, int sup)
1705 {
1706   gchar *ret, *end;
1707   int conv;
1708   
1709   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1710   if (ret==NULL) return FALSE;
1711   conv = strtol(ret, &end, 10);
1712   if (*end!=0) { g_free(ret); return FALSE; }
1713   g_free(ret);
1714   if (conv < inf || conv > sup) return FALSE;
1715   *val = conv;
1716   return TRUE;
1717 }
1718
1719 gboolean parse_keyval_enum(const gchar *group, const gchar *key, int *val, const char **names, int n)
1720 {
1721   gchar *ret;
1722   int i;
1723   
1724   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1725   if (ret==NULL) return FALSE;
1726   for (i=0; i<n; i++) {
1727     if (!names[i][0]) continue; // "" is for invalid values
1728     if (!g_ascii_strcasecmp(ret, names[i]))
1729       { *val = i; g_free(ret); return TRUE; }
1730   }
1731   return FALSE;
1732 }
1733
1734 gboolean parse_keyval_enum_color(const gchar *group, const gchar *key, int *val, guint *val_rgba, 
1735                                  const char **names, const guint *predef_rgba, int n)
1736 {
1737   gchar *ret;
1738   int i;
1739   
1740   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1741   if (ret==NULL) return FALSE;
1742   for (i=0; i<n; i++) {
1743     if (!names[i][0]) continue; // "" is for invalid values
1744     if (!g_ascii_strcasecmp(ret, names[i]))
1745       { *val = i; *val_rgba = predef_rgba[i]; g_free(ret); return TRUE; }
1746   }
1747   if (ret[0]=='#') {
1748     *val = COLOR_OTHER;
1749     *val_rgba = strtoul(ret+1, NULL, 16);
1750     g_free(ret);
1751     return TRUE;
1752   }
1753   return FALSE;
1754 }
1755
1756 gboolean parse_keyval_boolean(const gchar *group, const gchar *key, gboolean *val)
1757 {
1758   gchar *ret;
1759   
1760   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1761   if (ret==NULL) return FALSE;
1762   if (!g_ascii_strcasecmp(ret, "true")) 
1763     { *val = TRUE; g_free(ret); return TRUE; }
1764   if (!g_ascii_strcasecmp(ret, "false")) 
1765     { *val = FALSE; g_free(ret); return TRUE; }
1766   g_free(ret);
1767   return FALSE;
1768 }
1769
1770 gboolean parse_keyval_string(const gchar *group, const gchar *key, gchar **val)
1771 {
1772   gchar *ret;
1773   
1774   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1775   if (ret==NULL) return FALSE;
1776   if (strlen(ret) == 0) {
1777     *val = NULL;
1778     g_free(ret);
1779   } 
1780   else *val = ret;
1781   return TRUE;
1782 }
1783
1784 gboolean parse_keyval_vorderlist(const gchar *group, const gchar *key, int *order)
1785 {
1786   gchar *ret, *p;
1787   int tmp[VBOX_MAIN_NITEMS];
1788   int i, n, l;
1789
1790   ret = g_key_file_get_value(ui.config_data, group, key, NULL);
1791   if (ret==NULL) return FALSE;
1792   
1793   for (i=0; i<VBOX_MAIN_NITEMS; i++) tmp[i] = -1;
1794   n = 0; p = ret;
1795   while (*p==' ') p++;
1796   while (*p!=0) {
1797     if (n>VBOX_MAIN_NITEMS) return FALSE; // too many items
1798     for (i=0; i<VBOX_MAIN_NITEMS; i++) {
1799       if (!g_str_has_prefix(p, vorder_usernames[i])) continue;
1800       l = strlen(vorder_usernames[i]);
1801       if (p[l]==' '||p[l]==0) { p+=l; break; }
1802     }
1803     if (i>=VBOX_MAIN_NITEMS) { g_free(ret); return FALSE; } // parse error
1804     // we found item #i
1805     tmp[n++] = i;
1806     while (*p==' ') p++;
1807   }
1808   
1809   for (n=0; n<VBOX_MAIN_NITEMS; n++) order[n] = tmp[n];
1810   g_free(ret);
1811   return TRUE;
1812 }
1813
1814 #endif
1815
1816 void load_config_from_file(void)
1817 {
1818   double f;
1819   gboolean b;
1820   int i, j;
1821   gchar *str;
1822   
1823 #if GLIB_CHECK_VERSION(2,6,0)
1824   // no support for keyval files before Glib 2.6.0
1825   if (glib_minor_version<6) return; 
1826   ui.config_data = g_key_file_new();
1827   if (!g_key_file_load_from_file(ui.config_data, ui.configfile, 
1828          G_KEY_FILE_KEEP_COMMENTS, NULL)) {
1829     g_key_file_free(ui.config_data);
1830     ui.config_data = g_key_file_new();
1831     g_key_file_set_comment(ui.config_data, NULL, NULL, 
1832          _(" Xournal configuration file.\n"
1833            " This file is generated automatically upon saving preferences.\n"
1834            " Use caution when editing this file manually.\n"), NULL);
1835     return;
1836   }
1837
1838   // parse keys from the keyfile to set defaults
1839   if (parse_keyval_float("general", "display_dpi", &f, 10., 500.))
1840     DEFAULT_ZOOM = f/72.0;
1841   if (parse_keyval_float("general", "initial_zoom", &f, 
1842               MIN_ZOOM*100/DEFAULT_ZOOM, MAX_ZOOM*100/DEFAULT_ZOOM))
1843     ui.zoom = ui.startup_zoom = DEFAULT_ZOOM*f/100.0;
1844   parse_keyval_boolean("general", "window_maximize", &ui.maximize_at_start);
1845   parse_keyval_boolean("general", "window_fullscreen", &ui.fullscreen);
1846   parse_keyval_int("general", "window_width", &ui.window_default_width, 10, 5000);
1847   parse_keyval_int("general", "window_height", &ui.window_default_height, 10, 5000);
1848   parse_keyval_int("general", "scrollbar_speed", &ui.scrollbar_step_increment, 1, 5000);
1849   parse_keyval_int("general", "zoom_dialog_increment", &ui.zoom_step_increment, 1, 500);
1850   parse_keyval_float("general", "zoom_step_factor", &ui.zoom_step_factor, 1., 5.);
1851   parse_keyval_boolean("general", "view_continuous", &ui.view_continuous);
1852   parse_keyval_boolean("general", "use_xinput", &ui.allow_xinput);
1853   parse_keyval_boolean("general", "discard_corepointer", &ui.discard_corepointer);
1854   parse_keyval_boolean("general", "use_erasertip", &ui.use_erasertip);
1855   parse_keyval_boolean("general", "buttons_switch_mappings", &ui.button_switch_mapping);
1856   parse_keyval_boolean("general", "autoload_pdf_xoj", &ui.autoload_pdf_xoj);
1857   parse_keyval_string("general", "default_path", &ui.default_path);
1858   parse_keyval_boolean("general", "pressure_sensitivity", &ui.pressure_sensitivity);
1859   parse_keyval_float("general", "width_minimum_multiplier", &ui.width_minimum_multiplier, 0., 10.);
1860   parse_keyval_float("general", "width_maximum_multiplier", &ui.width_maximum_multiplier, 0., 10.);
1861
1862   parse_keyval_vorderlist("general", "interface_order", ui.vertical_order[0]);
1863   parse_keyval_vorderlist("general", "interface_fullscreen", ui.vertical_order[1]);
1864   parse_keyval_boolean("general", "interface_lefthanded", &ui.left_handed);
1865   parse_keyval_boolean("general", "shorten_menus", &ui.shorten_menus);
1866   if (parse_keyval_string("general", "shorten_menu_items", &str))
1867     if (str!=NULL) { g_free(ui.shorten_menu_items); ui.shorten_menu_items = str; }
1868   parse_keyval_float("general", "highlighter_opacity", &ui.hiliter_opacity, 0., 1.);
1869   parse_keyval_boolean("general", "autosave_prefs", &ui.auto_save_prefs);
1870   
1871   parse_keyval_float("paper", "width", &ui.default_page.width, 1., 5000.);
1872   parse_keyval_float("paper", "height", &ui.default_page.height, 1., 5000.);
1873   parse_keyval_enum_color("paper", "color", 
1874      &(ui.default_page.bg->color_no), &(ui.default_page.bg->color_rgba), 
1875      bgcolor_names, predef_bgcolors_rgba, COLOR_MAX);
1876   parse_keyval_enum("paper", "style", &(ui.default_page.bg->ruling), bgstyle_names, 4);
1877   parse_keyval_boolean("paper", "apply_all", &ui.bg_apply_all_pages);
1878   parse_keyval_enum("paper", "default_unit", &ui.default_unit, unit_names, 4);
1879   parse_keyval_boolean("paper", "progressive_bg", &ui.progressive_bg);
1880   parse_keyval_boolean("paper", "print_ruling", &ui.print_ruling);
1881   parse_keyval_int("paper", "gs_bitmap_dpi", &GS_BITMAP_DPI, 1, 1200);
1882   parse_keyval_int("paper", "pdftoppm_printing_dpi", &PDFTOPPM_PRINTING_DPI, 1, 1200);
1883
1884   parse_keyval_enum("tools", "startup_tool", &ui.startuptool, tool_names, NUM_TOOLS);
1885   ui.toolno[0] = ui.startuptool;
1886   parse_keyval_enum_color("tools", "pen_color", 
1887      &(ui.brushes[0][TOOL_PEN].color_no), &(ui.brushes[0][TOOL_PEN].color_rgba),
1888      color_names, predef_colors_rgba, COLOR_MAX);
1889   parse_keyval_int("tools", "pen_thickness", &(ui.brushes[0][TOOL_PEN].thickness_no), 0, 4);
1890   parse_keyval_boolean("tools", "pen_ruler", &(ui.brushes[0][TOOL_PEN].ruler));
1891   parse_keyval_boolean("tools", "pen_recognizer", &(ui.brushes[0][TOOL_PEN].recognizer));
1892   parse_keyval_int("tools", "eraser_thickness", &(ui.brushes[0][TOOL_ERASER].thickness_no), 1, 3);
1893   parse_keyval_int("tools", "eraser_mode", &(ui.brushes[0][TOOL_ERASER].tool_options), 0, 2);
1894   parse_keyval_enum_color("tools", "highlighter_color", 
1895      &(ui.brushes[0][TOOL_HIGHLIGHTER].color_no), &(ui.brushes[0][TOOL_HIGHLIGHTER].color_rgba),
1896      color_names, predef_colors_rgba, COLOR_MAX);
1897   parse_keyval_int("tools", "highlighter_thickness", &(ui.brushes[0][TOOL_HIGHLIGHTER].thickness_no), 0, 4);
1898   parse_keyval_boolean("tools", "highlighter_ruler", &(ui.brushes[0][TOOL_HIGHLIGHTER].ruler));
1899   parse_keyval_boolean("tools", "highlighter_recognizer", &(ui.brushes[0][TOOL_HIGHLIGHTER].recognizer));
1900   ui.brushes[0][TOOL_PEN].variable_width = ui.pressure_sensitivity;
1901   for (i=0; i< NUM_STROKE_TOOLS; i++)
1902     for (j=1; j<=NUM_BUTTONS; j++)
1903       g_memmove(&(ui.brushes[j][i]), &(ui.brushes[0][i]), sizeof(struct Brush));
1904
1905   parse_keyval_enum("tools", "btn2_tool", &(ui.toolno[1]), tool_names, NUM_TOOLS);
1906   if (parse_keyval_boolean("tools", "btn2_linked", &b))
1907     ui.linked_brush[1] = b?BRUSH_LINKED:BRUSH_STATIC;
1908   parse_keyval_enum("tools", "btn3_tool", &(ui.toolno[2]), tool_names, NUM_TOOLS);
1909   if (parse_keyval_boolean("tools", "btn3_linked", &b))
1910     ui.linked_brush[2] = b?BRUSH_LINKED:BRUSH_STATIC;
1911   if (ui.linked_brush[1]!=BRUSH_LINKED) {
1912     if (ui.toolno[1]==TOOL_PEN || ui.toolno[1]==TOOL_HIGHLIGHTER) {
1913       parse_keyval_boolean("tools", "btn2_ruler", &(ui.brushes[1][ui.toolno[1]].ruler));
1914       parse_keyval_boolean("tools", "btn2_recognizer", &(ui.brushes[1][ui.toolno[1]].recognizer));
1915       parse_keyval_enum_color("tools", "btn2_color", 
1916          &(ui.brushes[1][ui.toolno[1]].color_no), &(ui.brushes[1][ui.toolno[1]].color_rgba), 
1917          color_names, predef_colors_rgba, COLOR_MAX);
1918     }
1919     if (ui.toolno[1]<NUM_STROKE_TOOLS)
1920       parse_keyval_int("tools", "btn2_thickness", &(ui.brushes[1][ui.toolno[1]].thickness_no), 0, 4);
1921     if (ui.toolno[1]==TOOL_ERASER)
1922       parse_keyval_int("tools", "btn2_erasermode", &(ui.brushes[1][TOOL_ERASER].tool_options), 0, 2);
1923   }
1924   if (ui.linked_brush[2]!=BRUSH_LINKED) {
1925     if (ui.toolno[2]==TOOL_PEN || ui.toolno[2]==TOOL_HIGHLIGHTER) {
1926       parse_keyval_boolean("tools", "btn3_ruler", &(ui.brushes[2][ui.toolno[2]].ruler));
1927       parse_keyval_boolean("tools", "btn3_recognizer", &(ui.brushes[2][ui.toolno[2]].recognizer));
1928       parse_keyval_enum_color("tools", "btn3_color", 
1929          &(ui.brushes[2][ui.toolno[2]].color_no), &(ui.brushes[2][ui.toolno[2]].color_rgba), 
1930          color_names, predef_colors_rgba, COLOR_MAX);
1931     }
1932     if (ui.toolno[2]<NUM_STROKE_TOOLS)
1933       parse_keyval_int("tools", "btn3_thickness", &(ui.brushes[2][ui.toolno[2]].thickness_no), 0, 4);
1934     if (ui.toolno[2]==TOOL_ERASER)
1935       parse_keyval_int("tools", "btn3_erasermode", &(ui.brushes[2][TOOL_ERASER].tool_options), 0, 2);
1936   }
1937   parse_keyval_floatlist("tools", "pen_thicknesses", predef_thickness[TOOL_PEN], 5, 0.01, 1000.0);
1938   parse_keyval_floatlist("tools", "eraser_thicknesses", predef_thickness[TOOL_ERASER]+1, 3, 0.01, 1000.0);
1939   parse_keyval_floatlist("tools", "highlighter_thicknesses", predef_thickness[TOOL_HIGHLIGHTER]+1, 3, 0.01, 1000.0);
1940   if (parse_keyval_string("tools", "default_font", &str))
1941     if (str!=NULL) { g_free(ui.default_font_name); ui.default_font_name = str; }
1942   parse_keyval_float("tools", "default_font_size", &ui.default_font_size, 1., 200.);
1943 #endif
1944 }