]> git.lyx.org Git - features.git/blob - src/insets/figinset.C
my changes during the holidyas...i expect some compilers to have some problems, but...
[features.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 string NextToken(istream & is)
1010 {
1011         string token;
1012         char c;
1013         if (!is.eof()) {
1014                 do {
1015                         is.get(c);
1016                         token += c;
1017                 } while (!is.eof() && !isspace(c));
1018                 token.erase(token.length() - 1); // remove the isspace
1019         }
1020         return token;
1021 }
1022
1023
1024 InsetFig::InsetFig(int tmpx, int tmpy, Buffer * o)
1025         : owner(o)
1026 {
1027         wid = tmpx;
1028         hgh = tmpy;
1029         wtype = DEF;
1030         htype = DEF;
1031         twtype = DEF;
1032         thtype = DEF;
1033         pflags = flags = 9;
1034         psubfigure = subfigure = false;
1035         xwid = xhgh = angle = 0;
1036         pswid = pshgh = 0;
1037         raw_wid = raw_hgh = 0;
1038         changedfname = false;
1039         RegisterFigure(this);
1040 }
1041
1042
1043 InsetFig::~InsetFig()
1044 {
1045         if (lyxerr.debugging()) {
1046                 lyxerr << "Figure destructor called" << endl;
1047         }
1048         UnregisterFigure(this);
1049 }
1050
1051
1052 int InsetFig::Ascent(LyXFont const &) const
1053 {
1054         return hgh + 3;
1055 }
1056
1057
1058 int InsetFig::Descent(LyXFont const &) const
1059 {
1060         return 1;
1061 }
1062
1063
1064 int InsetFig::Width(LyXFont const &) const
1065 {
1066         return wid + 2;
1067 }
1068
1069
1070 void InsetFig::Draw(LyXFont font, LyXScreen & scr, int baseline, float & x)
1071 {
1072         if (bitmap_waiting) getbitmaps();
1073
1074         // I wish that I didn't have to use this
1075         // but the figinset code is so complicated so
1076         // I don't want to fiddle with it now.
1077         unsigned long pm = scr.getForeground();
1078         
1079         if (figure && figure->data && figure->data->bitmap &&
1080             !figure->data->reading && !figure->data->broken) {
1081                 // draw the bitmap
1082                 XCopyArea(fl_display, figure->data->bitmap, pm, getGC(gc_copy),
1083                           0, 0, wid, hgh, int(x+1), baseline-hgh);
1084                 XFlush(fl_display);
1085                 if (flags & 4) XDrawRectangle(fl_display, pm, getGC(gc_copy),
1086                                               int(x), baseline - hgh - 1,
1087                                               wid+1, hgh+1);
1088         } else {
1089                 char * msg = 0;
1090                 // draw frame
1091                 XDrawRectangle(fl_display, pm, getGC(gc_copy),
1092                                int(x),
1093                                baseline - hgh - 1, wid+1, hgh+1);
1094                 if (figure && figure->data) {
1095                         if (figure->data->broken)  msg = _("[render error]");
1096                         else if (figure->data->reading) msg = _("[rendering ... ]");
1097                 } else 
1098                         if (fname.empty()) msg = _("[no file]");
1099                         else if ((flags & 3) == 0) msg = _("[not displayed]");
1100                         else if (lyxrc->ps_command.empty()) msg = _("[no ghostscript]");
1101
1102                 if (!msg) msg = _("[unknown error]");
1103                 
1104                 font.setFamily (LyXFont::SANS_FAMILY);
1105                 font.setSize (LyXFont::SIZE_FOOTNOTE);
1106                 string justname = OnlyFilename (fname);
1107                 font.drawString(justname, pm,
1108                                 baseline - font.maxAscent() - 4,
1109                                 int(x) + 8);
1110                 font.setSize (LyXFont::SIZE_TINY);
1111                 font.drawText (msg, strlen(msg), pm,
1112                                baseline - 4,
1113                                int(x) + 8);
1114
1115         }
1116         x += Width(font);    // ?
1117 }
1118
1119
1120 void InsetFig::Write(ostream & os)
1121 {
1122         Regenerate();
1123         os << "Figure size " << wid << " " << hgh << "\n";
1124         if (!fname.empty()) {
1125                 string buf1 = OnlyPath(owner->fileName());
1126                 string fname2 = MakeRelPath(fname, buf1);
1127                 os << "file " << fname2 << "\n";
1128         }
1129         if (!subcaption.empty())
1130                 os << "subcaption " << subcaption << "\n";
1131         if (wtype) os << "width " << static_cast<int>(wtype) << " " << xwid << "\n";
1132         if (htype) os << "height " << static_cast<int>(htype) << " " << xhgh << "\n";
1133         if (angle != 0) os << "angle " << angle << "\n";
1134         os << "flags " << flags << "\n";
1135         if (subfigure) os << "subfigure\n";
1136 }
1137
1138
1139 void InsetFig::Read(LyXLex & lex)
1140 {
1141         string buf;
1142         bool finished = false;
1143         
1144         while (lex.IsOK() && !finished) {
1145                 lex.next();
1146
1147                 string const token = lex.GetString();
1148                 lyxerr.debug() << "Token: " << token << endl;
1149                 
1150                 if (token.empty())
1151                         continue;
1152                 else if (token == "\\end_inset") {
1153                         finished = true;
1154                 } else if (token == "file") {
1155                         if (lex.next()) {
1156                                 buf = lex.GetString();
1157                                 string buf1 = OnlyPath(owner->fileName());
1158                                 fname = MakeAbsPath(buf, buf1);
1159                                 changedfname = true;
1160                         }
1161                 } else if (token == "extra") {
1162                         if (lex.next());
1163                         // kept for backwards compability. Delete in 0.13.x
1164                 } else if (token == "subcaption") {
1165                         if (lex.EatLine())
1166                                 subcaption = lex.GetString();
1167                 } else if (token == "label") {
1168                         if (lex.next());
1169                         // kept for backwards compability. Delete in 0.13.x
1170                 } else if (token == "angle") {
1171                         if (lex.next())
1172                                 angle = lex.GetFloat();
1173                 } else if (token == "size") {
1174                         if (lex.next())
1175                                 wid = lex.GetInteger();
1176                         if (lex.next())
1177                                 hgh = lex.GetInteger();
1178                 } else if (token == "flags") {
1179                         if (lex.next())
1180                                 flags = pflags = lex.GetInteger();
1181                 } else if (token == "subfigure") {
1182                         subfigure = psubfigure = true;
1183                 } else if (token == "width") {
1184                         int typ = 0;
1185                         if (lex.next())
1186                                 typ = lex.GetInteger();
1187                         if (lex.next())
1188                                 xwid = lex.GetFloat();
1189                         switch (typ) {
1190                         case DEF: wtype = DEF; break;
1191                         case CM: wtype = CM; break;
1192                         case IN: wtype = IN; break;
1193                         case PER_PAGE: wtype = PER_PAGE; break;
1194                         case PER_COL: wtype = PER_COL; break;
1195                         default:
1196                                 lyxerr.debug() << "Unknown type!" << endl;
1197                                 break;
1198                         }
1199                         twtype = wtype;
1200                 } else if (token == "height") {
1201                         int typ = 0;
1202                         if (lex.next())
1203                                 typ = lex.GetInteger();
1204                         if (lex.next())
1205                                 xhgh = lex.GetFloat();
1206                         switch (typ) {
1207                         case DEF: htype = DEF; break;
1208                         case CM: htype = CM; break;
1209                         case IN: htype = IN; break;
1210                         case PER_PAGE: htype = PER_PAGE; break;
1211                         default:
1212                                 lyxerr.debug() << "Unknown type!" << endl;
1213                                 break;
1214                         }
1215                         thtype = htype;
1216                 }
1217         }
1218         Regenerate();
1219         Recompute();
1220 }
1221
1222
1223 int InsetFig::Latex(ostream & os, signed char /* fragile*/ )
1224 {
1225         Regenerate();
1226         if (!cmd.empty()) os << cmd << " ";
1227         return 0;
1228 }
1229
1230
1231 int InsetFig::Latex(string & file, signed char /* fragile*/ )
1232 {
1233         Regenerate();
1234         file += cmd + ' ';
1235         return 0;
1236 }
1237
1238
1239 int InsetFig::Linuxdoc(string &/*file*/)
1240 {
1241         return 0;
1242 }
1243
1244
1245 int InsetFig::DocBook(string & file)
1246 {
1247         string figurename = fname;
1248
1249         if(suffixIs(figurename, ".eps"))
1250                 figurename.erase(fname.length() - 5);
1251
1252         file += "@<graphic fileref=\"" + figurename + "\"></graphic>";
1253         return 0;
1254 }
1255
1256
1257 void InsetFig::Validate(LaTeXFeatures & features) const
1258 {
1259         features.graphics = true;
1260         if (subfigure) features.subfigure = true;
1261 }
1262
1263
1264 unsigned char InsetFig::Editable() const
1265 {
1266         return 1;
1267 }
1268
1269
1270 bool InsetFig::Deletable() const
1271 {
1272         return false;
1273 }
1274
1275
1276 void InsetFig::Edit(int, int)
1277 {
1278         lyxerr.debug() << "Editing InsetFig." << endl;
1279         Regenerate();
1280
1281         // We should have RO-versions of the form instead.
1282         // The actual prevention of altering a readonly doc
1283         // is done in CallbackFig()
1284         if(current_view->buffer()->isReadonly()) 
1285                 WarnReadonly(current_view->buffer()->fileName());
1286
1287         if (!form) {
1288                 form = create_form_Figure();
1289                 fl_set_form_atclose(form->Figure, CancelCloseBoxCB, 0);
1290                 fl_set_object_return(form->Angle, FL_RETURN_ALWAYS);
1291                 fl_set_object_return(form->Width, FL_RETURN_ALWAYS);
1292                 fl_set_object_return(form->Height, FL_RETURN_ALWAYS);
1293         }
1294         RestoreForm();
1295         if (form->Figure->visible) {
1296                 fl_raise_form(form->Figure);
1297         } else {
1298                 fl_show_form(form->Figure, FL_PLACE_MOUSE | FL_PLACE_SIZE,
1299                              FL_FULLBORDER, _("Figure"));
1300         }
1301 }
1302
1303
1304 Inset * InsetFig::Clone() const
1305 {
1306         InsetFig * tmp = new InsetFig(100, 100, owner);
1307
1308         if (lyxerr.debugging()) {
1309                 lyxerr << "Clone Figure: buffer:["
1310                        << current_view->buffer()
1311                        << "], cbuffer:[xx]" << endl;
1312         }
1313
1314         tmp->wid = wid;
1315         tmp->hgh = hgh;
1316         tmp->raw_wid = raw_wid;
1317         tmp->raw_hgh = raw_hgh;
1318         tmp->angle = angle;
1319         tmp->xwid = xwid;
1320         tmp->xhgh = xhgh;
1321         tmp->flags = flags;
1322         tmp->pflags = pflags;
1323         tmp->subfigure = subfigure;
1324         tmp->psubfigure = psubfigure;
1325         tmp->wtype = wtype;
1326         tmp->htype = htype;
1327         tmp->psx = psx;
1328         tmp->psy = psy;
1329         tmp->pswid = pswid;
1330         tmp->pshgh = pshgh;
1331         tmp->fname = fname;
1332         if (!fname.empty() && (flags & 3) && !lyxrc->ps_command.empty()) { 
1333                 // do not display if there is
1334                 // "do not display" chosen (Matthias 260696)
1335                 tmp->figure->data = getfigdata(wid, hgh, fname, psx, psy,
1336                                                pswid, pshgh, raw_wid, raw_hgh,
1337                                                angle, flags & (3|8));
1338         } else tmp->figure->data = 0;
1339         tmp->subcaption = subcaption;
1340         tmp->changedfname = false;
1341         tmp->owner = owner;
1342         tmp->Regenerate();
1343         return tmp;
1344 }
1345
1346
1347 Inset::Code InsetFig::LyxCode() const
1348 {
1349         return Inset::GRAPHICS_CODE;
1350 }
1351
1352
1353 void InsetFig::Regenerate()
1354 {
1355         string cmdbuf;
1356         string resizeW, resizeH;
1357         string rotate, recmd;
1358
1359         if (fname.empty()) {
1360                 cmd = "\\fbox{\\rule[-0.5in]{0pt}{1in}";
1361                 cmd += _("empty figure path");
1362                 cmd += '}';
1363                 //if (form) fl_set_object_label(form->cmd, "");
1364                 return;
1365         }
1366
1367         string buf1 = OnlyPath(owner->fileName());
1368         string fname2 = MakeRelPath(fname, buf1);
1369
1370         string gcmd = "\\includegraphics{" + fname2 + '}';
1371         
1372         switch (wtype) {
1373         case DEF:
1374                 break;
1375         case CM:{// \resizebox*{h-length}{v-length}{text}
1376                 char buf[10];
1377                 sprintf(buf, "%g", xwid); // should find better
1378                 resizeW = buf;
1379                 resizeW += "cm";
1380                 break;
1381         }
1382         case IN: {
1383                 char buf[10];
1384                 sprintf(buf, "%g", xwid);
1385                 resizeW = buf;
1386                 resizeW += "in";
1387                 break;
1388         }
1389         case PER_PAGE:{
1390                 char buf[10];
1391                 sprintf(buf, "%g", xwid/100);
1392                 resizeW = buf;
1393                 resizeW += "\\textwidth";
1394                 break;
1395         }
1396         case PER_COL:{
1397                 char buf[10];
1398                 sprintf(buf, "%g", xwid/100);
1399                 resizeW = buf;
1400                 resizeW += "\\columnwidth";
1401                 break;
1402         }
1403         }
1404
1405         switch (htype) {
1406         case DEF:
1407                 break;
1408         case CM: {
1409                 char buf[10];
1410                 sprintf(buf, "%g", xhgh);
1411                 resizeH = buf;
1412                 resizeH += "cm";
1413                 break;
1414         }
1415         case IN:{
1416                 char buf[10];
1417                 sprintf(buf, "%g", xhgh);
1418                 resizeH = buf;
1419                 resizeH += "in";
1420                 break;
1421         }
1422         case PER_PAGE: {
1423                 char buf[10];
1424                 sprintf(buf, "%g", xhgh/100);
1425                 resizeH = buf;
1426                 resizeH += "\\textheight";
1427                 break;
1428         }
1429         case PER_COL: {
1430                 // Doesn't occur; case exists to suppress compiler warnings.
1431                 break;
1432         }
1433         }
1434
1435         if (!resizeW.empty() || !resizeH.empty()) {
1436                 recmd = "\\resizebox*{";
1437                 if (!resizeW.empty())
1438                         recmd += resizeW;
1439                 else
1440                         recmd += '!';
1441                 recmd += "}{";
1442                 if (!resizeH.empty())
1443                         recmd += resizeH;
1444                 else
1445                         recmd += '!';
1446                 recmd += "}{";
1447         }
1448         
1449         
1450         if (angle != 0) {
1451                 char buf[10];
1452                 sprintf(buf, "%g", angle);
1453                 // \rotatebox{angle}{text}
1454                 rotate = "\\rotatebox{";
1455                 rotate += buf;
1456                 rotate += "}{";
1457         }
1458
1459         cmdbuf = recmd;
1460         cmdbuf += rotate;
1461         cmdbuf += gcmd;
1462         if (!rotate.empty()) cmdbuf += '}';
1463         if (!recmd.empty()) cmdbuf += '}';
1464         if (subfigure) {
1465                 if (!subcaption.empty())
1466                         cmdbuf = "\\subfigure[" + subcaption +
1467                                 "]{" + cmdbuf + "}";
1468                 else
1469                         cmdbuf = "\\subfigure{" + cmdbuf + "}";
1470         }
1471         
1472         cmd = cmdbuf;
1473
1474         //if (form) fl_set_object_label(form->cmd, cmd.c_str());
1475 }
1476
1477
1478 void InsetFig::TempRegenerate()
1479 {
1480         string cmdbuf;
1481         string resizeW, resizeH;
1482         string rotate, recmd;
1483         
1484         char const * tfname = fl_get_input(form->EpsFile);
1485         string tsubcap = fl_get_input(form->Subcaption);
1486         float tangle = atof(fl_get_input(form->Angle));
1487         float txwid = atof(fl_get_input(form->Width));
1488         float txhgh = atof(fl_get_input(form->Height));
1489
1490         if (!tfname || !*tfname) {
1491                 //fl_set_object_label(form->cmd, "");
1492                 //fl_redraw_object(form->cmd);
1493                 cmd = "\\fbox{\\rule[-0.5in]{0pt}{1in}";
1494                 cmd += _("empty figure path");
1495                 cmd += '}';
1496                 return;
1497         }
1498
1499         string buf1 = OnlyPath(owner->fileName());
1500         string fname2 = MakeRelPath(tfname, buf1);
1501         // \includegraphics*[<llx,lly>][<urx,ury>]{file}
1502         string gcmd = "\\includegraphics{" + fname2 + '}';
1503         
1504         switch (twtype) {
1505         case DEF:
1506                 break;
1507         case CM: {// \resizebox*{h-length}{v-length}{text}
1508                 char buf[10];
1509                 sprintf(buf, "%g", txwid); // should find better
1510                 resizeW = buf;
1511                 resizeW += "cm";
1512                 break;
1513         }
1514         case IN: {
1515                 char buf[10];
1516                 sprintf(buf, "%g", txwid);
1517                 resizeW = buf;
1518                 resizeW += "in";
1519                 break;
1520         }
1521         case PER_PAGE: {
1522                 char buf[10];
1523                 sprintf(buf, "%g", txwid/100);
1524                 resizeW = buf;
1525                 resizeW += "\\textwidth";
1526                 break;
1527         }
1528         case PER_COL: {
1529                 char buf[10];
1530                 sprintf(buf, "%g", txwid/100);
1531                 resizeW = buf;
1532                 resizeW += "\\columnwidth";
1533                 break;
1534         }
1535         }
1536
1537         switch (thtype) {
1538         case DEF:
1539                 break;
1540         case CM: {
1541                 char buf[10];
1542                 sprintf(buf, "%g", txhgh);
1543                 resizeH = buf;
1544                 resizeH += "cm";
1545                 break;
1546         }
1547         case IN: {
1548                 char buf[10];
1549                 sprintf(buf, "%g", txhgh);
1550                 resizeH = buf;
1551                 resizeH += "in";
1552                 break;
1553         }
1554         case PER_PAGE: {
1555                 char buf[10];
1556                 sprintf(buf, "%g", txhgh/100);
1557                 resizeH = buf;
1558                 resizeH += "\\textheight";
1559                 break;
1560         }
1561         case PER_COL: {
1562                 // Doesn't occur; case exists to suppress compiler warnings.
1563                 break;
1564         }
1565         }
1566
1567         // \resizebox*{h-length}{v-length}{text}
1568         if (!resizeW.empty() || !resizeH.empty()) {
1569                 recmd = "\\resizebox*{";
1570                 if (!resizeW.empty())
1571                         recmd += resizeW;
1572                 else
1573                         recmd += '!';
1574                 recmd += "}{";
1575                 if (!resizeH.empty())
1576                         recmd += resizeH;
1577                 else
1578                         recmd += '!';
1579                 recmd += "}{";
1580         }
1581         
1582         if (tangle != 0) {
1583                 char buf[10];
1584                 sprintf(buf, "%g", tangle);
1585                 // \rotatebox{angle}{text}
1586                 rotate = "\\rotatebox{";
1587                 rotate += buf;
1588                 rotate += "}{";
1589         }
1590
1591         cmdbuf = recmd;
1592         cmdbuf += rotate;
1593         cmdbuf += gcmd;
1594         if (!rotate.empty()) cmdbuf += '}';
1595         if (!recmd.empty()) cmdbuf += '}';
1596         if (psubfigure && !tsubcap.empty()) {
1597                 cmdbuf = string("\\subfigure{") + tsubcap
1598                         + string("}{") + cmdbuf + "}";
1599         }
1600 }
1601
1602
1603 void InsetFig::Recompute()
1604 {
1605         bool changed = changedfname;
1606         int newx, newy, nraw_x, nraw_y;
1607
1608         if (changed) GetPSSizes();
1609
1610         float sin_a = sin (angle / DEG2PI);  /* rotation; H. Zeller 021296 */
1611         float cos_a = cos (angle / DEG2PI);
1612         int frame_wid = int(ceil(fabs(cos_a * pswid) + fabs(sin_a * pshgh)));
1613         int frame_hgh= int(ceil(fabs(cos_a * pshgh) + fabs(sin_a * pswid)));
1614
1615         /* now recompute wid and hgh, and if that is changed, set changed */
1616         /* this depends on chosen size of the picture and its bbox */
1617         // This will be redone in 0.13 ... (hen)
1618         if (!fname.empty()) {
1619                 // say, total width is 595 pts, as A4 in TeX, thats in 1/72" */
1620
1621                 newx = frame_wid;
1622                 newy = frame_hgh;
1623                 switch (wtype) {
1624                 case DEF:
1625                         break;
1626                 case CM:        /* cm */
1627                         newx = int(28.346 * xwid);
1628                         break;
1629                 case IN: /* in */
1630                         newx = int(72 * xwid);
1631                         break;
1632                 case PER_PAGE:  /* % of page */
1633                         newx = int(5.95 * xwid);
1634                         break;
1635                 case PER_COL:   /* % of col */
1636                         newx = int(2.975 * xwid);
1637                         break;
1638                 }
1639                 
1640                 if (wtype && frame_wid) newy = newx*frame_hgh/frame_wid;
1641                 
1642                 switch (htype) {
1643                 case DEF:
1644                         //lyxerr << "This should not happen!" << endl;
1645                         break;
1646                 case CM:        /* cm */
1647                         newy = int(28.346 * xhgh);
1648                         break;
1649                 case IN: /* in */
1650                         newy = int(72 * xhgh);
1651                         break;
1652                 case PER_PAGE:  /* % of page */
1653                         newy = int(8.42 * xhgh);
1654                         break;
1655                 case PER_COL: 
1656                         // Doesn't occur; case exists to suppress
1657                         // compiler warnings.  
1658                         break;
1659                 }
1660                 if (htype && !wtype && frame_hgh)
1661                         newx = newy*frame_wid/frame_hgh;
1662         } else {
1663                 newx = wid;
1664                 newy = hgh;
1665         }
1666
1667         if (frame_wid == 0)
1668                 nraw_x = 5;
1669         else
1670                 nraw_x = int((1.0 * pswid * newx)/frame_wid);
1671
1672         if (frame_hgh == 0)
1673                 nraw_y = 5;
1674         else
1675                 nraw_y = int((1.0 * pshgh * newy)/frame_hgh);
1676
1677         // cannot be zero, actually, set it to some minimum, so its clickable
1678         if (newx < 5) newx = 5;
1679         if (newy < 5) newy = 5;
1680
1681         if (newx   != wid     || newy   != hgh     || 
1682             nraw_x != raw_wid || nraw_y != raw_hgh ||
1683             flags  != pflags  || subfigure != psubfigure) 
1684                 changed = true;
1685        
1686         raw_wid = nraw_x;
1687         raw_hgh = nraw_y;
1688         wid = newx;
1689         hgh = newy;
1690         flags = pflags;
1691         subfigure = psubfigure;
1692
1693         if (changed) {
1694                 figdata * pf = figure->data;
1695
1696                 // get new data
1697                 if (!fname.empty() && (flags & 3)
1698                     && !lyxrc->ps_command.empty()) {
1699                         // do not display if there is "do not display"
1700                         // chosen (Matthias 260696)
1701                         figure->data = getfigdata(wid, hgh, fname,
1702                                                   psx, psy, pswid, pshgh,
1703                                                   raw_wid, raw_hgh,
1704                                                   angle, flags & (3|8));
1705                 } else figure->data = 0;
1706
1707                 // free the old data
1708                 if (pf) freefigdata(pf);
1709         }
1710
1711         changedfname = false;
1712 }
1713
1714
1715 void InsetFig::GetPSSizes()
1716 {
1717         /* get %%BoundingBox: from postscript file */
1718         
1719         /* defaults to associated size
1720          * ..just in case the PS-file is not readable (Henner, 24-Aug-97) 
1721          */
1722         psx = 0;
1723         psy = 0;
1724         pswid = wid;
1725         pshgh = hgh;
1726
1727         if (fname.empty()) return;
1728         string p;
1729         ifstream ifs(fname.c_str());
1730
1731         if (!ifs) return;       // file not found !!!!
1732
1733         /* defaults to A4 page */
1734         psx = 0;
1735         psy = 0;
1736         pswid = 595;
1737         pshgh = 842;
1738
1739         char lastchar = 0; ifs.get(lastchar);
1740         for (;;) {
1741                 char c = 0; ifs.get(c);
1742                 if (ifs.eof()) {
1743                         lyxerr.debug() << "End of (E)PS file reached and"
1744                                 " no BoundingBox!" << endl;
1745                         break;
1746                 }
1747                 if (c == '%' && lastchar == '%') {
1748                         p = NextToken(ifs);
1749                         if (p.empty()) break;
1750                         // we should not use this, with it we cannot
1751                         // discover bounding box and end of file.
1752                         //if (strcmp(p, "EndComments") == 0) break;
1753                         lyxerr.debug() << "Token: `" << p << "'" << endl;
1754                         if (p == "BoundingBox:") {
1755                                 float fpsx, fpsy, fpswid, fpshgh;
1756                                 if (ifs >> fpsx >> fpsy >> fpswid >> fpshgh) {
1757                                         psx = int(fpsx);
1758                                         psy = int(fpsy);
1759                                         pswid = int(fpswid);
1760                                         pshgh = int(fpshgh);
1761                                 }
1762                                 if (lyxerr.debugging()) {
1763                                         lyxerr << "%%%%BoundingBox:"
1764                                                << psx << ' '
1765                                                << psy << ' '
1766                                                << pswid << ' '
1767                                                << pshgh << endl;
1768                                 }
1769                                 break;
1770                         }
1771                         c = 0;
1772                 }
1773                 lastchar = c;
1774         }
1775         pswid -= psx;
1776         pshgh -= psy;
1777
1778 }
1779
1780
1781 void InsetFig::CallbackFig(long arg)
1782 {
1783         bool regen = false;
1784         char const * p;
1785
1786         if (lyxerr.debugging()) {
1787                 lyxerr << "Figure callback, arg " << arg << endl;
1788         }
1789
1790         switch (arg) {
1791         case 10:
1792         case 11:
1793         case 12:        /* width type */
1794         case 13:
1795         case 14:
1796                 switch (arg - 10) {
1797                 case DEF:
1798                         twtype = DEF;
1799                         // put disable here
1800                         fl_deactivate_object(form->Width);
1801                         break;
1802                 case CM:
1803                         twtype = CM;
1804                         // put enable here
1805                         fl_activate_object(form->Width);
1806                         break;
1807                 case IN:
1808                         twtype = IN;
1809                         // put enable here
1810                         fl_activate_object(form->Width);
1811                         break;
1812                 case PER_PAGE:
1813                         twtype = PER_PAGE;
1814                         // put enable here
1815                         fl_activate_object(form->Width);
1816                         break;
1817                 case PER_COL:
1818                         twtype = PER_COL;
1819                         // put enable here
1820                         fl_activate_object(form->Width);
1821                         break;
1822                 default:
1823                         lyxerr.debug() << "Unknown type!" << endl;
1824                         break;
1825                 }
1826                 regen = true;
1827                 break;
1828         case 20:
1829         case 21:
1830         case 22:        /* height type */
1831         case 23:
1832                 switch (arg - 20) {
1833                 case DEF:
1834                         thtype = DEF;
1835                         // put disable here
1836                         fl_deactivate_object(form->Height);
1837                         break;
1838                 case CM:
1839                         thtype = CM;
1840                         // put enable here
1841                         fl_activate_object(form->Height);
1842                         break;
1843                 case IN:
1844                         thtype = IN;
1845                         // put enable here
1846                         fl_activate_object(form->Height);
1847                         break;
1848                 case PER_PAGE:
1849                         thtype = PER_PAGE;
1850                         // put enable here
1851                         fl_activate_object(form->Height);
1852                         break;
1853                 default:
1854                         lyxerr.debug() << "Unknown type!" << endl;
1855                         break;
1856                 }
1857                 regen = true;
1858                 break;
1859         case 3:
1860                 pflags = pflags & ~3;           /* wysiwyg0 */
1861                 break;
1862         case 33:
1863                 pflags = (pflags & ~3) | 1;     /* wysiwyg1 */
1864                 break;
1865         case 43:
1866                 pflags = (pflags & ~3) | 2;     /* wysiwyg2 */
1867                 break;
1868         case 63:
1869                 pflags = (pflags & ~3) | 3;     /* wysiwyg3 */
1870                 break;
1871         case 53:
1872                 pflags ^= 4;    /* frame */
1873                 break;
1874         case 54:
1875                 pflags ^= 8;    /* do translations */
1876                 break;
1877         case 70:
1878                 psubfigure = !psubfigure;       /* This is a subfigure */
1879                 break;
1880         case 2:
1881                 regen = true;           /* regenerate command */
1882                 break;
1883         case 0:                         /* browse file */
1884                 BrowseFile();
1885                 regen = true;
1886                 break;
1887         case 1:                         /* preview */
1888                 p = fl_get_input(form->EpsFile);
1889                 Preview(p);
1890                 break;
1891         case 7:                         /* apply */
1892         case 8:                         /* ok (apply and close) */
1893                 if(!current_view->buffer()->isReadonly()) {
1894                         wtype = twtype;
1895                         htype = thtype;
1896                         xwid = atof(fl_get_input(form->Width));
1897                         xhgh = atof(fl_get_input(form->Height));
1898                         angle = atof(fl_get_input(form->Angle));
1899                         p = fl_get_input(form->EpsFile);
1900                         if (p && *p) {
1901                                 string buf1 = OnlyPath(owner->fileName());
1902                                 fname = MakeAbsPath(p, buf1);
1903                                 changedfname = true;
1904                         } else {
1905                                 if (!fname.empty()) {
1906                                         changedfname = true;
1907                                         fname.clear();
1908                                 }
1909                         }
1910                         subcaption = fl_get_input(form->Subcaption);
1911         
1912                         Regenerate();
1913                         Recompute();
1914                         /* now update inset */
1915                         if (lyxerr.debugging()) {
1916                                 lyxerr << "Update: ["
1917                                        << wid << 'x' << hgh << ']' << endl;
1918                         }
1919                         UpdateInset(this);
1920                         if (arg == 8) {
1921                                 fl_set_focus_object(form->Figure, form->OkBtn);
1922                                 fl_hide_form(form->Figure);
1923 #if FL_REVISION == 89
1924 #warning Reactivate this free_form calls
1925 #else
1926                                 fl_free_form(form->Figure);
1927                                 free(form);
1928                                 form = 0;
1929 #endif
1930                         }
1931                         break;
1932                 } //if not readonly
1933                 //  The user has already been informed about RO in ::Edit
1934                 if(arg == 7) // if 'Apply'
1935                         break;
1936                 // fall through
1937         case 9:                         /* cancel = restore and close */
1938                 fl_set_focus_object(form->Figure, form->OkBtn);
1939                 fl_hide_form(form->Figure);
1940 #if FL_REVISION == 89
1941 #warning Reactivate this free_form calls
1942 #warning Jug, is this still a problem?
1943 #else
1944                 fl_free_form(form->Figure);
1945                 free(form);
1946                 form = 0;
1947 #endif
1948                 break;
1949         }
1950
1951         if (regen) TempRegenerate();
1952 }
1953
1954
1955 inline void DisableFigurePanel(FD_Figure * const form)
1956 {
1957         fl_deactivate_object(form->EpsFile);
1958         fl_deactivate_object(form->Browse);
1959         fl_deactivate_object(form->Width);
1960         fl_deactivate_object(form->Height);
1961         fl_deactivate_object(form->Frame);
1962         fl_deactivate_object(form->Translations);
1963         fl_deactivate_object(form->Angle);
1964         fl_deactivate_object(form->HeightGrp);
1965         fl_deactivate_object(form->page2);
1966         fl_deactivate_object(form->Default2);
1967         fl_deactivate_object(form->cm2);
1968         fl_deactivate_object(form->in2);
1969         fl_deactivate_object(form->HeightLabel);
1970         fl_deactivate_object(form->WidthLabel);
1971         fl_deactivate_object(form->DisplayGrp);
1972         fl_deactivate_object(form->Wysiwyg3);
1973         fl_deactivate_object(form->Wysiwyg0);
1974         fl_deactivate_object(form->Wysiwyg2);
1975         fl_deactivate_object(form->Wysiwyg1);
1976         fl_deactivate_object(form->WidthGrp);
1977         fl_deactivate_object(form->Default1);
1978         fl_deactivate_object(form->cm1);
1979         fl_deactivate_object(form->in1);
1980         fl_deactivate_object(form->page1);
1981         fl_deactivate_object(form->column1);
1982         fl_deactivate_object(form->Subcaption);
1983         fl_deactivate_object(form->Subfigure);
1984         fl_deactivate_object (form->OkBtn);
1985         fl_deactivate_object (form->ApplyBtn);
1986         fl_set_object_lcol (form->OkBtn, FL_INACTIVE);
1987         fl_set_object_lcol (form->ApplyBtn, FL_INACTIVE);
1988 }
1989
1990
1991 inline void EnableFigurePanel(FD_Figure * const form)
1992 {
1993         fl_activate_object(form->EpsFile);
1994         fl_activate_object(form->Browse);
1995         fl_activate_object(form->Width);
1996         fl_activate_object(form->Height);
1997         fl_activate_object(form->Frame);
1998         fl_activate_object(form->Translations);
1999         fl_activate_object(form->Angle);
2000         fl_activate_object(form->HeightGrp);
2001         fl_activate_object(form->page2);
2002         fl_activate_object(form->Default2);
2003         fl_activate_object(form->cm2);
2004         fl_activate_object(form->in2);
2005         fl_activate_object(form->HeightLabel);
2006         fl_activate_object(form->WidthLabel);
2007         fl_activate_object(form->DisplayGrp);
2008         fl_activate_object(form->Wysiwyg3);
2009         fl_activate_object(form->Wysiwyg0);
2010         fl_activate_object(form->Wysiwyg2);
2011         fl_activate_object(form->Wysiwyg1);
2012         fl_activate_object(form->WidthGrp);
2013         fl_activate_object(form->Default1);
2014         fl_activate_object(form->cm1);
2015         fl_activate_object(form->in1);
2016         fl_activate_object(form->page1);
2017         fl_activate_object(form->column1);
2018         fl_activate_object(form->Subcaption);
2019         fl_activate_object(form->Subfigure);
2020         fl_activate_object (form->OkBtn);
2021         fl_activate_object (form->ApplyBtn);
2022         fl_set_object_lcol (form->OkBtn, FL_BLACK);
2023         fl_set_object_lcol (form->ApplyBtn, FL_BLACK);
2024 }
2025
2026
2027 void InsetFig::RestoreForm()
2028 {
2029         char buf[32];
2030
2031         EnableFigurePanel(form);
2032
2033         twtype = wtype;
2034         fl_set_button(form->Default1, (wtype == 0));
2035         fl_set_button(form->cm1, (wtype == 1));
2036         fl_set_button(form->in1, (wtype == 2));
2037         fl_set_button(form->page1, (wtype == 3));
2038         fl_set_button(form->column1, (wtype == 4));
2039         if (wtype == 0) {
2040                 fl_deactivate_object(form->Width);
2041         } else {
2042                 fl_activate_object(form->Width);
2043         }
2044                 
2045         // enable and disable should be put here.
2046         thtype = htype;
2047         fl_set_button(form->Default2, (htype == 0));
2048         fl_set_button(form->cm2, (htype == 1));
2049         fl_set_button(form->in2, (htype == 2));
2050         fl_set_button(form->page2, (htype == 3));
2051         // enable and disable should be put here.
2052         if (htype == 0) {
2053                 fl_deactivate_object(form->Height);
2054         } else {
2055                 fl_activate_object(form->Height);
2056         }
2057
2058         int pflags = flags & 3;
2059         fl_set_button(form->Wysiwyg0, (pflags == 0));
2060         fl_set_button(form->Wysiwyg1, (pflags == 1));
2061         fl_set_button(form->Wysiwyg2, (pflags == 2));
2062         fl_set_button(form->Wysiwyg3, (pflags == 3));
2063         fl_set_button(form->Frame, ((flags & 4) != 0));
2064         fl_set_button(form->Translations, ((flags & 8) != 0));
2065         fl_set_button(form->Subfigure, (subfigure != 0));
2066         pflags = flags;
2067         psubfigure = subfigure;
2068         sprintf(buf, "%g", xwid);
2069         fl_set_input(form->Width, buf);
2070         sprintf(buf, "%g", xhgh);
2071         fl_set_input(form->Height, buf);
2072         sprintf(buf, "%g", angle);
2073         fl_set_input(form->Angle, buf);
2074         if (!fname.empty()){
2075                 string buf1 = OnlyPath(owner->fileName());
2076                 string fname2 = MakeRelPath(fname, buf1);
2077                 fl_set_input(form->EpsFile, fname2.c_str());
2078         }
2079         else fl_set_input(form->EpsFile, "");
2080         fl_set_input(form->Subcaption, subcaption.c_str());
2081         if(current_view->buffer()->isReadonly()) 
2082                 DisableFigurePanel(form);
2083
2084         TempRegenerate();
2085 }
2086
2087
2088 void InsetFig::Preview(char const * p)
2089 {
2090         int pid = fork();
2091
2092         if (pid == -1) {
2093                 lyxerr << "Cannot fork process!" << endl;
2094                 return;         // error
2095         }
2096         if (pid > 0) {
2097                 addpidwait(pid);
2098                 return;         // parent process
2099         }
2100
2101         string buf1 = OnlyPath(owner->fileName());
2102         string buf2 = MakeAbsPath(p, buf1);
2103         
2104         lyxerr << "Error during rendering "
2105                << execlp(lyxrc->view_pspic_command.c_str(),
2106                          lyxrc->view_pspic_command.c_str(),
2107                          buf2.c_str(), 0)
2108                << endl;
2109         _exit(0);
2110 }
2111
2112
2113 void InsetFig::BrowseFile()
2114 {
2115         static string current_figure_path;
2116         static int once = 0;
2117         LyXFileDlg fileDlg;
2118
2119         if (lyxerr.debugging()) {
2120                 lyxerr << "Filename: "
2121                        << owner->fileName() << endl;
2122         }
2123         string p = fl_get_input(form->EpsFile);
2124
2125         string buf = MakeAbsPath(owner->fileName());
2126         string buf2 = OnlyPath(buf);
2127         if (!p.empty()) {
2128                 buf = MakeAbsPath(p, buf2);
2129                 buf = OnlyPath(buf);
2130         } else {
2131                 buf = OnlyPath(owner->fileName().c_str());
2132         }
2133         
2134         // Does user clipart directory exist?
2135         string bufclip = AddName (user_lyxdir, "clipart");      
2136         FileInfo fileInfo(bufclip);
2137         if (!(fileInfo.isOK() && fileInfo.isDir()))
2138                 // No - bail out to system clipart directory
2139                 bufclip = AddName (system_lyxdir, "clipart");   
2140
2141
2142         fileDlg.SetButton(0, _("Clipart"), bufclip); 
2143         fileDlg.SetButton(1, _("Document"), buf); 
2144
2145         bool error = false;
2146         do {
2147                 ProhibitInput();
2148                 if (once) {
2149                         p = fileDlg.Select(_("EPS Figure"),
2150                                            current_figure_path,
2151                                            "*ps", string());
2152                 } else {
2153                         p = fileDlg.Select(_("EPS Figure"), buf,
2154                                            "*ps", string());
2155                 }
2156                 AllowInput();
2157
2158                 if (p.empty()) return;
2159
2160                 buf = MakeRelPath(p, buf2);
2161                 current_figure_path = OnlyPath(p);
2162                 once = 1;
2163                 
2164                 if (contains(p, "#") || contains(p, "~") || contains(p, "$")
2165                     || contains(p, "%") || contains(p, " ")) 
2166                         {
2167                                 WriteAlert(_("Filename can't contain any "
2168                                              "of these characters:"),
2169                                            // xgettext:no-c-format
2170                                            _("space, '#', '~', '$' or '%'.")); 
2171                                 error = true;
2172                         }
2173         } while (error);
2174
2175         if (form) fl_set_input(form->EpsFile, buf.c_str());
2176 }
2177
2178
2179 void GraphicsCB(FL_OBJECT * obj, long arg)
2180 {
2181         /* obj->form contains the form */
2182
2183         if (lyxerr.debugging()) {
2184                 lyxerr << "GraphicsCB callback: " << arg << endl;
2185         }
2186
2187         /* find inset we were reacting to */
2188         for (int i = 0; i < figinsref; ++i)
2189                 if (figures[i]->inset->form && figures[i]->inset->form->Figure
2190                     == obj->form) {
2191             
2192                         if (lyxerr.debugging()) {
2193                                 lyxerr << "Calling back figure " << i << endl;
2194                         }
2195                         figures[i]->inset->CallbackFig(arg);
2196                         return;
2197                 }
2198 }
2199
2200
2201 void HideFiguresPopups()
2202 {
2203         for (int i = 0; i < figinsref; ++i)
2204                 if (figures[i]->inset->form 
2205                     && figures[i]->inset->form->Figure->visible) {
2206                         if (lyxerr.debugging()) {
2207                                 lyxerr << "Hiding figure " << i << endl;
2208                         }
2209                         // hide and free the form
2210                         figures[i]->inset->CallbackFig(9);
2211                 }
2212 }