]> git.lyx.org Git - lyx.git/blob - src/insets/figinset.C
os:: patch from Ruurd + bindings display fix
[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_main.h"
49 #include "buffer.h"
50 #include "frontends/FileDialog.h"
51 #include "support/filetools.h"
52 #include "LyXView.h" // just because of form_main
53 #include "debug.h"
54 #include "LaTeXFeatures.h"
55 #include "lyxrc.h"
56 #include "gettext.h"
57 #include "lyx_gui_misc.h" // CancelCloseBoxCB
58 #include "support/FileInfo.h"
59 #include "support/lyxlib.h"
60 #include "support/os.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                         // #ifdef WITH_WARNINGS
526                         // #warning BUG seems that the only bug here
527                         // might be the hardcoded dpi.. Bummer!
528                         // #endif
529                         ostringstream t1;
530                         t1 << "0 0 0 0 " << p->data->wid << ' '
531                            << p->data->hgh << " 72 72 0 0 0 0";
532                         
533                         if (lyxerr.debugging()) {
534                                 lyxerr << "Will set GHOSTVIEW property to ["
535                                        << t1.str() << "]" << endl;
536                         }
537                         // wait until property is deleted if executing multiple
538                         // ghostscripts
539                         XGrabServer(tempdisp);
540                         for (;;) {
541                                 // grab server to prevent other child
542                                 // interfering with setting GHOSTVIEW property
543                                 // The grabbing goes on for too long, is it
544                                 // really needed? (Lgb)
545                                 // I moved most of the grabs... (Lgb)
546                                 if (lyxerr.debugging()) {
547                                         lyxerr << "Grabbing the server"
548                                                << endl;
549                                 }
550                                 prop = XListProperties(tempdisp,
551                                                        fl_get_canvas_id(
552                                         figinset_canvas), &nprop);
553                                 if (!prop) break;
554
555                                 bool err = true;
556                                 for (i = 0; i < nprop; ++i) {
557                                         char * p = XGetAtomName(tempdisp,
558                                                                 prop[i]);
559                                         if (compare(p, "GHOSTVIEW") == 0) {
560                                                 err = false;
561                                                 // We free it when we leave so we don't leak.
562                                                 XFree(p);
563                                                 break;
564                                         }
565                                         XFree(p);
566                                 }
567                                 XFree(reinterpret_cast<char *>(prop)); // jc:
568                                 if (err) break;
569                                 // ok, property found, we must wait until
570                                 // ghostscript deletes it
571                                 if (lyxerr.debugging()) {
572                                         lyxerr << "Releasing the server\n["
573                                                << getpid()
574                                                << "] GHOSTVIEW property"
575                                                 " found. Waiting." << endl;
576                                 }
577                                 XUngrabServer(tempdisp);
578                                 XFlush(tempdisp);
579                                 ::sleep(1);
580                                 XGrabServer(tempdisp);
581                         }
582                         XChangeProperty(tempdisp, 
583                                         fl_get_canvas_id(figinset_canvas),
584                                         XInternAtom(tempdisp, "GHOSTVIEW", false),
585                                         XInternAtom(tempdisp, "STRING", false),
586                                         8, PropModeAppend, 
587                                         reinterpret_cast<unsigned char*>(const_cast<char*>(t1.str().c_str())),
588                                         int(t1.str().size()));
589                         XUngrabServer(tempdisp);
590                         XFlush(tempdisp);
591
592                         ostringstream t3;
593
594                         switch (p->data->flags & 3) {
595                         case 0: t3 << 'H'; break; // Hidden
596                         case 1: t3 << 'M'; break; // Mono
597                         case 2: t3 << 'G'; break; // Gray
598                         case 3:
599                                 if (color_visual) 
600                                         t3 << 'C'; // Color
601                                 else 
602                                         t3 << 'G'; // Gray
603                                 break;
604                         }
605         
606                         t3 << ' ' << BlackPixelOfScreen(DefaultScreenOfDisplay(tempdisp))
607                            << ' ' << background_pixel;
608
609                         XGrabServer(tempdisp);
610                         XChangeProperty(tempdisp, 
611                                         fl_get_canvas_id(figinset_canvas),
612                                         XInternAtom(tempdisp,
613                                                     "GHOSTVIEW_COLORS", false),
614                                         XInternAtom(tempdisp, "STRING", false),
615                                         8, PropModeReplace, 
616                                         reinterpret_cast<unsigned char*>(const_cast<char*>(t3.str().c_str())),
617                                         int(t3.str().size()));
618                         XUngrabServer(tempdisp);
619                         XFlush(tempdisp);
620                         
621                         if (lyxerr.debugging()) {
622                                 lyxerr << "Releasing the server" << endl;
623                         }
624                         XCloseDisplay(tempdisp);
625
626                         // set up environment
627                         while (environ[ne])
628                                 ++ne;
629                         typedef char * char_p;
630                         env = new char_p[ne + 2];
631                         string tmp = t2.str().c_str();
632                         env[0] = new char[tmp.size() + 1];
633                         std::copy(tmp.begin(), tmp.end(), env[0]);
634                         env[0][tmp.size()] = '\0';
635                         ::memcpy(&env[1], environ, sizeof(char*) * (ne + 1));
636                         environ = env;
637
638                         // now make gs command
639                         // close(0);
640                         // close(1); do NOT close. If GS writes out
641                         // errors it would hang. (Matthias 290596) 
642
643                         string rbuf = "-r" + tostr(p->rx) + "x" + tostr(p->ry);
644                         string gbuf = "-g" + tostr(p->data->wid) + "x" + tostr(p->data->hgh);
645
646                         // now chdir into dir with .eps file, to be on the safe
647                         // side
648                         lyx::chdir(OnlyPath(p->data->fname));
649                         // make temp file name
650                         string tmpf = make_tmp(getpid());
651                         if (lyxerr.debugging()) {
652                                 lyxerr << "starting gs " << tmpf << " "
653                                        << p->data->fname
654                                        << ", pid: " << getpid() << endl;
655                         }
656
657                         int err = ::execlp(lyxrc.ps_command.c_str(), 
658                                          lyxrc.ps_command.c_str(), 
659                                          "-sDEVICE=x11",
660                                          "-dNOPAUSE", "-dQUIET",
661                                          "-dSAFER", 
662                                          rbuf.c_str(), gbuf.c_str(), tmpf.c_str(), 
663                                          p->data->fname.c_str(), 
664                                          "showpage.ps", "quit.ps", "-", 0);
665                         // if we are still there, an error occurred.
666                         lyxerr << "Error executing ghostscript. "
667                                << "Code: " << err << endl;
668                         lyxerr.debug() << "Cmd: " 
669                                        << lyxrc.ps_command
670                                        << " -sDEVICE=x11 "
671                                        << tmpf << ' '
672                                        << p->data->fname << endl;
673                         _exit(0);       // no gs?
674                 }
675                 // normal process (parent)
676                 if (lyxerr.debugging()) {
677                         lyxerr << "GS ["  << pid << "] started" << endl;
678                 }
679
680                 p->data->gspid = pid;
681                 ++gsrunning;
682                 gsqueue.pop();
683         }
684 }
685
686
687 void addwait(int psx, int psy, int pswid, int pshgh, figdata * data)
688 {
689         // recompute the stuff and put in the queue
690         queue_element p;
691         p.ofsx = psx;
692         p.ofsy = psy;
693         p.rx = (float(data->raw_wid) * 72.0) / pswid;
694         p.ry = (float(data->raw_hgh) * 72.0) / pshgh;
695
696         p.data = data;
697
698         gsqueue.push(p);
699
700         // if possible, run the queue
701         runqueue();
702 }
703
704
705 figdata * getfigdata(int wid, int hgh, string const & fname, 
706                      int psx, int psy, int pswid, int pshgh, 
707                      int raw_wid, int raw_hgh, float angle, char flags)
708 {
709         /* first search for an exact match with fname and width/height */
710
711         if (fname.empty() || !IsFileReadable(fname)) 
712                 return 0;
713
714         for (bitmaps_type::iterator it = bitmaps.begin();
715              it != bitmaps.end(); ++it) {
716                 if ((*it)->wid == wid && (*it)->hgh == hgh &&
717                     (*it)->flags == flags && (*it)->fname == fname &&
718                     (*it)->angle == angle) {
719                         (*it)->ref++;
720                         return (*it);
721                 }
722         }
723         figdata * p = new figdata;
724         p->wid = wid;
725         p->hgh = hgh;
726         p->raw_wid = raw_wid;
727         p->raw_hgh = raw_hgh;
728         p->angle = angle;
729         p->fname = fname;
730         p->flags = flags;
731         bitmaps.push_back(p);
732         XWindowAttributes wa;
733         XGetWindowAttributes(fl_get_display(), fl_get_canvas_id(
734                 figinset_canvas), &wa);
735
736         if (lyxerr.debugging()) {
737                 lyxerr << "Create pixmap disp:" << fl_get_display()
738                        << " scr:" << DefaultScreen(fl_get_display())
739                        << " w:" << wid
740                        << " h:" << hgh
741                        << " depth:" << wa.depth << endl;
742         }
743         
744         p->ref = 1;
745         p->reading = false;
746         p->broken = false;
747         p->gspid = -1;
748         if (flags) {
749                 p->bitmap = XCreatePixmap(fl_get_display(), fl_get_canvas_id(
750                         figinset_canvas), wid, hgh, wa.depth);
751                 p->gsdone = false;
752                 // initialize reading of .eps file with correct sizes and stuff
753                 addwait(psx, psy, pswid, pshgh, p);
754                 p->reading = true;
755         } else {
756                 p->bitmap = None;
757                 p->gsdone = true;
758         }
759
760         return p;
761 }
762
763
764 void getbitmap(figdata * p)
765 {
766         p->gspid = -1;
767 }
768
769
770 void makeupdatelist(figdata * p)
771 {
772         for (figures_type::iterator it = figures.begin();
773             it != figures.end(); ++it)
774                 if ((*it)->data == p) {
775                         if (lyxerr.debugging()) {
776                                 lyxerr << "Updating inset "
777                                        << (*it)->inset
778                                        << endl;
779                         }
780                         // add inset figures[i]->inset into to_update list
781                         current_view->pushIntoUpdateList((*it)->inset);
782                 }
783 }
784
785 } // namespace anon
786
787
788 // this func is only "called" in spellchecker.C
789 void sigchldchecker(pid_t pid, int * status)
790 {
791         lyxerr.debug() << "Got pid = " << pid << endl;
792         bool pid_handled = false;
793         for (bitmaps_type::iterator it = bitmaps.begin();
794              it != bitmaps.end(); ++it) {
795                 if ((*it)->reading && pid == (*it)->gspid) {
796                         lyxerr.debug() << "Found pid in bitmaps" << endl;
797                         // now read the file and remove it from disk
798                         figdata * p = (*it);
799                         p->reading = false;
800                         if ((*it)->gsdone) *status = 0;
801                         if (*status == 0) {
802                                 lyxerr.debug() << "GS [" << pid
803                                                << "] exit OK." << endl;
804                         } else {
805                                 lyxerr << "GS [" << pid  << "] error "
806                                        << *status << " E:"
807                                        << WIFEXITED(*status)
808                                        << " " << WEXITSTATUS(*status)
809                                        << " S:" << WIFSIGNALED(*status)
810                                        << " " << WTERMSIG(*status) << endl;
811                         }
812                         if (*status == 0) {
813                                 bitmap_waiting = true;
814                                 p->broken = false;
815                         } else {
816                                 // remove temporary files
817                                 lyx::unlink(make_tmp(p->gspid));
818                                 p->gspid = -1;
819                                 p->broken = true;
820                         }
821                         makeupdatelist((*it));
822                         --gsrunning;
823                         runqueue();
824                         pid_handled = true;
825                 }
826         }
827         if (!pid_handled) {
828                 lyxerr.debug() << "Checking pid in pidwait" << endl;
829                 list<int>::iterator it = find(pidwaitlist.begin(),
830                                               pidwaitlist.end(), pid);
831                 if (it != pidwaitlist.end()) {
832                         lyxerr.debug() << "Found pid in pidwait\n"
833                                        << "Caught child pid of recompute "
834                                 "routine" << pid << endl;
835                         pidwaitlist.erase(it);
836                 }
837         }
838         if (pid == -1) {
839                 lyxerr.debug() << "waitpid error" << endl;
840                 switch (errno) {
841                 case ECHILD:
842                         lyxerr << "The process or process group specified by "
843                                 "pid does  not exist or is not a child of "
844                                 "the calling process or can never be in the "
845                                 "states specified by options." << endl;
846                         break;
847                 case EINTR:
848                         lyxerr << "waitpid() was interrupted due to the "
849                                 "receipt of a signal sent by the calling "
850                                 "process." << endl;
851                         break;
852                 case EINVAL:
853                         lyxerr << "An invalid value was specified for "
854                                 "options." << endl;
855                         break;
856                 default:
857                         lyxerr << "Unknown error from waitpid" << endl;
858                         break;
859                 }
860         } else if (pid == 0) {
861                 lyxerr << "waitpid nohang" << endl;;
862         } else {
863                 lyxerr.debug() << "normal exit from childhandler" << endl;
864         }
865 }
866
867
868 namespace {
869
870 void getbitmaps()
871 {
872         bitmap_waiting = false;
873         for (bitmaps_type::iterator it = bitmaps.begin();
874              it != bitmaps.end(); ++it)
875                 if ((*it)->gspid > 0 && !(*it)->reading)
876                         getbitmap((*it));
877 }
878
879
880 void RegisterFigure(InsetFig * fi)
881 {
882         if (figures.empty()) InitFigures();
883         fi->form = 0;
884         Figref * tmpfig = new Figref;
885         tmpfig->data = 0;
886         tmpfig->inset = fi;
887         figures.push_back(tmpfig);
888         fi->figure = tmpfig;
889
890         if (lyxerr.debugging()) {
891                 lyxerr << "Register Figure: buffer:["
892                        << current_view->buffer() << "]" << endl;
893         }
894 }
895
896
897 void UnregisterFigure(InsetFig * fi)
898 {
899         if (!lyxrc.use_gui)
900                 return;
901
902         Figref * tmpfig = fi->figure;
903
904         if (tmpfig->data) freefigdata(tmpfig->data);
905         if (tmpfig->inset->form) {
906                 if (tmpfig->inset->form->Figure->visible) {
907                         fl_set_focus_object(tmpfig->inset->form->Figure,
908                                             tmpfig->inset->form->OkBtn);
909                         fl_hide_form(tmpfig->inset->form->Figure);
910                 }
911 #if FL_REVISION == 89
912                 // CHECK Reactivate this free_form calls
913 #else
914                 fl_free_form(tmpfig->inset->form->Figure);
915                 free(tmpfig->inset->form); // Why free?
916                 tmpfig->inset->form = 0;
917 #endif
918         }
919         figures.erase(find(figures.begin(), figures.end(), tmpfig));
920         delete tmpfig;
921
922         if (figures.empty()) DoneFigures();
923 }
924
925 } // namespace anon
926
927
928 InsetFig::InsetFig(int tmpx, int tmpy, Buffer const & o)
929         : owner(&o)
930 {
931         wid = tmpx;
932         hgh = tmpy;
933         wtype = DEF;
934         htype = DEF;
935         twtype = DEF;
936         thtype = DEF;
937         pflags = flags = 9;
938         psubfigure = subfigure = false;
939         xwid = xhgh = angle = 0;
940         pswid = pshgh = 0;
941         raw_wid = raw_hgh = 0;
942         changedfname = false;
943         RegisterFigure(this);
944         r_ = Dialogs::redrawGUI.connect(SigC::slot(this, &InsetFig::redraw));
945 }
946
947
948 InsetFig::~InsetFig()
949 {
950         if (lyxerr.debugging()) {
951                 lyxerr << "Figure destructor called" << endl;
952         }
953         UnregisterFigure(this);
954         r_.disconnect();
955 }
956
957
958 void InsetFig::redraw()
959 {
960         if (form && form->Figure->visible)
961                 fl_redraw_form(form->Figure);
962 }
963
964
965 int InsetFig::ascent(BufferView *, LyXFont const &) const
966 {
967         return hgh + 3;
968 }
969
970
971 int InsetFig::descent(BufferView *, LyXFont const &) const
972 {
973         return 1;
974 }
975
976
977 int InsetFig::width(BufferView *, LyXFont const &) const
978 {
979         return wid + 2;
980 }
981
982
983 void InsetFig::draw(BufferView * bv, LyXFont const & f,
984                     int baseline, float & x, bool) const
985 {
986         LyXFont font(f);
987         Painter & pain = bv->painter();
988         
989         if (bitmap_waiting) getbitmaps();
990         
991         // I wish that I didn't have to use this
992         // but the figinset code is so complicated so
993         // I don't want to fiddle with it now.
994
995         if (figure && figure->data && figure->data->bitmap &&
996             !figure->data->reading && !figure->data->broken) {
997                 // draw the bitmap
998                 pain.pixmap(int(x + 1), baseline - hgh,
999                             wid, hgh, figure->data->bitmap);
1000
1001                 if (flags & 4)
1002                         pain.rectangle(int(x), baseline - hgh - 1,
1003                                        wid + 1, hgh + 1);
1004                 
1005         } else {
1006                 char const * msg = 0;
1007                 string lfname = fname;
1008                 if (!fname.empty() && GetExtension(fname).empty())
1009                     lfname += ".eps";
1010                 // draw frame
1011                 pain.rectangle(int(x), baseline - hgh - 1, wid + 1, hgh + 1);
1012
1013                 if (figure && figure->data) {
1014                         if (figure->data->broken)  msg = _("[render error]");
1015                         else if (figure->data->reading) msg = _("[rendering ... ]");
1016                 } 
1017                 else if (fname.empty()) 
1018                         msg = _("[no file]");
1019                 else if (!IsFileReadable(lfname))
1020                         msg = _("[bad file name]");
1021                 else if ((flags & 3) == 0) 
1022                         msg = _("[not displayed]");
1023                 else if (lyxrc.ps_command.empty()) 
1024                         msg = _("[no ghostscript]");
1025                 
1026                 if (!msg) msg = _("[unknown error]");
1027                 
1028                 font.setFamily(LyXFont::SANS_FAMILY);
1029                 font.setSize(LyXFont::SIZE_FOOTNOTE);
1030                 string justname = OnlyFilename (fname);
1031                 pain.text(int(x + 8), baseline - lyxfont::maxAscent(font) - 4,
1032                           justname, font);
1033                 
1034                 font.setSize(LyXFont::SIZE_TINY);
1035                 pain.text(int(x + 8), baseline - 4, msg, strlen(msg), font);
1036         }
1037         x += width(bv, font);    // ?
1038 }
1039
1040
1041 void InsetFig::Write(Buffer const *, ostream & os) const
1042 {
1043         Regenerate();
1044         os << "Figure size " << wid << " " << hgh << "\n";
1045         if (!fname.empty()) {
1046                 string buf1 = OnlyPath(owner->fileName());
1047                 string fname2 = MakeRelPath(fname, buf1);
1048                 os << "file " << fname2 << "\n";
1049         }
1050         if (!subcaption.empty())
1051                 os << "subcaption " << subcaption << "\n";
1052         if (wtype) os << "width " << static_cast<int>(wtype) << " " << xwid << "\n";
1053         if (htype) os << "height " << static_cast<int>(htype) << " " << xhgh << "\n";
1054         if (angle != 0) os << "angle " << angle << "\n";
1055         os << "flags " << flags << "\n";
1056         if (subfigure) os << "subfigure\n";
1057 }
1058
1059
1060 void InsetFig::Read(Buffer const *, LyXLex & lex)
1061 {
1062         string buf;
1063         bool finished = false;
1064         
1065         while (lex.IsOK() && !finished) {
1066                 lex.next();
1067
1068                 string const token = lex.GetString();
1069                 lyxerr.debug() << "Token: " << token << endl;
1070                 
1071                 if (token.empty())
1072                         continue;
1073                 else if (token == "\\end_inset") {
1074                         finished = true;
1075                 } else if (token == "file") {
1076                         if (lex.next()) {
1077                                 buf = lex.GetString();
1078                                 string buf1 = OnlyPath(owner->fileName());
1079                                 fname = MakeAbsPath(buf, buf1);
1080                                 changedfname = true;
1081                         }
1082                 } else if (token == "extra") {
1083                         if (lex.next());
1084                         // kept for backwards compability. Delete in 0.13.x
1085                 } else if (token == "subcaption") {
1086                         if (lex.EatLine())
1087                                 subcaption = lex.GetString();
1088                 } else if (token == "label") {
1089                         if (lex.next());
1090                         // kept for backwards compability. Delete in 0.13.x
1091                 } else if (token == "angle") {
1092                         if (lex.next())
1093                                 angle = lex.GetFloat();
1094                 } else if (token == "size") {
1095                         if (lex.next())
1096                                 wid = lex.GetInteger();
1097                         if (lex.next())
1098                                 hgh = lex.GetInteger();
1099                 } else if (token == "flags") {
1100                         if (lex.next())
1101                                 flags = pflags = lex.GetInteger();
1102                 } else if (token == "subfigure") {
1103                         subfigure = psubfigure = true;
1104                 } else if (token == "width") {
1105                         int typ = 0;
1106                         if (lex.next())
1107                                 typ = lex.GetInteger();
1108                         if (lex.next())
1109                                 xwid = lex.GetFloat();
1110                         switch (typ) {
1111                         case DEF: wtype = DEF; break;
1112                         case CM: wtype = CM; break;
1113                         case IN: wtype = IN; break;
1114                         case PER_PAGE: wtype = PER_PAGE; break;
1115                         case PER_COL: wtype = PER_COL; break;
1116                         default:
1117                                 lyxerr.debug() << "Unknown type!" << endl;
1118                                 break;
1119                         }
1120                         twtype = wtype;
1121                 } else if (token == "height") {
1122                         int typ = 0;
1123                         if (lex.next())
1124                                 typ = lex.GetInteger();
1125                         if (lex.next())
1126                                 xhgh = lex.GetFloat();
1127                         switch (typ) {
1128                         case DEF: htype = DEF; break;
1129                         case CM: htype = CM; break;
1130                         case IN: htype = IN; break;
1131                         case PER_PAGE: htype = PER_PAGE; break;
1132                         default:
1133                                 lyxerr.debug() << "Unknown type!" << endl;
1134                                 break;
1135                         }
1136                         thtype = htype;
1137                 }
1138         }
1139         Regenerate();
1140         Recompute();
1141 }
1142
1143
1144 int InsetFig::Latex(Buffer const *, ostream & os,
1145                     bool /* fragile*/, bool /* fs*/) const
1146 {
1147         Regenerate();
1148         if (!cmd.empty()) os << cmd << " ";
1149         return 0;
1150 }
1151
1152
1153 int InsetFig::Ascii(Buffer const *, ostream &, int) const
1154 {
1155         return 0;
1156 }
1157
1158
1159 int InsetFig::Linuxdoc(Buffer const *, ostream &) const
1160 {
1161         return 0;
1162 }
1163
1164
1165 int InsetFig::DocBook(Buffer const *, ostream & os) const
1166 {
1167         string buf1 = OnlyPath(owner->fileName());
1168         string figurename = MakeRelPath(fname, buf1);
1169
1170         if (suffixIs(figurename, ".eps"))
1171                 figurename.erase(figurename.length() - 4);
1172
1173         os << "@<graphic fileref=\"" << figurename << "\"></graphic>";
1174         return 0;
1175
1176
1177
1178 void InsetFig::Validate(LaTeXFeatures & features) const
1179 {
1180         features.graphics = true;
1181         if (subfigure) features.subfigure = true;
1182 }
1183
1184
1185 Inset::EDITABLE InsetFig::Editable() const
1186 {
1187         return IS_EDITABLE;
1188 }
1189
1190
1191 bool InsetFig::Deletable() const
1192 {
1193         return false;
1194 }
1195
1196
1197 string const InsetFig::EditMessage() const 
1198 {
1199         return _("Opened figure");
1200 }
1201
1202
1203 void InsetFig::Edit(BufferView * bv, int, int, unsigned int)
1204 {
1205         lyxerr.debug() << "Editing InsetFig." << endl;
1206         Regenerate();
1207
1208         // We should have RO-versions of the form instead.
1209         // The actual prevention of altering a readonly doc
1210         // is done in CallbackFig()
1211         if (bv->buffer()->isReadonly()) 
1212                 WarnReadonly(bv->buffer()->fileName());
1213
1214         if (!form) {
1215                 form = create_form_Figure();
1216                 fl_set_form_atclose(form->Figure, CancelCloseBoxCB, 0);
1217                 fl_set_object_return(form->Angle, FL_RETURN_ALWAYS);
1218                 fl_set_object_return(form->Width, FL_RETURN_ALWAYS);
1219                 fl_set_object_return(form->Height, FL_RETURN_ALWAYS);
1220         }
1221         RestoreForm();
1222         if (form->Figure->visible) {
1223                 fl_raise_form(form->Figure);
1224         } else {
1225                 fl_show_form(form->Figure,
1226                              FL_PLACE_MOUSE | FL_FREE_SIZE, FL_TRANSIENT,
1227                              _("Figure"));
1228         }
1229 }
1230
1231
1232 Inset * InsetFig::Clone(Buffer const & buffer) const
1233 {
1234         InsetFig * tmp = new InsetFig(100, 100, buffer);
1235
1236         if (lyxerr.debugging()) {
1237                 lyxerr << "Clone Figure: buffer:["
1238                        << &buffer
1239                        << "], cbuffer:[xx]" << endl;
1240         }
1241
1242         tmp->wid = wid;
1243         tmp->hgh = hgh;
1244         tmp->raw_wid = raw_wid;
1245         tmp->raw_hgh = raw_hgh;
1246         tmp->angle = angle;
1247         tmp->xwid = xwid;
1248         tmp->xhgh = xhgh;
1249         tmp->flags = flags;
1250         tmp->pflags = pflags;
1251         tmp->subfigure = subfigure;
1252         tmp->psubfigure = psubfigure;
1253         tmp->wtype = wtype;
1254         tmp->htype = htype;
1255         tmp->psx = psx;
1256         tmp->psy = psy;
1257         tmp->pswid = pswid;
1258         tmp->pshgh = pshgh;
1259         tmp->fname = fname;
1260         string lfname = fname;
1261         if (!fname.empty() && GetExtension(fname).empty())
1262                 lfname += ".eps";
1263         if (!fname.empty() && IsFileReadable(lfname) 
1264             && (flags & 3) && !lyxrc.ps_command.empty()
1265             && lyxrc.use_gui) { 
1266                 // do not display if there is
1267                 // "do not display" chosen (Matthias 260696)
1268                 tmp->figure->data = getfigdata(wid, hgh, lfname, psx, psy,
1269                                                pswid, pshgh, raw_wid, raw_hgh,
1270                                                angle, flags & (3|8));
1271         } else tmp->figure->data = 0;
1272         tmp->subcaption = subcaption;
1273         tmp->changedfname = false;
1274         tmp->owner = owner;
1275         tmp->Regenerate();
1276         return tmp;
1277 }
1278
1279
1280 Inset::Code InsetFig::LyxCode() const
1281 {
1282         return Inset::GRAPHICS_CODE;
1283 }
1284
1285
1286 namespace {
1287
1288 string const stringify(InsetFig::HWTYPE hw, float f, string suffix)
1289 {
1290         string res;
1291         switch (hw) {
1292                 case InsetFig::DEF:
1293                         break;
1294                 case InsetFig::CM:// \resizebox*{h-length}{v-length}{text}
1295                         res = tostr(f) + "cm";
1296                         break;
1297                 case InsetFig::IN: 
1298                         res = tostr(f) + "in";
1299                         break;
1300                 case InsetFig::PER_PAGE:
1301                         res = tostr(f/100) + "\\text" + suffix;
1302                         break;
1303                 case InsetFig::PER_COL:
1304                         // Doesn't occur for htype...
1305                         res = tostr(f/100) + "\\column" + suffix;
1306                         break;
1307         }
1308         return res;
1309 }
1310
1311 } // namespace anon
1312
1313
1314 void InsetFig::Regenerate() const
1315 {
1316         string cmdbuf;
1317         string resizeW, resizeH;
1318         string rotate, recmd;
1319
1320         if (fname.empty()) {
1321                 cmd = "\\fbox{\\rule[-0.5in]{0pt}{1in}";
1322                 cmd += _("empty figure path");
1323                 cmd += '}';
1324                 return;
1325         }
1326
1327         string buf1 = OnlyPath(owner->fileName());
1328         string fname2 = MakeRelPath(fname, buf1);
1329
1330         string gcmd = "\\includegraphics{" + fname2 + '}';
1331         resizeW = stringify(wtype, xwid, "width");
1332         resizeH = stringify(htype, xhgh, "height");
1333
1334         if (!resizeW.empty() || !resizeH.empty()) {
1335                 recmd = "\\resizebox*{";
1336                 if (!resizeW.empty())
1337                         recmd += resizeW;
1338                 else
1339                         recmd += '!';
1340                 recmd += "}{";
1341                 if (!resizeH.empty())
1342                         recmd += resizeH;
1343                 else
1344                         recmd += '!';
1345                 recmd += "}{";
1346         }
1347         
1348         
1349         if (angle != 0) {
1350                 // \rotatebox{angle}{text}
1351                 rotate = "\\rotatebox{" + tostr(angle) + "}{";
1352         }
1353
1354         cmdbuf = recmd;
1355         cmdbuf += rotate;
1356         cmdbuf += gcmd;
1357         if (!rotate.empty()) cmdbuf += '}';
1358         if (!recmd.empty()) cmdbuf += '}';
1359         if (subfigure) {
1360                 if (!subcaption.empty())
1361                         cmdbuf = "\\subfigure[" + subcaption +
1362                                 "]{" + cmdbuf + "}";
1363                 else
1364                         cmdbuf = "\\subfigure{" + cmdbuf + "}";
1365         }
1366         
1367         cmd = cmdbuf;
1368 }
1369
1370
1371 void InsetFig::TempRegenerate()
1372 {
1373         string cmdbuf;
1374         string resizeW, resizeH;
1375         string rotate, recmd;
1376         
1377         char const * tfname = fl_get_input(form->EpsFile);
1378         string tsubcap = fl_get_input(form->Subcaption);
1379         float tangle = atof(fl_get_input(form->Angle));
1380         float txwid = atof(fl_get_input(form->Width));
1381         float txhgh = atof(fl_get_input(form->Height));
1382
1383         if (!tfname || !*tfname) {
1384                 cmd = "\\fbox{\\rule[-0.5in]{0pt}{1in}";
1385                 cmd += _("empty figure path");
1386                 cmd += '}';
1387                 return;
1388         }
1389
1390         string buf1 = OnlyPath(owner->fileName());
1391         string fname2 = MakeRelPath(tfname, buf1);
1392         // \includegraphics*[<llx,lly>][<urx,ury>]{file}
1393         string gcmd = "\\includegraphics{" + fname2 + '}';
1394
1395         resizeW = stringify(twtype, txwid, "width");    
1396         resizeH = stringify(thtype, txhgh, "height");   
1397
1398         // \resizebox*{h-length}{v-length}{text}
1399         if (!resizeW.empty() || !resizeH.empty()) {
1400                 recmd = "\\resizebox*{";
1401                 if (!resizeW.empty())
1402                         recmd += resizeW;
1403                 else
1404                         recmd += '!';
1405                 recmd += "}{";
1406                 if (!resizeH.empty())
1407                         recmd += resizeH;
1408                 else
1409                         recmd += '!';
1410                 recmd += "}{";
1411         }
1412         
1413         if (tangle != 0) {
1414                 // \rotatebox{angle}{text}
1415                 rotate = "\\rotatebox{" + tostr(tangle) + "}{";
1416         }
1417
1418         cmdbuf = recmd + rotate + gcmd;
1419         if (!rotate.empty()) cmdbuf += '}';
1420         if (!recmd.empty()) cmdbuf += '}';
1421         if (psubfigure && !tsubcap.empty()) {
1422                 cmdbuf = string("\\subfigure{") + tsubcap
1423                         + string("}{") + cmdbuf + "}";
1424         }
1425 }
1426
1427
1428 void InsetFig::Recompute()
1429 {
1430         if (!lyxrc.use_gui)
1431                 return;
1432
1433         bool changed = changedfname;
1434         int newx, newy, nraw_x, nraw_y;
1435
1436         if (changed) GetPSSizes();
1437
1438         float sin_a = sin (angle / DEG2PI);  /* rotation; H. Zeller 021296 */
1439         float cos_a = cos (angle / DEG2PI);
1440         int frame_wid = int(ceil(fabs(cos_a * pswid) + fabs(sin_a * pshgh)));
1441         int frame_hgh= int(ceil(fabs(cos_a * pshgh) + fabs(sin_a * pswid)));
1442
1443         string lfname = fname;
1444         if (GetExtension(fname).empty())
1445             lfname += ".eps";
1446
1447         /* now recompute wid and hgh, and if that is changed, set changed */
1448         /* this depends on chosen size of the picture and its bbox */
1449         // This will be redone in 0.13 ... (hen)
1450         if (!lfname.empty() && IsFileReadable(lfname)) {
1451                 // say, total width is 595 pts, as A4 in TeX, thats in 1/72" */
1452
1453                 newx = frame_wid;
1454                 newy = frame_hgh;
1455                 switch (wtype) {
1456                 case DEF:
1457                         break;
1458                 case CM:        /* cm */
1459                         newx = int(28.346 * xwid);
1460                         break;
1461                 case IN: /* in */
1462                         newx = int(72 * xwid);
1463                         break;
1464                 case PER_PAGE:  /* % of page */
1465                         newx = int(5.95 * xwid);
1466                         break;
1467                 case PER_COL:   /* % of col */
1468                         newx = int(2.975 * xwid);
1469                         break;
1470                 }
1471                 
1472                 if (wtype && frame_wid) newy = newx*frame_hgh/frame_wid;
1473                 
1474                 switch (htype) {
1475                 case DEF:
1476                         //lyxerr << "This should not happen!" << endl;
1477                         break;
1478                 case CM:        /* cm */
1479                         newy = int(28.346 * xhgh);
1480                         break;
1481                 case IN: /* in */
1482                         newy = int(72 * xhgh);
1483                         break;
1484                 case PER_PAGE:  /* % of page */
1485                         newy = int(8.42 * xhgh);
1486                         break;
1487                 case PER_COL: 
1488                         // Doesn't occur; case exists to suppress
1489                         // compiler warnings.  
1490                         break;
1491                 }
1492                 if (htype && !wtype && frame_hgh)
1493                         newx = newy*frame_wid/frame_hgh;
1494         } else {
1495                 newx = wid;
1496                 newy = hgh;
1497         }
1498
1499         if (frame_wid == 0)
1500                 nraw_x = 5;
1501         else
1502                 nraw_x = int((1.0 * pswid * newx)/frame_wid);
1503
1504         if (frame_hgh == 0)
1505                 nraw_y = 5;
1506         else
1507                 nraw_y = int((1.0 * pshgh * newy)/frame_hgh);
1508
1509         // cannot be zero, actually, set it to some minimum, so its clickable
1510         if (newx < 5) newx = 5;
1511         if (newy < 5) newy = 5;
1512
1513         if (newx   != wid     || newy   != hgh     || 
1514             nraw_x != raw_wid || nraw_y != raw_hgh ||
1515             flags  != pflags  || subfigure != psubfigure) 
1516                 changed = true;
1517        
1518         raw_wid = nraw_x;
1519         raw_hgh = nraw_y;
1520         wid = newx;
1521         hgh = newy;
1522         flags = pflags;
1523         subfigure = psubfigure;
1524
1525         if (changed) {
1526                 figdata * pf = figure->data;
1527
1528                 // get new data
1529                 if (!lfname.empty() && IsFileReadable(lfname) && (flags & 3)
1530                     && !lyxrc.ps_command.empty()) {
1531                         // do not display if there is "do not display"
1532                         // chosen (Matthias 260696)
1533                         figure->data = getfigdata(wid, hgh, lfname,
1534                                                   psx, psy, pswid, pshgh,
1535                                                   raw_wid, raw_hgh,
1536                                                   angle, flags & (3|8));
1537                 } else figure->data = 0;
1538
1539                 // free the old data
1540                 if (pf) freefigdata(pf);
1541         }
1542
1543         changedfname = false;
1544 }
1545
1546
1547 void InsetFig::GetPSSizes()
1548 {
1549         /* get %%BoundingBox: from postscript file */
1550         
1551         /* defaults to associated size
1552          * ..just in case the PS-file is not readable (Henner, 24-Aug-97) 
1553          */
1554         psx = 0;
1555         psy = 0;
1556         pswid = wid;
1557         pshgh = hgh;
1558
1559         if (fname.empty()) return;
1560         string p;
1561         string lfname = fname;
1562         if (GetExtension(fname).empty())
1563                 lfname += ".eps";
1564         ifstream ifs(lfname.c_str());
1565
1566         if (!ifs) return;       // file not found !!!!
1567
1568         /* defaults to A4 page */
1569         psx = 0;
1570         psy = 0;
1571         pswid = 595;
1572         pshgh = 842;
1573
1574         char lastchar = 0; ifs.get(lastchar);
1575         for (;;) {
1576                 char c = 0; ifs.get(c);
1577                 if (ifs.eof()) {
1578                         lyxerr.debug() << "End of (E)PS file reached and"
1579                                 " no BoundingBox!" << endl;
1580                         break;
1581                 }
1582                 if (c == '%' && lastchar == '%') {
1583                         ifs >> p;
1584                         if (p.empty()) break;
1585                         lyxerr.debug() << "Token: `" << p << "'" << endl;
1586                         if (p == "BoundingBox:") {
1587                                 float fpsx, fpsy, fpswid, fpshgh;
1588                                 if (ifs >> fpsx >> fpsy >> fpswid >> fpshgh) {
1589                                         psx = int(fpsx);
1590                                         psy = int(fpsy);
1591                                         pswid = int(fpswid);
1592                                         pshgh = int(fpshgh);
1593                                 }
1594                                 if (lyxerr.debugging()) {
1595                                         lyxerr << "%%%%BoundingBox:"
1596                                                << psx << ' '
1597                                                << psy << ' '
1598                                                << pswid << ' '
1599                                                << pshgh << endl;
1600                                 }
1601                                 break;
1602                         }
1603                         c = 0;
1604                 }
1605                 lastchar = c;
1606         }
1607         pswid -= psx;
1608         pshgh -= psy;
1609
1610 }
1611
1612
1613 void InsetFig::CallbackFig(long arg)
1614 {
1615         bool regen = false;
1616         char const * p;
1617
1618         if (lyxerr.debugging()) {
1619                 lyxerr << "Figure callback, arg " << arg << endl;
1620         }
1621
1622         switch (arg) {
1623         case 10:
1624         case 11:
1625         case 12:        /* width type */
1626         case 13:
1627         case 14:
1628                 switch (arg - 10) {
1629                 case DEF:
1630                         twtype = DEF;
1631                         // put disable here
1632                         fl_deactivate_object(form->Width);
1633                         break;
1634                 case CM:
1635                         twtype = CM;
1636                         // put enable here
1637                         fl_activate_object(form->Width);
1638                         break;
1639                 case IN:
1640                         twtype = IN;
1641                         // put enable here
1642                         fl_activate_object(form->Width);
1643                         break;
1644                 case PER_PAGE:
1645                         twtype = PER_PAGE;
1646                         // put enable here
1647                         fl_activate_object(form->Width);
1648                         break;
1649                 case PER_COL:
1650                         twtype = PER_COL;
1651                         // put enable here
1652                         fl_activate_object(form->Width);
1653                         break;
1654                 default:
1655                         lyxerr.debug() << "Unknown type!" << endl;
1656                         break;
1657                 }
1658                 regen = true;
1659                 break;
1660         case 20:
1661         case 21:
1662         case 22:        /* height type */
1663         case 23:
1664                 switch (arg - 20) {
1665                 case DEF:
1666                         thtype = DEF;
1667                         // put disable here
1668                         fl_deactivate_object(form->Height);
1669                         break;
1670                 case CM:
1671                         thtype = CM;
1672                         // put enable here
1673                         fl_activate_object(form->Height);
1674                         break;
1675                 case IN:
1676                         thtype = IN;
1677                         // put enable here
1678                         fl_activate_object(form->Height);
1679                         break;
1680                 case PER_PAGE:
1681                         thtype = PER_PAGE;
1682                         // put enable here
1683                         fl_activate_object(form->Height);
1684                         break;
1685                 default:
1686                         lyxerr.debug() << "Unknown type!" << endl;
1687                         break;
1688                 }
1689                 regen = true;
1690                 break;
1691         case 3:
1692                 pflags = pflags & ~3;           /* wysiwyg0 */
1693                 break;
1694         case 33:
1695                 pflags = (pflags & ~3) | 1;     /* wysiwyg1 */
1696                 break;
1697         case 43:
1698                 pflags = (pflags & ~3) | 2;     /* wysiwyg2 */
1699                 break;
1700         case 63:
1701                 pflags = (pflags & ~3) | 3;     /* wysiwyg3 */
1702                 break;
1703         case 53:
1704                 pflags ^= 4;    /* frame */
1705                 break;
1706         case 54:
1707                 pflags ^= 8;    /* do translations */
1708                 break;
1709         case 70:
1710                 psubfigure = !psubfigure;       /* This is a subfigure */
1711                 break;
1712         case 2:
1713                 regen = true;           /* regenerate command */
1714                 break;
1715         case 0:                         /* browse file */
1716                 BrowseFile();
1717                 regen = true;
1718                 break;
1719         case 1:                         /* preview */
1720                 p = fl_get_input(form->EpsFile);
1721                 Preview(p);
1722                 break;
1723         case 7:                         /* apply */
1724         case 8:                         /* ok (apply and close) */
1725                 if (!current_view->buffer()->isReadonly()) {
1726                         wtype = twtype;
1727                         htype = thtype;
1728                         xwid = atof(fl_get_input(form->Width));
1729                         xhgh = atof(fl_get_input(form->Height));
1730                         angle = atof(fl_get_input(form->Angle));
1731                         p = fl_get_input(form->EpsFile);
1732                         if (p && *p) {
1733                                 string buf1 = OnlyPath(owner->fileName());
1734                                 fname = MakeAbsPath(p, buf1);
1735                                 changedfname = true;
1736                         } else {
1737                                 if (!fname.empty()) {
1738                                         changedfname = true;
1739                                         fname.erase();
1740                                 }
1741                         }
1742                         subcaption = fl_get_input(form->Subcaption);
1743         
1744                         Regenerate();
1745                         Recompute();
1746                         /* now update inset */
1747                         if (lyxerr.debugging()) {
1748                                 lyxerr << "Update: ["
1749                                        << wid << 'x' << hgh << ']' << endl;
1750                         }
1751                         current_view->updateInset(this, true);
1752                         if (arg == 8) {
1753                                 fl_set_focus_object(form->Figure, form->OkBtn);
1754                                 fl_hide_form(form->Figure);
1755 #if FL_REVISION == 89
1756                                 // CHECK Reactivate this free_form calls
1757 #else
1758                                 fl_free_form(form->Figure);
1759                                 free(form); // Why free?
1760                                 form = 0;
1761 #endif
1762                         }
1763                         break;
1764                 } //if not readonly
1765                 //  The user has already been informed about RO in ::Edit
1766                 if (arg == 7) // if 'Apply'
1767                         break;
1768                 // fall through
1769         case 9:                         /* cancel = restore and close */
1770                 fl_set_focus_object(form->Figure, form->OkBtn);
1771                 fl_hide_form(form->Figure);
1772 #if FL_REVISION == 89
1773                 // CHECK Reactivate this free_form calls
1774                 // Jug, is this still a problem?
1775 #else
1776                 fl_free_form(form->Figure);
1777                 free(form); // Why free?
1778                 form = 0;
1779 #endif
1780                 break;
1781         }
1782
1783         if (regen) TempRegenerate();
1784 }
1785
1786
1787 inline
1788 void DisableFigurePanel(FD_Figure * const form)
1789 {
1790         fl_deactivate_object(form->EpsFile);
1791         fl_deactivate_object(form->Browse);
1792         fl_deactivate_object(form->Width);
1793         fl_deactivate_object(form->Height);
1794         fl_deactivate_object(form->Frame);
1795         fl_deactivate_object(form->Translations);
1796         fl_deactivate_object(form->Angle);
1797         fl_deactivate_object(form->HeightGrp);
1798         fl_deactivate_object(form->page2);
1799         fl_deactivate_object(form->Default2);
1800         fl_deactivate_object(form->cm2);
1801         fl_deactivate_object(form->in2);
1802         fl_deactivate_object(form->HeightLabel);
1803         fl_deactivate_object(form->WidthLabel);
1804         fl_deactivate_object(form->DisplayGrp);
1805         fl_deactivate_object(form->Wysiwyg3);
1806         fl_deactivate_object(form->Wysiwyg0);
1807         fl_deactivate_object(form->Wysiwyg2);
1808         fl_deactivate_object(form->Wysiwyg1);
1809         fl_deactivate_object(form->WidthGrp);
1810         fl_deactivate_object(form->Default1);
1811         fl_deactivate_object(form->cm1);
1812         fl_deactivate_object(form->in1);
1813         fl_deactivate_object(form->page1);
1814         fl_deactivate_object(form->column1);
1815         fl_deactivate_object(form->Subcaption);
1816         fl_deactivate_object(form->Subfigure);
1817         fl_deactivate_object (form->OkBtn);
1818         fl_deactivate_object (form->ApplyBtn);
1819         fl_set_object_lcol (form->OkBtn, FL_INACTIVE);
1820         fl_set_object_lcol (form->ApplyBtn, FL_INACTIVE);
1821 }
1822
1823
1824 inline
1825 void EnableFigurePanel(FD_Figure * const form)
1826 {
1827         fl_activate_object(form->EpsFile);
1828         fl_activate_object(form->Browse);
1829         fl_activate_object(form->Width);
1830         fl_activate_object(form->Height);
1831         fl_activate_object(form->Frame);
1832         fl_activate_object(form->Translations);
1833         fl_activate_object(form->Angle);
1834         fl_activate_object(form->HeightGrp);
1835         fl_activate_object(form->page2);
1836         fl_activate_object(form->Default2);
1837         fl_activate_object(form->cm2);
1838         fl_activate_object(form->in2);
1839         fl_activate_object(form->HeightLabel);
1840         fl_activate_object(form->WidthLabel);
1841         fl_activate_object(form->DisplayGrp);
1842         fl_activate_object(form->Wysiwyg3);
1843         fl_activate_object(form->Wysiwyg0);
1844         fl_activate_object(form->Wysiwyg2);
1845         fl_activate_object(form->Wysiwyg1);
1846         fl_activate_object(form->WidthGrp);
1847         fl_activate_object(form->Default1);
1848         fl_activate_object(form->cm1);
1849         fl_activate_object(form->in1);
1850         fl_activate_object(form->page1);
1851         fl_activate_object(form->column1);
1852         fl_activate_object(form->Subcaption);
1853         fl_activate_object(form->Subfigure);
1854         fl_activate_object (form->OkBtn);
1855         fl_activate_object (form->ApplyBtn);
1856         fl_set_object_lcol (form->OkBtn, FL_BLACK);
1857         fl_set_object_lcol (form->ApplyBtn, FL_BLACK);
1858 }
1859
1860
1861 void InsetFig::RestoreForm()
1862 {
1863         EnableFigurePanel(form);
1864
1865         twtype = wtype;
1866         fl_set_button(form->Default1, (wtype == 0));
1867         fl_set_button(form->cm1, (wtype == 1));
1868         fl_set_button(form->in1, (wtype == 2));
1869         fl_set_button(form->page1, (wtype == 3));
1870         fl_set_button(form->column1, (wtype == 4));
1871         if (wtype == 0) {
1872                 fl_deactivate_object(form->Width);
1873         } else {
1874                 fl_activate_object(form->Width);
1875         }
1876                 
1877         // enable and disable should be put here.
1878         thtype = htype;
1879         fl_set_button(form->Default2, (htype == 0));
1880         fl_set_button(form->cm2, (htype == 1));
1881         fl_set_button(form->in2, (htype == 2));
1882         fl_set_button(form->page2, (htype == 3));
1883         // enable and disable should be put here.
1884         if (htype == 0) {
1885                 fl_deactivate_object(form->Height);
1886         } else {
1887                 fl_activate_object(form->Height);
1888         }
1889
1890         int piflags = flags & 3;
1891         fl_set_button(form->Wysiwyg0, (piflags == 0));
1892         fl_set_button(form->Wysiwyg1, (piflags == 1));
1893         fl_set_button(form->Wysiwyg2, (piflags == 2));
1894         fl_set_button(form->Wysiwyg3, (piflags == 3));
1895         fl_set_button(form->Frame, ((flags & 4) != 0));
1896         fl_set_button(form->Translations, ((flags & 8) != 0));
1897         fl_set_button(form->Subfigure, (subfigure != 0));
1898         pflags = flags;
1899         psubfigure = subfigure;
1900         fl_set_input(form->Width, tostr(xwid).c_str());
1901         fl_set_input(form->Height, tostr(xhgh).c_str());
1902         fl_set_input(form->Angle, tostr(angle).c_str());
1903         if (!fname.empty()){
1904                 string buf1 = OnlyPath(owner->fileName());
1905                 string fname2 = MakeRelPath(fname, buf1);
1906                 fl_set_input(form->EpsFile, fname2.c_str());
1907         }
1908         else fl_set_input(form->EpsFile, "");
1909         fl_set_input(form->Subcaption, subcaption.c_str());
1910         if (current_view->buffer()->isReadonly()) 
1911                 DisableFigurePanel(form);
1912
1913         TempRegenerate();
1914 }
1915
1916
1917 void InsetFig::Preview(string const & p)
1918 {
1919         string tfname = p;
1920         if (GetExtension(tfname).empty())
1921             tfname += ".eps";
1922         string buf1 = OnlyPath(owner->fileName());
1923         string buf2 = os::external_path(MakeAbsPath(tfname, buf1));
1924         if (!formats.View(owner, buf2, "eps"))
1925                 lyxerr << "Can't view " << buf2 << endl;
1926 }
1927
1928 void InsetFig::BrowseFile()
1929 {
1930         static string current_figure_path;
1931         static int once = 0;
1932
1933         if (lyxerr.debugging()) {
1934                 lyxerr << "Filename: "
1935                        << owner->fileName() << endl;
1936         }
1937         string p = fl_get_input(form->EpsFile);
1938
1939         string buf = MakeAbsPath(owner->fileName());
1940         string buf2 = OnlyPath(buf);
1941         if (!p.empty()) {
1942                 buf = MakeAbsPath(p, buf2);
1943                 buf = OnlyPath(buf);
1944         } else {
1945                 buf = OnlyPath(owner->fileName());
1946         }
1947         
1948         // Does user clipart directory exist?
1949         string bufclip = AddName (user_lyxdir, "clipart");      
1950         FileInfo fileInfo(bufclip);
1951         if (!(fileInfo.isOK() && fileInfo.isDir()))
1952                 // No - bail out to system clipart directory
1953                 bufclip = AddName (system_lyxdir, "clipart");   
1954
1955
1956         FileDialog fileDlg(current_view->owner(), _("Select an EPS figure"),
1957                 LFUN_SELECT_FILE_SYNC,
1958                 make_pair(string(_("Clip art")), string(bufclip)),
1959                 make_pair(string(_("Documents")), string(buf)));
1960
1961         bool error = false;
1962         do {
1963                 string const path = (once) ? current_figure_path : buf;
1964
1965                 FileDialog::Result result = fileDlg.Select(path, _("*ps| PostScript documents"));
1966
1967                 string const p = result.second;
1968
1969                 if (p.empty())
1970                         return;
1971
1972                 buf = MakeRelPath(p, buf2);
1973                 current_figure_path = OnlyPath(p);
1974                 once = 1;
1975                 
1976                 if (contains(p, "#") || contains(p, "~") || contains(p, "$")
1977                     || contains(p, "%") || contains(p, " ")) {
1978                         WriteAlert(_("Filename can't contain any "
1979                                      "of these characters:"),
1980                                    // xgettext:no-c-format
1981                                    _("space, '#', '~', '$' or '%'.")); 
1982                         error = true;
1983                 }
1984         } while (error);
1985
1986         if (form) fl_set_input(form->EpsFile, buf.c_str());
1987 }
1988
1989
1990 void GraphicsCB(FL_OBJECT * obj, long arg)
1991 {
1992         /* obj->form contains the form */
1993
1994         if (lyxerr.debugging()) {
1995                 lyxerr << "GraphicsCB callback: " << arg << endl;
1996         }
1997
1998         /* find inset we were reacting to */
1999         for (figures_type::iterator it = figures.begin();
2000              it != figures.end(); ++it)
2001                 if ((*it)->inset->form && (*it)->inset->form->Figure
2002                     == obj->form) {
2003                         if (lyxerr.debugging()) {
2004                                 lyxerr << "Calling back figure "
2005                                        << (*it) << endl;
2006                         }
2007                         (*it)->inset->CallbackFig(arg);
2008                         return;
2009                 }
2010 }
2011
2012
2013 void HideFiguresPopups()
2014 {
2015         for (figures_type::iterator it = figures.begin();
2016              it != figures.end(); ++it)
2017                 if ((*it)->inset->form 
2018                     && (*it)->inset->form->Figure->visible) {
2019                         if (lyxerr.debugging()) {
2020                                 lyxerr << "Hiding figure " << (*it) << endl;
2021                         }
2022                         // hide and free the form
2023                         (*it)->inset->CallbackFig(9);
2024                 }
2025 }