]> git.lyx.org Git - lyx.git/blob - src/insets/InsetExternal.cpp
Fix GRAPHICS_EDIT of InsetGraphics
[lyx.git] / src / insets / InsetExternal.cpp
1 /**
2  * \file InsetExternal.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup Nielsen
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetExternal.h"
14 #include "insets/ExternalSupport.h"
15 #include "insets/ExternalTemplate.h"
16 #include "insets/RenderButton.h"
17 #include "insets/RenderGraphic.h"
18 #include "insets/RenderPreview.h"
19
20 #include "Buffer.h"
21 #include "Cursor.h"
22 #include "DispatchResult.h"
23 #include "Exporter.h"
24 #include "FuncStatus.h"
25 #include "FuncRequest.h"
26 #include "LaTeXFeatures.h"
27 #include "Lexer.h"
28 #include "LyX.h" // use_gui
29 #include "LyXRC.h"
30 #include "MetricsInfo.h"
31 #include "OutputParams.h"
32
33 #include "frontends/alert.h"
34
35 #include "graphics/PreviewLoader.h"
36
37 #include "support/debug.h"
38 #include "support/ExceptionMessage.h"
39 #include "support/filetools.h"
40 #include "support/gettext.h"
41 #include "support/lstrings.h"
42 #include "support/lyxlib.h"
43 #include "support/convert.h"
44 #include "support/Translator.h"
45
46 #include <boost/bind.hpp>
47
48 #include <sstream>
49
50 using namespace std;
51 using namespace lyx::support;
52
53 namespace {
54
55 lyx::external::DisplayType const defaultDisplayType = lyx::external::NoDisplay;
56
57 unsigned int const defaultLyxScale = 100;
58
59 string defaultTemplateName;
60
61 } // namespace anon
62
63
64 namespace lyx {
65
66 namespace Alert = frontend::Alert;
67
68 namespace external {
69
70 TempName::TempName()
71 {
72         FileName const tempname = FileName::tempName("lyxext");
73         // FIXME: This is unsafe
74         tempname.removeFile();
75         // must have an extension for the converter code to work correctly.
76         tempname_ = FileName(tempname.absFilename() + ".tmp");
77 }
78
79
80 TempName::TempName(TempName const &)
81 {
82         tempname_ = TempName()();
83 }
84
85
86 TempName::~TempName()
87 {
88         tempname_.removeFile();
89 }
90
91
92 TempName & TempName::operator=(TempName const & other)
93 {
94         if (this != &other)
95                 tempname_ = TempName()();
96         return *this;
97 }
98
99
100 namespace {
101
102 /// The translator between the Display enum and corresponding lyx string.
103 Translator<DisplayType, string> const initTranslator()
104 {
105         Translator<DisplayType, string> translator(DefaultDisplay, "default");
106
107         // Fill the display translator
108         translator.addPair(MonochromeDisplay, "monochrome");
109         translator.addPair(GrayscaleDisplay, "grayscale");
110         translator.addPair(ColorDisplay, "color");
111         translator.addPair(PreviewDisplay, "preview");
112         translator.addPair(NoDisplay, "none");
113
114         return translator;
115 }
116
117 } // namespace anon
118
119
120 Translator<DisplayType, string> const & displayTranslator()
121 {
122         static Translator<DisplayType, string> const translator =
123                 initTranslator();
124         return translator;
125 }
126
127 } // namespace external
128
129
130 InsetExternalParams::InsetExternalParams()
131         : display(defaultDisplayType),
132           lyxscale(defaultLyxScale),
133           draft(false)
134 {
135         if (defaultTemplateName.empty()) {
136                 external::TemplateManager const & etm =
137                         external::TemplateManager::get();
138                 templatename_ = etm.getTemplates().begin()->first;
139         } else
140                 templatename_ = defaultTemplateName;
141 }
142
143
144 namespace {
145
146 template <typename T>
147 void clearIfNotFound(T & data, external::TransformID value,
148                      vector<external::TransformID> const & ids)
149 {
150         typedef vector<external::TransformID>::const_iterator
151                 const_iterator;
152
153         const_iterator it  = ids.begin();
154         const_iterator end = ids.end();
155         it = find(it, end, value);
156         if (it == end)
157                 data = T();
158 }
159
160 } // namespace anon
161
162
163 void InsetExternalParams::settemplate(string const & name)
164 {
165         templatename_ = name;
166
167         external::TemplateManager const & etm =
168                 external::TemplateManager::get();
169         external::Template const * const et = etm.getTemplateByName(name);
170         if (!et)
171                 // Be safe. Don't lose data.
172                 return;
173
174         // Ascertain which transforms the template supports.
175         // Empty all those that it doesn't.
176         vector<external::TransformID> const & ids = et->transformIds;
177         clearIfNotFound(clipdata,     external::Clip,   ids);
178         clearIfNotFound(extradata,    external::Extra,  ids);
179         clearIfNotFound(resizedata,   external::Resize, ids);
180         clearIfNotFound(rotationdata, external::Rotate, ids);
181 }
182
183
184 void InsetExternalParams::write(Buffer const & buf, ostream & os) const
185 {
186         os << "External\n"
187            << "\ttemplate " << templatename() << '\n';
188
189         if (!filename.empty()) {
190                 os << "\tfilename " << filename.outputFilename(buf.filePath()) << '\n';
191                 os << "\tembed " << (filename.embedded() ? filename.inzipName() : "\"\"") << '\n';
192         }
193         if (display != defaultDisplayType)
194                 os << "\tdisplay "
195                    << external::displayTranslator().find(display)
196                    << '\n';
197
198         if (lyxscale != defaultLyxScale)
199                 os << "\tlyxscale " << convert<string>(lyxscale) << '\n';
200
201         if (draft)
202                 os << "\tdraft\n";
203
204         if (!clipdata.bbox.empty())
205                 os << "\tboundingBox " << clipdata.bbox << '\n';
206         if (clipdata.clip)
207                 os << "\tclip\n";
208
209         external::ExtraData::const_iterator it  = extradata.begin();
210         external::ExtraData::const_iterator end = extradata.end();
211         for (; it != end; ++it) {
212                 if (!it->second.empty())
213                         os << "\textra " << it->first << " \""
214                            << it->second << "\"\n";
215         }
216
217         if (!rotationdata.no_rotation()) {
218                 os << "\trotateAngle " << rotationdata.adjAngle() << '\n';
219                 if (rotationdata.origin() != external::RotationData::DEFAULT)
220                         os << "\trotateOrigin "
221                            << rotationdata.originString() << '\n';
222         }
223
224         if (!resizedata.no_resize()) {
225                 double const scl = convert<double>(resizedata.scale);
226                 if (!float_equal(scl, 0.0, 0.05)) {
227                         if (!float_equal(scl, 100.0, 0.05))
228                                 os << "\tscale "
229                                    << resizedata.scale << '\n';
230                 } else {
231                         if (!resizedata.width.zero())
232                                 os << "\twidth "
233                                    << resizedata.width.asString() << '\n';
234                         if (!resizedata.height.zero())
235                                 os << "\theight "
236                                    << resizedata.height.asString() << '\n';
237                 }
238                 if (resizedata.keepAspectRatio)
239                         os << "\tkeepAspectRatio\n";
240         }
241 }
242
243
244 bool InsetExternalParams::read(Buffer const & buffer, Lexer & lex)
245 {
246         enum ExternalTags {
247                 EX_TEMPLATE = 1,
248                 EX_FILENAME,
249                 EX_EMBED,
250                 EX_DISPLAY,
251                 EX_LYXSCALE,
252                 EX_DRAFT,
253                 EX_BOUNDINGBOX,
254                 EX_CLIP,
255                 EX_EXTRA,
256                 EX_HEIGHT,
257                 EX_KEEPASPECTRATIO,
258                 EX_ROTATEANGLE,
259                 EX_ROTATEORIGIN,
260                 EX_SCALE,
261                 EX_WIDTH,
262                 EX_END
263         };
264
265         keyword_item external_tags[] = {
266                 { "\\end_inset",     EX_END },
267                 { "boundingBox",     EX_BOUNDINGBOX },
268                 { "clip",            EX_CLIP },
269                 { "display",         EX_DISPLAY},
270                 { "draft",           EX_DRAFT},
271                 { "embed",           EX_EMBED},
272                 { "extra",           EX_EXTRA },
273                 { "filename",        EX_FILENAME},
274                 { "height",          EX_HEIGHT },
275                 { "keepAspectRatio", EX_KEEPASPECTRATIO },
276                 { "lyxscale",        EX_LYXSCALE},
277                 { "rotateAngle",     EX_ROTATEANGLE },
278                 { "rotateOrigin",    EX_ROTATEORIGIN },
279                 { "scale",           EX_SCALE },
280                 { "template",        EX_TEMPLATE },
281                 { "width",           EX_WIDTH }
282         };
283
284         PushPopHelper pph(lex, external_tags, EX_END);
285
286         bool found_end  = false;
287         bool read_error = false;
288
289         while (lex.isOK()) {
290                 switch (lex.lex()) {
291                 case EX_TEMPLATE:
292                         lex.next();
293                         templatename_ = lex.getString();
294                         break;
295
296                 case EX_FILENAME: {
297                         lex.eatLine();
298                         string const name = lex.getString();
299                         filename.set(name, buffer.filePath());
300                         break;
301                 }
302                 
303                 case EX_EMBED: {
304                         lex.next();
305                         string const name = lex.getString();
306                         filename.setInzipName(name);
307                         filename.setEmbed(!name.empty());
308                         break;
309                 }
310
311                 case EX_DISPLAY: {
312                         lex.next();
313                         string const name = lex.getString();
314                         display = external::displayTranslator().find(name);
315                         break;
316                 }
317
318                 case EX_LYXSCALE:
319                         lex.next();
320                         lyxscale = lex.getInteger();
321                         break;
322
323                 case EX_DRAFT:
324                         draft = true;
325                         break;
326
327                 case EX_BOUNDINGBOX:
328                         lex.next();
329                         clipdata.bbox.xl = lex.getInteger();
330                         lex.next();
331                         clipdata.bbox.yb = lex.getInteger();
332                         lex.next();
333                         clipdata.bbox.xr = lex.getInteger();
334                         lex.next();
335                         clipdata.bbox.yt = lex.getInteger();
336                         break;
337
338                 case EX_CLIP:
339                         clipdata.clip = true;
340                         break;
341
342                 case EX_EXTRA: {
343                         lex.next();
344                         string const name = lex.getString();
345                         lex.next();
346                         extradata.set(name, lex.getString());
347                         break;
348                 }
349
350                 case EX_HEIGHT:
351                         lex.next();
352                         resizedata.height = Length(lex.getString());
353                         break;
354
355                 case EX_KEEPASPECTRATIO:
356                         resizedata.keepAspectRatio = true;
357                         break;
358
359                 case EX_ROTATEANGLE:
360                         lex.next();
361                         rotationdata.angle = lex.getString();
362                         break;
363
364                 case EX_ROTATEORIGIN:
365                         lex.next();
366                         rotationdata.origin(lex.getString());
367                         break;
368
369                 case EX_SCALE:
370                         lex.next();
371                         resizedata.scale = lex.getString();
372                         break;
373
374                 case EX_WIDTH:
375                         lex.next();
376                         resizedata.width = Length(lex.getString());
377                         break;
378
379                 case EX_END:
380                         found_end = true;
381                         break;
382
383                 default:
384                         lex.printError("ExternalInset::read: Wrong tag: $$Token");
385                         read_error = true;
386                         break;
387                 }
388
389                 if (found_end || read_error)
390                         break;
391         }
392
393         if (!found_end)
394                 lex.printError("ExternalInsetParams::read: Missing \\end_inset.");
395
396         // This is a trick to make sure that the data are self-consistent.
397         settemplate(templatename_);
398
399         if (lyxerr.debugging(Debug::EXTERNAL)) {
400                 lyxerr  << "InsetExternalParams::read:\n";
401                 write(buffer, lyxerr);
402         }
403
404         return !read_error;
405 }
406
407
408 InsetExternal::InsetExternal()
409         : renderer_(new RenderButton)
410 {}
411
412
413 InsetExternal::InsetExternal(InsetExternal const & other)
414         : Inset(other),
415           boost::signals::trackable(),
416           params_(other.params_),
417           renderer_(other.renderer_->clone(this))
418 {}
419
420
421 InsetExternal::~InsetExternal()
422 {
423         InsetExternalMailer(*this).hideDialog();
424 }
425
426
427 void InsetExternal::setBuffer(Buffer & buffer)
428 {
429         if (buffer_) {
430                 try {
431                         // a file may not be copied successfully when, e.g. buffer_
432                         // has already been closed.
433                         params_.filename = params_.filename.copyTo(&buffer);
434                 } catch (ExceptionMessage const & message) {
435                         Alert::error(message.title_, message.details_);
436                         // failed to embed
437                         params_.filename.setEmbed(false);
438                 }
439         }
440         Inset::setBuffer(buffer);
441 }
442
443
444 void InsetExternal::statusChanged() const
445 {
446         updateFrontend();
447 }
448
449
450 void InsetExternal::doDispatch(Cursor & cur, FuncRequest & cmd)
451 {
452         switch (cmd.action) {
453
454         case LFUN_EXTERNAL_EDIT: {
455                 InsetExternalParams p;
456                 InsetExternalMailer::string2params(to_utf8(cmd.argument()), buffer(), p);
457                 external::editExternal(p, buffer());
458                 break;
459         }
460
461         case LFUN_INSET_MODIFY: {
462                 InsetExternalParams p;
463                 InsetExternalMailer::string2params(to_utf8(cmd.argument()), buffer(), p);
464                 setParams(p);
465                 break;
466         }
467
468         case LFUN_INSET_DIALOG_UPDATE:
469                 InsetExternalMailer(*this).updateDialog(&cur.bv());
470                 break;
471
472         case LFUN_MOUSE_RELEASE:
473                 if (!cur.selection())
474                         InsetExternalMailer(*this).showDialog(&cur.bv());
475                 break;
476
477         default:
478                 Inset::doDispatch(cur, cmd);
479         }
480 }
481
482
483 bool InsetExternal::getStatus(Cursor & cur, FuncRequest const & cmd,
484                 FuncStatus & flag) const
485 {
486         switch (cmd.action) {
487
488         case LFUN_EXTERNAL_EDIT:
489         case LFUN_INSET_MODIFY:
490         case LFUN_INSET_DIALOG_UPDATE:
491                 flag.enabled(true);
492                 return true;
493
494         default:
495                 return Inset::getStatus(cur, cmd, flag);
496         }
497 }
498
499
500 void InsetExternal::registerEmbeddedFiles(EmbeddedFileList & files) const
501 {
502         files.registerFile(params_.filename, this, buffer());
503 }
504
505
506 void InsetExternal::updateEmbeddedFile(EmbeddedFile const & file)
507 {
508         params_.filename = file;
509 }
510
511
512 void InsetExternal::edit(Cursor & cur, bool, EntryDirection)
513 {
514         InsetExternalMailer(*this).showDialog(&cur.bv());
515 }
516
517
518 void InsetExternal::metrics(MetricsInfo & mi, Dimension & dim) const
519 {
520         renderer_->metrics(mi, dim);
521 }
522
523
524 void InsetExternal::draw(PainterInfo & pi, int x, int y) const
525 {
526         renderer_->draw(pi, x, y);
527 }
528
529
530 namespace {
531
532 enum RenderType {
533         RENDERBUTTON,
534         RENDERGRAPHIC,
535         RENDERPREVIEW
536 };
537
538
539 RenderType getRenderType(InsetExternalParams const & p)
540 {
541         if (!external::getTemplatePtr(p) ||
542             p.filename.empty() ||
543             p.display == external::NoDisplay)
544                 return RENDERBUTTON;
545
546         if (p.display == external::PreviewDisplay) {
547                 if (RenderPreview::status() != LyXRC::PREVIEW_OFF)
548                         return RENDERPREVIEW;
549                 return RENDERBUTTON;
550         }
551
552         if (p.display == external::DefaultDisplay &&
553             lyxrc.display_graphics == graphics::NoDisplay)
554                 return RENDERBUTTON;
555         return RENDERGRAPHIC;
556 }
557
558
559 graphics::Params get_grfx_params(InsetExternalParams const & eparams)
560 {
561         graphics::Params gparams;
562
563         gparams.filename = eparams.filename.availableFile();
564         gparams.icon = eparams.filename.embedded() ? "pin.png" : "";
565         gparams.scale = eparams.lyxscale;
566         if (eparams.clipdata.clip)
567                 gparams.bb = eparams.clipdata.bbox;
568         gparams.angle = convert<double>(eparams.rotationdata.adjAngle());
569
570         switch (eparams.display) {
571         case external::DefaultDisplay:
572                 gparams.display = graphics::DefaultDisplay;
573                 break;
574         case external::MonochromeDisplay:
575                 gparams.display = graphics::MonochromeDisplay;
576                 break;
577         case external::GrayscaleDisplay:
578                 gparams.display = graphics::GrayscaleDisplay;
579                 break;
580         case external::ColorDisplay:
581                 gparams.display = graphics::ColorDisplay;
582                 break;
583         case external::NoDisplay:
584                 gparams.display = graphics::NoDisplay;
585                 break;
586         default:
587                 BOOST_ASSERT(false);
588         }
589         if (gparams.display == graphics::DefaultDisplay)
590                 gparams.display = graphics::DisplayType(lyxrc.display_graphics);
591         // Override the above if we're not using a gui
592         if (!use_gui)
593                 gparams.display = graphics::NoDisplay;
594
595         return gparams;
596 }
597
598
599 docstring screenLabel(InsetExternalParams const & params,
600                             Buffer const & buffer)
601 {
602         external::Template const * const ptr =
603                 external::getTemplatePtr(params);
604         if (!ptr)
605                 // FIXME UNICODE
606                 return bformat((_("External template %1$s is not installed")),
607                                         from_utf8(params.templatename()));
608         // FIXME UNICODE
609         docstring gui = _(ptr->guiName);
610         return from_utf8(external::doSubstitution(params, buffer,
611                                 to_utf8(gui), false));
612 }
613
614 } // namespace anon
615
616
617 static bool isPreviewWanted(InsetExternalParams const & params)
618 {
619         return params.display == external::PreviewDisplay &&
620                 params.filename.isReadableFile();
621 }
622
623
624 static docstring latexString(InsetExternal const & inset)
625 {
626         odocstringstream os;
627         // We don't need to set runparams.encoding since it is not used by
628         // latex().
629         OutputParams runparams(0);
630         runparams.flavor = OutputParams::LATEX;
631         inset.latex(os, runparams);
632         return os.str();
633 }
634
635
636 static void add_preview_and_start_loading(RenderMonitoredPreview & renderer,
637                                    InsetExternal const & inset,
638                                    Buffer const & buffer)
639 {
640         InsetExternalParams const & params = inset.params();
641
642         if (RenderPreview::status() != LyXRC::PREVIEW_OFF &&
643             isPreviewWanted(params)) {
644                 renderer.setAbsFile(params.filename);
645                 docstring const snippet = latexString(inset);
646                 renderer.addPreview(snippet, buffer);
647                 renderer.startLoading(buffer);
648         }
649 }
650
651
652 InsetExternalParams const & InsetExternal::params() const
653 {
654         return params_;
655 }
656
657
658 void InsetExternal::setParams(InsetExternalParams const & p)
659 {
660         params_ = p;
661
662         // Subsequent calls to the InsetExternal::Params default constructor
663         // will use this.
664         defaultTemplateName = params_.templatename();
665
666         switch (getRenderType(params_)) {
667         case RENDERBUTTON: {
668                 RenderButton * button_ptr = renderer_->asButton();
669                 if (!button_ptr) {
670                         renderer_.reset(new RenderButton);
671                         button_ptr = renderer_->asButton();
672                 }
673
674                 button_ptr->update(screenLabel(params_, buffer()), true);
675                 break;
676         }
677
678         case RENDERGRAPHIC: {
679                 RenderGraphic * graphic_ptr = renderer_->asGraphic();
680                 if (!graphic_ptr) {
681                         renderer_.reset(new RenderGraphic(this));
682                         graphic_ptr = renderer_->asGraphic();
683                 }
684
685                 graphic_ptr->update(get_grfx_params(params_));
686
687                 break;
688         }
689
690         case RENDERPREVIEW: {
691                 RenderMonitoredPreview * preview_ptr =
692                         renderer_->asMonitoredPreview();
693                 if (!preview_ptr) {
694                         renderer_.reset(new RenderMonitoredPreview(this));
695                         preview_ptr = renderer_->asMonitoredPreview();
696                         preview_ptr->fileChanged(
697                                 boost::bind(&InsetExternal::fileChanged, this));
698                 }
699
700                 if (preview_ptr->monitoring())
701                         preview_ptr->stopMonitoring();
702                 add_preview_and_start_loading(*preview_ptr, *this, buffer());
703
704                 break;
705         }
706         }
707 }
708
709
710 void InsetExternal::fileChanged() const
711 {
712         Buffer const * const buffer = updateFrontend();
713         if (!buffer)
714                 return;
715
716         RenderMonitoredPreview * const ptr = renderer_->asMonitoredPreview();
717         BOOST_ASSERT(ptr);
718
719         ptr->removePreview(*buffer);
720         add_preview_and_start_loading(*ptr, *this, *buffer);
721 }
722
723
724 void InsetExternal::write(ostream & os) const
725 {
726         params_.write(buffer(), os);
727 }
728
729
730 void InsetExternal::read(Lexer & lex)
731 {
732         InsetExternalParams params;
733         if (params.read(buffer(), lex)) {
734                 // exception handling is not needed as long as embedded files are in place.
735                 params.filename.enable(buffer().embedded(), &buffer(), false);
736                 setParams(params);
737         }
738 }
739
740
741 int InsetExternal::latex(odocstream & os, OutputParams const & runparams) const
742 {
743         if (params_.draft) {
744                 // FIXME UNICODE
745                 os << "\\fbox{\\ttfamily{}"
746                    << from_utf8(params_.filename.outputFilename(buffer().filePath()))
747                    << "}\n";
748                 return 1;
749         }
750
751         // "nice" means that the buffer is exported to LaTeX format but not
752         // run through the LaTeX compiler.
753         // If we're running through the LaTeX compiler, we should write the
754         // generated files in the buffer's temporary directory.
755         bool const external_in_tmpdir = !runparams.nice;
756         bool const dryrun = runparams.dryrun || runparams.inComment;
757
758         // If the template has specified a PDFLaTeX output, then we try and
759         // use that.
760         if (runparams.flavor == OutputParams::PDFLATEX) {
761                 external::Template const * const et_ptr =
762                         external::getTemplatePtr(params_);
763                 if (!et_ptr)
764                         return 0;
765                 external::Template const & et = *et_ptr;
766
767                 external::Template::Formats::const_iterator cit =
768                         et.formats.find("PDFLaTeX");
769
770                 if (cit != et.formats.end()) {
771                         return external::writeExternal(params_, "PDFLaTeX",
772                                                        buffer(), os,
773                                                        *(runparams.exportdata),
774                                                        external_in_tmpdir,
775                                                        dryrun);
776                 }
777         }
778
779         return external::writeExternal(params_, "LaTeX", buffer(), os,
780                                        *(runparams.exportdata),
781                                        external_in_tmpdir,
782                                        dryrun);
783 }
784
785
786 int InsetExternal::plaintext(odocstream & os,
787                              OutputParams const & runparams) const
788 {
789         os << '\n'; // output external material on a new line
790         external::writeExternal(params_, "Ascii", buffer(), os,
791                                 *(runparams.exportdata), false,
792                                 runparams.dryrun || runparams.inComment);
793         return PLAINTEXT_NEWLINE;
794 }
795
796
797 int InsetExternal::docbook(odocstream & os,
798                            OutputParams const & runparams) const
799 {
800         return external::writeExternal(params_, "DocBook", buffer(), os,
801                                        *(runparams.exportdata), false,
802                                        runparams.dryrun || runparams.inComment);
803 }
804
805
806 void InsetExternal::validate(LaTeXFeatures & features) const
807 {
808         if (params_.draft)
809                 return;
810
811         external::Template const * const et_ptr =
812                 external::getTemplatePtr(params_);
813         if (!et_ptr)
814                 return;
815         external::Template const & et = *et_ptr;
816
817         string format;
818         switch (features.runparams().flavor) {
819         case OutputParams::LATEX:
820                 format = "LaTeX";
821                 break;
822         case OutputParams::PDFLATEX:
823                 format = "PDFLaTeX";
824                 break;
825         case OutputParams::XML:
826                 format = "DocBook";
827                 break;
828         }
829         external::Template::Formats::const_iterator cit =
830                 et.formats.find(format);
831         if (cit == et.formats.end())
832                 return;
833
834         // FIXME: We don't need that always
835         features.require("lyxdot");
836
837         vector<string>::const_iterator it  = cit->second.requirements.begin();
838         vector<string>::const_iterator end = cit->second.requirements.end();
839         for (; it != end; ++it)
840                 features.require(*it);
841
842         external::TemplateManager & etm = external::TemplateManager::get();
843
844         it  = cit->second.preambleNames.begin();
845         end = cit->second.preambleNames.end();
846         for (; it != end; ++it) {
847                 string const preamble = etm.getPreambleDefByName(*it);
848                 if (!preamble.empty())
849                         features.addPreambleSnippet(preamble);
850         }
851 }
852
853
854 //
855 // preview stuff
856 //
857
858 void InsetExternal::addPreview(graphics::PreviewLoader & ploader) const
859 {
860         RenderMonitoredPreview * const ptr = renderer_->asMonitoredPreview();
861         if (!ptr)
862                 return;
863
864         if (isPreviewWanted(params())) {
865                 ptr->setAbsFile(params_.filename);
866                 docstring const snippet = latexString(*this);
867                 ptr->addPreview(snippet, ploader);
868         }
869 }
870
871
872 /// Mailer stuff
873
874 string const InsetExternalMailer::name_("external");
875
876 InsetExternalMailer::InsetExternalMailer(InsetExternal & inset)
877         : inset_(inset)
878 {}
879
880
881 string const InsetExternalMailer::inset2string(Buffer const & buffer) const
882 {
883         return params2string(inset_.params(), buffer);
884 }
885
886
887 void InsetExternalMailer::string2params(string const & in,
888                                         Buffer const & buffer,
889                                         InsetExternalParams & params)
890 {
891         params = InsetExternalParams();
892         if (in.empty())
893                 return;
894
895         istringstream data(in);
896         Lexer lex(0,0);
897         lex.setStream(data);
898
899         string name;
900         lex >> name;
901         if (!lex || name != name_)
902                 return print_mailer_error("InsetExternalMailer", in, 1, name_);
903
904         // This is part of the inset proper that is usually swallowed
905         // by Text::readInset
906         string id;
907         lex >> id;
908         if (!lex || id != "External")
909                 return print_mailer_error("InsetBoxMailer", in, 2, "External");
910
911         params.read(buffer, lex);
912 }
913
914
915 string const
916 InsetExternalMailer::params2string(InsetExternalParams const & params,
917                                    Buffer const & buffer)
918 {
919         ostringstream data;
920         data << name_ << ' ';
921         params.write(buffer, data);
922         data << "\\end_inset\n";
923         return data.str();
924 }
925
926 } // namespace lyx