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