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