]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphics.C
move inset related stuff from src/graphics to src/inset/
[lyx.git] / src / insets / insetgraphics.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995-2002 the LyX Team.
7  *
8  * \author Baruch Even
9  * \author Herbert Voss <voss@lyx.org>
10  * ====================================================== */
11
12 /*
13 Known BUGS:
14
15     * If the image is from the clipart, and the document is moved to another
16       directory, the user is screwed. Need a way to handle it.
17       This amounts to a problem of when to use relative or absolute file paths
18       We should probably use what the user asks to use... but when he chooses
19       by the file dialog we normally get an absolute path and this may not be
20       what the user meant.
21
22       Note that browseRelFile in helper_funcs.* provides a file name
23       which is relative if it is at reference path (here puffer path)
24       level or below, and an absolute path if the file name is not a
25       `natural' relative file name. In any case,
26               MakeAbsPath(filename, buf->filePath())
27       is guaranteed to provide the correct absolute path. This is what is
28       done know for include insets. Feel free to ask me -- JMarc
29       14/01/2002
30
31 TODO Before initial production release:
32
33     * What advanced features the users want to do?
34       Implement them in a non latex dependent way, but a logical way.
35       LyX should translate it to latex or any other fitting format.
36     * Add a way to roll the image file into the file format.
37     * When loading, if the image is not found in the expected place, try
38       to find it in the clipart, or in the same directory with the image.
39     * Keep a tab on the image file, if it changes, update the lyx view.
40     * The image choosing dialog could show thumbnails of the image formats
41       it knows of, thus selection based on the image instead of based on
42       filename.
43     * Add support for the 'picins' package.
44     * Add support for the 'picinpar' package.
45     * Improve support for 'subfigure' - Allow to set the various options
46       that are possible.
47 */
48
49 /* NOTES:
50  * Fileformat:
51  * Current version is 1 (inset file format version), when changing it
52  * it should be changed in the Write() function when writing in one place
53  * and when reading one should change the version check and the error message.
54  * The filename is kept in  the lyx file in a relative way, so as to allow
55  * moving the document file and its images with no problem.
56  *
57  *
58  * Conversions:
59  *   Postscript output means EPS figures.
60  *
61  *   PDF output is best done with PDF figures if it's a direct conversion
62  *   or PNG figures otherwise.
63  *      Image format
64  *      from        to
65  *      EPS         epstopdf
66  *      PS          ps2pdf
67  *      JPG/PNG     direct
68  *      PDF         direct
69  *      others      PNG
70  */
71
72 #include <config.h>
73
74 #ifdef __GNUG__
75 #pragma implementation
76 #endif
77
78 #include "insets/insetgraphics.h"
79 #include "insets/insetgraphicsParams.h"
80
81 #include "graphics/GraphicsCache.h"
82 #include "graphics/GraphicsImage.h"
83
84 #include "frontends/LyXView.h"
85 #include "lyxtext.h"
86 #include "buffer.h"
87 #include "BufferView.h"
88 #include "converter.h"
89 #include "frontends/Painter.h"
90 #include "lyxrc.h"
91 #include "frontends/font_metrics.h"
92 #include "debug.h"
93 #include "gettext.h"
94 #include "LaTeXFeatures.h"
95
96 #include "frontends/Dialogs.h"
97 #include "frontends/Alert.h"
98 #include "frontends/controllers/helper_funcs.h" // getVectorFromString
99
100 #include "support/LAssert.h"
101 #include "support/filetools.h"
102 #include "support/lyxalgo.h" // lyx::count
103 #include "support/path.h"
104
105 #include <algorithm> // For the std::max
106
107 extern string system_tempdir;
108
109 using std::ostream;
110 using std::endl;
111
112 ///////////////////////////////////////////////////////////////////////////
113 int const VersionNumber = 1;
114 ///////////////////////////////////////////////////////////////////////////
115
116 namespace {
117
118 // This function is a utility function
119 // ... that should be with ChangeExtension ...
120 inline
121 string const RemoveExtension(string const & filename)
122 {
123         return ChangeExtension(filename, string());
124 }
125
126 } // namespace anon
127
128
129 namespace {
130
131 string const unique_id()
132 {
133         static unsigned int seed = 1000;
134
135         ostringstream ost;
136         ost << "graph" << ++seed;
137
138         // Needed if we use lyxstring.
139         return ost.str().c_str();
140 }
141
142 } // namespace anon
143
144
145 InsetGraphics::InsetGraphics()
146         : graphic_label(unique_id()),
147           cached_status_(grfx::ErrorUnknown), cache_filled_(false), old_asc(0)
148
149 {}
150
151
152 InsetGraphics::InsetGraphics(InsetGraphics const & ig,
153                              string const & filepath,
154                              bool same_id)
155         : Inset(ig, same_id),
156           SigC::Object(),
157           graphic_label(unique_id()),
158           cached_status_(grfx::ErrorUnknown), cache_filled_(false), old_asc(0)
159 {
160         setParams(ig.params(), filepath);
161 }
162
163
164 InsetGraphics::~InsetGraphics()
165 {
166         cached_image_.reset();
167         grfx::GCache & gc = grfx::GCache::get();
168         gc.remove(*this);
169
170         // Emits the hide signal to the dialog connected (if any)
171         hideDialog();
172 }
173
174
175 string const InsetGraphics::statusMessage() const
176 {
177         string msg;
178
179         switch (cached_status_) {
180         case grfx::WaitingToLoad:
181                 msg = _("Waiting for draw request to start loading...");
182                 break;
183         case grfx::Loading:
184                 msg = _("Loading...");
185                 break;
186         case grfx::Converting:
187                 msg = _("Converting to loadable format...");
188                 break;
189         case grfx::ScalingEtc:
190                 msg = _("Loaded. Scaling etc...");
191                 break;
192         case grfx::ErrorNoFile:
193                 msg = _("No file found!");
194                 break;
195         case grfx::ErrorLoading:
196                 msg = _("Error loading file into memory");
197                 break;
198         case grfx::ErrorConverting:
199                 msg = _("Error converting to loadable format");
200                 break;
201         case grfx::ErrorScalingEtc:
202                 msg = _("Error scaling etc");
203                 break;
204         case grfx::ErrorUnknown:
205                 msg = _("No image");
206                 break;
207         case grfx::Loaded:
208                 msg = _("Loaded but not displaying");
209                 break;
210         }
211
212         return msg;
213 }
214
215
216 void InsetGraphics::setCache() const
217 {
218         if (cache_filled_)
219                 return;
220
221         grfx::GCache & gc = grfx::GCache::get();
222         cached_status_ = gc.status(*this);
223         cached_image_  = gc.image(*this);
224 }
225
226
227 bool InsetGraphics::drawImage() const
228 {
229         setCache();
230         Pixmap const pixmap =
231                 (cached_status_ == grfx::Loaded && cached_image_.get() != 0) ?
232                 cached_image_->getPixmap() : 0;
233
234         return pixmap != 0;
235 }
236
237
238 int InsetGraphics::ascent(BufferView *, LyXFont const &) const
239 {
240         old_asc = 50;
241         if (drawImage())
242                 old_asc = cached_image_->getHeight();
243         return old_asc;
244 }
245
246
247 int InsetGraphics::descent(BufferView *, LyXFont const &) const
248 {
249         return 0;
250 }
251
252
253 int InsetGraphics::width(BufferView *, LyXFont const & font) const
254 {
255         if (drawImage())
256                 return cached_image_->getWidth();
257         else {
258                 int font_width = 0;
259
260                 LyXFont msgFont(font);
261                 msgFont.setFamily(LyXFont::SANS_FAMILY);
262
263                 string const justname = OnlyFilename (params().filename);
264                 if (!justname.empty()) {
265                         msgFont.setSize(LyXFont::SIZE_FOOTNOTE);
266                         font_width = font_metrics::width(justname, msgFont);
267                 }
268
269                 string const msg = statusMessage();
270                 if (!msg.empty()) {
271                         msgFont.setSize(LyXFont::SIZE_TINY);
272                         int const msg_width = font_metrics::width(msg, msgFont);
273                         font_width = std::max(font_width, msg_width);
274                 }
275
276                 return std::max(50, font_width + 15);
277         }
278 }
279
280
281 void InsetGraphics::draw(BufferView * bv, LyXFont const & font,
282                          int baseline, float & x, bool) const
283 {
284         int oasc = old_asc;
285         grfx::ImageStatus old_status_ = cached_status_;
286
287         int ldescent = descent(bv, font);
288         int lascent  = ascent(bv, font);
289         int lwidth   = width(bv, font);
290
291         // we may have changed while someone other was drawing us so better
292         // to not draw anything as we surely call to redraw ourself soon.
293         // This is not a nice thing to do and should be fixed properly somehow.
294         // But I still don't know the best way to go. So let's do this like this
295         // for now (Jug 20020311)
296         if (lascent != oasc) {
297                 return;
298         }
299
300         // Make sure now that x is updated upon exit from this routine
301         int old_x = int(x);
302         x += lwidth;
303
304         // Initiate the loading of the graphics file
305         if (cached_status_ == grfx::WaitingToLoad) {
306                 grfx::GCache & gc = grfx::GCache::get();
307                 gc.startLoading(*this);
308         }
309
310         // This will draw the graphics. If the graphics has not been loaded yet,
311         // we draw just a rectangle.
312         Painter & paint = bv->painter();
313
314         if (drawImage()) {
315                 paint.image(old_x + 2, baseline - lascent,
316                             lwidth - 4, lascent + ldescent,
317                             *cached_image_.get());
318
319         } else {
320
321                 paint.rectangle(old_x + 2, baseline - lascent,
322                                 lwidth - 4,
323                                 lascent + ldescent);
324
325                 // Print the file name.
326                 LyXFont msgFont(font);
327                 msgFont.setFamily(LyXFont::SANS_FAMILY);
328                 string const justname = OnlyFilename (params().filename);
329                 if (!justname.empty()) {
330                         msgFont.setSize(LyXFont::SIZE_FOOTNOTE);
331                         paint.text(old_x + 8, 
332                                    baseline - font_metrics::maxAscent(msgFont) - 4,
333                                    justname, msgFont);
334                 }
335
336                 // Print the message.
337                 string const msg = statusMessage();
338                 if (!msg.empty()) {
339                         msgFont.setSize(LyXFont::SIZE_TINY);
340                         paint.text(old_x + 8, baseline - 4, msg, msgFont);
341                 }
342         }
343
344         // the status message may mean we changed size, so indicate
345         // we need a row redraw
346         if (old_status_ != grfx::ErrorUnknown && old_status_ != cached_status_) {
347                 bv->getLyXText()->status(bv, LyXText::CHANGED_IN_DRAW);
348         }
349
350         // Reset the cache, ready for the next draw request
351         cached_status_ = grfx::ErrorUnknown;
352         cached_image_.reset();
353         cache_filled_ = false;
354 }
355
356
357 // Update the inset after parameters changed (read from file or changed in
358 // dialog. The grfx::GCache makes the decisions about whether or not to draw
359 // (interogates lyxrc, ascertains whether file exists etc)
360 void InsetGraphics::updateInset(string const & filepath) const
361 {
362         grfx::GCache & gc = grfx::GCache::get();
363         gc.update(*this, filepath);
364 }
365
366
367 void InsetGraphics::edit(BufferView *bv, int, int, mouse_button::state)
368 {
369         bv->owner()->getDialogs()->showGraphics(this);
370 }
371
372
373 void InsetGraphics::edit(BufferView * bv, bool)
374 {
375         edit(bv, 0, 0, mouse_button::none);
376 }
377
378
379 Inset::EDITABLE InsetGraphics::editable() const
380 {
381         return IS_EDITABLE;
382 }
383
384
385 void InsetGraphics::write(Buffer const *, ostream & os) const
386 {
387         os << "Graphics FormatVersion " << VersionNumber << '\n';
388         params().Write(os);
389 }
390
391
392 void InsetGraphics::read(Buffer const * buf, LyXLex & lex)
393 {
394         string const token = lex.getString();
395
396         if (token == "Graphics")
397                 readInsetGraphics(lex);
398         else if (token == "Figure") // Compatibility reading of FigInset figures.
399                 readFigInset(lex);
400         else
401                 lyxerr[Debug::GRAPHICS] << "Not a Graphics or Figure inset!\n";
402
403         updateInset(buf->filePath());
404 }
405
406
407 void InsetGraphics::readInsetGraphics(LyXLex & lex)
408 {
409         bool finished = false;
410
411         while (lex.isOK() && !finished) {
412                 lex.next();
413
414                 string const token = lex.getString();
415                 lyxerr[Debug::GRAPHICS] << "Token: '" << token << '\''
416                                     << std::endl;
417
418                 if (token.empty()) {
419                         continue;
420                 } else if (token == "\\end_inset") {
421                         finished = true;
422                 } else if (token == "FormatVersion") {
423                         lex.next();
424                         int version = lex.getInteger();
425                         if (version > VersionNumber)
426                                 lyxerr
427                                 << "This document was created with a newer Graphics widget"
428                                 ", You should use a newer version of LyX to read this"
429                                 " file."
430                                 << std::endl;
431                         // TODO: Possibly open up a dialog?
432                 }
433                 else {
434                         if (! params_.Read(lex, token))
435                                 lyxerr << "Unknown token, " << token << ", skipping."
436                                         << std::endl;
437                 }
438         }
439 }
440
441 // FormatVersion < 1.0  (LyX < 1.2)
442 void InsetGraphics::readFigInset(LyXLex & lex)
443 {
444         std::vector<string> const oldUnits =
445                 getVectorFromString("pt,cm,in,p%,c%");
446         bool finished = false;
447         // set the display default
448         if (lyxrc.display_graphics == "mono")
449             params_.display = InsetGraphicsParams::MONOCHROME;
450         else if (lyxrc.display_graphics == "gray")
451             params_.display = InsetGraphicsParams::GRAYSCALE;
452         else if (lyxrc.display_graphics == "color")
453             params_.display = InsetGraphicsParams::COLOR;
454         else
455             params_.display = InsetGraphicsParams::NONE;
456         while (lex.isOK() && !finished) {
457                 lex.next();
458
459                 string const token = lex.getString();
460                 lyxerr[Debug::GRAPHICS] << "Token: " << token << endl;
461
462                 if (token.empty())
463                         continue;
464                 else if (token == "\\end_inset") {
465                         finished = true;
466                 } else if (token == "file") {
467                         if (lex.next()) {
468                                 params_.filename = lex.getString();
469                         }
470                 } else if (token == "extra") {
471                         if (lex.next());
472                         // kept for backwards compability. Delete in 0.13.x
473                 } else if (token == "subcaption") {
474                         if (lex.eatLine())
475                                 params_.subcaptionText = lex.getString();
476                 } else if (token == "label") {
477                         if (lex.next());
478                         // kept for backwards compability. Delete in 0.13.x
479                 } else if (token == "angle") {
480                         if (lex.next()) {
481                                 params_.rotate = true;
482                                 params_.rotateAngle = lex.getFloat();
483                         }
484                 } else if (token == "size") {
485                         if (lex.next())
486                                 params_.lyxwidth = LyXLength(lex.getString()+"pt");
487                         if (lex.next())
488                                 params_.lyxheight = LyXLength(lex.getString()+"pt");
489                         params_.lyxsize_type = InsetGraphicsParams::WH;
490                 } else if (token == "flags") {
491                         if (lex.next())
492                                 switch (lex.getInteger()) {
493                                 case 1: params_.display = InsetGraphicsParams::MONOCHROME;
494                                     break;
495                                 case 2: params_.display = InsetGraphicsParams::GRAYSCALE;
496                                     break;
497                                 case 3: params_.display = InsetGraphicsParams::COLOR;
498                                     break;
499                                 }
500                 } else if (token == "subfigure") {
501                         params_.subcaption = true;
502                 } else if (token == "width") {
503                     if (lex.next()) {
504                         int i = lex.getInteger();
505                         if (lex.next()) {
506                             if (i == 5) {
507                                 params_.scale = lex.getInteger();
508                                 params_.size_type = InsetGraphicsParams::SCALE;
509                             } else {
510                                 params_.width = LyXLength(lex.getString()+oldUnits[i]);
511                                 params_.size_type = InsetGraphicsParams::WH;
512                             }
513                         }
514                     }
515                 } else if (token == "height") {
516                     if (lex.next()) {
517                         int i = lex.getInteger();
518                         if (lex.next()) {
519                             params_.height = LyXLength(lex.getString()+oldUnits[i]);
520                             params_.size_type = InsetGraphicsParams::WH;
521                         }
522                     }
523                 }
524         }
525 }
526
527 string const InsetGraphics::createLatexOptions() const
528 {
529         // Calculate the options part of the command, we must do it to a string
530         // stream since we might have a trailing comma that we would like to remove
531         // before writing it to the output stream.
532         ostringstream options;
533         if (!params().bb.empty())
534             options << "  bb=" << strip(params().bb) << ",\n";
535         if (params().draft)
536             options << "  draft,\n";
537         if (params().clip)
538             options << "  clip,\n";
539         if (params().size_type == InsetGraphicsParams::WH) {
540             if (!params().width.zero())
541                 options << "  width=" << params().width.asLatexString() << ",\n";
542             if (!params().height.zero())
543                 options << "  height=" << params().height.asLatexString() << ",\n";
544         } else if (params().size_type == InsetGraphicsParams::SCALE) {
545             if (params().scale > 0)
546                 options << "  scale=" << double(params().scale)/100.0 << ",\n";
547         }
548         if (params().keepAspectRatio)
549             options << "  keepaspectratio,\n";
550         // Make sure it's not very close to zero, a float can be effectively
551         // zero but not exactly zero.
552         if (!lyx::float_equal(params().rotateAngle, 0, 0.001) && params().rotate) {
553             options << "  angle=" << params().rotateAngle << ",\n";
554             if (!params().rotateOrigin.empty()) {
555                 options << "  origin=" << params().rotateOrigin[0];
556                 if (contains(params().rotateOrigin,"Top"))
557                     options << 't';
558                 else if (contains(params().rotateOrigin,"Bottom"))
559                     options << 'b';
560                 else if (contains(params().rotateOrigin,"Baseline"))
561                     options << 'B';
562                 options << ",\n";
563             }
564         }
565         if (!params().special.empty())
566             options << params().special << ",\n";
567         string opts = options.str().c_str();
568         return opts.substr(0,opts.size()-2);    // delete last ",\n"
569 }
570
571 namespace {
572 string findTargetFormat(string const & suffix)
573 {
574         // lyxrc.pdf_mode means:
575         // Are we creating a PDF or a PS file?
576         // (Should actually mean, are we using latex or pdflatex).
577         if (lyxrc.pdf_mode) {
578                 lyxerr[Debug::GRAPHICS] << "findTargetFormat: PDF mode\n";
579                 if (contains(suffix,"ps") || suffix == "pdf")
580                         return "pdf";
581                 else if (suffix == "jpg")       // pdflatex can use jpeg
582                         return suffix;
583                 else
584                         return "png";           // and also png
585         }
586         // If it's postscript, we always do eps.
587         lyxerr[Debug::GRAPHICS] << "findTargetFormat: PostScript mode\n";
588         if (suffix != "ps")                     // any other than ps
589             return "eps";                       // is changed to eps
590         else
591             return suffix;                      // let ps untouched
592 }
593
594 } // Anon. namespace
595
596
597 string const InsetGraphics::prepareFile(Buffer const *buf) const
598 {
599         // LaTeX can cope if the graphics file doesn't exist, so just return the
600         // filename.
601         string const orig_file = params().filename;
602         string const orig_file_with_path =
603                 MakeAbsPath(orig_file, buf->filePath());
604         lyxerr[Debug::GRAPHICS] << "prepareFile: " << orig_file << endl
605                     << "  with path: " << orig_file_with_path << endl;
606
607         if (!IsFileReadable(orig_file_with_path))
608                 return orig_file;
609
610         // If the file is compressed and we have specified that it should not be
611         // uncompressed, then just return its name and let LaTeX do the rest!
612         bool const zipped = zippedFile(orig_file_with_path);
613         if (zipped)
614                 lyxerr[Debug::GRAPHICS] << "it's a zipped file\n";
615         if (zipped && params().noUnzip) {
616                 lyxerr[Debug::GRAPHICS] << "pass file unzipped to LaTeX\n";
617                 return orig_file;
618         }
619
620         // "nice" means that the buffer is exported to LaTeX format but not
621         //        run through the LaTeX compiler.
622         // if (nice)
623         //     No conversion of the graphics file is needed.
624         //     Return the original filename without any extension.
625         if (buf->niceFile)
626                 return RemoveExtension(orig_file);
627
628         // We're going to be running the exported buffer through the LaTeX
629         // compiler, so must ensure that LaTeX can cope with the graphics
630         // file format.
631
632         // Perform all these manipulations on a temporary file if possible.
633         // If we are not using a temp dir, then temp_file contains the
634         // original file.
635         // to allow files with the same name in different dirs
636         // we manipulate the original file "any.dir/file.ext"
637         // to "any_dir_file.ext"! changing the dots in the
638         // dirname is important for the use of ChangeExtension
639         string temp_file(orig_file);
640         if (lyxrc.use_tempdir) {
641                 string const ext_tmp = GetExtension(orig_file);
642                 // without ext and /
643                 temp_file = subst(
644                         ChangeExtension(temp_file, string()), "/", "_");
645                 // without . and again with ext
646                 temp_file = ChangeExtension(
647                         subst(temp_file, ".", "_"), ext_tmp);
648                 // now we have any_dir_file.ext
649                 temp_file = MakeAbsPath(temp_file, buf->tmppath);
650         }
651         lyxerr[Debug::GRAPHICS]
652                 << "InsetGraphics::prepareFile. The temp file is: "
653                 << temp_file << endl;
654
655         // If we are using a temp dir, then copy the file into it.
656         if (lyxrc.use_tempdir && !IsFileReadable(temp_file)) {
657                 bool const success = lyx::copy(orig_file_with_path, temp_file);
658                 lyxerr[Debug::GRAPHICS]
659                         << "InsetGraphics::prepareFile. Copying from "
660                         << orig_file << " to " << temp_file
661                         << (success ? " succeeded\n" : " failed\n");
662                 if (!success) {
663                         Alert::alert(_("Cannot copy file"), orig_file,
664                                         _("into tempdir"));
665                         return orig_file;
666                 }
667         }
668
669         // Uncompress the file if necessary. If it has been uncompressed in
670         // a previous call to prepareFile, do nothing.
671         if (zipped) {
672                 // What we want to end up with:
673                 string const temp_file_unzipped =
674                         ChangeExtension(temp_file, string());
675
676                 if (!IsFileReadable(temp_file_unzipped)) {
677                         // unzipFile generates a random filename, so move this
678                         // file where we want it to go.
679                         string const tmp = unzipFile(temp_file);
680                         lyx::copy(tmp, temp_file_unzipped);
681                         lyx::unlink(tmp);
682
683                         lyxerr[Debug::GRAPHICS]
684                                 << "InsetGraphics::prepareFile. Unzipped to "
685                                 << temp_file_unzipped << endl;
686                 }
687
688                 // We have an uncompressed file where we expect it,
689                 // so rename temp_file and continue.
690                 temp_file = temp_file_unzipped;
691         }
692
693         // Ascertain the graphics format that LaTeX requires.
694         // Make again an absolute path, maybe that we have no
695         // tempdir. Than temp_file=orig_file
696         string const from = lyxrc.use_tempdir ?
697                 getExtFromContents(temp_file) :
698                 getExtFromContents(MakeAbsPath(temp_file, buf->filePath()));
699         string const to   = findTargetFormat(from);
700
701         // No conversion is needed. LaTeX can handle the graphics file as it is.
702         // This is true even if the orig_file is compressed.
703         if (from == to) {
704                 return orig_file;
705         }
706
707         string const outfile_base = RemoveExtension(temp_file);
708
709         lyxerr[Debug::GRAPHICS]
710                 << "InsetGraphics::prepareFile. The original file is "
711                 << orig_file << "\n"
712                 << "A copy has been made and convert is to be called with:\n"
713                 << "\tfile to convert = " << temp_file << '\n'
714                 << "\toutfile_base = " << outfile_base << '\n'
715                 << "\t from " << from << " to " << to << '\n';
716
717         converters.convert(buf, temp_file, outfile_base, from, to);
718         return RemoveExtension(temp_file);
719 }
720
721
722 int InsetGraphics::latex(Buffer const *buf, ostream & os,
723                          bool /*fragile*/, bool/*fs*/) const
724 {
725         // If there is no file specified or not existing,
726         // just output a message about it in the latex output.
727         lyxerr[Debug::GRAPHICS]
728                 << "insetgraphics::latex: Filename = "
729                 << params().filename << endl;
730
731         // A missing (e)ps-extension is no problem for LaTeX, so
732         // we have to test three different cases
733         string const file_(MakeAbsPath(params().filename, buf->filePath()));
734         bool const file_exists =
735                 !file_.empty() &&
736                 (IsFileReadable(file_) ||               // original
737                  IsFileReadable(file_ + ".eps") ||      // original.eps
738                  IsFileReadable(file_ + ".ps"));        // original.ps
739         string const message = file_exists ?
740                 string() : string("bb = 0 0 200 100, draft, type=eps]");
741         // if !message.empty() than there was no existing file
742         // "filename(.(e)ps)" found. In this case LaTeX
743         // draws only a rectangle with the above bb and the
744         // not found filename in it.
745         lyxerr[Debug::GRAPHICS]
746                 << "InsetGraphics::latex. Message = \"" << message << '\"' << endl;
747
748         // These variables collect all the latex code that should be before and
749         // after the actual includegraphics command.
750         string before;
751         string after;
752         // Do we want subcaptions?
753         if (params().subcaption) {
754                 before += "\\subfigure[" + params().subcaptionText + "]{";
755                 after = '}';
756         }
757         // We never use the starred form, we use the "clip" option instead.
758         before += "\\includegraphics";
759
760         // Write the options if there are any.
761         string const opts = createLatexOptions();
762         lyxerr[Debug::GRAPHICS]
763                 << "InsetGraphics::latex. Opts = " << opts << endl;
764
765         if (!opts.empty() && !message.empty())
766                 before += ("[" + opts + ',' + message);
767         else if (!message.empty())
768                 before += ('[' + message);
769         else if (!opts.empty())
770                 before += ("[" + opts + ']');
771
772         lyxerr[Debug::GRAPHICS]
773                 << "InsetGraphics::latex. Before = " << before
774                 << "\nafter = " << after << endl;
775
776         // Make the filename relative to the lyx file
777         // and remove the extension so the LaTeX will use whatever is
778         // appropriate (when there are several versions in different formats)
779         string const latex_str = message.empty() ?
780                 (before + '{' + prepareFile(buf) + '}' + after) :
781                 (before + '{' + params().filename + " not found!}" + after);
782         os << latex_str;
783
784         // Return how many newlines we issued.
785         int const newlines =
786                 int(lyx::count(latex_str.begin(), latex_str.end(),'\n') + 1);
787
788         return newlines;
789 }
790
791
792 int InsetGraphics::ascii(Buffer const *, ostream & os, int) const
793 {
794         // No graphics in ascii output. Possible to use gifscii to convert
795         // images to ascii approximation.
796         // 1. Convert file to ascii using gifscii
797         // 2. Read ascii output file and add it to the output stream.
798         // at least we send the filename
799         os << '<' << _("Graphic file:") << params().filename << ">\n";
800         return 0;
801 }
802
803
804 int InsetGraphics::linuxdoc(Buffer const *, ostream &) const
805 {
806         // No graphics in LinuxDoc output. Should check how/what to add.
807         return 0;
808 }
809
810
811 // For explanation on inserting graphics into DocBook checkout:
812 // http://linuxdoc.org/LDP/LDP-Author-Guide/inserting-pictures.html
813 // See also the docbook guide at http://www.docbook.org/
814 int InsetGraphics::docbook(Buffer const *, ostream & os) const
815 {
816         // In DocBook v5.0, the graphic tag will be eliminated from DocBook, will
817         // need to switch to MediaObject. However, for now this is sufficient and
818         // easier to use.
819         os << "<graphic fileref=\"&" << graphic_label << ";\">";
820         return 0;
821 }
822
823
824 void InsetGraphics::validate(LaTeXFeatures & features) const
825 {
826         // If we have no image, we should not require anything.
827         if (params().filename.empty())
828                 return ;
829
830         features.includeFile(graphic_label, RemoveExtension(params().filename));
831
832         features.require("graphicx");
833
834         if (params().subcaption)
835                 features.require("subfigure");
836 }
837
838
839 bool InsetGraphics::setParams(InsetGraphicsParams const & p,
840                               string const & filepath)
841 {
842         // If nothing is changed, just return and say so.
843         if (params() == p && !p.filename.empty()) {
844                 return false;
845         }
846
847         // Copy the new parameters.
848         params_ = p;
849
850         // Update the inset with the new parameters.
851         updateInset(filepath);
852
853         // We have changed data, report it.
854         return true;
855 }
856
857
858 InsetGraphicsParams const & InsetGraphics::params() const
859 {
860         return params_;
861 }
862
863
864 Inset * InsetGraphics::clone(Buffer const & buffer, bool same_id) const
865 {
866         return new InsetGraphics(*this, buffer.filePath(), same_id);
867 }