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