]> git.lyx.org Git - lyx.git/blob - src/insets/insetinclude.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetinclude.C
1 /**
2  * \file insetinclude.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insetinclude.h"
14
15 #include "buffer.h"
16 #include "buffer_funcs.h"
17 #include "bufferlist.h"
18 #include "bufferparams.h"
19 #include "BufferView.h"
20 #include "cursor.h"
21 #include "debug.h"
22 #include "dispatchresult.h"
23 #include "exporter.h"
24 #include "funcrequest.h"
25 #include "FuncStatus.h"
26 #include "gettext.h"
27 #include "LaTeXFeatures.h"
28 #include "lyx_main.h"
29 #include "lyxrc.h"
30 #include "lyxlex.h"
31 #include "metricsinfo.h"
32 #include "outputparams.h"
33 #include "TocBackend.h"
34
35 #include "frontends/Alert.h"
36 #include "frontends/Painter.h"
37
38 #include "graphics/PreviewImage.h"
39 #include "graphics/PreviewLoader.h"
40
41 #include "insets/render_preview.h"
42
43 #include "support/filetools.h"
44 #include "support/lstrings.h" // contains
45 #include "support/lyxalgo.h"
46 #include "support/lyxlib.h"
47 #include "support/convert.h"
48
49 #include <boost/bind.hpp>
50 #include <boost/filesystem/operations.hpp>
51
52
53 namespace lyx {
54
55 using support::addName;
56 using support::absolutePath;
57 using support::bformat;
58 using support::changeExtension;
59 using support::contains;
60 using support::copy;
61 using support::DocFileName;
62 using support::FileName;
63 using support::getFileContents;
64 using support::isFileReadable;
65 using support::isLyXFilename;
66 using support::latex_path;
67 using support::makeAbsPath;
68 using support::makeDisplayPath;
69 using support::makeRelPath;
70 using support::onlyFilename;
71 using support::onlyPath;
72 using support::subst;
73 using support::sum;
74
75 using std::endl;
76 using std::string;
77 using std::auto_ptr;
78 using std::istringstream;
79 using std::ostream;
80 using std::ostringstream;
81
82 namespace Alert = frontend::Alert;
83 namespace fs = boost::filesystem;
84
85
86 namespace {
87
88 docstring const uniqueID()
89 {
90         static unsigned int seed = 1000;
91         return "file" + convert<docstring>(++seed);
92 }
93
94 } // namespace anon
95
96
97 InsetInclude::InsetInclude(InsetCommandParams const & p)
98         : params_(p), include_label(uniqueID()),
99           preview_(new RenderMonitoredPreview(this)),
100           set_label_(false)
101 {
102         preview_->fileChanged(boost::bind(&InsetInclude::fileChanged, this));
103 }
104
105
106 InsetInclude::InsetInclude(InsetInclude const & other)
107         : InsetOld(other),
108           params_(other.params_),
109           include_label(other.include_label),
110           preview_(new RenderMonitoredPreview(this)),
111           set_label_(false)
112 {
113         preview_->fileChanged(boost::bind(&InsetInclude::fileChanged, this));
114 }
115
116
117 InsetInclude::~InsetInclude()
118 {
119         InsetIncludeMailer(*this).hideDialog();
120 }
121
122
123 void InsetInclude::doDispatch(LCursor & cur, FuncRequest & cmd)
124 {
125         switch (cmd.action) {
126
127         case LFUN_INSET_MODIFY: {
128                 InsetCommandParams p("include");
129                 InsetIncludeMailer::string2params(to_utf8(cmd.argument()), p);
130                 if (!p.getCmdName().empty()) {
131                         set(p, cur.buffer());
132                         cur.buffer().updateBibfilesCache();
133                 } else
134                         cur.noUpdate();
135                 break;
136         }
137
138         case LFUN_INSET_DIALOG_UPDATE:
139                 InsetIncludeMailer(*this).updateDialog(&cur.bv());
140                 break;
141
142         case LFUN_MOUSE_RELEASE:
143                 InsetIncludeMailer(*this).showDialog(&cur.bv());
144                 break;
145
146         default:
147                 InsetBase::doDispatch(cur, cmd);
148                 break;
149         }
150 }
151
152
153 bool InsetInclude::getStatus(LCursor & cur, FuncRequest const & cmd,
154                 FuncStatus & flag) const
155 {
156         switch (cmd.action) {
157
158         case LFUN_INSET_MODIFY:
159         case LFUN_INSET_DIALOG_UPDATE:
160                 flag.enabled(true);
161                 return true;
162
163         default:
164                 return InsetBase::getStatus(cur, cmd, flag);
165         }
166 }
167
168
169 InsetCommandParams const & InsetInclude::params() const
170 {
171         return params_;
172 }
173
174
175 namespace {
176
177 /// the type of inclusion
178 enum Types {
179         INCLUDE = 0,
180         VERB = 1,
181         INPUT = 2,
182         VERBAST = 3
183 };
184
185
186 Types type(InsetCommandParams const & params)
187 {
188         string const command_name = params.getCmdName();
189
190         if (command_name == "input")
191                 return INPUT;
192         if  (command_name == "verbatiminput")
193                 return VERB;
194         if  (command_name == "verbatiminput*")
195                 return VERBAST;
196         return INCLUDE;
197 }
198
199
200 bool isVerbatim(InsetCommandParams const & params)
201 {
202         string const command_name = params.getCmdName();
203         return command_name == "verbatiminput" ||
204                 command_name == "verbatiminput*";
205 }
206
207
208 string const masterFilename(Buffer const & buffer)
209 {
210         return buffer.getMasterBuffer()->fileName();
211 }
212
213
214 string const parentFilename(Buffer const & buffer)
215 {
216         return buffer.fileName();
217 }
218
219
220 FileName const includedFilename(Buffer const & buffer,
221                               InsetCommandParams const & params)
222 {
223         return makeAbsPath(to_utf8(params["filename"]),
224                            onlyPath(parentFilename(buffer)));
225 }
226
227
228 void add_preview(RenderMonitoredPreview &, InsetInclude const &, Buffer const &);
229
230 } // namespace anon
231
232
233 void InsetInclude::set(InsetCommandParams const & p, Buffer const & buffer)
234 {
235         params_ = p;
236         set_label_ = false;
237
238         if (preview_->monitoring())
239                 preview_->stopMonitoring();
240
241         if (type(params_) == INPUT)
242                 add_preview(*preview_, *this, buffer);
243 }
244
245
246 auto_ptr<InsetBase> InsetInclude::doClone() const
247 {
248         return auto_ptr<InsetBase>(new InsetInclude(*this));
249 }
250
251
252 void InsetInclude::write(Buffer const &, ostream & os) const
253 {
254         write(os);
255 }
256
257
258 void InsetInclude::write(ostream & os) const
259 {
260         os << "Include " << to_utf8(params_.getCommand()) << '\n'
261            << "preview " << convert<string>(params_.preview()) << '\n';
262 }
263
264
265 void InsetInclude::read(Buffer const &, LyXLex & lex)
266 {
267         read(lex);
268 }
269
270
271 void InsetInclude::read(LyXLex & lex)
272 {
273         if (lex.isOK()) {
274                 lex.next();
275                 string const command = lex.getString();
276                 params_.scanCommand(command);
277         }
278         string token;
279         while (lex.isOK()) {
280                 lex.next();
281                 token = lex.getString();
282                 if (token == "\\end_inset")
283                         break;
284                 if (token == "preview") {
285                         lex.next();
286                         params_.preview(lex.getBool());
287                 } else
288                         lex.printError("Unknown parameter name `$$Token' for command " + params_.getCmdName());
289         }
290         if (token != "\\end_inset") {
291                 lex.printError("Missing \\end_inset at this point. "
292                                "Read: `$$Token'");
293         }
294 }
295
296
297 docstring const InsetInclude::getScreenLabel(Buffer const &) const
298 {
299         docstring temp;
300
301         switch (type(params_)) {
302                 case INPUT:
303                         temp += _("Input");
304                         break;
305                 case VERB:
306                         temp += _("Verbatim Input");
307                         break;
308                 case VERBAST:
309                         temp += _("Verbatim Input*");
310                         break;
311                 case INCLUDE:
312                         temp += _("Include");
313                         break;
314         }
315
316         temp += ": ";
317
318         if (params_["filename"].empty())
319                 temp += "???";
320         else
321                 temp += from_utf8(onlyFilename(to_utf8(params_["filename"])));
322
323         return temp;
324 }
325
326
327 namespace {
328
329 /// return the child buffer if the file is a LyX doc and is loaded
330 Buffer * getChildBuffer(Buffer const & buffer, InsetCommandParams const & params)
331 {
332         if (isVerbatim(params))
333                 return 0;
334
335         string const included_file = includedFilename(buffer, params).absFilename();
336         if (!isLyXFilename(included_file))
337                 return 0;
338
339         return theBufferList().getBuffer(included_file);
340 }
341
342
343 /// return true if the file is or got loaded.
344 bool loadIfNeeded(Buffer const & buffer, InsetCommandParams const & params)
345 {
346         if (isVerbatim(params))
347                 return false;
348
349         FileName const included_file = includedFilename(buffer, params);
350         if (!isLyXFilename(included_file.absFilename()))
351                 return false;
352
353         Buffer * buf = theBufferList().getBuffer(included_file.absFilename());
354         if (!buf) {
355                 // the readonly flag can/will be wrong, not anymore I think.
356                 if (!fs::exists(included_file.toFilesystemEncoding()))
357                         return false;
358                 buf = theBufferList().newBuffer(included_file.absFilename());
359                 if (!loadLyXFile(buf, included_file))
360                         return false;
361         }
362         if (buf)
363                 buf->setParentName(parentFilename(buffer));
364         return buf != 0;
365 }
366
367
368 } // namespace anon
369
370
371 int InsetInclude::latex(Buffer const & buffer, odocstream & os,
372                         OutputParams const & runparams) const
373 {
374         string incfile(to_utf8(params_["filename"]));
375
376         // Do nothing if no file name has been specified
377         if (incfile.empty())
378                 return 0;
379
380         FileName const included_file(includedFilename(buffer, params_));
381         Buffer const * const m_buffer = buffer.getMasterBuffer();
382
383         // if incfile is relative, make it relative to the master
384         // buffer directory.
385         if (!absolutePath(incfile)) {
386                 incfile = makeRelPath(included_file.absFilename(),
387                                       m_buffer->filePath());
388         }
389
390         // write it to a file (so far the complete file)
391         string const exportfile = changeExtension(incfile, ".tex");
392         string const mangled = DocFileName(changeExtension(included_file.absFilename(),
393                                                         ".tex")).mangledFilename();
394         FileName const writefile(makeAbsPath(mangled, m_buffer->temppath()));
395
396         if (!runparams.nice)
397                 incfile = mangled;
398         lyxerr[Debug::LATEX] << "incfile:" << incfile << endl;
399         lyxerr[Debug::LATEX] << "exportfile:" << exportfile << endl;
400         lyxerr[Debug::LATEX] << "writefile:" << writefile << endl;
401
402         if (runparams.inComment || runparams.dryrun)
403                 // Don't try to load or copy the file
404                 ;
405         else if (loadIfNeeded(buffer, params_)) {
406                 Buffer * tmp = theBufferList().getBuffer(included_file.absFilename());
407
408                 if (tmp->params().textclass != m_buffer->params().textclass) {
409                         // FIXME UNICODE
410                         docstring text = bformat(_("Included file `%1$s'\n"
411                                                 "has textclass `%2$s'\n"
412                                                              "while parent file has textclass `%3$s'."),
413                                               makeDisplayPath(included_file.absFilename()),
414                                               from_utf8(tmp->params().getLyXTextClass().name()),
415                                               from_utf8(m_buffer->params().getLyXTextClass().name()));
416                         Alert::warning(_("Different textclasses"), text);
417                         //return 0;
418                 }
419
420                 tmp->markDepClean(m_buffer->temppath());
421
422 #ifdef WITH_WARNINGS
423 #warning handle non existing files
424 #warning Second argument is irrelevant!
425 // since only_body is true, makeLaTeXFile will not look at second
426 // argument. Should we set it to string(), or should makeLaTeXFile
427 // make use of it somehow? (JMarc 20031002)
428 #endif
429                 tmp->makeLaTeXFile(writefile,
430                                    onlyPath(masterFilename(buffer)),
431                                    runparams, false);
432         } else {
433                 // Copy the file to the temp dir, so that .aux files etc.
434                 // are not created in the original dir. Files included by
435                 // this file will be found via input@path, see ../buffer.C.
436                 unsigned long const checksum_in  = sum(included_file);
437                 unsigned long const checksum_out = sum(writefile);
438
439                 if (checksum_in != checksum_out) {
440                         if (!copy(included_file, writefile)) {
441                                 // FIXME UNICODE
442                                 lyxerr[Debug::LATEX]
443                                         << to_utf8(bformat(_("Could not copy the file\n%1$s\n"
444                                                                   "into the temporary directory."),
445                                                    from_utf8(included_file.absFilename())))
446                                         << endl;
447                                 return 0;
448                         }
449                 }
450         }
451
452         string const tex_format = (runparams.flavor == OutputParams::LATEX) ?
453                         "latex" : "pdflatex";
454         if (isVerbatim(params_)) {
455                 incfile = latex_path(incfile);
456                 // FIXME UNICODE
457                 os << '\\' << from_ascii(params_.getCmdName()) << '{'
458                    << from_utf8(incfile) << '}';
459         } else if (type(params_) == INPUT) {
460                 runparams.exportdata->addExternalFile(tex_format, writefile,
461                                                       exportfile);
462
463                 // \input wants file with extension (default is .tex)
464                 if (!isLyXFilename(included_file.absFilename())) {
465                         incfile = latex_path(incfile);
466                         // FIXME UNICODE
467                         os << '\\' << from_ascii(params_.getCmdName())
468                            << '{' << from_utf8(incfile) << '}';
469                 } else {
470                 incfile = changeExtension(incfile, ".tex");
471                 incfile = latex_path(incfile);
472                         // FIXME UNICODE
473                         os << '\\' << from_ascii(params_.getCmdName())
474                            << '{' << from_utf8(incfile) <<  '}';
475                 }
476         } else {
477                 runparams.exportdata->addExternalFile(tex_format, writefile,
478                                                       exportfile);
479
480                 // \include don't want extension and demands that the
481                 // file really have .tex
482                 incfile = changeExtension(incfile, string());
483                 incfile = latex_path(incfile);
484                 // FIXME UNICODE
485                 os << '\\' << from_ascii(params_.getCmdName()) << '{'
486                    << from_utf8(incfile) << '}';
487         }
488
489         return 0;
490 }
491
492
493 int InsetInclude::plaintext(Buffer const & buffer, odocstream & os,
494                         OutputParams const &) const
495 {
496         if (isVerbatim(params_)) {
497                 // FIXME: We don't know the encoding of the file
498                 docstring const str = from_utf8(
499                         getFileContents(includedFilename(buffer, params_)));
500                 os << str;
501                 // Return how many newlines we issued.
502                 return int(lyx::count(str.begin(), str.end(), '\n'));
503         }
504         return 0;
505 }
506
507
508 int InsetInclude::docbook(Buffer const & buffer, odocstream & os,
509                           OutputParams const & runparams) const
510 {
511         string incfile = to_utf8(params_["filename"]);
512
513         // Do nothing if no file name has been specified
514         if (incfile.empty())
515                 return 0;
516
517         string const included_file = includedFilename(buffer, params_).absFilename();
518
519         // write it to a file (so far the complete file)
520         string const exportfile = changeExtension(incfile, ".sgml");
521         DocFileName writefile(changeExtension(included_file, ".sgml"));
522
523         if (loadIfNeeded(buffer, params_)) {
524                 Buffer * tmp = theBufferList().getBuffer(included_file);
525
526                 string const mangled = writefile.mangledFilename();
527                 writefile = makeAbsPath(mangled,
528                                         buffer.getMasterBuffer()->temppath());
529                 if (!runparams.nice)
530                         incfile = mangled;
531
532                 lyxerr[Debug::LATEX] << "incfile:" << incfile << endl;
533                 lyxerr[Debug::LATEX] << "exportfile:" << exportfile << endl;
534                 lyxerr[Debug::LATEX] << "writefile:" << writefile << endl;
535
536                 tmp->makeDocBookFile(writefile, runparams, true);
537         }
538
539         runparams.exportdata->addExternalFile("docbook", writefile,
540                                               exportfile);
541         runparams.exportdata->addExternalFile("docbook-xml", writefile,
542                                               exportfile);
543
544         if (isVerbatim(params_)) {
545                 os << "<inlinegraphic fileref=\""
546                    << '&' << include_label << ';'
547                    << "\" format=\"linespecific\">";
548         } else
549                 os << '&' << include_label << ';';
550
551         return 0;
552 }
553
554
555 void InsetInclude::validate(LaTeXFeatures & features) const
556 {
557         string incfile(to_utf8(params_["filename"]));
558         string writefile;
559
560         Buffer const & buffer = features.buffer();
561
562         string const included_file = includedFilename(buffer, params_).absFilename();
563
564         if (isLyXFilename(included_file))
565                 writefile = changeExtension(included_file, ".sgml");
566         else
567                 writefile = included_file;
568
569         if (!features.runparams().nice && !isVerbatim(params_)) {
570                 incfile = DocFileName(writefile).mangledFilename();
571                 writefile = makeAbsPath(incfile,
572                                         buffer.getMasterBuffer()->temppath()).absFilename();
573         }
574
575         features.includeFile(include_label, writefile);
576
577         if (isVerbatim(params_))
578                 features.require("verbatim");
579
580         // Here we must do the fun stuff...
581         // Load the file in the include if it needs
582         // to be loaded:
583         if (loadIfNeeded(buffer, params_)) {
584                 // a file got loaded
585                 Buffer * const tmp = theBufferList().getBuffer(included_file);
586                 if (tmp) {
587                         // We must temporarily change features.buffer,
588                         // otherwise it would always be the master buffer,
589                         // and nested includes would not work.
590                         features.setBuffer(*tmp);
591                         tmp->validate(features);
592                         features.setBuffer(buffer);
593                 }
594         }
595 }
596
597
598 void InsetInclude::getLabelList(Buffer const & buffer,
599                                 std::vector<docstring> & list) const
600 {
601         if (loadIfNeeded(buffer, params_)) {
602                 string const included_file = includedFilename(buffer, params_).absFilename();
603                 Buffer * tmp = theBufferList().getBuffer(included_file);
604                 tmp->setParentName("");
605                 tmp->getLabelList(list);
606                 tmp->setParentName(parentFilename(buffer));
607         }
608 }
609
610
611 void InsetInclude::fillWithBibKeys(Buffer const & buffer,
612                 std::vector<std::pair<string, docstring> > & keys) const
613 {
614         if (loadIfNeeded(buffer, params_)) {
615                 string const included_file = includedFilename(buffer, params_).absFilename();
616                 Buffer * tmp = theBufferList().getBuffer(included_file);
617                 tmp->setParentName("");
618                 tmp->fillWithBibKeys(keys);
619                 tmp->setParentName(parentFilename(buffer));
620         }
621 }
622
623
624 void InsetInclude::updateBibfilesCache(Buffer const & buffer)
625 {
626         Buffer * const tmp = getChildBuffer(buffer, params_);
627         if (tmp) {
628                 tmp->setParentName("");
629                 tmp->updateBibfilesCache();
630                 tmp->setParentName(parentFilename(buffer));
631         }
632 }
633
634
635 std::vector<FileName> const &
636 InsetInclude::getBibfilesCache(Buffer const & buffer) const
637 {
638         Buffer * const tmp = getChildBuffer(buffer, params_);
639         if (tmp) {
640                 tmp->setParentName("");
641                 std::vector<FileName> const & cache = tmp->getBibfilesCache();
642                 tmp->setParentName(parentFilename(buffer));
643                 return cache;
644         }
645         static std::vector<FileName> const empty;
646         return empty;
647 }
648
649
650 bool InsetInclude::metrics(MetricsInfo & mi, Dimension & dim) const
651 {
652         BOOST_ASSERT(mi.base.bv && mi.base.bv->buffer());
653
654         bool use_preview = false;
655         if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
656                 graphics::PreviewImage const * pimage =
657                         preview_->getPreviewImage(*mi.base.bv->buffer());
658                 use_preview = pimage && pimage->image();
659         }
660
661         if (use_preview) {
662                 preview_->metrics(mi, dim);
663         } else {
664                 if (!set_label_) {
665                         set_label_ = true;
666                         button_.update(getScreenLabel(*mi.base.bv->buffer()),
667                                        true);
668                 }
669                 button_.metrics(mi, dim);
670         }
671
672         Box b(0, dim.wid, -dim.asc, dim.des);
673         button_.setBox(b);
674
675         bool const changed = dim_ != dim;
676         dim_ = dim;
677         return changed;
678 }
679
680
681 void InsetInclude::draw(PainterInfo & pi, int x, int y) const
682 {
683         setPosCache(pi, x, y);
684
685         BOOST_ASSERT(pi.base.bv && pi.base.bv->buffer());
686
687         bool use_preview = false;
688         if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
689                 graphics::PreviewImage const * pimage =
690                         preview_->getPreviewImage(*pi.base.bv->buffer());
691                 use_preview = pimage && pimage->image();
692         }
693
694         if (use_preview)
695                 preview_->draw(pi, x, y);
696         else
697                 button_.draw(pi, x, y);
698 }
699
700 bool InsetInclude::display() const
701 {
702         return type(params_) != INPUT;
703 }
704
705
706
707 //
708 // preview stuff
709 //
710
711 void InsetInclude::fileChanged() const
712 {
713         Buffer const * const buffer_ptr = LyX::cref().updateInset(this);
714         if (!buffer_ptr)
715                 return;
716
717         Buffer const & buffer = *buffer_ptr;
718         preview_->removePreview(buffer);
719         add_preview(*preview_.get(), *this, buffer);
720         preview_->startLoading(buffer);
721 }
722
723
724 namespace {
725
726 bool preview_wanted(InsetCommandParams const & params, Buffer const & buffer)
727 {
728         FileName const included_file = includedFilename(buffer, params);
729
730         return type(params) == INPUT && params.preview() &&
731                 isFileReadable(included_file);
732 }
733
734
735 docstring const latex_string(InsetInclude const & inset, Buffer const & buffer)
736 {
737         odocstringstream os;
738         OutputParams runparams;
739         runparams.flavor = OutputParams::LATEX;
740         inset.latex(buffer, os, runparams);
741
742         return os.str();
743 }
744
745
746 void add_preview(RenderMonitoredPreview & renderer, InsetInclude const & inset,
747                  Buffer const & buffer)
748 {
749         InsetCommandParams const & params = inset.params();
750         if (RenderPreview::status() != LyXRC::PREVIEW_OFF &&
751             preview_wanted(params, buffer)) {
752                 renderer.setAbsFile(includedFilename(buffer, params));
753                 docstring const snippet = latex_string(inset, buffer);
754                 renderer.addPreview(snippet, buffer);
755         }
756 }
757
758 } // namespace anon
759
760
761 void InsetInclude::addPreview(graphics::PreviewLoader & ploader) const
762 {
763         Buffer const & buffer = ploader.buffer();
764         if (preview_wanted(params(), buffer)) {
765                 preview_->setAbsFile(includedFilename(buffer, params()));
766                 docstring const snippet = latex_string(*this, buffer);
767                 preview_->addPreview(snippet, ploader);
768         }
769 }
770
771
772 void InsetInclude::addToToc(TocList & toclist, Buffer const & buffer) const
773 {
774         Buffer const * const childbuffer = getChildBuffer(buffer, params_);
775         if (!childbuffer)
776                 return;
777
778         TocList const & childtoclist = childbuffer->tocBackend().tocs();
779         TocList::const_iterator it = childtoclist.begin();
780         TocList::const_iterator const end = childtoclist.end();
781         for(; it != end; ++it)
782                 toclist[it->first].insert(toclist[it->first].end(),
783                                 it->second.begin(), it->second.end());
784 }
785
786
787 void InsetInclude::updateLabels(Buffer const & buffer) const
788 {
789         Buffer const * const childbuffer = getChildBuffer(buffer, params_);
790         if (!childbuffer)
791                 return;
792
793         lyx::updateLabels(*childbuffer, true);
794 }
795
796
797 string const InsetIncludeMailer::name_("include");
798
799 InsetIncludeMailer::InsetIncludeMailer(InsetInclude & inset)
800         : inset_(inset)
801 {}
802
803
804 string const InsetIncludeMailer::inset2string(Buffer const &) const
805 {
806         return params2string(inset_.params());
807 }
808
809
810 void InsetIncludeMailer::string2params(string const & in,
811                                        InsetCommandParams & params)
812 {
813         params.clear();
814         if (in.empty())
815                 return;
816
817         istringstream data(in);
818         LyXLex lex(0,0);
819         lex.setStream(data);
820
821         string name;
822         lex >> name;
823         if (!lex || name != name_)
824                 return print_mailer_error("InsetIncludeMailer", in, 1, name_);
825
826         // This is part of the inset proper that is usually swallowed
827         // by LyXText::readInset
828         string id;
829         lex >> id;
830         if (!lex || id != "Include")
831                 return print_mailer_error("InsetIncludeMailer", in, 2, "Include");
832
833         InsetInclude inset(params);
834         inset.read(lex);
835         params = inset.params();
836 }
837
838
839 string const
840 InsetIncludeMailer::params2string(InsetCommandParams const & params)
841 {
842         InsetInclude inset(params);
843         ostringstream data;
844         data << name_ << ' ';
845         inset.write(data);
846         data << "\\end_inset\n";
847         return data.str();
848 }
849
850
851 } // namespace lyx