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