]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphics.C
last chunk of the fix for bug 1244 + overwrite checking
[lyx.git] / src / insets / insetgraphics.C
1 /**
2  * \file insetgraphics.C
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/render_graphic.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 "exporter.h"
62 #include "format.h"
63 #include "funcrequest.h"
64 #include "gettext.h"
65 #include "LaTeXFeatures.h"
66 #include "lyx_main.h"
67 #include "lyxlex.h"
68 #include "metricsinfo.h"
69 #include "outputparams.h"
70
71 #include "frontends/Alert.h"
72 #include "frontends/LyXView.h"
73
74 #include "support/filetools.h"
75 #include "support/lyxalgo.h" // lyx::count
76 #include "support/lyxlib.h" // float_equal
77 #include "support/os.h"
78 #include "support/systemcall.h"
79 #include "support/tostr.h"
80 #include "support/std_sstream.h"
81
82 #include <boost/bind.hpp>
83 #include <boost/tuple/tuple.hpp>
84
85 namespace support = lyx::support;
86 using lyx::support::AbsolutePath;
87 using lyx::support::bformat;
88 using lyx::support::ChangeExtension;
89 using lyx::support::compare_timestamps;
90 using lyx::support::contains;
91 using lyx::support::FileName;
92 using lyx::support::float_equal;
93 using lyx::support::GetExtension;
94 using lyx::support::getExtFromContents;
95 using lyx::support::IsFileReadable;
96 using lyx::support::LibFileSearch;
97 using lyx::support::OnlyFilename;
98 using lyx::support::rtrim;
99 using lyx::support::subst;
100 using lyx::support::Systemcall;
101 using lyx::support::unzipFile;
102 using lyx::support::unzippedFileName;
103
104 namespace os = lyx::support::os;
105
106 using std::endl;
107 using std::string;
108 using std::auto_ptr;
109 using std::istringstream;
110 using std::ostream;
111 using std::ostringstream;
112
113
114 namespace {
115
116 // This function is a utility function
117 // ... that should be with ChangeExtension ...
118 inline
119 string const RemoveExtension(string const & filename)
120 {
121         return ChangeExtension(filename, string());
122 }
123
124
125 string const uniqueID()
126 {
127         static unsigned int seed = 1000;
128         return "graph" + tostr(++seed);
129 }
130
131
132 string findTargetFormat(string const & suffix, OutputParams const & runparams)
133 {
134         // Are we using latex or pdflatex).
135         if (runparams.flavor == OutputParams::PDFLATEX) {
136                 lyxerr[Debug::GRAPHICS] << "findTargetFormat: PDF mode" << endl;
137                 if (contains(suffix, "ps") || suffix == "pdf")
138                         return "pdf";
139                 if (suffix == "jpg")    // pdflatex can use jpeg
140                         return suffix;
141                 return "png";         // and also png
142         }
143         // If it's postscript, we always do eps.
144         lyxerr[Debug::GRAPHICS] << "findTargetFormat: PostScript mode" << endl;
145         if (suffix != "ps")     // any other than ps
146                 return "eps";         // is changed to eps
147         return suffix;          // let ps untouched
148 }
149
150 } // namespace anon
151
152
153 InsetGraphics::InsetGraphics()
154         : graphic_label(uniqueID()),
155           graphic_(new RenderGraphic(this))
156 {}
157
158
159 InsetGraphics::InsetGraphics(InsetGraphics const & ig)
160         : InsetOld(ig),
161           boost::signals::trackable(),
162           graphic_label(uniqueID()),
163           graphic_(new RenderGraphic(*ig.graphic_, this))
164 {
165         setParams(ig.params());
166 }
167
168
169 auto_ptr<InsetBase> InsetGraphics::clone() const
170 {
171         return auto_ptr<InsetBase>(new InsetGraphics(*this));
172 }
173
174
175 InsetGraphics::~InsetGraphics()
176 {
177         InsetGraphicsMailer(*this).hideDialog();
178 }
179
180
181 void InsetGraphics::priv_dispatch(LCursor & cur, FuncRequest & cmd)
182 {
183         switch (cmd.action) {
184         case LFUN_GRAPHICS_EDIT: {
185                 Buffer const & buffer = *cur.bv().buffer();
186                 InsetGraphicsParams p;
187                 InsetGraphicsMailer::string2params(cmd.argument, buffer, p);
188                 editGraphics(p, buffer);
189                 break;
190         }
191
192         case LFUN_INSET_MODIFY: {
193                 Buffer const & buffer = cur.buffer();
194                 InsetGraphicsParams p;
195                 InsetGraphicsMailer::string2params(cmd.argument, buffer, p);
196                 if (!p.filename.empty()) {
197                         setParams(p);
198                         cur.bv().update();
199                 }
200                 break;
201         }
202
203         case LFUN_INSET_DIALOG_UPDATE:
204                 InsetGraphicsMailer(*this).updateDialog(&cur.bv());
205                 break;
206
207         case LFUN_MOUSE_RELEASE:
208                 InsetGraphicsMailer(*this).showDialog(&cur.bv());
209                 break;
210
211         default:
212                 InsetOld::priv_dispatch(cur, cmd);
213                 break;
214         }
215 }
216
217
218 void InsetGraphics::edit(LCursor & cur, bool)
219 {
220         InsetGraphicsMailer(*this).showDialog(&cur.bv());
221 }
222
223
224 void InsetGraphics::metrics(MetricsInfo & mi, Dimension & dim) const
225 {
226         graphic_->metrics(mi, dim);
227         dim_ = dim;
228 }
229
230
231 void InsetGraphics::draw(PainterInfo & pi, int x, int y) const
232 {
233         setPosCache(pi, x, y);
234         graphic_->draw(pi, x, y);
235 }
236
237
238 InsetOld::EDITABLE InsetGraphics::editable() const
239 {
240         return IS_EDITABLE;
241 }
242
243
244 void InsetGraphics::write(Buffer const & buf, ostream & os) const
245 {
246         os << "Graphics\n";
247         params().Write(os, buf.filePath());
248 }
249
250
251 void InsetGraphics::read(Buffer const & buf, LyXLex & lex)
252 {
253         string const token = lex.getString();
254
255         if (token == "Graphics")
256                 readInsetGraphics(lex, buf.filePath());
257         else
258                 lyxerr[Debug::GRAPHICS] << "Not a Graphics inset!" << endl;
259
260         graphic_->update(params().as_grfxParams());
261 }
262
263
264 void InsetGraphics::readInsetGraphics(LyXLex & lex, string const & bufpath)
265 {
266         bool finished = false;
267
268         while (lex.isOK() && !finished) {
269                 lex.next();
270
271                 string const token = lex.getString();
272                 lyxerr[Debug::GRAPHICS] << "Token: '" << token << '\''
273                                     << endl;
274
275                 if (token.empty()) {
276                         continue;
277                 } else if (token == "\\end_inset") {
278                         finished = true;
279                 } else {
280                         if (!params_.Read(lex, token, bufpath))
281                                 lyxerr << "Unknown token, " << token << ", skipping."
282                                         << std::endl;
283                 }
284         }
285 }
286
287
288 string const InsetGraphics::createLatexOptions() const
289 {
290         // Calculate the options part of the command, we must do it to a string
291         // stream since we might have a trailing comma that we would like to remove
292         // before writing it to the output stream.
293         ostringstream options;
294         if (!params().bb.empty())
295             options << "  bb=" << rtrim(params().bb) << ",\n";
296         if (params().draft)
297             options << "  draft,\n";
298         if (params().clip)
299             options << "  clip,\n";
300         if (!float_equal(params().scale, 0.0, 0.05)) {
301                 if (!float_equal(params().scale, 100.0, 0.05))
302                         options << "  scale=" << params().scale / 100.0
303                                 << ",\n";
304         } else {
305                 if (!params().width.zero())
306                         options << "  width=" << params().width.asLatexString() << ",\n";
307                 if (!params().height.zero())
308                         options << "  height=" << params().height.asLatexString() << ",\n";
309                 if (params().keepAspectRatio)
310                         options << "  keepaspectratio,\n";
311         }
312
313         // Make sure rotation angle is not very close to zero;
314         // a float can be effectively zero but not exactly zero.
315         if (!float_equal(params().rotateAngle, 0, 0.001)) {
316             options << "  angle=" << params().rotateAngle << ",\n";
317             if (!params().rotateOrigin.empty()) {
318                 options << "  origin=" << params().rotateOrigin[0];
319                 if (contains(params().rotateOrigin,"Top"))
320                     options << 't';
321                 else if (contains(params().rotateOrigin,"Bottom"))
322                     options << 'b';
323                 else if (contains(params().rotateOrigin,"Baseline"))
324                     options << 'B';
325                 options << ",\n";
326             }
327         }
328
329         if (!params().special.empty())
330             options << params().special << ",\n";
331
332         string opts = options.str();
333         // delete last ",\n"
334         return opts.substr(0, opts.size() - 2);
335 }
336
337
338 namespace {
339
340 enum CopyStatus {
341         SUCCESS,
342         FAILURE,
343         IDENTICAL_PATHS,
344         IDENTICAL_CONTENTS
345 };
346
347
348 std::pair<CopyStatus, string> const
349 copyFileIfNeeded(string const & file_in, string const & file_out)
350 {
351         BOOST_ASSERT(AbsolutePath(file_in));
352         BOOST_ASSERT(AbsolutePath(file_out));
353
354         unsigned long const checksum_in  = support::sum(file_in);
355         unsigned long const checksum_out = support::sum(file_out);
356
357         if (checksum_in == checksum_out)
358                 // Nothing to do...
359                 return std::make_pair(IDENTICAL_CONTENTS, file_out);
360
361         bool const success = support::copy(file_in, file_out);
362         if (!success) {
363                 lyxerr[Debug::GRAPHICS]
364                         << support::bformat(_("Could not copy the file\n%1$s\n"
365                                               "into the temporary directory."),
366                                             file_in)
367                         << std::endl;
368         }
369
370         CopyStatus status = success ? SUCCESS : FAILURE;
371         return std::make_pair(status, file_out);
372 }
373
374
375 std::pair<CopyStatus, string> const
376 copyToDirIfNeeded(string const & file_in, string const & dir, bool zipped)
377 {
378         using support::rtrim;
379
380         BOOST_ASSERT(AbsolutePath(file_in));
381
382         string const only_path = support::OnlyPath(file_in);
383         if (rtrim(support::OnlyPath(file_in) , "/") == rtrim(dir, "/"))
384                 return std::make_pair(IDENTICAL_PATHS, file_in);
385
386         string mangled = FileName(file_in).mangledFilename();
387         if (zipped) {
388                 // We need to change _eps.gz to .eps.gz. The mangled name is
389                 // still unique because of the counter in mangledFilename().
390                 // We can't just call mangledFilename() with the zip
391                 // extension removed, because base.eps and base.eps.gz may
392                 // have different content but would get the same mangled
393                 // name in this case.
394                 string const base = RemoveExtension(unzippedFileName(file_in));
395                 string::size_type const ext_len = file_in.length() - base.length();
396                 mangled[mangled.length() - ext_len] = '.';
397         }
398         string const file_out = support::MakeAbsPath(mangled, dir);
399
400         return copyFileIfNeeded(file_in, file_out);
401 }
402
403
404 string const stripExtensionIfPossible(string const & file, string const & to)
405 {
406         // No conversion is needed. LaTeX can handle the graphic file as is.
407         // This is true even if the orig_file is compressed.
408         if (formats.getFormat(to)->extension() == GetExtension(file))
409                 return RemoveExtension(file);
410         return file;
411 }
412
413 } // namespace anon
414
415
416 string const InsetGraphics::prepareFile(Buffer const & buf,
417                                         OutputParams const & runparams) const
418 {
419         string orig_file = params().filename.absFilename();
420         string const rel_file = params().filename.relFilename(buf.filePath());
421
422         // LaTeX can cope if the graphics file doesn't exist, so just return the
423         // filename.
424         if (!IsFileReadable(orig_file)) {
425                 lyxerr[Debug::GRAPHICS]
426                         << "InsetGraphics::prepareFile\n"
427                         << "No file '" << orig_file << "' can be found!" << endl;
428                 return rel_file;
429         }
430
431         // If the file is compressed and we have specified that it
432         // should not be uncompressed, then just return its name and
433         // let LaTeX do the rest!
434         bool const zipped = params().filename.isZipped();
435
436         // temp_file will contain the file for LaTeX to act on if, for example,
437         // we move it to a temp dir or uncompress it.
438         string temp_file = orig_file;
439
440         // We place all temporary files in the master buffer's temp dir.
441         // This is possible because we use mangled file names.
442         // This is necessary for DVI export.
443         string const temp_path = buf.getMasterBuffer()->temppath();
444
445         bool conversion_needed = true;
446
447         CopyStatus status;
448         boost::tie(status, temp_file) =
449                         copyToDirIfNeeded(orig_file, temp_path, zipped);
450
451         if (status == FAILURE)
452                 return orig_file;
453         else if (status == IDENTICAL_CONTENTS)
454                 conversion_needed = false;
455
456         if (zipped) {
457                 if (params().noUnzip) {
458                         // We don't know wether latex can actually handle
459                         // this file, but we can't check, because that would
460                         // mean to unzip the file and thereby making the
461                         // noUnzip parameter meaningless.
462                         lyxerr[Debug::GRAPHICS]
463                                 << "\tpass zipped file to LaTeX.\n";
464                         // LaTeX needs the bounding box file in the tmp dir
465                         string bb_file;
466                         boost::tie(status, bb_file) =
467                                 copyFileIfNeeded(ChangeExtension(orig_file, "bb"),
468                                                  ChangeExtension(temp_file, "bb"));
469                         if (status == FAILURE)
470                                 return orig_file;
471                         runparams.exportdata->addExternalFile("latex", temp_file);
472                         runparams.exportdata->addExternalFile("latex", bb_file);
473                         runparams.exportdata->addExternalFile("dvi", temp_file);
474                         return OnlyFilename(temp_file);
475                 }
476
477                 string const unzipped_temp_file = unzippedFileName(temp_file);
478                 if (compare_timestamps(unzipped_temp_file, temp_file) > 0) {
479                         // temp_file has been unzipped already and
480                         // orig_file has not changed in the meantime.
481                         temp_file = unzipped_temp_file;
482                         lyxerr[Debug::GRAPHICS]
483                                 << "\twas already unzipped to " << temp_file
484                                 << endl;
485                 } else {
486                         // unzipped_temp_file does not exist or is too old
487                         temp_file = unzipFile(temp_file);
488                         lyxerr[Debug::GRAPHICS]
489                                 << "\tunzipped to " << temp_file << endl;
490                 }
491         }
492
493         string const from = getExtFromContents(temp_file);
494         string const to   = findTargetFormat(from, runparams);
495         lyxerr[Debug::GRAPHICS]
496                 << "\t we have: from " << from << " to " << to << '\n';
497
498         // We're going to be running the exported buffer through the LaTeX
499         // compiler, so must ensure that LaTeX can cope with the graphics
500         // file format.
501
502         lyxerr[Debug::GRAPHICS]
503                 << "\tthe orig file is: " << orig_file << endl;
504
505         if (from == to) {
506                 // The extension of temp_file might be != to!
507                 runparams.exportdata->addExternalFile("latex", temp_file);
508                 runparams.exportdata->addExternalFile("dvi", temp_file);
509                 return OnlyFilename(stripExtensionIfPossible(temp_file, to));
510         }
511
512         string const to_file_base = RemoveExtension(temp_file);
513         string const to_file = ChangeExtension(to_file_base, to);
514
515         // Do we need to perform the conversion?
516         // Yes if to_file does not exist or if temp_file is newer than to_file
517         if (!conversion_needed ||
518             compare_timestamps(temp_file, to_file) < 0) {
519                 lyxerr[Debug::GRAPHICS]
520                         << bformat(_("No conversion of %1$s is needed after all"),
521                                    rel_file)
522                         << std::endl;
523                 runparams.exportdata->addExternalFile("latex", to_file);
524                 runparams.exportdata->addExternalFile("dvi", to_file);
525                 return OnlyFilename(to_file_base);
526         }
527
528         lyxerr[Debug::GRAPHICS]
529                 << "\tThe original file is " << orig_file << "\n"
530                 << "\tA copy has been made and convert is to be called with:\n"
531                 << "\tfile to convert = " << temp_file << '\n'
532                 << "\tto_file_base = " << to_file_base << '\n'
533                 << "\t from " << from << " to " << to << '\n';
534
535         // if no special converter defined, then we take the default one
536         // from ImageMagic: convert from:inname.from to:outname.to
537         if (!converters.convert(&buf, temp_file, to_file_base, from, to)) {
538                 string const command =
539                         "sh " + LibFileSearch("scripts", "convertDefault.sh") +
540                                 ' ' + from + ':' + temp_file + ' ' +
541                                 to + ':' + to_file;
542                 lyxerr[Debug::GRAPHICS]
543                         << "No converter defined! I use convertDefault.sh:\n\t"
544                         << command << endl;
545                 Systemcall one;
546                 one.startscript(Systemcall::Wait, command);
547                 if (IsFileReadable(to_file)) {
548                         runparams.exportdata->addExternalFile("latex", to_file);
549                         runparams.exportdata->addExternalFile("dvi", to_file);
550                 } else {
551                         string str = bformat(_("No information for converting %1$s "
552                                 "format files to %2$s.\n"
553                                 "Try defining a convertor in the preferences."), from, to);
554                         Alert::error(_("Could not convert image"), str);
555                 }
556         }
557
558         return OnlyFilename(to_file_base);
559 }
560
561
562 int InsetGraphics::latex(Buffer const & buf, ostream & os,
563                          OutputParams const & runparams) const
564 {
565         // The master buffer. This is useful when there are multiple levels
566         // of include files
567         Buffer const * m_buffer = buf.getMasterBuffer();
568
569         // If there is no file specified or not existing,
570         // just output a message about it in the latex output.
571         lyxerr[Debug::GRAPHICS]
572                 << "insetgraphics::latex: Filename = "
573                 << params().filename.absFilename() << endl;
574
575         string const relative_file =
576                 params().filename.relFilename(buf.filePath());
577
578         string const file_ = params().filename.absFilename();
579         bool const file_exists = !file_.empty() && IsFileReadable(file_);
580         string const message = file_exists ?
581                 string() : string("bb = 0 0 200 100, draft, type=eps");
582         // if !message.empty() than there was no existing file
583         // "filename" found. In this case LaTeX
584         // draws only a rectangle with the above bb and the
585         // not found filename in it.
586         lyxerr[Debug::GRAPHICS]
587                 << "\tMessage = \"" << message << '\"' << endl;
588
589         // These variables collect all the latex code that should be before and
590         // after the actual includegraphics command.
591         string before;
592         string after;
593         // Do we want subcaptions?
594         if (params().subcaption) {
595                 before += "\\subfigure[" + params().subcaptionText + "]{";
596                 after = '}';
597         }
598         // We never use the starred form, we use the "clip" option instead.
599         before += "\\includegraphics";
600
601         // Write the options if there are any.
602         string const opts = createLatexOptions();
603         lyxerr[Debug::GRAPHICS] << "\tOpts = " << opts << endl;
604
605         if (!opts.empty() && !message.empty())
606                 before += ("[%\n" + opts + ',' + message + ']');
607         else if (!opts.empty() || !message.empty())
608                 before += ("[%\n" + opts + message + ']');
609
610         lyxerr[Debug::GRAPHICS]
611                 << "\tBefore = " << before
612                 << "\n\tafter = " << after << endl;
613
614
615         string latex_str = before + '{';
616         // "nice" means that the buffer is exported to LaTeX format but not
617         //        run through the LaTeX compiler.
618         if (runparams.nice) {
619                 // a relative filename should be relative to the master
620                 // buffer.
621                 string basename = params().filename.outputFilename(m_buffer->filePath());
622                 // Remove the extension so the LaTeX will use whatever
623                 // is appropriate (when there are several versions in
624                 // different formats)
625                 basename = RemoveExtension(basename);
626                 if(params().filename.isZipped())
627                         basename = RemoveExtension(basename);
628                 // This works only if the filename contains no dots besides
629                 // the just removed one. We can fool here by replacing all
630                 // dots with a macro whose definition is just a dot ;-)
631                 latex_str += subst(basename, ".", "\\lyxdot ");
632         } else if (file_exists) {
633                 // Make the filename relative to the lyx file
634                 // and remove the extension so the LaTeX will use whatever
635                 // is appropriate (when there are several versions in
636                 // different formats)
637                 latex_str += os::external_path(prepareFile(buf, runparams));
638         } else
639                 latex_str += relative_file + " not found!";
640
641         latex_str += '}' + after;
642         os << latex_str;
643
644         lyxerr[Debug::GRAPHICS] << "InsetGraphics::latex outputting:\n"
645                                 << latex_str << endl;
646         // Return how many newlines we issued.
647         return int(lyx::count(latex_str.begin(), latex_str.end(),'\n') + 1);
648 }
649
650
651 int InsetGraphics::plaintext(Buffer const &, ostream & os,
652                          OutputParams const &) const
653 {
654         // No graphics in ascii output. Possible to use gifscii to convert
655         // images to ascii approximation.
656         // 1. Convert file to ascii using gifscii
657         // 2. Read ascii output file and add it to the output stream.
658         // at least we send the filename
659         os << '<' << bformat(_("Graphics file: %1$s"),
660                              params().filename.absFilename()) << ">\n";
661         return 0;
662 }
663
664
665 int InsetGraphics::linuxdoc(Buffer const & buf, ostream & os,
666                             OutputParams const & runparams) const
667 {
668         string const file_name = runparams.nice ?
669                                 params().filename.relFilename(buf.filePath()):
670                                 params().filename.absFilename();
671
672         runparams.exportdata->addExternalFile("linuxdoc",
673                                               params().filename.absFilename());
674         os << "<eps file=\"" << file_name << "\">\n";
675         os << "<img src=\"" << file_name << "\">";
676         return 0;
677 }
678
679
680 // For explanation on inserting graphics into DocBook checkout:
681 // http://en.tldp.org/LDP/LDP-Author-Guide/html/inserting-pictures.html
682 // See also the docbook guide at http://www.docbook.org/
683 int InsetGraphics::docbook(Buffer const &, ostream & os,
684                            OutputParams const & runparams) const
685 {
686         // In DocBook v5.0, the graphic tag will be eliminated from DocBook, will
687         // need to switch to MediaObject. However, for now this is sufficient and
688         // easier to use.
689         runparams.exportdata->addExternalFile("docbook",
690                                               params().filename.absFilename());
691         runparams.exportdata->addExternalFile("docbook-xml",
692                                               params().filename.absFilename());
693         os << "<graphic fileref=\"&" << graphic_label << ";\">";
694         return 0;
695 }
696
697
698 void InsetGraphics::validate(LaTeXFeatures & features) const
699 {
700         // If we have no image, we should not require anything.
701         if (params().filename.empty())
702                 return;
703
704         features.includeFile(graphic_label,
705                              RemoveExtension(params().filename.absFilename()));
706
707         features.require("graphicx");
708
709         if (features.nice()) {
710                 Buffer const * m_buffer = features.buffer().getMasterBuffer();
711                 string basename =
712                         params().filename.outputFilename(m_buffer->filePath());
713                 basename = RemoveExtension(basename);
714                 if(params().filename.isZipped())
715                         basename = RemoveExtension(basename);
716                 if (contains(basename, "."))
717                         features.require("lyxdot");
718         }
719
720         if (params().subcaption)
721                 features.require("subfigure");
722 }
723
724
725 bool InsetGraphics::setParams(InsetGraphicsParams const & p)
726 {
727         // If nothing is changed, just return and say so.
728         if (params() == p && !p.filename.empty())
729                 return false;
730
731         // Copy the new parameters.
732         params_ = p;
733
734         // Update the display using the new parameters.
735         graphic_->update(params().as_grfxParams());
736
737         // We have changed data, report it.
738         return true;
739 }
740
741
742 InsetGraphicsParams const & InsetGraphics::params() const
743 {
744         return params_;
745 }
746
747
748 void InsetGraphics::editGraphics(InsetGraphicsParams const & p, Buffer const & buffer) const
749 {
750         string const file_with_path = p.filename.absFilename();
751         formats.edit(buffer, file_with_path, getExtFromContents(file_with_path));
752 }
753
754
755 string const InsetGraphicsMailer::name_("graphics");
756
757 InsetGraphicsMailer::InsetGraphicsMailer(InsetGraphics & inset)
758         : inset_(inset)
759 {}
760
761
762 string const InsetGraphicsMailer::inset2string(Buffer const & buffer) const
763 {
764         return params2string(inset_.params(), buffer);
765 }
766
767
768 void InsetGraphicsMailer::string2params(string const & in,
769                                         Buffer const & buffer,
770                                         InsetGraphicsParams & params)
771 {
772         params = InsetGraphicsParams();
773         if (in.empty())
774                 return;
775
776         istringstream data(in);
777         LyXLex lex(0,0);
778         lex.setStream(data);
779
780         string name;
781         lex >> name;
782         if (!lex || name != name_)
783                 return print_mailer_error("InsetGraphicsMailer", in, 1, name_);
784
785         InsetGraphics inset;
786         inset.readInsetGraphics(lex, buffer.filePath());
787         params = inset.params();
788 }
789
790
791 string const
792 InsetGraphicsMailer::params2string(InsetGraphicsParams const & params,
793                                    Buffer const & buffer)
794 {
795         ostringstream data;
796         data << name_ << ' ';
797         params.Write(data, buffer.filePath());
798         data << "\\end_inset\n";
799         return data.str();
800 }