]> git.lyx.org Git - lyx.git/blob - src/insets/figinset.C
4e4bea58d2043b1af74b76b7ffdc5ee93513ac3e
[lyx.git] / src / insets / figinset.C
1 /*
2  *      figinset.C - part of LyX project
3  */
4
5 extern int      reverse_video;
6 extern long int background_pixels;
7
8 /*  Rework of path-handling (Matthias 04.07.1996 )
9  * ------------------------------------------------
10  *   figinsets keep an absolute path to the eps-file.
11  *   For the user alway a relative path appears
12  *   (in lyx-file, latex-file and edit-popup).
13  *   To calculate this relative path the path to the
14  *   document where the figinset is in is needed. 
15  *   This is done by a reference to the buffer, called
16  *   figinset::cbuffer. To be up to date the cbuffer
17  *   is sometimes set to the current buffer 
18  *   bufferlist.current(), when it can be assumed that
19  *   this operation happens in the current buffer. 
20  *   This is true for InsetFig::Edit(...), 
21  *   InsetFig::InsetFig(...), InsetFig::Read(...),
22  *   InsetFig::Write and InsetFig::Latex(...).
23  *   Therefore the bufferlist has to make sure that
24  *   during these operations bufferlist.current() 
25  *   returns the buffer where the figinsets are in.
26  *   This made few changes in buffer.C necessary.
27  *
28  * The above is not totally valid anymore. (Lgb)
29  */
30
31
32 #include <config.h>
33
34 #include <unistd.h>
35 #include <csignal>
36 #include <sys/wait.h>
37
38 #include FORMS_H_LOCATION
39 #include <cstdlib>
40 #include <cctype>
41 #include <cmath>
42 #include <fstream>
43 using std::ofstream;
44
45 #include "figinset.h"
46 #include "lyx.h"
47 #include "lyx_main.h"
48 #include "buffer.h"
49 #include "filedlg.h"
50 #include "support/filetools.h"
51 #include "LyXView.h" // just because of form_main
52 #include "debug.h"
53 #include "lyxdraw.h"
54 #include "LaTeXFeatures.h"
55 #include "lyxrc.h"
56 #include "gettext.h"
57 #include "lyx_gui_misc.h" // CancelCloseBoxCB
58 #include "support/FileInfo.h"
59
60 extern BufferView * current_view;
61 #if 0
62 static volatile bool alarmed;
63 #endif
64 extern FL_OBJECT * figinset_canvas;
65 #if 0
66 //inline
67 extern "C" void waitalarm(int)
68 {
69         alarmed = true;
70 }
71 #endif
72
73 extern char ** environ; // is this only redundtant on linux systems? Lgb.
74 extern void UpdateInset(Inset * inset, bool mark_dirty = true);
75 // better for asyncron updating:
76 void PutInsetIntoInsetUpdateList(Inset * inset);
77 extern void ProhibitInput();
78 extern void AllowInput();
79
80 static float const DEG2PI = 57.295779513;
81 static int const figallocchunk = 32;
82
83 static int figinsref = 0;       /* number of figures */
84 static int figarrsize = 0;      /* current max number of figures */
85 static int bmpinsref = 0;       /* number of bitmaps */
86 static int bmparrsize = 0;      /* current max number of bitmaps */
87
88 struct queue {
89         float rx, ry;           /* resolution x and y */
90         int ofsx, ofsy;         /* x and y translation */
91         figdata * data;         /* we are doing it for this data */
92         queue * next;           /* next item in queue */
93 };
94
95 struct pidwait {
96         int pid;                /* pid to wait for */
97         pidwait * next; /* next */
98 };
99
100 static int const MAXGS = 3;                     /* maximum 3 gs's at a time */
101
102 static Figref ** figures;       /* all the figures */
103 static figdata ** bitmaps;      /* all the bitmaps */
104 static queue * gsqueue = 0;     /* queue for ghostscripting */
105 static int gsrunning = 0;       /* currently so many gs's are running */
106 static bool bitmap_waiting = false; /* bitmaps are waiting finished */
107 static char bittable[256];      /* bit reversion table */
108
109 static bool gs_color;                   // do we allocate colors for gs?
110 static bool color_visual;               // is the visual color?
111 static bool gs_xcolor = false;          // allocated extended colors
112 static unsigned long gs_pixels[128];    // allocated pixels
113 static int gs_num_pixels;               // number of pixels allocated
114 static int gs_spc;                      // shades per color
115 static bool gs_gray;                    // is grayscale?
116 static int gs_allcolors;                // number of all colors
117
118 static pidwait * pw = 0;                // pid wait list
119
120
121 extern Colormap color_map;
122
123 void addpidwait(int pid)
124 {
125         // adds pid to pid wait list
126         register pidwait * p = new pidwait;
127
128         p->pid = pid;
129         p->next = pw;
130         pw = p;
131
132         if (lyxerr.debugging()) {
133                 lyxerr << "Pids to wait for: " << p->pid << endl;
134                 while (p->next) {
135                         p = p->next;
136                         lyxerr << p->pid << endl;
137                 }
138         }
139 }
140
141
142 extern "C" int GhostscriptMsg(FL_OBJECT *, Window, int, int,
143                               XEvent * ev, void *)
144 {
145         char tmp[128];
146
147         XClientMessageEvent * e = reinterpret_cast<XClientMessageEvent*>(ev);
148
149         if(lyxerr.debugging()) {
150                 lyxerr << "ClientMessage, win:[xx] gs:[" << e->data.l[0]
151                        << "] pm:[" << e->data.l[1] << "]" << endl;
152         }
153
154         // just kill gs, that way it will work for sure
155         // This loop looks like S**T so it probably is...
156         for (int i = 0; i < bmpinsref; ++i)
157                 if ((long)bitmaps[i]->bitmap == (long)e->data.l[1]) {
158                         // found the one
159                         figdata * p = bitmaps[i];
160                         p->gsdone = true;
161
162                         // first update p->bitmap, if necessary
163                         if (p->bitmap != None
164                             && p->flags > (1|8) && gs_color && p->wid) {
165                                 // query current colormap and re-render
166                                 // the pixmap with proper colors
167                                 //XColor * cmap;
168                                 XWindowAttributes wa;
169                                 register XImage * im;
170                                 int i, y, wid1, spc1 = gs_spc-1,
171                                         spc2 = gs_spc * gs_spc, wid = p->wid,
172                                         forkstat;
173                                 Display * tmpdisp;
174                                 GC gc = getGC(gc_copy);
175
176                                 XGetWindowAttributes(fl_display,
177                                                      fl_get_canvas_id(
178                                                              figinset_canvas),
179                                                      &wa);
180                                 XFlush(fl_display);
181                                 if (lyxerr.debugging()) {
182                                         lyxerr << "Starting image translation "
183                                                << p->bitmap << " "
184                                                << p->flags << " "
185                                                << p->wid << "x" << p->hgh
186                                                << " " << wa.depth
187                                                << " " << XYPixmap << endl;
188                                 }
189                                 // now fork rendering process
190                                 forkstat = fork();
191                                 if (forkstat == -1) {
192                                         lyxerr.debug()
193                                                 << "Cannot fork, using slow "
194                                                 "method for pixmap translation." << endl;
195                                         tmpdisp = fl_display;
196                                 } else if (forkstat > 0) {
197                                         // register child
198                                         if (lyxerr.debugging()) {
199                                                 lyxerr << "Spawned child "
200                                                        << forkstat << endl;
201                                         }
202                                         addpidwait(forkstat);
203                                         break; // in parent process
204                                 } else {
205                                         tmpdisp = XOpenDisplay(XDisplayName(0));
206                                         XFlush(tmpdisp);
207                                 }
208                                 im = XGetImage(tmpdisp, p->bitmap, 0, 0,
209                                                p->wid, p->hgh, (1<<wa.depth)-1, XYPixmap);
210                                 XFlush(tmpdisp);
211                                 if (lyxerr.debugging()) {
212                                         lyxerr << "Got the image" << endl;
213                                 }
214                                 if (!im) {
215                                         if (lyxerr.debugging()) {
216                                                 lyxerr << "Error getting the image" << endl;
217                                         }
218                                         goto noim;
219                                 }
220                                 {
221                                 // query current colormap
222                                 //cmap = (XColor *) malloc(gs_allcolors*sizeof(XColor));
223                                         XColor * cmap = new XColor[gs_allcolors];
224                                         for (i = 0; i < gs_allcolors; ++i) cmap[i].pixel = i;
225                                         XQueryColors(tmpdisp, color_map, cmap, gs_allcolors);
226                                         XFlush(tmpdisp);
227                                         wid1 = p->wid - 1;
228                                 // now we process all the image
229                                         for (y = 0; y < p->hgh; ++y) {
230                                                 for (int x = 0; x < wid; ++x) {
231                                                         XColor * pc = cmap +
232                                                                 XGetPixel(im, x, y);
233                                                         XFlush(tmpdisp);
234                                                         XPutPixel(im, x, y,
235                                                                   gs_pixels[((pc->red+6553)*
236                                                                              spc1/65535)*spc2+((pc->green+6553)*
237                                                                                                spc1/65535)*gs_spc+((pc->blue+6553)*
238                                                                                                                    spc1/65535)]);
239                                                         XFlush(tmpdisp);
240                                                 }
241                                         }
242                                 // This must be correct.
243                                         delete [] cmap;
244                                         if (lyxerr.debugging()) {
245                                                 lyxerr << "Putting image back"
246                                                        << endl;
247                                         }
248                                         XPutImage(tmpdisp, p->bitmap,
249                                                   gc, im, 0, 0,
250                                                   0, 0, p->wid, p->hgh);
251                                         XDestroyImage(im);
252                                         if (lyxerr.debugging()) {
253                                                 lyxerr << "Done translation"
254                                                        << endl;
255                                         }
256                                 }
257                           noim:
258                                 if (lyxerr.debugging()) {
259                                         lyxerr << "Killing gs " 
260                                                << p->gspid << endl;
261                                 }
262                                 kill(p->gspid, SIGHUP);
263
264                                 sprintf(tmp, "%s/~lyxgs%d.ps",
265                                         system_tempdir.c_str(), 
266                                         p->gspid);
267                                 unlink(tmp);
268                                 if (forkstat == 0) {
269                                         XCloseDisplay(tmpdisp);
270                                         _exit(0);
271                                 }
272                         } else {
273                                 if (lyxerr.debugging()) {
274                                         lyxerr << "Killing gs " 
275                                                << p->gspid << endl;
276                                 }
277                                 kill(p->gspid, SIGHUP);
278
279                                 sprintf(tmp, "%s/~lyxgs%d.ps", 
280                                         system_tempdir.c_str(),
281                                         p->gspid);
282                                 unlink(tmp);
283                         }
284                         break;
285                 }
286         return 0;
287 }
288
289
290 static void AllocColors(int num)
291 // allocate color cube numxnumxnum, if possible
292 {
293         if (lyxerr.debugging()) {
294                 lyxerr << "Allocating color cube " << num
295                        << 'x' << num << 'x' << num << endl;
296         }
297
298         if (num <= 1) {
299                 lyxerr << "Error allocating color colormap." << endl;
300                 gs_color = false;
301                 return;
302         }
303         if (num > 5) num = 5;
304         XColor xcol;
305         for (int i = 0; i < num * num * num; ++i) {
306                 xcol.red = 65535 * (i / (num * num)) / (num - 1);
307                 xcol.green = 65535 * ((i / num) % num) / (num - 1);
308                 xcol.blue = 65535 * (i % num) / (num - 1);
309                 xcol.flags = DoRed | DoGreen | DoBlue;
310                 if (!XAllocColor(fl_display, color_map, &xcol)) {
311                         if (i) XFreeColors(fl_display, color_map,
312                                            gs_pixels, i, 0);
313                         if(lyxerr.debugging()) {
314                                 lyxerr << "Cannot allocate color cube "
315                                        << num << endl;;
316                         }
317                         AllocColors(num - 1);
318                         return;
319                 }
320                 gs_pixels[i] = xcol.pixel;
321         }
322         gs_color = true;
323         gs_gray = false;
324         gs_spc = num;
325         gs_num_pixels = num * num * num;
326 }
327
328
329 // allocate grayscale ramp
330 static
331 void AllocGrays(int num)
332 {
333         if (lyxerr.debugging()) {
334                 lyxerr << "Allocating grayscale colormap "
335                        << num << endl;
336         }
337
338         if (num < 4) {
339                 lyxerr << "Error allocating grayscale colormap." << endl;
340                 gs_color = false;
341                 return;
342         }
343         if (num > 128) num = 128;
344         XColor xcol;
345         for (int i = 0; i < num; ++i) {
346                 xcol.red = xcol.green = xcol.blue = 65535 * i / (num - 1);
347                 xcol.flags = DoRed | DoGreen | DoBlue;
348                 if (!XAllocColor(fl_display, color_map, &xcol)) {
349                         if (i) XFreeColors(fl_display, color_map,
350                                            gs_pixels, i, 0);
351                         if (lyxerr.debugging()) {
352                                 lyxerr << "Cannot allocate grayscale " 
353                                        << num << endl;
354                         }
355                         AllocGrays(num / 2);
356                         return;
357                 }
358                 gs_pixels[i] = xcol.pixel;
359         }
360         gs_color = true;
361         gs_gray = false;
362         gs_num_pixels = num;
363 }
364
365
366 void InitFigures()
367 {
368         bmparrsize = figarrsize = figallocchunk;
369         figures = static_cast<Figref**>
370                 (malloc(sizeof(Figref*) * figallocchunk));
371         bitmaps = static_cast<figdata**>
372                 (malloc(sizeof(figdata*) * figallocchunk));
373
374         unsigned int k;
375         for (unsigned int i = 0; i < 256; ++i) {
376                 k = 0;
377                 for (unsigned int j = 0; j < 8; ++j)
378                         if (i & (1 << (7-j))) k |= 1 << j;
379                 bittable[i] = char(~k);
380         }
381
382         fl_add_canvas_handler(figinset_canvas, ClientMessage,
383                               GhostscriptMsg, current_view->owner()->getMainForm());
384
385         // now we have to init color_map
386         if (!color_map) color_map = DefaultColormap(fl_display,
387                                                     DefaultScreen(fl_display));
388         // allocate color cube on pseudo-color display
389         // first get visual
390         gs_color = false;
391
392         Visual * vi = DefaultVisual(fl_display, DefaultScreen(fl_display));
393         if (lyxerr.debugging()) {
394                 printf("Visual ID: %ld, class: %d, bprgb: %d, mapsz: %d\n", 
395                        vi->visualid, vi->c_class, 
396                        vi->bits_per_rgb, vi->map_entries);
397         }
398         color_visual = ( (vi->c_class == StaticColor) ||
399                          (vi->c_class == PseudoColor) ||
400                          (vi->c_class == TrueColor) ||
401                          (vi->c_class == DirectColor) );
402         if ((vi->c_class & 1) == 0) return;
403         // now allocate colors
404         if (vi->c_class == GrayScale) {
405                 // allocate grayscale
406                 AllocGrays(vi->map_entries/2);
407         } else {
408                 // allocate normal color
409                 int i = 5;
410                 while (i * i * i * 2 > vi->map_entries) --i;
411                 AllocColors(i);
412         }
413         gs_allcolors = vi->map_entries;
414 }
415
416
417 void DoneFigures()
418 {
419         free(figures);
420         free(bitmaps);
421         figarrsize = 0;
422         bmparrsize = 0;
423
424         lyxerr.debug() << "Unregistering figures..." << endl;
425
426         fl_remove_canvas_handler(figinset_canvas, ClientMessage,
427                                  GhostscriptMsg);
428
429         if (gs_color) {
430                 lyxerr.debug() << "Freeing up the colors..." << endl;
431                 XFreeColors(fl_display, color_map, gs_pixels,
432                             gs_num_pixels, 0);
433                 /******????????????????? what's planes in this case ??????***/
434         }
435 }
436
437
438 int FindBmpIndex(figdata * tmpdata)
439 {
440         int i = 0;
441         while (i < bmpinsref) {
442                 if (bitmaps[i] == tmpdata) return i;
443                 ++i;
444         }
445         return i;
446 }
447
448
449 static void chpixmap(Pixmap, int, int)
450 {
451 #if 0
452         Display * tempdisp = XOpenDisplay(XDisplayName(0));
453
454         // here read the pixmap and change all colors to those we
455         // have allocated
456
457         XCloseDisplay(tempdisp);
458 #endif
459 }
460
461
462 static void freefigdata(figdata * tmpdata)
463 {
464         tmpdata->ref--;
465         if (tmpdata->ref) return;
466
467         if (tmpdata->gspid > 0) {
468                 int pid = tmpdata->gspid;
469                 char buf[128];
470                 // change Pixmap according to our allocated colormap
471                 chpixmap(tmpdata->bitmap, tmpdata->wid, tmpdata->hgh);
472                 // kill ghostscript and unlink it's files
473                 tmpdata->gspid = -1;
474                 kill(pid, SIGKILL);
475                 sprintf(buf, "%s/~lyxgs%d.ps", system_tempdir.c_str(), pid);
476                 unlink(buf);
477         }
478
479         if (tmpdata->bitmap) XFreePixmap(fl_display, tmpdata->bitmap);
480         delete tmpdata;
481         int i = FindBmpIndex(tmpdata);
482         --bmpinsref;
483         while (i < bmpinsref) {
484                 bitmaps[i] = bitmaps[i + 1];
485                 ++i;
486         }
487 }
488
489
490 static void runqueue()
491 {
492         // run queued requests for ghostscript, if any
493         if (!gsrunning && gs_color && !gs_xcolor) {
494                 // here alloc all colors, so that gs will use only
495                 // those we allocated for it
496                 // *****
497                 gs_xcolor = true;
498         }
499         
500         while (gsrunning < MAXGS) {
501                 char tbuf[384], tbuf2[80];
502                 Atom * prop;
503                 int nprop, i;
504
505                 if (!gsqueue) {
506                         if (!gsrunning && gs_xcolor) {
507                                 // de-allocate rest of colors
508                                 // *****
509                                 gs_xcolor = false;
510                         }
511                         return;
512                 }
513                 queue * p = gsqueue;
514
515                 if (!p->data) {
516                         delete p;
517                         continue;
518                 }
519
520                 int pid = fork();
521                 
522                 if (pid == -1) {
523                         if (lyxerr.debugging()) {
524                                 lyxerr << "GS start error! Cannot fork."
525                                        << endl;
526                         }
527                         p->data->broken = true;
528                         p->data->reading = false;
529                         return;
530                 }
531                 if (pid == 0) { // child
532                         char ** env, rbuf[80], gbuf[40];
533                         int ne = 0;
534                         Display * tempdisp = XOpenDisplay(XDisplayName(0));
535
536                         // create translation file
537                         sprintf(tbuf, "%s/~lyxgs%d.ps", system_tempdir.c_str(),
538                                 int(getpid()));
539                         
540                         ofstream ofs(tbuf);
541                         ofs << "gsave clippath pathbbox grestore\n"
542                             << "4 dict begin\n"
543                             << "/ury exch def /urx exch def /lly exch def "
544                                 "/llx exch def\n"
545                             << p->data->wid / 2.0 << " "
546                             << p->data->hgh / 2.0 << " translate\n"
547                             << p->data->angle << " rotate\n"
548                             << -(p->data->raw_wid / 2.0) << " "
549                             << -(p->data->raw_hgh / 2.0) << " translate\n"
550                             << p->rx / 72.0 << " " << p->ry / 72.0
551                             << " scale\n"
552                             << -p->ofsx << " " << -p->ofsy << " translate\n"
553                             << "end" << endl;
554                         ofs.close(); // Don't remove this.
555
556                         // gs process - set ghostview environment first
557                         sprintf(tbuf2, "GHOSTVIEW=%ld %ld", fl_get_canvas_id(
558                                 figinset_canvas), p->data->bitmap);
559
560                         // now set up ghostview property on a window
561                         sprintf(tbuf, "0 0 0 0 %d %d 72 72 0 0 0 0",
562                                 p->data->wid, p->data->hgh);
563                         // #warning BUG seems that the only bug here
564                         // might be the hardcoded dpi.. Bummer!
565                         
566                         if (lyxerr.debugging()) {
567                                 lyxerr << "Will set GHOSTVIEW property to ["
568                                        << tbuf << "]" << endl;
569                         }
570                         // wait until property is deleted if executing multiple
571                         // ghostscripts
572                         for (;;) {
573                                 // grab server to prevent other child
574                                 // interfering with setting GHOSTVIEW property
575                                 if (lyxerr.debugging()) {
576                                         lyxerr << "Grabbing the server"
577                                                << endl;
578                                 }
579                                 XGrabServer(tempdisp);
580                                 prop = XListProperties(tempdisp,
581                                                        fl_get_canvas_id(
582                                         figinset_canvas), &nprop);
583                                 if (!prop) break;
584
585                                 bool err = true;
586                                 for (i = 0; i < nprop; ++i) {
587                                         char * p = XGetAtomName(tempdisp,
588                                                                 prop[i]);
589                                         if (strcmp(p, "GHOSTVIEW") == 0) {
590                                                 err = false;
591                                                 break;
592                                         }
593                                         XFree(p);
594                                 }
595                                 XFree(reinterpret_cast<char *>(prop)); // jc:
596                                 if (err) break;
597                                 // release the server
598                                 XUngrabServer(tempdisp);
599                                 XFlush(tempdisp);
600                                 // ok, property found, we must wait until
601                                 // ghostscript deletes it
602                                 if (lyxerr.debugging()) {
603                                         lyxerr << "Releasing the server\n["
604                                                << getpid()
605                                                << "] GHOSTVIEW property"
606                                                 " found. Waiting." << endl;
607                                 }
608 #if 0
609 #ifdef WITH_WARNINGS
610 #warning What is this doing? (wouldn't a sleep(1); work too?')
611 #endif
612                                 alarm(1);
613                                 alarmed = false;
614                                 signal(SIGALRM, waitalarm);
615                                 while (!alarmed) pause();
616 #else
617                                 sleep(1);
618 #endif
619                         }
620
621                         XChangeProperty(tempdisp, 
622                                         fl_get_canvas_id(figinset_canvas),
623                                         XInternAtom(tempdisp, "GHOSTVIEW", false),
624                                         XInternAtom(tempdisp, "STRING", false),
625                                         8, PropModeAppend, 
626                                         reinterpret_cast<unsigned char*>(tbuf),
627                                         strlen(tbuf));
628                         
629                         switch (p->data->flags & 3) {
630                         case 0: tbuf[0] = 'H'; break; // Hidden
631                         case 1: tbuf[0] = 'M'; break; // Mono
632                         case 2: tbuf[0] = 'G'; break; // Gray
633                         case 3:
634                                 if (color_visual) 
635                                         tbuf[0] = 'C'; // Color
636                                 else 
637                                         tbuf[0] = 'G'; // Gray
638                                 break;
639                         }
640
641                         if (reverse_video) {
642                                 sprintf(tbuf+1, " %ld %ld", WhitePixelOfScreen(
643                                         DefaultScreenOfDisplay(fl_display)),
644                                         background_pixels);
645                         } else {
646                                 sprintf(tbuf+1, " %ld %ld", BlackPixelOfScreen(
647                                         DefaultScreenOfDisplay(fl_display)),
648                                         background_pixels);
649                         }
650
651                         XChangeProperty(tempdisp, 
652                                         fl_get_canvas_id(figinset_canvas),
653                                         XInternAtom(tempdisp,
654                                                     "GHOSTVIEW_COLORS", false),
655                                         XInternAtom(tempdisp, "STRING", false),
656                                         8, PropModeReplace, 
657                                         reinterpret_cast<unsigned char*>(tbuf),
658                                         strlen(tbuf));
659                         XUngrabServer(tempdisp);
660                         XFlush(tempdisp);
661                         if (lyxerr.debugging()) {
662                                 lyxerr << "Releasing the server" << endl;
663                         }
664                         XCloseDisplay(tempdisp);
665
666                         // set up environment
667                         while (environ[ne]) ++ne;
668                         env = static_cast<char **>
669                                 (malloc(sizeof(char*) * (ne + 2)));
670                         env[0] = tbuf2;
671                         memcpy(&env[1], environ, sizeof(char*) * (ne + 1));
672                         environ = env;
673
674                         // now make gs command
675                         // close(0);
676                         // close(1); do NOT close. If GS writes out
677                         // errors it would hang. (Matthias 290596) 
678                         sprintf(rbuf, "-r%gx%g", p->rx, p->ry);
679                         sprintf(gbuf, "-g%dx%d", p->data->wid, p->data->hgh);
680                         // now chdir into dir with .eps file, to be on the safe
681                         // side
682                         chdir(OnlyPath(p->data->fname).c_str());
683                         // make temp file name
684                         sprintf(tbuf, "%s/~lyxgs%d.ps", system_tempdir.c_str(),
685                                 int(getpid()));
686                         if (lyxerr.debugging()) {
687                                 lyxerr << "starting gs " << tbuf << " "
688                                        << p->data->fname
689                                        << ", pid: " << getpid() << endl;
690                         }
691
692                         int err = execlp(lyxrc->ps_command.c_str(), 
693                                          lyxrc->ps_command.c_str(), 
694                                          "-sDEVICE=x11",
695                                          "-dNOPAUSE", "-dQUIET",
696                                          "-dSAFER", 
697                                          rbuf, gbuf, tbuf, 
698                                          p->data->fname.c_str(), 
699                                          "showpage.ps", "quit.ps", "-", 0);
700                         // if we are still there, an error occurred.
701                         lyxerr << "Error executing ghostscript. "
702                                << "Code: " << err << endl;
703                         lyxerr.debug() << "Cmd: " 
704                                        << lyxrc->ps_command
705                                        << " -sDEVICE=x11 "
706                                        << tbuf << ' '
707                                        << p->data->fname << endl;
708                         _exit(0);       // no gs?
709                 }
710                 // normal process (parent)
711                 if (lyxerr.debugging()) {
712                         lyxerr << "GS ["  << pid << "] started" << endl;
713                 }
714                 gsqueue = gsqueue->next;
715                 gsrunning++;
716                 p->data->gspid = pid;
717                 delete p;
718         }
719 }
720
721
722 static void addwait(int psx, int psy, int pswid, int pshgh, figdata * data)
723 {
724         // recompute the stuff and put in the queue
725         queue * p = new queue;
726         p->ofsx = psx;
727         p->ofsy = psy;
728         p->rx = (float(data->raw_wid) * 72.0) / pswid;
729         p->ry = (float(data->raw_hgh) * 72.0) / pshgh;
730
731         p->data = data;
732         p->next = 0;
733
734         // now put into queue
735         queue * p2 = gsqueue;
736         if (!gsqueue) gsqueue = p;
737         else {
738                 while (p2->next) p2 = p2->next;
739                 p2->next = p;
740         }
741
742         // if possible, run the queue
743         runqueue();
744 }
745
746
747 static figdata * getfigdata(int wid, int hgh, string const & fname, 
748                             int psx, int psy, int pswid, int pshgh, 
749                             int raw_wid, int raw_hgh, float angle, char flags)
750 {
751         /* first search for an exact match with fname and width/height */
752
753         if (fname.empty()) return 0;
754
755         int i = 0;
756         while (i < bmpinsref) {
757                 if (bitmaps[i]->wid == wid && bitmaps[i]->hgh == hgh &&
758                     bitmaps[i]->flags == flags && bitmaps[i]->fname == fname &&
759                     bitmaps[i]->angle == angle) {
760                         bitmaps[i]->ref++;
761                         return bitmaps[i];
762                 }
763                 ++i;
764         }
765         /* not found -> create new record or return 0 if no record */
766         ++bmpinsref;
767         if (bmpinsref > bmparrsize) {
768                 // allocate more space
769                 bmparrsize += figallocchunk;
770                 figdata ** tmp = static_cast<figdata**>
771                         (malloc(sizeof(figdata*) * bmparrsize));
772                 memcpy(tmp, bitmaps,
773                        sizeof(figdata*) * (bmparrsize - figallocchunk));
774                 free(bitmaps);
775                 bitmaps = tmp;
776         }
777         figdata * p = new figdata;
778         bitmaps[bmpinsref-1] = p;
779         p->wid = wid;
780         p->hgh = hgh;
781         p->raw_wid = raw_wid;
782         p->raw_hgh = raw_hgh;
783         p->angle = angle;
784         p->fname = fname;
785         p->flags = flags;
786         XWindowAttributes wa;
787         XGetWindowAttributes(fl_display, fl_get_canvas_id(
788                 figinset_canvas), &wa);
789
790         if (lyxerr.debugging()) {
791                 lyxerr << "Create pixmap disp:" << fl_display
792                        << " scr:" << DefaultScreen(fl_display)
793                        << " w:" << wid
794                        << " h:" << hgh
795                        << " depth:" << wa.depth << endl;
796         }
797         
798         p->ref = 1;
799         p->reading = false;
800         p->broken = false;
801         p->gspid = -1;
802         if (flags) {
803                 p->bitmap = XCreatePixmap(fl_display, fl_get_canvas_id(
804                         figinset_canvas), wid, hgh, wa.depth);
805                 p->gsdone = false;
806                 // initialize reading of .eps file with correct sizes and stuff
807                 addwait(psx, psy, pswid, pshgh, p);
808                 p->reading = true;
809         } else {
810                 p->bitmap = None;
811                 p->gsdone = true;
812         }
813
814         return p;
815 }
816
817
818 static void getbitmap(figdata * p)
819 {
820         p->gspid = -1;
821 }
822
823
824 static void makeupdatelist(figdata * p)
825 {
826         for (int i = 0; i < figinsref; ++i)
827                 if (figures[i]->data == p) {
828                         if (lyxerr.debugging()) {
829                                 lyxerr << "Updating inset "
830                                        << figures[i]->inset
831                                        << endl;
832                         }
833                         //UpdateInset(figures[i]->inset);
834                         // add inset figures[i]->inset into to_update list
835                         PutInsetIntoInsetUpdateList(figures[i]->inset);
836                 }
837 }
838
839
840 void sigchldchecker(pid_t pid, int * status)
841 {
842         lyxerr.debug() << "Got pid = " << pid << endl;
843         bool pid_handled = false;
844         for (int i = bmpinsref - 1; i >= 0; --i) {
845                 if (bitmaps[i]->reading && pid == bitmaps[i]->gspid) {
846                         lyxerr.debug() << "Found pid in bitmaps" << endl;
847                         // now read the file and remove it from disk
848                         figdata * p = bitmaps[i];
849                         p->reading = false;
850                         if (bitmaps[i]->gsdone) *status = 0;
851                         if (*status == 0) {
852                                 lyxerr.debug() << "GS [" << pid
853                                                << "] exit OK." << endl;
854                         } else {
855                                 lyxerr << "GS [" << pid  << "] error "
856                                        << *status << " E:"
857                                        << WIFEXITED(*status)
858                                        << " " << WEXITSTATUS(*status)
859                                        << " S:" << WIFSIGNALED(*status)
860                                        << " " << WTERMSIG(*status) << endl;
861                         }
862                         if (*status == 0) {
863                                 bitmap_waiting = true;
864                                 p->broken = false;
865                         } else {
866                                 // remove temporary files
867                                 char tmp[128];
868                                 sprintf(tmp, "%s/~lyxgs%d.ps", 
869                                         system_tempdir.c_str(),
870                                         p->gspid);
871                                 unlink(tmp);
872                                 p->gspid = -1;
873                                 p->broken = true;
874                         }
875                         makeupdatelist(bitmaps[i]);
876                         gsrunning--;
877                         runqueue();
878                         pid_handled = true;
879                 }
880         }
881         if (!pid_handled) {
882                 lyxerr.debug() << "Checking pid in pidwait" << endl;
883                 pidwait * p = pw, * prev = 0;
884                 while (p) {
885                         if (pid == p->pid) {
886                                 lyxerr.debug() << "Found pid in pidwait" << endl;
887                                 lyxerr.debug() << "Caught child pid of recompute routine " << pid << endl;
888                                 if (prev)
889                                         prev->next = p->next;
890                                 else
891                                         pw = p->next;
892                                 delete p;
893                                 break;
894                         }
895                         prev = p;
896                         p = p->next;
897                 }
898         }
899
900         if (pid == -1) {
901                 lyxerr.debug() << "waitpid error" << endl;
902                 switch (errno) {
903                 case ECHILD:
904                         lyxerr << "The process or process group specified by "
905                                 "pid does  not exist or is not a child of "
906                                 "the calling process or can never be in the "
907                                 "states specified by options." << endl;
908                         break;
909                 case EINTR:
910                         lyxerr << "waitpid() was interrupted due to the "
911                                 "receipt of a signal sent by the calling "
912                                 "process." << endl;
913                         break;
914                 case EINVAL:
915                         lyxerr << "An invalid value was specified for "
916                                 "options." << endl;
917                         break;
918                 default:
919                         lyxerr << "Unknown error from waitpid" << endl;
920                         break;
921                 }
922         } else if (pid == 0) {
923                 lyxerr << "waitpid nohang" << endl;;
924         } else {
925                 lyxerr.debug() << "normal exit from childhandler" << endl;
926         }
927 }
928
929
930 static void getbitmaps()
931 {
932         bitmap_waiting = false;
933         for (int i = 0; i < bmpinsref; ++i)
934                 if (bitmaps[i]->gspid > 0 && !bitmaps[i]->reading)
935                         getbitmap(bitmaps[i]);
936 }
937
938
939 static void RegisterFigure(InsetFig *fi)
940 {
941         if (figinsref == 0) InitFigures();
942         fi->form = 0;
943         ++figinsref;
944         if (figinsref > figarrsize) {
945                 // allocate more space
946                 figarrsize += figallocchunk;
947                 Figref ** tmp = static_cast<Figref**>
948                         (malloc(sizeof(Figref*)*figarrsize));
949                 memcpy(tmp, figures,
950                        sizeof(Figref*)*(figarrsize-figallocchunk));
951                 free(figures);
952                 figures = tmp;
953         }
954         Figref * tmpfig = new Figref;
955         tmpfig->data = 0;
956         tmpfig->inset = fi;
957         figures[figinsref-1] = tmpfig;
958         fi->figure = tmpfig;
959
960         if (lyxerr.debugging()) {
961                 lyxerr << "Register Figure: buffer:["
962                        << current_view->buffer() << "]" << endl;
963         }
964 }
965
966
967 int FindFigIndex(Figref * tmpfig)
968 {
969         int i = 0;
970         while (i < figinsref) {
971                 if (figures[i] == tmpfig) return i;
972                 ++i;
973         }
974         return i;
975 }
976
977
978 static void UnregisterFigure(InsetFig * fi)
979 {
980         Figref * tmpfig = fi->figure;
981
982         if (tmpfig->data) freefigdata(tmpfig->data);
983         if (tmpfig->inset->form) {
984                 if (tmpfig->inset->form->Figure->visible) {
985                         fl_set_focus_object(tmpfig->inset->form->Figure,
986                                             tmpfig->inset->form->OkBtn);
987                         fl_hide_form(tmpfig->inset->form->Figure);
988                 }
989 #if FL_REVISION == 89
990 #warning Reactivate this free_form calls
991 #else
992                 fl_free_form(tmpfig->inset->form->Figure);
993                 free(tmpfig->inset->form);
994                 tmpfig->inset->form = 0;
995 #endif
996         }
997         int i = FindFigIndex(tmpfig);
998         --figinsref;
999         while (i < figinsref) {
1000                 figures[i] = figures[i+1];
1001                 ++i;
1002         }
1003         delete tmpfig;
1004
1005         if (figinsref == 0) DoneFigures();
1006 }
1007
1008
1009 static char * NextToken(FILE * myfile)
1010 {
1011         char * token = 0;
1012         char c;
1013         int i = 0;
1014    
1015         if (!feof(myfile)) {
1016                 token = new char[256];
1017                 do {
1018                         c = fgetc(myfile);
1019                         token[i++]= c;
1020                 } while (!feof(myfile) && !isspace(c));
1021       
1022                 token[i-1]= '\0';         /* just the end of a command  */
1023         }
1024         return token;
1025 }
1026
1027
1028 InsetFig::InsetFig(int tmpx, int tmpy, Buffer * o)
1029         : owner(o)
1030 {
1031         wid = tmpx;
1032         hgh = tmpy;
1033         wtype = DEF;
1034         htype = DEF;
1035         twtype = DEF;
1036         thtype = DEF;
1037         pflags = flags = 9;
1038         psubfigure = subfigure = false;
1039         xwid = xhgh = angle = 0;
1040         pswid = pshgh = 0;
1041         raw_wid = raw_hgh = 0;
1042         changedfname = false;
1043         RegisterFigure(this);
1044 }
1045
1046
1047 InsetFig::~InsetFig()
1048 {
1049         if (lyxerr.debugging()) {
1050                 lyxerr << "Figure destructor called" << endl;
1051         }
1052         UnregisterFigure(this);
1053 }
1054
1055
1056 int InsetFig::Ascent(LyXFont const &) const
1057 {
1058         return hgh + 3;
1059 }
1060
1061
1062 int InsetFig::Descent(LyXFont const &) const
1063 {
1064         return 1;
1065 }
1066
1067
1068 int InsetFig::Width(LyXFont const &) const
1069 {
1070         return wid + 2;
1071 }
1072
1073
1074 void InsetFig::Draw(LyXFont font, LyXScreen & scr, int baseline, float & x)
1075 {
1076         if (bitmap_waiting) getbitmaps();
1077
1078         // I wish that I didn't have to use this
1079         // but the figinset code is so complicated so
1080         // I don't want to fiddle with it now.
1081         unsigned long pm = scr.getForeground();
1082         
1083         if (figure && figure->data && figure->data->bitmap &&
1084             !figure->data->reading && !figure->data->broken) {
1085                 // draw the bitmap
1086                 XCopyArea(fl_display, figure->data->bitmap, pm, getGC(gc_copy),
1087                           0, 0, wid, hgh, int(x+1), baseline-hgh);
1088                 XFlush(fl_display);
1089                 if (flags & 4) XDrawRectangle(fl_display, pm, getGC(gc_copy),
1090                                               int(x), baseline - hgh - 1,
1091                                               wid+1, hgh+1);
1092         } else {
1093                 char * msg = 0;
1094                 // draw frame
1095                 XDrawRectangle(fl_display, pm, getGC(gc_copy),
1096                                int(x),
1097                                baseline - hgh - 1, wid+1, hgh+1);
1098                 if (figure && figure->data) {
1099                         if (figure->data->broken)  msg = _("[render error]");
1100                         else if (figure->data->reading) msg = _("[rendering ... ]");
1101                 } else 
1102                         if (fname.empty()) msg = _("[no file]");
1103                         else if ((flags & 3) == 0) msg = _("[not displayed]");
1104                         else if (lyxrc->ps_command.empty()) msg = _("[no ghostscript]");
1105
1106                 if (!msg) msg = _("[unknown error]");
1107                 
1108                 font.setFamily (LyXFont::SANS_FAMILY);
1109                 font.setSize (LyXFont::SIZE_FOOTNOTE);
1110                 string justname = OnlyFilename (fname);
1111                 font.drawString(justname, pm,
1112                                 baseline - font.maxAscent() - 4,
1113                                 int(x) + 8);
1114                 font.setSize (LyXFont::SIZE_TINY);
1115                 font.drawText (msg, strlen(msg), pm,
1116                                baseline - 4,
1117                                int(x) + 8);
1118
1119         }
1120         x += Width(font);    // ?
1121 }
1122
1123
1124 void InsetFig::Write(ostream & os)
1125 {
1126         Regenerate();
1127         os << "Figure size " << wid << " " << hgh << "\n";
1128         if (!fname.empty()) {
1129                 string buf1 = OnlyPath(owner->fileName());
1130                 string fname2 = MakeRelPath(fname, buf1);
1131                 os << "file " << fname2 << "\n";
1132         }
1133         if (!subcaption.empty())
1134                 os << "subcaption " << subcaption << "\n";
1135         if (wtype) os << "width " << static_cast<int>(wtype) << " " << xwid << "\n";
1136         if (htype) os << "height " << static_cast<int>(htype) << " " << xhgh << "\n";
1137         if (angle != 0) os << "angle " << angle << "\n";
1138         os << "flags " << flags << "\n";
1139         if (subfigure) os << "subfigure\n";
1140 }
1141
1142
1143 void InsetFig::Read(LyXLex & lex)
1144 {
1145         string buf;
1146         bool finished = false;
1147         
1148         while (lex.IsOK() && !finished) {
1149                 lex.next();
1150
1151                 string const token = lex.GetString();
1152                 lyxerr.debug() << "Token: " << token << endl;
1153                 
1154                 if (token.empty())
1155                         continue;
1156                 else if (token == "\\end_inset") {
1157                         finished = true;
1158                 } else if (token == "file") {
1159                         if (lex.next()) {
1160                                 buf = lex.GetString();
1161                                 string buf1 = OnlyPath(owner->fileName());
1162                                 fname = MakeAbsPath(buf, buf1);
1163                                 changedfname = true;
1164                         }
1165                 } else if (token == "extra") {
1166                         if (lex.next());
1167                         // kept for backwards compability. Delete in 0.13.x
1168                 } else if (token == "subcaption") {
1169                         if (lex.EatLine())
1170                                 subcaption = lex.GetString();
1171                 } else if (token == "label") {
1172                         if (lex.next());
1173                         // kept for backwards compability. Delete in 0.13.x
1174                 } else if (token == "angle") {
1175                         if (lex.next())
1176                                 angle = lex.GetFloat();
1177                 } else if (token == "size") {
1178                         if (lex.next())
1179                                 wid = lex.GetInteger();
1180                         if (lex.next())
1181                                 hgh = lex.GetInteger();
1182                 } else if (token == "flags") {
1183                         if (lex.next())
1184                                 flags = pflags = lex.GetInteger();
1185                 } else if (token == "subfigure") {
1186                         subfigure = psubfigure = true;
1187                 } else if (token == "width") {
1188                         int typ = 0;
1189                         if (lex.next())
1190                                 typ = lex.GetInteger();
1191                         if (lex.next())
1192                                 xwid = lex.GetFloat();
1193                         switch (typ) {
1194                         case DEF: wtype = DEF; break;
1195                         case CM: wtype = CM; break;
1196                         case IN: wtype = IN; break;
1197                         case PER_PAGE: wtype = PER_PAGE; break;
1198                         case PER_COL: wtype = PER_COL; break;
1199                         default:
1200                                 lyxerr.debug() << "Unknown type!" << endl;
1201                                 break;
1202                         }
1203                         twtype = wtype;
1204                 } else if (token == "height") {
1205                         int typ = 0;
1206                         if (lex.next())
1207                                 typ = lex.GetInteger();
1208                         if (lex.next())
1209                                 xhgh = lex.GetFloat();
1210                         switch (typ) {
1211                         case DEF: htype = DEF; break;
1212                         case CM: htype = CM; break;
1213                         case IN: htype = IN; break;
1214                         case PER_PAGE: htype = PER_PAGE; break;
1215                         default:
1216                                 lyxerr.debug() << "Unknown type!" << endl;
1217                                 break;
1218                         }
1219                         thtype = htype;
1220                 }
1221         }
1222         Regenerate();
1223         Recompute();
1224 }
1225
1226
1227 int InsetFig::Latex(ostream & os, signed char /* fragile*/ )
1228 {
1229         Regenerate();
1230         if (!cmd.empty()) os << cmd << " ";
1231         return 0;
1232 }
1233
1234
1235 int InsetFig::Latex(string & file, signed char /* fragile*/ )
1236 {
1237         Regenerate();
1238         file += cmd + ' ';
1239         return 0;
1240 }
1241
1242
1243 int InsetFig::Linuxdoc(string &/*file*/)
1244 {
1245         return 0;
1246 }
1247
1248
1249 int InsetFig::DocBook(string & file)
1250 {
1251         string figurename = fname;
1252
1253         if(suffixIs(figurename, ".eps"))
1254                 figurename.erase(fname.length() - 5);
1255
1256         file += "@<graphic fileref=\"" + figurename + "\"></graphic>";
1257         return 0;
1258 }
1259
1260
1261 void InsetFig::Validate(LaTeXFeatures & features) const
1262 {
1263         features.graphics = true;
1264         if (subfigure) features.subfigure = true;
1265 }
1266
1267
1268 unsigned char InsetFig::Editable() const
1269 {
1270         return 1;
1271 }
1272
1273
1274 bool InsetFig::Deletable() const
1275 {
1276         return false;
1277 }
1278
1279
1280 void InsetFig::Edit(int, int)
1281 {
1282         lyxerr.debug() << "Editing InsetFig." << endl;
1283         Regenerate();
1284
1285         // We should have RO-versions of the form instead.
1286         // The actual prevention of altering a readonly doc
1287         // is done in CallbackFig()
1288         if(current_view->buffer()->isReadonly()) 
1289                 WarnReadonly(current_view->buffer()->fileName());
1290
1291         if (!form) {
1292                 form = create_form_Figure();
1293                 fl_set_form_atclose(form->Figure, CancelCloseBoxCB, 0);
1294                 fl_set_object_return(form->Angle, FL_RETURN_ALWAYS);
1295                 fl_set_object_return(form->Width, FL_RETURN_ALWAYS);
1296                 fl_set_object_return(form->Height, FL_RETURN_ALWAYS);
1297         }
1298         RestoreForm();
1299         if (form->Figure->visible) {
1300                 fl_raise_form(form->Figure);
1301         } else {
1302                 fl_show_form(form->Figure, FL_PLACE_MOUSE | FL_PLACE_SIZE,
1303                              FL_FULLBORDER, _("Figure"));
1304         }
1305 }
1306
1307
1308 Inset * InsetFig::Clone() const
1309 {
1310         InsetFig * tmp = new InsetFig(100, 100, owner);
1311
1312         if (lyxerr.debugging()) {
1313                 lyxerr << "Clone Figure: buffer:["
1314                        << current_view->buffer()
1315                        << "], cbuffer:[xx]" << endl;
1316         }
1317
1318         tmp->wid = wid;
1319         tmp->hgh = hgh;
1320         tmp->raw_wid = raw_wid;
1321         tmp->raw_hgh = raw_hgh;
1322         tmp->angle = angle;
1323         tmp->xwid = xwid;
1324         tmp->xhgh = xhgh;
1325         tmp->flags = flags;
1326         tmp->pflags = pflags;
1327         tmp->subfigure = subfigure;
1328         tmp->psubfigure = psubfigure;
1329         tmp->wtype = wtype;
1330         tmp->htype = htype;
1331         tmp->psx = psx;
1332         tmp->psy = psy;
1333         tmp->pswid = pswid;
1334         tmp->pshgh = pshgh;
1335         tmp->fname = fname;
1336         if (!fname.empty() && (flags & 3) && !lyxrc->ps_command.empty()) { 
1337                 // do not display if there is
1338                 // "do not display" chosen (Matthias 260696)
1339                 tmp->figure->data = getfigdata(wid, hgh, fname, psx, psy,
1340                                                pswid, pshgh, raw_wid, raw_hgh,
1341                                                angle, flags & (3|8));
1342         } else tmp->figure->data = 0;
1343         tmp->subcaption = subcaption;
1344         tmp->changedfname = false;
1345         tmp->owner = owner;
1346         tmp->Regenerate();
1347         return tmp;
1348 }
1349
1350
1351 Inset::Code InsetFig::LyxCode() const
1352 {
1353         return Inset::GRAPHICS_CODE;
1354 }
1355
1356
1357 void InsetFig::Regenerate()
1358 {
1359         string cmdbuf;
1360         string resizeW, resizeH;
1361         string rotate, recmd;
1362
1363         if (fname.empty()) {
1364                 cmd = "\\fbox{\\rule[-0.5in]{0pt}{1in}";
1365                 cmd += _("empty figure path");
1366                 cmd += '}';
1367                 //if (form) fl_set_object_label(form->cmd, "");
1368                 return;
1369         }
1370
1371         string buf1 = OnlyPath(owner->fileName());
1372         string fname2 = MakeRelPath(fname, buf1);
1373
1374         string gcmd = "\\includegraphics{" + fname2 + '}';
1375         
1376         switch (wtype) {
1377         case DEF:
1378                 break;
1379         case CM:{// \resizebox*{h-length}{v-length}{text}
1380                 char buf[10];
1381                 sprintf(buf, "%g", xwid); // should find better
1382                 resizeW = buf;
1383                 resizeW += "cm";
1384                 break;
1385         }
1386         case IN: {
1387                 char buf[10];
1388                 sprintf(buf, "%g", xwid);
1389                 resizeW = buf;
1390                 resizeW += "in";
1391                 break;
1392         }
1393         case PER_PAGE:{
1394                 char buf[10];
1395                 sprintf(buf, "%g", xwid/100);
1396                 resizeW = buf;
1397                 resizeW += "\\textwidth";
1398                 break;
1399         }
1400         case PER_COL:{
1401                 char buf[10];
1402                 sprintf(buf, "%g", xwid/100);
1403                 resizeW = buf;
1404                 resizeW += "\\columnwidth";
1405                 break;
1406         }
1407         }
1408
1409         switch (htype) {
1410         case DEF:
1411                 break;
1412         case CM: {
1413                 char buf[10];
1414                 sprintf(buf, "%g", xhgh);
1415                 resizeH = buf;
1416                 resizeH += "cm";
1417                 break;
1418         }
1419         case IN:{
1420                 char buf[10];
1421                 sprintf(buf, "%g", xhgh);
1422                 resizeH = buf;
1423                 resizeH += "in";
1424                 break;
1425         }
1426         case PER_PAGE: {
1427                 char buf[10];
1428                 sprintf(buf, "%g", xhgh/100);
1429                 resizeH = buf;
1430                 resizeH += "\\textheight";
1431                 break;
1432         }
1433         case PER_COL: {
1434                 // Doesn't occur; case exists to suppress compiler warnings.
1435                 break;
1436         }
1437         }
1438
1439         if (!resizeW.empty() || !resizeH.empty()) {
1440                 recmd = "\\resizebox*{";
1441                 if (!resizeW.empty())
1442                         recmd += resizeW;
1443                 else
1444                         recmd += '!';
1445                 recmd += "}{";
1446                 if (!resizeH.empty())
1447                         recmd += resizeH;
1448                 else
1449                         recmd += '!';
1450                 recmd += "}{";
1451         }
1452         
1453         
1454         if (angle != 0) {
1455                 char buf[10];
1456                 sprintf(buf, "%g", angle);
1457                 // \rotatebox{angle}{text}
1458                 rotate = "\\rotatebox{";
1459                 rotate += buf;
1460                 rotate += "}{";
1461         }
1462
1463         cmdbuf = recmd;
1464         cmdbuf += rotate;
1465         cmdbuf += gcmd;
1466         if (!rotate.empty()) cmdbuf += '}';
1467         if (!recmd.empty()) cmdbuf += '}';
1468         if (subfigure) {
1469                 if (!subcaption.empty())
1470                         cmdbuf = "\\subfigure[" + subcaption +
1471                                 "]{" + cmdbuf + "}";
1472                 else
1473                         cmdbuf = "\\subfigure{" + cmdbuf + "}";
1474         }
1475         
1476         cmd = cmdbuf;
1477
1478         //if (form) fl_set_object_label(form->cmd, cmd.c_str());
1479 }
1480
1481
1482 void InsetFig::TempRegenerate()
1483 {
1484         string cmdbuf;
1485         string resizeW, resizeH;
1486         string rotate, recmd;
1487         
1488         char const * tfname = fl_get_input(form->EpsFile);
1489         string tsubcap = fl_get_input(form->Subcaption);
1490         float tangle = atof(fl_get_input(form->Angle));
1491         float txwid = atof(fl_get_input(form->Width));
1492         float txhgh = atof(fl_get_input(form->Height));
1493
1494         if (!tfname || !*tfname) {
1495                 //fl_set_object_label(form->cmd, "");
1496                 //fl_redraw_object(form->cmd);
1497                 cmd = "\\fbox{\\rule[-0.5in]{0pt}{1in}";
1498                 cmd += _("empty figure path");
1499                 cmd += '}';
1500                 return;
1501         }
1502
1503         string buf1 = OnlyPath(owner->fileName());
1504         string fname2 = MakeRelPath(tfname, buf1);
1505         // \includegraphics*[<llx,lly>][<urx,ury>]{file}
1506         string gcmd = "\\includegraphics{" + fname2 + '}';
1507         
1508         switch (twtype) {
1509         case DEF:
1510                 break;
1511         case CM: {// \resizebox*{h-length}{v-length}{text}
1512                 char buf[10];
1513                 sprintf(buf, "%g", txwid); // should find better
1514                 resizeW = buf;
1515                 resizeW += "cm";
1516                 break;
1517         }
1518         case IN: {
1519                 char buf[10];
1520                 sprintf(buf, "%g", txwid);
1521                 resizeW = buf;
1522                 resizeW += "in";
1523                 break;
1524         }
1525         case PER_PAGE: {
1526                 char buf[10];
1527                 sprintf(buf, "%g", txwid/100);
1528                 resizeW = buf;
1529                 resizeW += "\\textwidth";
1530                 break;
1531         }
1532         case PER_COL: {
1533                 char buf[10];
1534                 sprintf(buf, "%g", txwid/100);
1535                 resizeW = buf;
1536                 resizeW += "\\columnwidth";
1537                 break;
1538         }
1539         }
1540
1541         switch (thtype) {
1542         case DEF:
1543                 break;
1544         case CM: {
1545                 char buf[10];
1546                 sprintf(buf, "%g", txhgh);
1547                 resizeH = buf;
1548                 resizeH += "cm";
1549                 break;
1550         }
1551         case IN: {
1552                 char buf[10];
1553                 sprintf(buf, "%g", txhgh);
1554                 resizeH = buf;
1555                 resizeH += "in";
1556                 break;
1557         }
1558         case PER_PAGE: {
1559                 char buf[10];
1560                 sprintf(buf, "%g", txhgh/100);
1561                 resizeH = buf;
1562                 resizeH += "\\textheight";
1563                 break;
1564         }
1565         case PER_COL: {
1566                 // Doesn't occur; case exists to suppress compiler warnings.
1567                 break;
1568         }
1569         }
1570
1571         // \resizebox*{h-length}{v-length}{text}
1572         if (!resizeW.empty() || !resizeH.empty()) {
1573                 recmd = "\\resizebox*{";
1574                 if (!resizeW.empty())
1575                         recmd += resizeW;
1576                 else
1577                         recmd += '!';
1578                 recmd += "}{";
1579                 if (!resizeH.empty())
1580                         recmd += resizeH;
1581                 else
1582                         recmd += '!';
1583                 recmd += "}{";
1584         }
1585         
1586         if (tangle != 0) {
1587                 char buf[10];
1588                 sprintf(buf, "%g", tangle);
1589                 // \rotatebox{angle}{text}
1590                 rotate = "\\rotatebox{";
1591                 rotate += buf;
1592                 rotate += "}{";
1593         }
1594
1595         cmdbuf = recmd;
1596         cmdbuf += rotate;
1597         cmdbuf += gcmd;
1598         if (!rotate.empty()) cmdbuf += '}';
1599         if (!recmd.empty()) cmdbuf += '}';
1600         if (psubfigure && !tsubcap.empty()) {
1601                 cmdbuf = string("\\subfigure{") + tsubcap
1602                         + string("}{") + cmdbuf + "}";
1603         }
1604 }
1605
1606
1607 void InsetFig::Recompute()
1608 {
1609         bool changed = changedfname;
1610         int newx, newy, nraw_x, nraw_y;
1611
1612         if (changed) GetPSSizes();
1613
1614         float sin_a = sin (angle / DEG2PI);  /* rotation; H. Zeller 021296 */
1615         float cos_a = cos (angle / DEG2PI);
1616         int frame_wid = int(ceil(fabs(cos_a * pswid) + fabs(sin_a * pshgh)));
1617         int frame_hgh= int(ceil(fabs(cos_a * pshgh) + fabs(sin_a * pswid)));
1618
1619         /* now recompute wid and hgh, and if that is changed, set changed */
1620         /* this depends on chosen size of the picture and its bbox */
1621         // This will be redone in 0.13 ... (hen)
1622         if (!fname.empty()) {
1623                 // say, total width is 595 pts, as A4 in TeX, thats in 1/72" */
1624
1625                 newx = frame_wid;
1626                 newy = frame_hgh;
1627                 switch (wtype) {
1628                 case DEF:
1629                         break;
1630                 case CM:        /* cm */
1631                         newx = int(28.346 * xwid);
1632                         break;
1633                 case IN: /* in */
1634                         newx = int(72 * xwid);
1635                         break;
1636                 case PER_PAGE:  /* % of page */
1637                         newx = int(5.95 * xwid);
1638                         break;
1639                 case PER_COL:   /* % of col */
1640                         newx = int(2.975 * xwid);
1641                         break;
1642                 }
1643                 
1644                 if (wtype && frame_wid) newy = newx*frame_hgh/frame_wid;
1645                 
1646                 switch (htype) {
1647                 case DEF:
1648                         //lyxerr << "This should not happen!" << endl;
1649                         break;
1650                 case CM:        /* cm */
1651                         newy = int(28.346 * xhgh);
1652                         break;
1653                 case IN: /* in */
1654                         newy = int(72 * xhgh);
1655                         break;
1656                 case PER_PAGE:  /* % of page */
1657                         newy = int(8.42 * xhgh);
1658                         break;
1659                 case PER_COL: 
1660                         // Doesn't occur; case exists to suppress
1661                         // compiler warnings.  
1662                         break;
1663                 }
1664                 if (htype && !wtype && frame_hgh)
1665                         newx = newy*frame_wid/frame_hgh;
1666         } else {
1667                 newx = wid;
1668                 newy = hgh;
1669         }
1670
1671         if (frame_wid == 0)
1672                 nraw_x = 5;
1673         else
1674                 nraw_x = int((1.0 * pswid * newx)/frame_wid);
1675
1676         if (frame_hgh == 0)
1677                 nraw_y = 5;
1678         else
1679                 nraw_y = int((1.0 * pshgh * newy)/frame_hgh);
1680
1681         // cannot be zero, actually, set it to some minimum, so its clickable
1682         if (newx < 5) newx = 5;
1683         if (newy < 5) newy = 5;
1684
1685         if (newx   != wid     || newy   != hgh     || 
1686             nraw_x != raw_wid || nraw_y != raw_hgh ||
1687             flags  != pflags  || subfigure != psubfigure) 
1688                 changed = true;
1689        
1690         raw_wid = nraw_x;
1691         raw_hgh = nraw_y;
1692         wid = newx;
1693         hgh = newy;
1694         flags = pflags;
1695         subfigure = psubfigure;
1696
1697         if (changed) {
1698                 figdata * pf = figure->data;
1699
1700                 // get new data
1701                 if (!fname.empty() && (flags & 3)
1702                     && !lyxrc->ps_command.empty()) {
1703                         // do not display if there is "do not display"
1704                         // chosen (Matthias 260696)
1705                         figure->data = getfigdata(wid, hgh, fname,
1706                                                   psx, psy, pswid, pshgh,
1707                                                   raw_wid, raw_hgh,
1708                                                   angle, flags & (3|8));
1709                 } else figure->data = 0;
1710
1711                 // free the old data
1712                 if (pf) freefigdata(pf);
1713         }
1714
1715         changedfname = false;
1716 }
1717
1718
1719 void InsetFig::GetPSSizes()
1720 {
1721 #ifdef WITH_WARNINGS
1722 #warning rewrite this method to use ifstream
1723 #endif
1724         /* get %%BoundingBox: from postscript file */
1725         char * p = 0;
1726         
1727         /* defaults to associated size
1728          * ..just in case the PS-file is not readable (Henner, 24-Aug-97) 
1729          */
1730         psx = 0;
1731         psy = 0;
1732         pswid = wid;
1733         pshgh = hgh;
1734
1735         if (fname.empty()) return;
1736
1737         FilePtr f(fname, FilePtr::read);
1738
1739         if (!f()) return;       // file not found !!!!
1740
1741         /* defaults to A4 page */
1742         psx = 0;
1743         psy = 0;
1744         pswid = 595;
1745         pshgh = 842;
1746
1747         int lastchar = fgetc(f);
1748         for (;;) {
1749                 int c = fgetc(f);
1750                 if (c == EOF) {
1751                         lyxerr.debug() << "End of (E)PS file reached and"
1752                                 " no BoundingBox!" << endl;
1753                         break;
1754                 }
1755                 if (c == '%' && lastchar == '%') {
1756                         p = NextToken(f);
1757                         if (!p) break;
1758                         // we should not use this, with it we cannot
1759                         // discover bounding box and end of file.
1760                         //if (strcmp(p, "EndComments") == 0) break;
1761                         if (strcmp(p, "BoundingBox:") == 0) {
1762                                 float fpsx, fpsy, fpswid, fpshgh;
1763                                 if (fscanf(f, "%f %f %f %f", &fpsx, &fpsy,
1764                                            &fpswid, &fpshgh) == 4) {
1765                                         psx = int(fpsx);
1766                                         psy = int(fpsy);
1767                                         pswid = int(fpswid);
1768                                         pshgh = int(fpshgh);
1769                                 } 
1770
1771                                 if (lyxerr.debugging()) {
1772                                         lyxerr << "%%%%BoundingBox:"
1773                                                << psx << ' '
1774                                                << psy << ' '
1775                                                << pswid << ' '
1776                                                << pshgh << endl;
1777                                 }
1778                                 break;
1779                         }
1780                         c = 0;
1781                         delete[] p;
1782                         p = 0;
1783                 }
1784                 lastchar = c;
1785         }
1786         if (p) delete[] p;
1787         pswid -= psx;
1788         pshgh -= psy;
1789
1790 }
1791
1792
1793 void InsetFig::CallbackFig(long arg)
1794 {
1795         bool regen = false;
1796         char const * p;
1797
1798         if (lyxerr.debugging()) {
1799                 lyxerr << "Figure callback, arg " << arg << endl;
1800         }
1801
1802         switch (arg) {
1803         case 10:
1804         case 11:
1805         case 12:        /* width type */
1806         case 13:
1807         case 14:
1808                 switch (arg - 10) {
1809                 case DEF:
1810                         twtype = DEF;
1811                         // put disable here
1812                         fl_deactivate_object(form->Width);
1813                         break;
1814                 case CM:
1815                         twtype = CM;
1816                         // put enable here
1817                         fl_activate_object(form->Width);
1818                         break;
1819                 case IN:
1820                         twtype = IN;
1821                         // put enable here
1822                         fl_activate_object(form->Width);
1823                         break;
1824                 case PER_PAGE:
1825                         twtype = PER_PAGE;
1826                         // put enable here
1827                         fl_activate_object(form->Width);
1828                         break;
1829                 case PER_COL:
1830                         twtype = PER_COL;
1831                         // put enable here
1832                         fl_activate_object(form->Width);
1833                         break;
1834                 default:
1835                         lyxerr.debug() << "Unknown type!" << endl;
1836                         break;
1837                 }
1838                 regen = true;
1839                 break;
1840         case 20:
1841         case 21:
1842         case 22:        /* height type */
1843         case 23:
1844                 switch (arg - 20) {
1845                 case DEF:
1846                         thtype = DEF;
1847                         // put disable here
1848                         fl_deactivate_object(form->Height);
1849                         break;
1850                 case CM:
1851                         thtype = CM;
1852                         // put enable here
1853                         fl_activate_object(form->Height);
1854                         break;
1855                 case IN:
1856                         thtype = IN;
1857                         // put enable here
1858                         fl_activate_object(form->Height);
1859                         break;
1860                 case PER_PAGE:
1861                         thtype = PER_PAGE;
1862                         // put enable here
1863                         fl_activate_object(form->Height);
1864                         break;
1865                 default:
1866                         lyxerr.debug() << "Unknown type!" << endl;
1867                         break;
1868                 }
1869                 regen = true;
1870                 break;
1871         case 3:
1872                 pflags = pflags & ~3;           /* wysiwyg0 */
1873                 break;
1874         case 33:
1875                 pflags = (pflags & ~3) | 1;     /* wysiwyg1 */
1876                 break;
1877         case 43:
1878                 pflags = (pflags & ~3) | 2;     /* wysiwyg2 */
1879                 break;
1880         case 63:
1881                 pflags = (pflags & ~3) | 3;     /* wysiwyg3 */
1882                 break;
1883         case 53:
1884                 pflags ^= 4;    /* frame */
1885                 break;
1886         case 54:
1887                 pflags ^= 8;    /* do translations */
1888                 break;
1889         case 70:
1890                 psubfigure = !psubfigure;       /* This is a subfigure */
1891                 break;
1892         case 2:
1893                 regen = true;           /* regenerate command */
1894                 break;
1895         case 0:                         /* browse file */
1896                 BrowseFile();
1897                 regen = true;
1898                 break;
1899         case 1:                         /* preview */
1900                 p = fl_get_input(form->EpsFile);
1901                 Preview(p);
1902                 break;
1903         case 7:                         /* apply */
1904         case 8:                         /* ok (apply and close) */
1905                 if(!current_view->buffer()->isReadonly()) {
1906                         wtype = twtype;
1907                         htype = thtype;
1908                         xwid = atof(fl_get_input(form->Width));
1909                         xhgh = atof(fl_get_input(form->Height));
1910                         angle = atof(fl_get_input(form->Angle));
1911                         p = fl_get_input(form->EpsFile);
1912                         if (p && *p) {
1913                                 string buf1 = OnlyPath(owner->fileName());
1914                                 fname = MakeAbsPath(p, buf1);
1915                                 changedfname = true;
1916                         } else {
1917                                 if (!fname.empty()) {
1918                                         changedfname = true;
1919                                         fname.clear();
1920                                 }
1921                         }
1922                         subcaption = fl_get_input(form->Subcaption);
1923         
1924                         Regenerate();
1925                         Recompute();
1926                         /* now update inset */
1927                         if (lyxerr.debugging()) {
1928                                 lyxerr << "Update: ["
1929                                        << wid << 'x' << hgh << ']' << endl;
1930                         }
1931                         UpdateInset(this);
1932                         if (arg == 8) {
1933                                 fl_set_focus_object(form->Figure, form->OkBtn);
1934                                 fl_hide_form(form->Figure);
1935 #if FL_REVISION == 89
1936 #warning Reactivate this free_form calls
1937 #else
1938                                 fl_free_form(form->Figure);
1939                                 free(form);
1940                                 form = 0;
1941 #endif
1942                         }
1943                         break;
1944                 } //if not readonly
1945                 //  The user has already been informed about RO in ::Edit
1946                 if(arg == 7) // if 'Apply'
1947                         break;
1948                 // fall through
1949         case 9:                         /* cancel = restore and close */
1950                 fl_set_focus_object(form->Figure, form->OkBtn);
1951                 fl_hide_form(form->Figure);
1952 #if FL_REVISION == 89
1953 #warning Reactivate this free_form calls
1954 #warning Jug, is this still a problem?
1955 #else
1956                 fl_free_form(form->Figure);
1957                 free(form);
1958                 form = 0;
1959 #endif
1960                 break;
1961         }
1962
1963         if (regen) TempRegenerate();
1964 }
1965
1966
1967 inline void DisableFigurePanel(FD_Figure * const form)
1968 {
1969         fl_deactivate_object(form->EpsFile);
1970         fl_deactivate_object(form->Browse);
1971         fl_deactivate_object(form->Width);
1972         fl_deactivate_object(form->Height);
1973         fl_deactivate_object(form->Frame);
1974         fl_deactivate_object(form->Translations);
1975         fl_deactivate_object(form->Angle);
1976         fl_deactivate_object(form->HeightGrp);
1977         fl_deactivate_object(form->page2);
1978         fl_deactivate_object(form->Default2);
1979         fl_deactivate_object(form->cm2);
1980         fl_deactivate_object(form->in2);
1981         fl_deactivate_object(form->HeightLabel);
1982         fl_deactivate_object(form->WidthLabel);
1983         fl_deactivate_object(form->DisplayGrp);
1984         fl_deactivate_object(form->Wysiwyg3);
1985         fl_deactivate_object(form->Wysiwyg0);
1986         fl_deactivate_object(form->Wysiwyg2);
1987         fl_deactivate_object(form->Wysiwyg1);
1988         fl_deactivate_object(form->WidthGrp);
1989         fl_deactivate_object(form->Default1);
1990         fl_deactivate_object(form->cm1);
1991         fl_deactivate_object(form->in1);
1992         fl_deactivate_object(form->page1);
1993         fl_deactivate_object(form->column1);
1994         fl_deactivate_object(form->Subcaption);
1995         fl_deactivate_object(form->Subfigure);
1996         fl_deactivate_object (form->OkBtn);
1997         fl_deactivate_object (form->ApplyBtn);
1998         fl_set_object_lcol (form->OkBtn, FL_INACTIVE);
1999         fl_set_object_lcol (form->ApplyBtn, FL_INACTIVE);
2000 }
2001
2002
2003 inline void EnableFigurePanel(FD_Figure * const form)
2004 {
2005         fl_activate_object(form->EpsFile);
2006         fl_activate_object(form->Browse);
2007         fl_activate_object(form->Width);
2008         fl_activate_object(form->Height);
2009         fl_activate_object(form->Frame);
2010         fl_activate_object(form->Translations);
2011         fl_activate_object(form->Angle);
2012         fl_activate_object(form->HeightGrp);
2013         fl_activate_object(form->page2);
2014         fl_activate_object(form->Default2);
2015         fl_activate_object(form->cm2);
2016         fl_activate_object(form->in2);
2017         fl_activate_object(form->HeightLabel);
2018         fl_activate_object(form->WidthLabel);
2019         fl_activate_object(form->DisplayGrp);
2020         fl_activate_object(form->Wysiwyg3);
2021         fl_activate_object(form->Wysiwyg0);
2022         fl_activate_object(form->Wysiwyg2);
2023         fl_activate_object(form->Wysiwyg1);
2024         fl_activate_object(form->WidthGrp);
2025         fl_activate_object(form->Default1);
2026         fl_activate_object(form->cm1);
2027         fl_activate_object(form->in1);
2028         fl_activate_object(form->page1);
2029         fl_activate_object(form->column1);
2030         fl_activate_object(form->Subcaption);
2031         fl_activate_object(form->Subfigure);
2032         fl_activate_object (form->OkBtn);
2033         fl_activate_object (form->ApplyBtn);
2034         fl_set_object_lcol (form->OkBtn, FL_BLACK);
2035         fl_set_object_lcol (form->ApplyBtn, FL_BLACK);
2036 }
2037
2038
2039 void InsetFig::RestoreForm()
2040 {
2041         char buf[32];
2042
2043         EnableFigurePanel(form);
2044
2045         twtype = wtype;
2046         fl_set_button(form->Default1, (wtype == 0));
2047         fl_set_button(form->cm1, (wtype == 1));
2048         fl_set_button(form->in1, (wtype == 2));
2049         fl_set_button(form->page1, (wtype == 3));
2050         fl_set_button(form->column1, (wtype == 4));
2051         if (wtype == 0) {
2052                 fl_deactivate_object(form->Width);
2053         } else {
2054                 fl_activate_object(form->Width);
2055         }
2056                 
2057         // enable and disable should be put here.
2058         thtype = htype;
2059         fl_set_button(form->Default2, (htype == 0));
2060         fl_set_button(form->cm2, (htype == 1));
2061         fl_set_button(form->in2, (htype == 2));
2062         fl_set_button(form->page2, (htype == 3));
2063         // enable and disable should be put here.
2064         if (htype == 0) {
2065                 fl_deactivate_object(form->Height);
2066         } else {
2067                 fl_activate_object(form->Height);
2068         }
2069
2070         int pflags = flags & 3;
2071         fl_set_button(form->Wysiwyg0, (pflags == 0));
2072         fl_set_button(form->Wysiwyg1, (pflags == 1));
2073         fl_set_button(form->Wysiwyg2, (pflags == 2));
2074         fl_set_button(form->Wysiwyg3, (pflags == 3));
2075         fl_set_button(form->Frame, ((flags & 4) != 0));
2076         fl_set_button(form->Translations, ((flags & 8) != 0));
2077         fl_set_button(form->Subfigure, (subfigure != 0));
2078         pflags = flags;
2079         psubfigure = subfigure;
2080         sprintf(buf, "%g", xwid);
2081         fl_set_input(form->Width, buf);
2082         sprintf(buf, "%g", xhgh);
2083         fl_set_input(form->Height, buf);
2084         sprintf(buf, "%g", angle);
2085         fl_set_input(form->Angle, buf);
2086         if (!fname.empty()){
2087                 string buf1 = OnlyPath(owner->fileName());
2088                 string fname2 = MakeRelPath(fname, buf1);
2089                 fl_set_input(form->EpsFile, fname2.c_str());
2090         }
2091         else fl_set_input(form->EpsFile, "");
2092         fl_set_input(form->Subcaption, subcaption.c_str());
2093         if(current_view->buffer()->isReadonly()) 
2094                 DisableFigurePanel(form);
2095
2096         TempRegenerate();
2097 }
2098
2099
2100 void InsetFig::Preview(char const * p)
2101 {
2102         int pid = fork();
2103
2104         if (pid == -1) {
2105                 lyxerr << "Cannot fork process!" << endl;
2106                 return;         // error
2107         }
2108         if (pid > 0) {
2109                 addpidwait(pid);
2110                 return;         // parent process
2111         }
2112
2113         string buf1 = OnlyPath(owner->fileName());
2114         string buf2 = MakeAbsPath(p, buf1);
2115         
2116         lyxerr << "Error during rendering "
2117                << execlp(lyxrc->view_pspic_command.c_str(),
2118                          lyxrc->view_pspic_command.c_str(),
2119                          buf2.c_str(), 0)
2120                << endl;
2121         _exit(0);
2122 }
2123
2124
2125 void InsetFig::BrowseFile()
2126 {
2127         static string current_figure_path;
2128         static int once = 0;
2129         LyXFileDlg fileDlg;
2130
2131         if (lyxerr.debugging()) {
2132                 lyxerr << "Filename: "
2133                        << owner->fileName() << endl;
2134         }
2135         string p = fl_get_input(form->EpsFile);
2136
2137         string buf = MakeAbsPath(owner->fileName());
2138         string buf2 = OnlyPath(buf);
2139         if (!p.empty()) {
2140                 buf = MakeAbsPath(p, buf2);
2141                 buf = OnlyPath(buf);
2142         } else {
2143                 buf = OnlyPath(owner->fileName().c_str());
2144         }
2145         
2146         // Does user clipart directory exist?
2147         string bufclip = AddName (user_lyxdir, "clipart");      
2148         FileInfo fileInfo(bufclip);
2149         if (!(fileInfo.isOK() && fileInfo.isDir()))
2150                 // No - bail out to system clipart directory
2151                 bufclip = AddName (system_lyxdir, "clipart");   
2152
2153
2154         fileDlg.SetButton(0, _("Clipart"), bufclip); 
2155         fileDlg.SetButton(1, _("Document"), buf); 
2156
2157         bool error = false;
2158         do {
2159                 ProhibitInput();
2160                 if (once) {
2161                         p = fileDlg.Select(_("EPS Figure"),
2162                                            current_figure_path,
2163                                            "*ps", string());
2164                 } else {
2165                         p = fileDlg.Select(_("EPS Figure"), buf,
2166                                            "*ps", string());
2167                 }
2168                 AllowInput();
2169
2170                 if (p.empty()) return;
2171
2172                 buf = MakeRelPath(p, buf2);
2173                 current_figure_path = OnlyPath(p);
2174                 once = 1;
2175                 
2176                 if (contains(p, "#") || contains(p, "~") || contains(p, "$")
2177                     || contains(p, "%") || contains(p, " ")) 
2178                         {
2179                                 WriteAlert(_("Filename can't contain any "
2180                                              "of these characters:"),
2181                                            // xgettext:no-c-format
2182                                            _("space, '#', '~', '$' or '%'.")); 
2183                                 error = true;
2184                         }
2185         } while (error);
2186
2187         if (form) fl_set_input(form->EpsFile, buf.c_str());
2188 }
2189
2190
2191 void GraphicsCB(FL_OBJECT * obj, long arg)
2192 {
2193         /* obj->form contains the form */
2194
2195         if (lyxerr.debugging()) {
2196                 lyxerr << "GraphicsCB callback: " << arg << endl;
2197         }
2198
2199         /* find inset we were reacting to */
2200         for (int i = 0; i < figinsref; ++i)
2201                 if (figures[i]->inset->form && figures[i]->inset->form->Figure
2202                     == obj->form) {
2203             
2204                         if (lyxerr.debugging()) {
2205                                 lyxerr << "Calling back figure " << i << endl;
2206                         }
2207                         figures[i]->inset->CallbackFig(arg);
2208                         return;
2209                 }
2210 }
2211
2212
2213 void HideFiguresPopups()
2214 {
2215         for (int i = 0; i < figinsref; ++i)
2216                 if (figures[i]->inset->form 
2217                     && figures[i]->inset->form->Figure->visible) {
2218                         if (lyxerr.debugging()) {
2219                                 lyxerr << "Hiding figure " << i << endl;
2220                         }
2221                         // hide and free the form
2222                         figures[i]->inset->CallbackFig(9);
2223                 }
2224 }