]> git.lyx.org Git - lyx.git/blob - src/insets/InsetGraphics.cpp
Fix bug 1749. CAUTION: lyx2lyx not fully working yet (see FIXMEs).
[lyx.git] / src / insets / InsetGraphics.cpp
1 /**
2  * \file InsetGraphics.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Baruch Even
7  * \author Herbert Voß
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 /*
13 TODO
14
15     * What advanced features the users want to do?
16       Implement them in a non latex dependent way, but a logical way.
17       LyX should translate it to latex or any other fitting format.
18     * Add a way to roll the image file into the file format.
19     * When loading, if the image is not found in the expected place, try
20       to find it in the clipart, or in the same directory with the image.
21     * The image choosing dialog could show thumbnails of the image formats
22       it knows of, thus selection based on the image instead of based on
23       filename.
24     * Add support for the 'picins' package.
25     * Add support for the 'picinpar' package.
26     * Improve support for 'subfigure' - Allow to set the various options
27       that are possible.
28 */
29
30 /* NOTES:
31  * Fileformat:
32  * The filename is kept in  the lyx file in a relative way, so as to allow
33  * moving the document file and its images with no problem.
34  *
35  *
36  * Conversions:
37  *   Postscript output means EPS figures.
38  *
39  *   PDF output is best done with PDF figures if it's a direct conversion
40  *   or PNG figures otherwise.
41  *      Image format
42  *      from        to
43  *      EPS         epstopdf
44  *      PS          ps2pdf
45  *      JPG/PNG     direct
46  *      PDF         direct
47  *      others      PNG
48  */
49
50 #include <config.h>
51
52 #include "insets/InsetGraphics.h"
53 #include "insets/RenderGraphic.h"
54
55 #include "Buffer.h"
56 #include "BufferView.h"
57 #include "Converter.h"
58 #include "Cursor.h"
59 #include "debug.h"
60 #include "DispatchResult.h"
61 #include "ErrorList.h"
62 #include "Exporter.h"
63 #include "Format.h"
64 #include "FuncRequest.h"
65 #include "FuncStatus.h"
66 #include "gettext.h"
67 #include "LaTeXFeatures.h"
68 #include "Length.h"
69 #include "Lexer.h"
70 #include "MetricsInfo.h"
71 #include "Mover.h"
72 #include "OutputParams.h"
73 #include "sgml.h"
74
75 #include "frontends/alert.h"
76
77 #include "support/convert.h"
78 #include "support/filetools.h"
79 #include "support/lyxalgo.h" // count
80 #include "support/lyxlib.h" // sum
81 #include "support/lstrings.h"
82 #include "support/os.h"
83 #include "support/Systemcall.h"
84
85 #include <boost/bind.hpp>
86 #include <boost/tuple/tuple.hpp>
87
88 #include <sstream>
89
90
91 namespace lyx {
92
93 using support::bformat;
94 using support::changeExtension;
95 using support::compare_timestamps;
96 using support::contains;
97 using support::DocFileName;
98 using support::FileName;
99 using support::float_equal;
100 using support::getExtension;
101 using support::isFileReadable;
102 using support::latex_path;
103 using support::onlyFilename;
104 using support::removeExtension;
105 using support::rtrim;
106 using support::subst;
107 using support::suffixIs;
108 using support::Systemcall;
109 using support::unzipFile;
110 using support::unzippedFileName;
111
112 using std::endl;
113 using std::string;
114 using std::auto_ptr;
115 using std::istringstream;
116 using std::ostream;
117 using std::ostringstream;
118
119
120 namespace {
121
122 /// Find the most suitable image format for images in \p format
123 /// Note that \p format may be unknown (i. e. an empty string)
124 string findTargetFormat(string const & format, OutputParams const & runparams)
125 {
126         // Are we using latex or pdflatex?
127         if (runparams.flavor == OutputParams::PDFLATEX) {
128                 LYXERR(Debug::GRAPHICS) << "findTargetFormat: PDF mode" << endl;
129                 Format const * const f = formats.getFormat(format);
130                 // Convert vector graphics to pdf
131                 if (f && f->vectorFormat())
132                         return "pdf";
133                 // pdflatex can use jpeg, png and pdf directly
134                 if (format == "jpg")
135                         return format;
136                 // Convert everything else to png
137                 return "png";
138         }
139         // If it's postscript, we always do eps.
140         LYXERR(Debug::GRAPHICS) << "findTargetFormat: PostScript mode" << endl;
141         if (format != "ps")
142                 // any other than ps is changed to eps
143                 return "eps";
144         // let ps untouched
145         return format;
146 }
147
148 } // namespace anon
149
150
151 InsetGraphics::InsetGraphics()
152         : graphic_label(sgml::uniqueID(from_ascii("graph"))),
153           graphic_(new RenderGraphic(this))
154 {}
155
156
157 InsetGraphics::InsetGraphics(InsetGraphics const & ig)
158         : Inset(ig),
159           boost::signals::trackable(),
160                 graphic_label(sgml::uniqueID(from_ascii("graph"))),
161           graphic_(new RenderGraphic(*ig.graphic_, this))
162 {
163         setParams(ig.params());
164 }
165
166
167 auto_ptr<Inset> InsetGraphics::doClone() const
168 {
169         return auto_ptr<Inset>(new InsetGraphics(*this));
170 }
171
172
173 InsetGraphics::~InsetGraphics()
174 {
175         InsetGraphicsMailer(*this).hideDialog();
176 }
177
178
179 void InsetGraphics::doDispatch(Cursor & cur, FuncRequest & cmd)
180 {
181         switch (cmd.action) {
182         case LFUN_GRAPHICS_EDIT: {
183                 Buffer const & buffer = *cur.bv().buffer();
184                 InsetGraphicsParams p;
185                 InsetGraphicsMailer::string2params(to_utf8(cmd.argument()), buffer, p);
186                 editGraphics(p, buffer);
187                 break;
188         }
189
190         case LFUN_INSET_MODIFY: {
191                 Buffer const & buffer = cur.buffer();
192                 InsetGraphicsParams p;
193                 InsetGraphicsMailer::string2params(to_utf8(cmd.argument()), buffer, p);
194                 if (!p.filename.empty())
195                         setParams(p);
196                 else
197                         cur.noUpdate();
198                 break;
199         }
200
201         case LFUN_INSET_DIALOG_UPDATE:
202                 InsetGraphicsMailer(*this).updateDialog(&cur.bv());
203                 break;
204
205         case LFUN_MOUSE_RELEASE:
206                 if (!cur.selection())
207                         InsetGraphicsMailer(*this).showDialog(&cur.bv());
208                 break;
209
210         default:
211                 Inset::doDispatch(cur, cmd);
212                 break;
213         }
214 }
215
216
217 bool InsetGraphics::getStatus(Cursor & cur, FuncRequest const & cmd,
218                 FuncStatus & flag) const
219 {
220         switch (cmd.action) {
221         case LFUN_GRAPHICS_EDIT:
222         case LFUN_INSET_MODIFY:
223         case LFUN_INSET_DIALOG_UPDATE:
224                 flag.enabled(true);
225                 return true;
226
227         default:
228                 return Inset::getStatus(cur, cmd, flag);
229         }
230 }
231
232
233 void InsetGraphics::edit(Cursor & cur, bool)
234 {
235         InsetGraphicsMailer(*this).showDialog(&cur.bv());
236 }
237
238
239 bool InsetGraphics::metrics(MetricsInfo & mi, Dimension & dim) const
240 {
241         graphic_->metrics(mi, dim);
242         bool const changed = dim_ != dim;
243         dim_ = dim;
244         return changed;
245 }
246
247
248 void InsetGraphics::draw(PainterInfo & pi, int x, int y) const
249 {
250         setPosCache(pi, x, y);
251         graphic_->draw(pi, x, y);
252 }
253
254
255 Inset::EDITABLE InsetGraphics::editable() const
256 {
257         return IS_EDITABLE;
258 }
259
260
261 void InsetGraphics::write(Buffer const & buf, ostream & os) const
262 {
263         os << "Graphics\n";
264         params().Write(os, buf.filePath());
265 }
266
267
268 void InsetGraphics::read(Buffer const & buf, Lexer & lex)
269 {
270         string const token = lex.getString();
271
272         if (token == "Graphics")
273                 readInsetGraphics(lex, buf.filePath());
274         else
275                 LYXERR(Debug::GRAPHICS) << "Not a Graphics inset!" << endl;
276
277         graphic_->update(params().as_grfxParams());
278 }
279
280
281 void InsetGraphics::readInsetGraphics(Lexer & lex, string const & bufpath)
282 {
283         bool finished = false;
284
285         while (lex.isOK() && !finished) {
286                 lex.next();
287
288                 string const token = lex.getString();
289                 LYXERR(Debug::GRAPHICS) << "Token: '" << token << '\''
290                                     << endl;
291
292                 if (token.empty()) {
293                         continue;
294                 } else if (token == "\\end_inset") {
295                         finished = true;
296                 } else {
297                         if (!params_.Read(lex, token, bufpath))
298                                 lyxerr << "Unknown token, " << token << ", skipping."
299                                         << std::endl;
300                 }
301         }
302 }
303
304
305 string const InsetGraphics::createLatexOptions() const
306 {
307         // Calculate the options part of the command, we must do it to a string
308         // stream since we might have a trailing comma that we would like to remove
309         // before writing it to the output stream.
310         ostringstream options;
311         if (!params().bb.empty())
312             options << "bb=" << rtrim(params().bb) << ',';
313         if (params().draft)
314             options << "draft,";
315         if (params().clip)
316             options << "clip,";
317         ostringstream size;
318         double const scl = convert<double>(params().scale);
319         if (!params().scale.empty() && !float_equal(scl, 0.0, 0.05)) {
320                 if (!float_equal(scl, 100.0, 0.05))
321                         size << "scale=" << scl / 100.0 << ',';
322         } else {
323                 if (!params().width.zero())
324                         size << "width=" << params().width.asLatexString() << ',';
325                 if (!params().height.zero())
326                         size << "height=" << params().height.asLatexString() << ',';
327                 if (params().keepAspectRatio)
328                         size << "keepaspectratio,";
329         }
330         if (params().scaleBeforeRotation && !size.str().empty())
331                 options << size.str();
332
333         // Make sure rotation angle is not very close to zero;
334         // a float can be effectively zero but not exactly zero.
335         if (!params().rotateAngle.empty()
336                 && !float_equal(convert<double>(params().rotateAngle), 0.0, 0.001)) {
337             options << "angle=" << params().rotateAngle << ',';
338             if (!params().rotateOrigin.empty()) {
339                 options << "origin=" << params().rotateOrigin[0];
340                 if (contains(params().rotateOrigin,"Top"))
341                     options << 't';
342                 else if (contains(params().rotateOrigin,"Bottom"))
343                     options << 'b';
344                 else if (contains(params().rotateOrigin,"Baseline"))
345                     options << 'B';
346                 options << ',';
347             }
348         }
349         if (!params().scaleBeforeRotation && !size.str().empty())
350                 options << size.str();
351
352         if (!params().special.empty())
353             options << params().special << ',';
354
355         string opts = options.str();
356         // delete last ','
357         if (suffixIs(opts, ','))
358                 opts = opts.substr(0, opts.size() - 1);
359
360         return opts;
361 }
362
363
364 docstring const InsetGraphics::toDocbookLength(Length const & len) const
365 {
366         odocstringstream result;
367         switch (len.unit()) {
368                 case Length::SP: // Scaled point (65536sp = 1pt) TeX's smallest unit.
369                         result << len.value() * 65536.0 * 72 / 72.27 << "pt";
370                         break;
371                 case Length::PT: // Point = 1/72.27in = 0.351mm
372                         result << len.value() * 72 / 72.27 << "pt";
373                         break;
374                 case Length::BP: // Big point (72bp = 1in), also PostScript point
375                         result << len.value() << "pt";
376                         break;
377                 case Length::DD: // Didot point = 1/72 of a French inch, = 0.376mm
378                         result << len.value() * 0.376 << "mm";
379                         break;
380                 case Length::MM: // Millimeter = 2.845pt
381                         result << len.value() << "mm";
382                         break;
383                 case Length::PC: // Pica = 12pt = 4.218mm
384                         result << len.value() << "pc";
385                         break;
386                 case Length::CC: // Cicero = 12dd = 4.531mm
387                         result << len.value() * 4.531 << "mm";
388                         break;
389                 case Length::CM: // Centimeter = 10mm = 2.371pc
390                         result << len.value() << "cm";
391                         break;
392                 case Length::IN: // Inch = 25.4mm = 72.27pt = 6.022pc
393                         result << len.value() << "in";
394                         break;
395                 case Length::EX: // Height of a small "x" for the current font.
396                         // Obviously we have to compromise here. Any better ratio than 1.5 ?
397                         result << len.value() / 1.5 << "em";
398                         break;
399                 case Length::EM: // Width of capital "M" in current font.
400                         result << len.value() << "em";
401                         break;
402                 case Length::MU: // Math unit (18mu = 1em) for positioning in math mode
403                         result << len.value() * 18 << "em";
404                         break;
405                 case Length::PTW: // Percent of TextWidth
406                 case Length::PCW: // Percent of ColumnWidth
407                 case Length::PPW: // Percent of PageWidth
408                 case Length::PLW: // Percent of LineWidth
409                 case Length::PTH: // Percent of TextHeight
410                 case Length::PPH: // Percent of Paper
411                         // Sigh, this will go wrong.
412                         result << len.value() << "%";
413                         break;
414                 default:
415                         result << len.asDocstring();
416                         break;
417         }
418         return result.str();
419 }
420
421 docstring const InsetGraphics::createDocBookAttributes() const
422 {
423         // Calculate the options part of the command, we must do it to a string
424         // stream since we copied the code from createLatexParams() ;-)
425
426         // FIXME: av: need to translate spec -> Docbook XSL spec (http://www.sagehill.net/docbookxsl/ImageSizing.html)
427         // Right now it only works with my version of db2latex :-)
428
429         odocstringstream options;
430         double const scl = convert<double>(params().scale);
431         if (!params().scale.empty() && !float_equal(scl, 0.0, 0.05)) {
432                 if (!float_equal(scl, 100.0, 0.05))
433                         options << " scale=\""
434                                 << static_cast<int>( (scl) + 0.5 )
435                                 << "\" ";
436         } else {
437                 if (!params().width.zero()) {
438                         options << " width=\"" << toDocbookLength(params().width)  << "\" ";
439                 }
440                 if (!params().height.zero()) {
441                         options << " depth=\"" << toDocbookLength(params().height)  << "\" ";
442                 }
443                 if (params().keepAspectRatio) {
444                         // This will be irrelevant unless both width and height are set
445                         options << "scalefit=\"1\" ";
446                 }
447         }
448
449
450         if (!params().special.empty())
451                 options << from_ascii(params().special) << " ";
452
453         // trailing blanks are ok ...
454         return options.str();
455 }
456
457
458 namespace {
459
460 enum CopyStatus {
461         SUCCESS,
462         FAILURE,
463         IDENTICAL_PATHS,
464         IDENTICAL_CONTENTS
465 };
466
467
468 std::pair<CopyStatus, FileName> const
469 copyFileIfNeeded(FileName const & file_in, FileName const & file_out)
470 {
471         unsigned long const checksum_in  = support::sum(file_in);
472         unsigned long const checksum_out = support::sum(file_out);
473
474         if (checksum_in == checksum_out)
475                 // Nothing to do...
476                 return std::make_pair(IDENTICAL_CONTENTS, file_out);
477
478         Mover const & mover = getMover(formats.getFormatFromFile(file_in));
479         bool const success = mover.copy(file_in, file_out);
480         if (!success) {
481                 // FIXME UNICODE
482                 LYXERR(Debug::GRAPHICS)
483                         << to_utf8(support::bformat(_("Could not copy the file\n%1$s\n"
484                                                            "into the temporary directory."),
485                                                 from_utf8(file_in.absFilename())))
486                         << std::endl;
487         }
488
489         CopyStatus status = success ? SUCCESS : FAILURE;
490         return std::make_pair(status, file_out);
491 }
492
493
494 std::pair<CopyStatus, FileName> const
495 copyToDirIfNeeded(DocFileName const & file, string const & dir)
496 {
497         using support::rtrim;
498
499         string const file_in = file.absFilename();
500         string const only_path = support::onlyPath(file_in);
501         if (rtrim(support::onlyPath(file_in) , "/") == rtrim(dir, "/"))
502                 return std::make_pair(IDENTICAL_PATHS, file_in);
503
504         string mangled = file.mangledFilename();
505         if (file.isZipped()) {
506                 // We need to change _eps.gz to .eps.gz. The mangled name is
507                 // still unique because of the counter in mangledFilename().
508                 // We can't just call mangledFilename() with the zip
509                 // extension removed, because base.eps and base.eps.gz may
510                 // have different content but would get the same mangled
511                 // name in this case.
512                 string const base = removeExtension(file.unzippedFilename());
513                 string::size_type const ext_len = file_in.length() - base.length();
514                 mangled[mangled.length() - ext_len] = '.';
515         }
516         FileName const file_out(support::makeAbsPath(mangled, dir));
517
518         return copyFileIfNeeded(file, file_out);
519 }
520
521
522 string const stripExtensionIfPossible(string const & file, bool nice)
523 {
524         // Remove the extension so the LaTeX compiler will use whatever
525         // is appropriate (when there are several versions in different
526         // formats).
527         // Do this only if we are not exporting for internal usage, because
528         // pdflatex prefers png over pdf and it would pick up the png images
529         // that we generate for preview.
530         // This works only if the filename contains no dots besides
531         // the just removed one. We can fool here by replacing all
532         // dots with a macro whose definition is just a dot ;-)
533         // The automatic format selection does not work if the file
534         // name is escaped.
535         string const latex_name = latex_path(file,
536                                              support::EXCLUDE_EXTENSION);
537         if (!nice || contains(latex_name, '"'))
538                 return latex_name;
539         return latex_path(removeExtension(file),
540                           support::PROTECT_EXTENSION,
541                           support::ESCAPE_DOTS);
542 }
543
544
545 string const stripExtensionIfPossible(string const & file, string const & to, bool nice)
546 {
547         // No conversion is needed. LaTeX can handle the graphic file as is.
548         // This is true even if the orig_file is compressed.
549         string const to_format = formats.getFormat(to)->extension();
550         string const file_format = getExtension(file);
551         // for latex .ps == .eps
552         if (to_format == file_format ||
553             (to_format == "eps" && file_format ==  "ps") ||
554             (to_format ==  "ps" && file_format == "eps"))
555                 return stripExtensionIfPossible(file, nice);
556         return latex_path(file, support::EXCLUDE_EXTENSION);
557 }
558
559 } // namespace anon
560
561
562 string const InsetGraphics::prepareFile(Buffer const & buf,
563                                         OutputParams const & runparams) const
564 {
565         // The following code depends on non-empty filenames
566         if (params().filename.empty())
567                 return string();
568
569         string const orig_file = params().filename.absFilename();
570         string const rel_file = params().filename.relFilename(buf.filePath());
571
572         // previewing source code, no file copying or file format conversion
573         if (runparams.dryrun)
574                 return stripExtensionIfPossible(rel_file, runparams.nice);
575
576         // temp_file will contain the file for LaTeX to act on if, for example,
577         // we move it to a temp dir or uncompress it.
578         FileName temp_file = params().filename;
579
580         // The master buffer. This is useful when there are multiple levels
581         // of include files
582         Buffer const * m_buffer = buf.getMasterBuffer();
583
584         // Return the output name if we are inside a comment or the file does
585         // not exist.
586         // We are not going to change the extension or using the name of the
587         // temporary file, the code is already complicated enough.
588         if (runparams.inComment || !isFileReadable(params().filename))
589                 return params().filename.outputFilename(m_buffer->filePath());
590
591         // We place all temporary files in the master buffer's temp dir.
592         // This is possible because we use mangled file names.
593         // This is necessary for DVI export.
594         string const temp_path = m_buffer->temppath();
595
596         CopyStatus status;
597         boost::tie(status, temp_file) =
598                         copyToDirIfNeeded(params().filename, temp_path);
599
600         if (status == FAILURE)
601                 return orig_file;
602
603         // a relative filename should be relative to the master
604         // buffer.
605         // "nice" means that the buffer is exported to LaTeX format but not
606         //        run through the LaTeX compiler.
607         string output_file = support::os::external_path(runparams.nice ?
608                 params().filename.outputFilename(m_buffer->filePath()) :
609                 onlyFilename(temp_file.absFilename()));
610         FileName source_file = runparams.nice ? FileName(params().filename) : temp_file;
611         string const tex_format = (runparams.flavor == OutputParams::LATEX) ?
612                         "latex" : "pdflatex";
613
614         // If the file is compressed and we have specified that it
615         // should not be uncompressed, then just return its name and
616         // let LaTeX do the rest!
617         if (params().filename.isZipped()) {
618                 if (params().noUnzip) {
619                         // We don't know whether latex can actually handle
620                         // this file, but we can't check, because that would
621                         // mean to unzip the file and thereby making the
622                         // noUnzip parameter meaningless.
623                         LYXERR(Debug::GRAPHICS)
624                                 << "\tpass zipped file to LaTeX.\n";
625
626                         FileName const bb_orig_file = FileName(changeExtension(orig_file, "bb"));
627                         if (runparams.nice) {
628                                 runparams.exportdata->addExternalFile(tex_format,
629                                                 bb_orig_file,
630                                                 changeExtension(output_file, "bb"));
631                         } else {
632                                 // LaTeX needs the bounding box file in the
633                                 // tmp dir
634                                 FileName bb_file = FileName(changeExtension(temp_file.absFilename(), "bb"));
635                                 boost::tie(status, bb_file) =
636                                         copyFileIfNeeded(bb_orig_file, bb_file);
637                                 if (status == FAILURE)
638                                         return orig_file;
639                                 runparams.exportdata->addExternalFile(tex_format,
640                                                 bb_file);
641                         }
642                         runparams.exportdata->addExternalFile(tex_format,
643                                         source_file, output_file);
644                         runparams.exportdata->addExternalFile("dvi",
645                                         source_file, output_file);
646                         // We can't strip the extension, because we don't know
647                         // the unzipped file format
648                         return latex_path(output_file,
649                                           support::EXCLUDE_EXTENSION);
650                 }
651
652                 FileName const unzipped_temp_file =
653                         FileName(unzippedFileName(temp_file.absFilename()));
654                 output_file = unzippedFileName(output_file);
655                 source_file = FileName(unzippedFileName(source_file.absFilename()));
656                 if (compare_timestamps(unzipped_temp_file, temp_file) > 0) {
657                         // temp_file has been unzipped already and
658                         // orig_file has not changed in the meantime.
659                         temp_file = unzipped_temp_file;
660                         LYXERR(Debug::GRAPHICS)
661                                 << "\twas already unzipped to " << temp_file
662                                 << endl;
663                 } else {
664                         // unzipped_temp_file does not exist or is too old
665                         temp_file = unzipFile(temp_file);
666                         LYXERR(Debug::GRAPHICS)
667                                 << "\tunzipped to " << temp_file << endl;
668                 }
669         }
670
671         string const from = formats.getFormatFromFile(temp_file);
672         if (from.empty()) {
673                 LYXERR(Debug::GRAPHICS)
674                         << "\tCould not get file format." << endl;
675         }
676         string const to   = findTargetFormat(from, runparams);
677         string const ext  = formats.extension(to);
678         LYXERR(Debug::GRAPHICS)
679                 << "\t we have: from " << from << " to " << to << '\n';
680
681         // We're going to be running the exported buffer through the LaTeX
682         // compiler, so must ensure that LaTeX can cope with the graphics
683         // file format.
684
685         LYXERR(Debug::GRAPHICS)
686                 << "\tthe orig file is: " << orig_file << endl;
687
688         if (from == to) {
689                 if (!runparams.nice && getExtension(temp_file.absFilename()) != ext) {
690                         // The LaTeX compiler will not be able to determine
691                         // the file format from the extension, so we must
692                         // change it.
693                         FileName const new_file = FileName(changeExtension(temp_file.absFilename(), ext));
694                         if (support::rename(temp_file, new_file)) {
695                                 temp_file = new_file;
696                                 output_file = changeExtension(output_file, ext);
697                                 source_file = FileName(changeExtension(source_file.absFilename(), ext));
698                         } else
699                                 LYXERR(Debug::GRAPHICS)
700                                         << "Could not rename file `"
701                                         << temp_file << "' to `" << new_file
702                                         << "'." << endl;
703                 }
704                 // The extension of temp_file might be != ext!
705                 runparams.exportdata->addExternalFile(tex_format, source_file,
706                                                       output_file);
707                 runparams.exportdata->addExternalFile("dvi", source_file,
708                                                       output_file);
709                 return stripExtensionIfPossible(output_file, to, runparams.nice);
710         }
711
712         FileName const to_file = FileName(changeExtension(temp_file.absFilename(), ext));
713         string const output_to_file = changeExtension(output_file, ext);
714
715         // Do we need to perform the conversion?
716         // Yes if to_file does not exist or if temp_file is newer than to_file
717         if (compare_timestamps(temp_file, to_file) < 0) {
718                 // FIXME UNICODE
719                 LYXERR(Debug::GRAPHICS)
720                         << to_utf8(bformat(_("No conversion of %1$s is needed after all"),
721                                    from_utf8(rel_file)))
722                         << std::endl;
723                 runparams.exportdata->addExternalFile(tex_format, to_file,
724                                                       output_to_file);
725                 runparams.exportdata->addExternalFile("dvi", to_file,
726                                                       output_to_file);
727                 return stripExtensionIfPossible(output_to_file, runparams.nice);
728         }
729
730         LYXERR(Debug::GRAPHICS)
731                 << "\tThe original file is " << orig_file << "\n"
732                 << "\tA copy has been made and convert is to be called with:\n"
733                 << "\tfile to convert = " << temp_file << '\n'
734                 << "\t from " << from << " to " << to << '\n';
735
736         // FIXME (Abdel 12/08/06): Is there a need to show these errors?
737         ErrorList el;
738         if (theConverters().convert(&buf, temp_file, to_file, params().filename,
739                                from, to, el,
740                                Converters::try_default | Converters::try_cache)) {
741                 runparams.exportdata->addExternalFile(tex_format,
742                                 to_file, output_to_file);
743                 runparams.exportdata->addExternalFile("dvi",
744                                 to_file, output_to_file);
745         }
746
747         return stripExtensionIfPossible(output_to_file, runparams.nice);
748 }
749
750
751 int InsetGraphics::latex(Buffer const & buf, odocstream & os,
752                          OutputParams const & runparams) const
753 {
754         // If there is no file specified or not existing,
755         // just output a message about it in the latex output.
756         LYXERR(Debug::GRAPHICS)
757                 << "insetgraphics::latex: Filename = "
758                 << params().filename.absFilename() << endl;
759
760         string const relative_file =
761                 params().filename.relFilename(buf.filePath());
762
763         bool const file_exists = !params().filename.empty() &&
764                                  isFileReadable(params().filename);
765         string const message = file_exists ?
766                 string() : string("bb = 0 0 200 100, draft, type=eps");
767         // if !message.empty() then there was no existing file
768         // "filename" found. In this case LaTeX
769         // draws only a rectangle with the above bb and the
770         // not found filename in it.
771         LYXERR(Debug::GRAPHICS)
772                 << "\tMessage = \"" << message << '\"' << endl;
773
774         // These variables collect all the latex code that should be before and
775         // after the actual includegraphics command.
776         string before;
777         string after;
778         // Do we want subcaptions?
779         if (params().subcaption) {
780                 if (runparams.moving_arg)
781                         before += "\\protect";
782                 before += "\\subfigure[" + params().subcaptionText + "]{";
783                 after = '}';
784         }
785
786         if (runparams.moving_arg)
787                 before += "\\protect";
788
789         // We never use the starred form, we use the "clip" option instead.
790         before += "\\includegraphics";
791
792         // Write the options if there are any.
793         string const opts = createLatexOptions();
794         LYXERR(Debug::GRAPHICS) << "\tOpts = " << opts << endl;
795
796         if (!opts.empty() && !message.empty())
797                 before += ('[' + opts + ',' + message + ']');
798         else if (!opts.empty() || !message.empty())
799                 before += ('[' + opts + message + ']');
800
801         LYXERR(Debug::GRAPHICS)
802                 << "\tBefore = " << before
803                 << "\n\tafter = " << after << endl;
804
805         string latex_str = before + '{';
806         // Convert the file if necessary.
807         // Remove the extension so LaTeX will use whatever is appropriate
808         // (when there are several versions in different formats)
809         latex_str += prepareFile(buf, runparams);
810         latex_str += '}' + after;
811         // FIXME UNICODE
812         os << from_utf8(latex_str);
813
814         LYXERR(Debug::GRAPHICS) << "InsetGraphics::latex outputting:\n"
815                                 << latex_str << endl;
816         // Return how many newlines we issued.
817         return int(lyx::count(latex_str.begin(), latex_str.end(),'\n'));
818 }
819
820
821 int InsetGraphics::plaintext(Buffer const & buf, odocstream & os,
822                              OutputParams const &) const
823 {
824         // No graphics in ascii output. Possible to use gifscii to convert
825         // images to ascii approximation.
826         // 1. Convert file to ascii using gifscii
827         // 2. Read ascii output file and add it to the output stream.
828         // at least we send the filename
829         // FIXME UNICODE
830         // FIXME: We have no idea what the encoding of the filename is
831
832         docstring const str = bformat(buf.B_("Graphics file: %1$s"),
833                                       from_utf8(params().filename.absFilename()));
834         os << '<' << str << '>';
835
836         return 2 + str.size();
837 }
838
839
840 namespace {
841
842 int writeImageObject(char * format, odocstream & os, OutputParams const & runparams,
843                      docstring const graphic_label, docstring const attributes)
844 {
845                 if (runparams.flavor != OutputParams::XML) {
846                         os << "<![ %output.print."
847                            << format
848                            << "; ["
849                            << std::endl;
850                 }
851                 os <<"<imageobject><imagedata fileref=\"&"
852                    << graphic_label
853                    << ";."
854                    << format
855                    << "\" "
856                    << attributes;
857                 if (runparams.flavor == OutputParams::XML) {
858                         os <<  " role=\"" << format << "\"/>" ;
859                 }
860                 else {
861                         os << " format=\"" << format << "\">" ;
862                 }
863                 os << "</imageobject>";
864                 if (runparams.flavor != OutputParams::XML) {
865                         os << std::endl << "]]>" ;
866                 }
867                 return runparams.flavor == OutputParams::XML ? 0 : 2;
868 }
869 // end anonymous namespace
870 }
871
872
873 // For explanation on inserting graphics into DocBook checkout:
874 // http://en.tldp.org/LDP/LDP-Author-Guide/html/inserting-pictures.html
875 // See also the docbook guide at http://www.docbook.org/
876 int InsetGraphics::docbook(Buffer const &, odocstream & os,
877                            OutputParams const & runparams) const
878 {
879         // In DocBook v5.0, the graphic tag will be eliminated from DocBook, will
880         // need to switch to MediaObject. However, for now this is sufficient and
881         // easier to use.
882         if (runparams.flavor == OutputParams::XML) {
883                 runparams.exportdata->addExternalFile("docbook-xml",
884                                                       params().filename);
885         } else {
886                 runparams.exportdata->addExternalFile("docbook",
887                                                       params().filename);
888         }
889         os << "<inlinemediaobject>";
890
891         int r = 0;
892         docstring attributes = createDocBookAttributes();
893         r += writeImageObject("png", os, runparams, graphic_label, attributes);
894         r += writeImageObject("pdf", os, runparams, graphic_label, attributes);
895         r += writeImageObject("eps", os, runparams, graphic_label, attributes);
896         r += writeImageObject("bmp", os, runparams, graphic_label, attributes);
897
898         os << "</inlinemediaobject>";
899         return r;
900 }
901
902
903 void InsetGraphics::validate(LaTeXFeatures & features) const
904 {
905         // If we have no image, we should not require anything.
906         if (params().filename.empty())
907                 return;
908
909         features.includeFile(graphic_label,
910                              removeExtension(params().filename.absFilename()));
911
912         features.require("graphicx");
913
914         if (features.runparams().nice) {
915                 Buffer const * m_buffer = features.buffer().getMasterBuffer();
916                 string const rel_file = removeExtension(params().filename.relFilename(m_buffer->filePath()));
917                 if (contains(rel_file, "."))
918                         features.require("lyxdot");
919         }
920
921         if (params().subcaption)
922                 features.require("subfigure");
923 }
924
925
926 bool InsetGraphics::setParams(InsetGraphicsParams const & p)
927 {
928         // If nothing is changed, just return and say so.
929         if (params() == p && !p.filename.empty())
930                 return false;
931
932         // Copy the new parameters.
933         params_ = p;
934
935         // Update the display using the new parameters.
936         graphic_->update(params().as_grfxParams());
937
938         // We have changed data, report it.
939         return true;
940 }
941
942
943 InsetGraphicsParams const & InsetGraphics::params() const
944 {
945         return params_;
946 }
947
948
949 void InsetGraphics::editGraphics(InsetGraphicsParams const & p,
950                                  Buffer const & buffer) const
951 {
952         formats.edit(buffer, p.filename,
953                      formats.getFormatFromFile(p.filename));
954 }
955
956
957 string const InsetGraphicsMailer::name_("graphics");
958
959 InsetGraphicsMailer::InsetGraphicsMailer(InsetGraphics & inset)
960         : inset_(inset)
961 {}
962
963
964 string const InsetGraphicsMailer::inset2string(Buffer const & buffer) const
965 {
966         return params2string(inset_.params(), buffer);
967 }
968
969
970 void InsetGraphicsMailer::string2params(string const & in,
971                                         Buffer const & buffer,
972                                         InsetGraphicsParams & params)
973 {
974         params = InsetGraphicsParams();
975         if (in.empty())
976                 return;
977
978         istringstream data(in);
979         Lexer lex(0,0);
980         lex.setStream(data);
981
982         string name;
983         lex >> name;
984         if (!lex || name != name_)
985                 return print_mailer_error("InsetGraphicsMailer", in, 1, name_);
986
987         InsetGraphics inset;
988         inset.readInsetGraphics(lex, buffer.filePath());
989         params = inset.params();
990 }
991
992
993 string const
994 InsetGraphicsMailer::params2string(InsetGraphicsParams const & params,
995                                    Buffer const & buffer)
996 {
997         ostringstream data;
998         data << name_ << ' ';
999         params.Write(data, buffer.filePath());
1000         data << "\\end_inset\n";
1001         return data.str();
1002 }
1003
1004
1005 } // namespace lyx