]> git.lyx.org Git - lyx.git/blob - src/insets/InsetExternal.cpp
Require a buffer on construction of InsetGraphics and InsetExternal. Eventually,...
[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(Buffer & buf)
409         : renderer_(new RenderButton)
410 {
411         Inset::setBuffer(buf);
412 }
413
414
415 InsetExternal::InsetExternal(InsetExternal const & other)
416         : Inset(other),
417           boost::signals::trackable(),
418           params_(other.params_),
419           renderer_(other.renderer_->clone(this))
420 {}
421
422
423 InsetExternal::~InsetExternal()
424 {
425         InsetExternalMailer(*this).hideDialog();
426 }
427
428
429 void InsetExternal::setBuffer(Buffer & buffer)
430 {
431         if (buffer_) {
432                 try {
433                         // a file may not be copied successfully when, e.g. buffer_
434                         // has already been closed.
435                         params_.filename = params_.filename.copyTo(&buffer);
436                 } catch (ExceptionMessage const & message) {
437                         Alert::error(message.title_, message.details_);
438                         // failed to embed
439                         params_.filename.setEmbed(false);
440                 }
441         }
442         Inset::setBuffer(buffer);
443 }
444
445
446 void InsetExternal::statusChanged() const
447 {
448         updateFrontend();
449 }
450
451
452 void InsetExternal::doDispatch(Cursor & cur, FuncRequest & cmd)
453 {
454         switch (cmd.action) {
455
456         case LFUN_EXTERNAL_EDIT: {
457                 InsetExternalParams p =  params();
458                 if (!cmd.argument().empty())
459                         InsetExternalMailer::string2params(to_utf8(cmd.argument()), buffer(), p);
460                 external::editExternal(p, buffer());
461                 break;
462         }
463
464         case LFUN_INSET_MODIFY: {
465                 InsetExternalParams p;
466                 InsetExternalMailer::string2params(to_utf8(cmd.argument()), buffer(), p);
467                 setParams(p);
468                 break;
469         }
470
471         case LFUN_INSET_DIALOG_UPDATE:
472                 InsetExternalMailer(*this).updateDialog(&cur.bv());
473                 break;
474
475         case LFUN_MOUSE_RELEASE:
476                 if (!cur.selection() && cmd.button() == mouse_button::button1)
477                         InsetExternalMailer(*this).showDialog(&cur.bv());
478                 break;
479
480         default:
481                 Inset::doDispatch(cur, cmd);
482         }
483 }
484
485
486 bool InsetExternal::getStatus(Cursor & cur, FuncRequest const & cmd,
487                 FuncStatus & flag) const
488 {
489         switch (cmd.action) {
490
491         case LFUN_EXTERNAL_EDIT:
492         case LFUN_INSET_MODIFY:
493         case LFUN_INSET_DIALOG_UPDATE:
494                 flag.enabled(true);
495                 return true;
496
497         default:
498                 return Inset::getStatus(cur, cmd, flag);
499         }
500 }
501
502
503 void InsetExternal::registerEmbeddedFiles(EmbeddedFileList & files) const
504 {
505         files.registerFile(params_.filename, this, buffer());
506 }
507
508
509 void InsetExternal::updateEmbeddedFile(EmbeddedFile const & file)
510 {
511         params_.filename = file;
512 }
513
514
515 void InsetExternal::edit(Cursor & cur, bool, EntryDirection)
516 {
517         InsetExternalMailer(*this).showDialog(&cur.bv());
518 }
519
520
521 void InsetExternal::metrics(MetricsInfo & mi, Dimension & dim) const
522 {
523         renderer_->metrics(mi, dim);
524 }
525
526
527 void InsetExternal::draw(PainterInfo & pi, int x, int y) const
528 {
529         renderer_->draw(pi, x, y);
530 }
531
532
533 namespace {
534
535 enum RenderType {
536         RENDERBUTTON,
537         RENDERGRAPHIC,
538         RENDERPREVIEW
539 };
540
541
542 RenderType getRenderType(InsetExternalParams const & p)
543 {
544         if (!external::getTemplatePtr(p) ||
545             p.filename.empty() ||
546             p.display == external::NoDisplay)
547                 return RENDERBUTTON;
548
549         if (p.display == external::PreviewDisplay) {
550                 if (RenderPreview::status() != LyXRC::PREVIEW_OFF)
551                         return RENDERPREVIEW;
552                 return RENDERBUTTON;
553         }
554
555         if (p.display == external::DefaultDisplay &&
556             lyxrc.display_graphics == graphics::NoDisplay)
557                 return RENDERBUTTON;
558         return RENDERGRAPHIC;
559 }
560
561
562 graphics::Params get_grfx_params(InsetExternalParams const & eparams)
563 {
564         graphics::Params gparams;
565
566         gparams.filename = eparams.filename.availableFile();
567         gparams.icon = eparams.filename.embedded() ? "pin.png" : "";
568         gparams.scale = eparams.lyxscale;
569         if (eparams.clipdata.clip)
570                 gparams.bb = eparams.clipdata.bbox;
571         gparams.angle = convert<double>(eparams.rotationdata.adjAngle());
572
573         switch (eparams.display) {
574         case external::DefaultDisplay:
575                 gparams.display = graphics::DefaultDisplay;
576                 break;
577         case external::MonochromeDisplay:
578                 gparams.display = graphics::MonochromeDisplay;
579                 break;
580         case external::GrayscaleDisplay:
581                 gparams.display = graphics::GrayscaleDisplay;
582                 break;
583         case external::ColorDisplay:
584                 gparams.display = graphics::ColorDisplay;
585                 break;
586         case external::NoDisplay:
587                 gparams.display = graphics::NoDisplay;
588                 break;
589         default:
590                 BOOST_ASSERT(false);
591         }
592         if (gparams.display == graphics::DefaultDisplay)
593                 gparams.display = graphics::DisplayType(lyxrc.display_graphics);
594         // Override the above if we're not using a gui
595         if (!use_gui)
596                 gparams.display = graphics::NoDisplay;
597
598         return gparams;
599 }
600
601
602 docstring screenLabel(InsetExternalParams const & params,
603                             Buffer const & buffer)
604 {
605         external::Template const * const ptr =
606                 external::getTemplatePtr(params);
607         if (!ptr)
608                 // FIXME UNICODE
609                 return bformat((_("External template %1$s is not installed")),
610                                         from_utf8(params.templatename()));
611         // FIXME UNICODE
612         docstring gui = _(ptr->guiName);
613         return from_utf8(external::doSubstitution(params, buffer,
614                                 to_utf8(gui), false));
615 }
616
617 } // namespace anon
618
619
620 static bool isPreviewWanted(InsetExternalParams const & params)
621 {
622         return params.display == external::PreviewDisplay &&
623                 params.filename.isReadableFile();
624 }
625
626
627 static docstring latexString(InsetExternal const & inset)
628 {
629         odocstringstream os;
630         // We don't need to set runparams.encoding since it is not used by
631         // latex().
632         OutputParams runparams(0);
633         runparams.flavor = OutputParams::LATEX;
634         inset.latex(os, runparams);
635         return os.str();
636 }
637
638
639 static void add_preview_and_start_loading(RenderMonitoredPreview & renderer,
640                                    InsetExternal const & inset,
641                                    Buffer const & buffer)
642 {
643         InsetExternalParams const & params = inset.params();
644
645         if (RenderPreview::status() != LyXRC::PREVIEW_OFF &&
646             isPreviewWanted(params)) {
647                 renderer.setAbsFile(params.filename);
648                 docstring const snippet = latexString(inset);
649                 renderer.addPreview(snippet, buffer);
650                 renderer.startLoading(buffer);
651         }
652 }
653
654
655 InsetExternalParams const & InsetExternal::params() const
656 {
657         return params_;
658 }
659
660
661 void InsetExternal::setParams(InsetExternalParams const & p)
662 {
663         params_ = p;
664
665         // Subsequent calls to the InsetExternal::Params default constructor
666         // will use this.
667         defaultTemplateName = params_.templatename();
668
669         switch (getRenderType(params_)) {
670         case RENDERBUTTON: {
671                 RenderButton * button_ptr = renderer_->asButton();
672                 if (!button_ptr) {
673                         renderer_.reset(new RenderButton);
674                         button_ptr = renderer_->asButton();
675                 }
676
677                 button_ptr->update(screenLabel(params_, buffer()), true);
678                 break;
679         }
680
681         case RENDERGRAPHIC: {
682                 RenderGraphic * graphic_ptr = renderer_->asGraphic();
683                 if (!graphic_ptr) {
684                         renderer_.reset(new RenderGraphic(this));
685                         graphic_ptr = renderer_->asGraphic();
686                 }
687
688                 graphic_ptr->update(get_grfx_params(params_));
689
690                 break;
691         }
692
693         case RENDERPREVIEW: {
694                 RenderMonitoredPreview * preview_ptr =
695                         renderer_->asMonitoredPreview();
696                 if (!preview_ptr) {
697                         renderer_.reset(new RenderMonitoredPreview(this));
698                         preview_ptr = renderer_->asMonitoredPreview();
699                         preview_ptr->fileChanged(
700                                 boost::bind(&InsetExternal::fileChanged, this));
701                 }
702
703                 if (preview_ptr->monitoring())
704                         preview_ptr->stopMonitoring();
705                 add_preview_and_start_loading(*preview_ptr, *this, buffer());
706
707                 break;
708         }
709         }
710 }
711
712
713 void InsetExternal::fileChanged() const
714 {
715         Buffer const * const buffer = updateFrontend();
716         if (!buffer)
717                 return;
718
719         RenderMonitoredPreview * const ptr = renderer_->asMonitoredPreview();
720         BOOST_ASSERT(ptr);
721
722         ptr->removePreview(*buffer);
723         add_preview_and_start_loading(*ptr, *this, *buffer);
724 }
725
726
727 void InsetExternal::write(ostream & os) const
728 {
729         params_.write(buffer(), os);
730 }
731
732
733 void InsetExternal::read(Lexer & lex)
734 {
735         InsetExternalParams params;
736         if (params.read(buffer(), lex)) {
737                 // exception handling is not needed as long as embedded files are in place.
738                 params.filename.enable(buffer().embedded(), &buffer(), false);
739                 setParams(params);
740         }
741 }
742
743
744 int InsetExternal::latex(odocstream & os, OutputParams const & runparams) const
745 {
746         if (params_.draft) {
747                 // FIXME UNICODE
748                 os << "\\fbox{\\ttfamily{}"
749                    << from_utf8(params_.filename.outputFilename(buffer().filePath()))
750                    << "}\n";
751                 return 1;
752         }
753
754         // "nice" means that the buffer is exported to LaTeX format but not
755         // run through the LaTeX compiler.
756         // If we're running through the LaTeX compiler, we should write the
757         // generated files in the buffer's temporary directory.
758         bool const external_in_tmpdir = !runparams.nice;
759         bool const dryrun = runparams.dryrun || runparams.inComment;
760
761         // If the template has specified a PDFLaTeX output, then we try and
762         // use that.
763         if (runparams.flavor == OutputParams::PDFLATEX) {
764                 external::Template const * const et_ptr =
765                         external::getTemplatePtr(params_);
766                 if (!et_ptr)
767                         return 0;
768                 external::Template const & et = *et_ptr;
769
770                 external::Template::Formats::const_iterator cit =
771                         et.formats.find("PDFLaTeX");
772
773                 if (cit != et.formats.end()) {
774                         return external::writeExternal(params_, "PDFLaTeX",
775                                                        buffer(), os,
776                                                        *(runparams.exportdata),
777                                                        external_in_tmpdir,
778                                                        dryrun);
779                 }
780         }
781
782         return external::writeExternal(params_, "LaTeX", buffer(), os,
783                                        *(runparams.exportdata),
784                                        external_in_tmpdir,
785                                        dryrun);
786 }
787
788
789 int InsetExternal::plaintext(odocstream & os,
790                              OutputParams const & runparams) const
791 {
792         os << '\n'; // output external material on a new line
793         external::writeExternal(params_, "Ascii", buffer(), os,
794                                 *(runparams.exportdata), false,
795                                 runparams.dryrun || runparams.inComment);
796         return PLAINTEXT_NEWLINE;
797 }
798
799
800 int InsetExternal::docbook(odocstream & os,
801                            OutputParams const & runparams) const
802 {
803         return external::writeExternal(params_, "DocBook", buffer(), os,
804                                        *(runparams.exportdata), false,
805                                        runparams.dryrun || runparams.inComment);
806 }
807
808
809 void InsetExternal::validate(LaTeXFeatures & features) const
810 {
811         if (params_.draft)
812                 return;
813
814         external::Template const * const et_ptr =
815                 external::getTemplatePtr(params_);
816         if (!et_ptr)
817                 return;
818         external::Template const & et = *et_ptr;
819
820         string format;
821         switch (features.runparams().flavor) {
822         case OutputParams::LATEX:
823                 format = "LaTeX";
824                 break;
825         case OutputParams::PDFLATEX:
826                 format = "PDFLaTeX";
827                 break;
828         case OutputParams::XML:
829                 format = "DocBook";
830                 break;
831         }
832         external::Template::Formats::const_iterator cit =
833                 et.formats.find(format);
834         if (cit == et.formats.end())
835                 return;
836
837         // FIXME: We don't need that always
838         features.require("lyxdot");
839
840         vector<string>::const_iterator it  = cit->second.requirements.begin();
841         vector<string>::const_iterator end = cit->second.requirements.end();
842         for (; it != end; ++it)
843                 features.require(*it);
844
845         external::TemplateManager & etm = external::TemplateManager::get();
846
847         it  = cit->second.preambleNames.begin();
848         end = cit->second.preambleNames.end();
849         for (; it != end; ++it) {
850                 string const preamble = etm.getPreambleDefByName(*it);
851                 if (!preamble.empty())
852                         features.addPreambleSnippet(preamble);
853         }
854 }
855
856
857 //
858 // preview stuff
859 //
860
861 void InsetExternal::addPreview(graphics::PreviewLoader & ploader) const
862 {
863         RenderMonitoredPreview * const ptr = renderer_->asMonitoredPreview();
864         if (!ptr)
865                 return;
866
867         if (isPreviewWanted(params())) {
868                 ptr->setAbsFile(params_.filename);
869                 docstring const snippet = latexString(*this);
870                 ptr->addPreview(snippet, ploader);
871         }
872 }
873
874
875 /// Mailer stuff
876
877 string const InsetExternalMailer::name_("external");
878
879 InsetExternalMailer::InsetExternalMailer(InsetExternal & inset)
880         : inset_(inset)
881 {}
882
883
884 string const InsetExternalMailer::inset2string(Buffer const & buffer) const
885 {
886         return params2string(inset_.params(), buffer);
887 }
888
889
890 void InsetExternalMailer::string2params(string const & in,
891                                         Buffer const & buffer,
892                                         InsetExternalParams & params)
893 {
894         params = InsetExternalParams();
895         if (in.empty())
896                 return;
897
898         istringstream data(in);
899         Lexer lex(0,0);
900         lex.setStream(data);
901
902         string name;
903         lex >> name;
904         if (!lex || name != name_)
905                 return print_mailer_error("InsetExternalMailer", in, 1, name_);
906
907         // This is part of the inset proper that is usually swallowed
908         // by Text::readInset
909         string id;
910         lex >> id;
911         if (!lex || id != "External")
912                 return print_mailer_error("InsetBoxMailer", in, 2, "External");
913
914         params.read(buffer, lex);
915 }
916
917
918 string const
919 InsetExternalMailer::params2string(InsetExternalParams const & params,
920                                    Buffer const & buffer)
921 {
922         ostringstream data;
923         data << name_ << ' ';
924         params.write(buffer, data);
925         data << "\\end_inset\n";
926         return data.str();
927 }
928
929 } // namespace lyx