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