]> git.lyx.org Git - lyx.git/blob - src/Buffer.cpp
8105d5261ba8b57006528033b55105e4116f2080
[lyx.git] / src / Buffer.cpp
1 /**
2  * \file Buffer.cpp
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  * \author Stefan Schimanski
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "Buffer.h"
15
16 #include "Author.h"
17 #include "LayoutFile.h"
18 #include "BiblioInfo.h"
19 #include "BranchList.h"
20 #include "buffer_funcs.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "Bullet.h"
24 #include "Chktex.h"
25 #include "Converter.h"
26 #include "Counters.h"
27 #include "DocIterator.h"
28 #include "Encoding.h"
29 #include "ErrorList.h"
30 #include "Exporter.h"
31 #include "Format.h"
32 #include "FuncRequest.h"
33 #include "InsetIterator.h"
34 #include "InsetList.h"
35 #include "Language.h"
36 #include "LaTeXFeatures.h"
37 #include "LaTeX.h"
38 #include "Layout.h"
39 #include "Lexer.h"
40 #include "LyXAction.h"
41 #include "LyX.h"
42 #include "LyXRC.h"
43 #include "LyXVC.h"
44 #include "output_docbook.h"
45 #include "output.h"
46 #include "output_latex.h"
47 #include "output_plaintext.h"
48 #include "paragraph_funcs.h"
49 #include "Paragraph.h"
50 #include "ParagraphParameters.h"
51 #include "ParIterator.h"
52 #include "PDFOptions.h"
53 #include "sgml.h"
54 #include "TexRow.h"
55 #include "TexStream.h"
56 #include "Text.h"
57 #include "TextClass.h"
58 #include "TocBackend.h"
59 #include "Undo.h"
60 #include "VCBackend.h"
61 #include "version.h"
62 #include "WordList.h"
63
64 #include "insets/InsetBibitem.h"
65 #include "insets/InsetBibtex.h"
66 #include "insets/InsetInclude.h"
67 #include "insets/InsetText.h"
68
69 #include "mathed/MacroTable.h"
70 #include "mathed/MathMacroTemplate.h"
71 #include "mathed/MathSupport.h"
72
73 #include "frontends/alert.h"
74 #include "frontends/Delegates.h"
75 #include "frontends/WorkAreaManager.h"
76
77 #include "graphics/Previews.h"
78
79 #include "support/lassert.h"
80 #include "support/convert.h"
81 #include "support/debug.h"
82 #include "support/ExceptionMessage.h"
83 #include "support/FileName.h"
84 #include "support/FileNameList.h"
85 #include "support/filetools.h"
86 #include "support/ForkedCalls.h"
87 #include "support/gettext.h"
88 #include "support/gzstream.h"
89 #include "support/lstrings.h"
90 #include "support/lyxalgo.h"
91 #include "support/os.h"
92 #include "support/Package.h"
93 #include "support/Path.h"
94 #include "support/textutils.h"
95 #include "support/types.h"
96
97 #include <boost/bind.hpp>
98 #include <boost/shared_ptr.hpp>
99
100 #include <algorithm>
101 #include <fstream>
102 #include <iomanip>
103 #include <map>
104 #include <set>
105 #include <sstream>
106 #include <stack>
107 #include <vector>
108
109 using namespace std;
110 using namespace lyx::support;
111
112 namespace lyx {
113
114 namespace Alert = frontend::Alert;
115 namespace os = support::os;
116
117 namespace {
118
119 // Do not remove the comment below, so we get merge conflict in
120 // independent branches. Instead add your own.
121 int const LYX_FORMAT = 348;  // uwestoehr: add support for \*phantom
122
123 typedef map<string, bool> DepClean;
124 typedef map<docstring, pair<InsetLabel const *, Buffer::References> > RefCache;
125
126 } // namespace anon
127
128 class BufferSet : public std::set<Buffer const *> {};
129
130 class Buffer::Impl
131 {
132 public:
133         Impl(Buffer & parent, FileName const & file, bool readonly);
134
135         ~Impl()
136         {
137                 if (wa_) {
138                         wa_->closeAll();
139                         delete wa_;
140                 }
141                 delete inset;
142         }
143
144         BufferParams params;
145         LyXVC lyxvc;
146         FileName temppath;
147         mutable TexRow texrow;
148         Buffer const * parent_buffer;
149
150         /// need to regenerate .tex?
151         DepClean dep_clean;
152
153         /// is save needed?
154         mutable bool lyx_clean;
155
156         /// is autosave needed?
157         mutable bool bak_clean;
158
159         /// is this a unnamed file (New...)?
160         bool unnamed;
161
162         /// buffer is r/o
163         bool read_only;
164
165         /// name of the file the buffer is associated with.
166         FileName filename;
167
168         /** Set to true only when the file is fully loaded.
169          *  Used to prevent the premature generation of previews
170          *  and by the citation inset.
171          */
172         bool file_fully_loaded;
173
174         ///
175         mutable TocBackend toc_backend;
176
177         /// macro tables
178         typedef pair<DocIterator, MacroData> ScopeMacro;
179         typedef map<DocIterator, ScopeMacro> PositionScopeMacroMap;
180         typedef map<docstring, PositionScopeMacroMap> NamePositionScopeMacroMap;
181         /// map from the macro name to the position map,
182         /// which maps the macro definition position to the scope and the MacroData.
183         NamePositionScopeMacroMap macros;
184         bool macro_lock;
185
186         /// positions of child buffers in the buffer
187         typedef map<Buffer const * const, DocIterator> BufferPositionMap;
188         typedef pair<DocIterator, Buffer const *> ScopeBuffer;
189         typedef map<DocIterator, ScopeBuffer> PositionScopeBufferMap;
190         /// position of children buffers in this buffer
191         BufferPositionMap children_positions;
192         /// map from children inclusion positions to their scope and their buffer
193         PositionScopeBufferMap position_to_children;
194
195         /// Container for all sort of Buffer dependant errors.
196         map<string, ErrorList> errorLists;
197
198         /// timestamp and checksum used to test if the file has been externally
199         /// modified. (Used to properly enable 'File->Revert to saved', bug 4114).
200         time_t timestamp_;
201         unsigned long checksum_;
202
203         ///
204         frontend::WorkAreaManager * wa_;
205
206         ///
207         Undo undo_;
208
209         /// A cache for the bibfiles (including bibfiles of loaded child
210         /// documents), needed for appropriate update of natbib labels.
211         mutable support::FileNameList bibfilesCache_;
212
213         // FIXME The caching mechanism could be improved. At present, we have a
214         // cache for each Buffer, that caches all the bibliography info for that
215         // Buffer. A more efficient solution would be to have a global cache per
216         // file, and then to construct the Buffer's bibinfo from that.
217         /// A cache for bibliography info
218         mutable BiblioInfo bibinfo_;
219         /// whether the bibinfo cache is valid
220         bool bibinfoCacheValid_;
221         /// Cache of timestamps of .bib files
222         map<FileName, time_t> bibfileStatus_;
223
224         mutable RefCache ref_cache_;
225
226         /// our Text that should be wrapped in an InsetText
227         InsetText * inset;
228 };
229
230
231 /// Creates the per buffer temporary directory
232 static FileName createBufferTmpDir()
233 {
234         static int count;
235         // We are in our own directory.  Why bother to mangle name?
236         // In fact I wrote this code to circumvent a problematic behaviour
237         // (bug?) of EMX mkstemp().
238         FileName tmpfl(package().temp_dir().absFilename() + "/lyx_tmpbuf" +
239                 convert<string>(count++));
240
241         if (!tmpfl.createDirectory(0777)) {
242                 throw ExceptionMessage(WarningException, _("Disk Error: "), bformat(
243                         _("LyX could not create the temporary directory '%1$s' (Disk is full maybe?)"),
244                         from_utf8(tmpfl.absFilename())));
245         }
246         return tmpfl;
247 }
248
249
250 Buffer::Impl::Impl(Buffer & parent, FileName const & file, bool readonly_)
251         : parent_buffer(0), lyx_clean(true), bak_clean(true), unnamed(false),
252           read_only(readonly_), filename(file), file_fully_loaded(false),
253           toc_backend(&parent), macro_lock(false), timestamp_(0),
254           checksum_(0), wa_(0), undo_(parent), bibinfoCacheValid_(false)
255 {
256         temppath = createBufferTmpDir();
257         lyxvc.setBuffer(&parent);
258         if (use_gui)
259                 wa_ = new frontend::WorkAreaManager;
260 }
261
262
263 Buffer::Buffer(string const & file, bool readonly)
264         : d(new Impl(*this, FileName(file), readonly)), gui_(0)
265 {
266         LYXERR(Debug::INFO, "Buffer::Buffer()");
267
268         d->inset = new InsetText(*this);
269         d->inset->setAutoBreakRows(true);
270         d->inset->getText(0)->setMacrocontextPosition(par_iterator_begin());
271 }
272
273
274 Buffer::~Buffer()
275 {
276         LYXERR(Debug::INFO, "Buffer::~Buffer()");
277         // here the buffer should take care that it is
278         // saved properly, before it goes into the void.
279
280         // GuiView already destroyed
281         gui_ = 0;
282
283         if (d->unnamed && d->filename.extension() == "internal") {
284                 // No need to do additional cleanups for internal buffer.
285                 delete d;
286                 return;
287         }
288
289         // loop over children
290         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
291         Impl::BufferPositionMap::iterator end = d->children_positions.end();
292         for (; it != end; ++it) {
293                 Buffer * child = const_cast<Buffer *>(it->first);
294                 // The child buffer might have been closed already.
295                 if (theBufferList().isLoaded(child))
296                         theBufferList().releaseChild(this, child);
297         }
298
299         // clear references to children in macro tables
300         d->children_positions.clear();
301         d->position_to_children.clear();
302
303         if (!d->temppath.destroyDirectory()) {
304                 Alert::warning(_("Could not remove temporary directory"),
305                         bformat(_("Could not remove the temporary directory %1$s"),
306                         from_utf8(d->temppath.absFilename())));
307         }
308
309         // Remove any previewed LaTeX snippets associated with this buffer.
310         thePreviews().removeLoader(*this);
311
312         delete d;
313 }
314
315
316 void Buffer::changed() const
317 {
318         if (d->wa_)
319                 d->wa_->redrawAll();
320 }
321
322
323 frontend::WorkAreaManager & Buffer::workAreaManager() const
324 {
325         LASSERT(d->wa_, /**/);
326         return *d->wa_;
327 }
328
329
330 Text & Buffer::text() const
331 {
332         return d->inset->text();
333 }
334
335
336 Inset & Buffer::inset() const
337 {
338         return *d->inset;
339 }
340
341
342 BufferParams & Buffer::params()
343 {
344         return d->params;
345 }
346
347
348 BufferParams const & Buffer::params() const
349 {
350         return d->params;
351 }
352
353
354 ParagraphList & Buffer::paragraphs()
355 {
356         return text().paragraphs();
357 }
358
359
360 ParagraphList const & Buffer::paragraphs() const
361 {
362         return text().paragraphs();
363 }
364
365
366 LyXVC & Buffer::lyxvc()
367 {
368         return d->lyxvc;
369 }
370
371
372 LyXVC const & Buffer::lyxvc() const
373 {
374         return d->lyxvc;
375 }
376
377
378 string const Buffer::temppath() const
379 {
380         return d->temppath.absFilename();
381 }
382
383
384 TexRow & Buffer::texrow()
385 {
386         return d->texrow;
387 }
388
389
390 TexRow const & Buffer::texrow() const
391 {
392         return d->texrow;
393 }
394
395
396 TocBackend & Buffer::tocBackend() const
397 {
398         return d->toc_backend;
399 }
400
401
402 Undo & Buffer::undo()
403 {
404         return d->undo_;
405 }
406
407
408 string Buffer::latexName(bool const no_path) const
409 {
410         FileName latex_name = makeLatexName(d->filename);
411         return no_path ? latex_name.onlyFileName()
412                 : latex_name.absFilename();
413 }
414
415
416 string Buffer::logName(LogType * type) const
417 {
418         string const filename = latexName(false);
419
420         if (filename.empty()) {
421                 if (type)
422                         *type = latexlog;
423                 return string();
424         }
425
426         string const path = temppath();
427
428         FileName const fname(addName(temppath(),
429                                      onlyFilename(changeExtension(filename,
430                                                                   ".log"))));
431         FileName const bname(
432                 addName(path, onlyFilename(
433                         changeExtension(filename,
434                                         formats.extension("literate") + ".out"))));
435
436         // If no Latex log or Build log is newer, show Build log
437
438         if (bname.exists() &&
439             (!fname.exists() || fname.lastModified() < bname.lastModified())) {
440                 LYXERR(Debug::FILES, "Log name calculated as: " << bname);
441                 if (type)
442                         *type = buildlog;
443                 return bname.absFilename();
444         }
445         LYXERR(Debug::FILES, "Log name calculated as: " << fname);
446         if (type)
447                         *type = latexlog;
448         return fname.absFilename();
449 }
450
451
452 void Buffer::setReadonly(bool const flag)
453 {
454         if (d->read_only != flag) {
455                 d->read_only = flag;
456                 setReadOnly(flag);
457         }
458 }
459
460
461 void Buffer::setFileName(string const & newfile)
462 {
463         d->filename = makeAbsPath(newfile);
464         setReadonly(d->filename.isReadOnly());
465         updateTitles();
466 }
467
468
469 int Buffer::readHeader(Lexer & lex)
470 {
471         int unknown_tokens = 0;
472         int line = -1;
473         int begin_header_line = -1;
474
475         // Initialize parameters that may be/go lacking in header:
476         params().branchlist().clear();
477         params().preamble.erase();
478         params().options.erase();
479         params().master.erase();
480         params().float_placement.erase();
481         params().paperwidth.erase();
482         params().paperheight.erase();
483         params().leftmargin.erase();
484         params().rightmargin.erase();
485         params().topmargin.erase();
486         params().bottommargin.erase();
487         params().headheight.erase();
488         params().headsep.erase();
489         params().footskip.erase();
490         params().columnsep.erase();
491         params().fontsCJK.erase();
492         params().listings_params.clear();
493         params().clearLayoutModules();
494         params().clearRemovedModules();
495         params().pdfoptions().clear();
496
497         for (int i = 0; i < 4; ++i) {
498                 params().user_defined_bullet(i) = ITEMIZE_DEFAULTS[i];
499                 params().temp_bullet(i) = ITEMIZE_DEFAULTS[i];
500         }
501
502         ErrorList & errorList = d->errorLists["Parse"];
503
504         while (lex.isOK()) {
505                 string token;
506                 lex >> token;
507
508                 if (token.empty())
509                         continue;
510
511                 if (token == "\\end_header")
512                         break;
513
514                 ++line;
515                 if (token == "\\begin_header") {
516                         begin_header_line = line;
517                         continue;
518                 }
519
520                 LYXERR(Debug::PARSER, "Handling document header token: `"
521                                       << token << '\'');
522
523                 string unknown = params().readToken(lex, token, d->filename.onlyPath());
524                 if (!unknown.empty()) {
525                         if (unknown[0] != '\\' && token == "\\textclass") {
526                                 Alert::warning(_("Unknown document class"),
527                        bformat(_("Using the default document class, because the "
528                                               "class %1$s is unknown."), from_utf8(unknown)));
529                         } else {
530                                 ++unknown_tokens;
531                                 docstring const s = bformat(_("Unknown token: "
532                                                                         "%1$s %2$s\n"),
533                                                          from_utf8(token),
534                                                          lex.getDocString());
535                                 errorList.push_back(ErrorItem(_("Document header error"),
536                                         s, -1, 0, 0));
537                         }
538                 }
539         }
540         if (begin_header_line) {
541                 docstring const s = _("\\begin_header is missing");
542                 errorList.push_back(ErrorItem(_("Document header error"),
543                         s, -1, 0, 0));
544         }
545
546         params().makeDocumentClass();
547
548         return unknown_tokens;
549 }
550
551
552 // Uwe C. Schroeder
553 // changed to be public and have one parameter
554 // Returns true if "\end_document" is not read (Asger)
555 bool Buffer::readDocument(Lexer & lex)
556 {
557         ErrorList & errorList = d->errorLists["Parse"];
558         errorList.clear();
559
560         if (!lex.checkFor("\\begin_document")) {
561                 docstring const s = _("\\begin_document is missing");
562                 errorList.push_back(ErrorItem(_("Document header error"),
563                         s, -1, 0, 0));
564         }
565
566         // we are reading in a brand new document
567         LASSERT(paragraphs().empty(), /**/);
568
569         readHeader(lex);
570
571         if (params().outputChanges) {
572                 bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
573                 bool xcolorulem = LaTeXFeatures::isAvailable("ulem") &&
574                                   LaTeXFeatures::isAvailable("xcolor");
575
576                 if (!dvipost && !xcolorulem) {
577                         Alert::warning(_("Changes not shown in LaTeX output"),
578                                        _("Changes will not be highlighted in LaTeX output, "
579                                          "because neither dvipost nor xcolor/ulem are installed.\n"
580                                          "Please install these packages or redefine "
581                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
582                 } else if (!xcolorulem) {
583                         Alert::warning(_("Changes not shown in LaTeX output"),
584                                        _("Changes will not be highlighted in LaTeX output "
585                                          "when using pdflatex, because xcolor and ulem are not installed.\n"
586                                          "Please install both packages or redefine "
587                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
588                 }
589         }
590
591         if (!params().master.empty()) {
592                 FileName const master_file = makeAbsPath(params().master,
593                            onlyPath(absFileName()));
594                 if (isLyXFilename(master_file.absFilename())) {
595                         Buffer * master = 
596                                 checkAndLoadLyXFile(master_file, true);
597                         if (master) {
598                                 // set master as master buffer, but only
599                                 // if we are a real child
600                                 if (master->isChild(this))
601                                         setParent(master);
602                                 // if the master is not fully loaded
603                                 // it is probably just loading this
604                                 // child. No warning needed then.
605                                 else if (master->isFullyLoaded())
606                                         LYXERR0("The master '"
607                                                 << params().master
608                                                 << "' assigned to this document '"
609                                                 << absFileName()
610                                                 << "' does not include "
611                                                 "this document. Ignoring the master assignment.");
612                         }
613                 }
614         }
615
616         // read main text
617         bool const res = text().read(*this, lex, errorList, d->inset);
618
619         updateMacros();
620         updateMacroInstances();
621         return res;
622 }
623
624
625 // needed to insert the selection
626 void Buffer::insertStringAsLines(ParagraphList & pars,
627         pit_type & pit, pos_type & pos,
628         Font const & fn, docstring const & str, bool autobreakrows)
629 {
630         Font font = fn;
631
632         // insert the string, don't insert doublespace
633         bool space_inserted = true;
634         for (docstring::const_iterator cit = str.begin();
635             cit != str.end(); ++cit) {
636                 Paragraph & par = pars[pit];
637                 if (*cit == '\n') {
638                         if (autobreakrows && (!par.empty() || par.allowEmpty())) {
639                                 breakParagraph(params(), pars, pit, pos,
640                                                par.layout().isEnvironment());
641                                 ++pit;
642                                 pos = 0;
643                                 space_inserted = true;
644                         } else {
645                                 continue;
646                         }
647                         // do not insert consecutive spaces if !free_spacing
648                 } else if ((*cit == ' ' || *cit == '\t') &&
649                            space_inserted && !par.isFreeSpacing()) {
650                         continue;
651                 } else if (*cit == '\t') {
652                         if (!par.isFreeSpacing()) {
653                                 // tabs are like spaces here
654                                 par.insertChar(pos, ' ', font, params().trackChanges);
655                                 ++pos;
656                                 space_inserted = true;
657                         } else {
658                                 par.insertChar(pos, *cit, font, params().trackChanges);
659                                 ++pos;
660                                 space_inserted = true;
661                         }
662                 } else if (!isPrintable(*cit)) {
663                         // Ignore unprintables
664                         continue;
665                 } else {
666                         // just insert the character
667                         par.insertChar(pos, *cit, font, params().trackChanges);
668                         ++pos;
669                         space_inserted = (*cit == ' ');
670                 }
671
672         }
673 }
674
675
676 bool Buffer::readString(string const & s)
677 {
678         params().compressed = false;
679
680         // remove dummy empty par
681         paragraphs().clear();
682         Lexer lex;
683         istringstream is(s);
684         lex.setStream(is);
685         FileName const name = FileName::tempName("Buffer_readString");
686         switch (readFile(lex, name, true)) {
687         case failure:
688                 return false;
689         case wrongversion: {
690                 // We need to call lyx2lyx, so write the input to a file
691                 ofstream os(name.toFilesystemEncoding().c_str());
692                 os << s;
693                 os.close();
694                 return readFile(name);
695         }
696         case success:
697                 break;
698         }
699
700         return true;
701 }
702
703
704 bool Buffer::readFile(FileName const & filename)
705 {
706         FileName fname(filename);
707
708         params().compressed = fname.isZippedFile();
709
710         // remove dummy empty par
711         paragraphs().clear();
712         Lexer lex;
713         lex.setFile(fname);
714         if (readFile(lex, fname) != success)
715                 return false;
716
717         return true;
718 }
719
720
721 bool Buffer::isFullyLoaded() const
722 {
723         return d->file_fully_loaded;
724 }
725
726
727 void Buffer::setFullyLoaded(bool value)
728 {
729         d->file_fully_loaded = value;
730 }
731
732
733 Buffer::ReadStatus Buffer::readFile(Lexer & lex, FileName const & filename,
734                 bool fromstring)
735 {
736         LASSERT(!filename.empty(), /**/);
737
738         // the first (non-comment) token _must_ be...
739         if (!lex.checkFor("\\lyxformat")) {
740                 Alert::error(_("Document format failure"),
741                              bformat(_("%1$s is not a readable LyX document."),
742                                        from_utf8(filename.absFilename())));
743                 return failure;
744         }
745
746         string tmp_format;
747         lex >> tmp_format;
748         //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
749         // if present remove ".," from string.
750         size_t dot = tmp_format.find_first_of(".,");
751         //lyxerr << "           dot found at " << dot << endl;
752         if (dot != string::npos)
753                         tmp_format.erase(dot, 1);
754         int const file_format = convert<int>(tmp_format);
755         //lyxerr << "format: " << file_format << endl;
756
757         // save timestamp and checksum of the original disk file, making sure
758         // to not overwrite them with those of the file created in the tempdir
759         // when it has to be converted to the current format.
760         if (!d->checksum_) {
761                 // Save the timestamp and checksum of disk file. If filename is an
762                 // emergency file, save the timestamp and checksum of the original lyx file
763                 // because isExternallyModified will check for this file. (BUG4193)
764                 string diskfile = filename.absFilename();
765                 if (suffixIs(diskfile, ".emergency"))
766                         diskfile = diskfile.substr(0, diskfile.size() - 10);
767                 saveCheckSum(FileName(diskfile));
768         }
769
770         if (file_format != LYX_FORMAT) {
771
772                 if (fromstring)
773                         // lyx2lyx would fail
774                         return wrongversion;
775
776                 FileName const tmpfile = FileName::tempName("Buffer_readFile");
777                 if (tmpfile.empty()) {
778                         Alert::error(_("Conversion failed"),
779                                      bformat(_("%1$s is from a different"
780                                               " version of LyX, but a temporary"
781                                               " file for converting it could"
782                                               " not be created."),
783                                               from_utf8(filename.absFilename())));
784                         return failure;
785                 }
786                 FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
787                 if (lyx2lyx.empty()) {
788                         Alert::error(_("Conversion script not found"),
789                                      bformat(_("%1$s is from a different"
790                                                " version of LyX, but the"
791                                                " conversion script lyx2lyx"
792                                                " could not be found."),
793                                                from_utf8(filename.absFilename())));
794                         return failure;
795                 }
796                 ostringstream command;
797                 command << os::python()
798                         << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
799                         << " -t " << convert<string>(LYX_FORMAT)
800                         << " -o " << quoteName(tmpfile.toFilesystemEncoding())
801                         << ' ' << quoteName(filename.toFilesystemEncoding());
802                 string const command_str = command.str();
803
804                 LYXERR(Debug::INFO, "Running '" << command_str << '\'');
805
806                 cmd_ret const ret = runCommand(command_str);
807                 if (ret.first != 0) {
808                         Alert::error(_("Conversion script failed"),
809                                      bformat(_("%1$s is from a different version"
810                                               " of LyX, but the lyx2lyx script"
811                                               " failed to convert it."),
812                                               from_utf8(filename.absFilename())));
813                         return failure;
814                 } else {
815                         bool const ret = readFile(tmpfile);
816                         // Do stuff with tmpfile name and buffer name here.
817                         return ret ? success : failure;
818                 }
819
820         }
821
822         if (readDocument(lex)) {
823                 Alert::error(_("Document format failure"),
824                              bformat(_("%1$s ended unexpectedly, which means"
825                                                     " that it is probably corrupted."),
826                                        from_utf8(filename.absFilename())));
827         }
828
829         d->file_fully_loaded = true;
830         return success;
831 }
832
833
834 // Should probably be moved to somewhere else: BufferView? LyXView?
835 bool Buffer::save() const
836 {
837         // We don't need autosaves in the immediate future. (Asger)
838         resetAutosaveTimers();
839
840         string const encodedFilename = d->filename.toFilesystemEncoding();
841
842         FileName backupName;
843         bool madeBackup = false;
844
845         // make a backup if the file already exists
846         if (lyxrc.make_backup && fileName().exists()) {
847                 backupName = FileName(absFileName() + '~');
848                 if (!lyxrc.backupdir_path.empty()) {
849                         string const mangledName =
850                                 subst(subst(backupName.absFilename(), '/', '!'), ':', '!');
851                         backupName = FileName(addName(lyxrc.backupdir_path,
852                                                       mangledName));
853                 }
854                 if (fileName().copyTo(backupName)) {
855                         madeBackup = true;
856                 } else {
857                         Alert::error(_("Backup failure"),
858                                      bformat(_("Cannot create backup file %1$s.\n"
859                                                "Please check whether the directory exists and is writeable."),
860                                              from_utf8(backupName.absFilename())));
861                         //LYXERR(Debug::DEBUG, "Fs error: " << fe.what());
862                 }
863         }
864
865         // ask if the disk file has been externally modified (use checksum method)
866         if (fileName().exists() && isExternallyModified(checksum_method)) {
867                 docstring const file = makeDisplayPath(absFileName(), 20);
868                 docstring text = bformat(_("Document %1$s has been externally modified. Are you sure "
869                                                              "you want to overwrite this file?"), file);
870                 int const ret = Alert::prompt(_("Overwrite modified file?"),
871                         text, 1, 1, _("&Overwrite"), _("&Cancel"));
872                 if (ret == 1)
873                         return false;
874         }
875
876         if (writeFile(d->filename)) {
877                 markClean();
878                 return true;
879         } else {
880                 // Saving failed, so backup is not backup
881                 if (madeBackup)
882                         backupName.moveTo(d->filename);
883                 return false;
884         }
885 }
886
887
888 bool Buffer::writeFile(FileName const & fname) const
889 {
890         if (d->read_only && fname == d->filename)
891                 return false;
892
893         bool retval = false;
894
895         docstring const str = bformat(_("Saving document %1$s..."),
896                 makeDisplayPath(fname.absFilename()));
897         message(str);
898
899         if (params().compressed) {
900                 gz::ogzstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
901                 retval = ofs && write(ofs);
902         } else {
903                 ofstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
904                 retval = ofs && write(ofs);
905         }
906
907         if (!retval) {
908                 message(str + _(" could not write file!"));
909                 return false;
910         }
911
912         removeAutosaveFile(d->filename.absFilename());
913
914         saveCheckSum(d->filename);
915         message(str + _(" done."));
916
917         return true;
918 }
919
920
921 bool Buffer::write(ostream & ofs) const
922 {
923 #ifdef HAVE_LOCALE
924         // Use the standard "C" locale for file output.
925         ofs.imbue(locale::classic());
926 #endif
927
928         // The top of the file should not be written by params().
929
930         // write out a comment in the top of the file
931         ofs << "#LyX " << lyx_version
932             << " created this file. For more info see http://www.lyx.org/\n"
933             << "\\lyxformat " << LYX_FORMAT << "\n"
934             << "\\begin_document\n";
935
936         /// For each author, set 'used' to true if there is a change
937         /// by this author in the document; otherwise set it to 'false'.
938         AuthorList::Authors::const_iterator a_it = params().authors().begin();
939         AuthorList::Authors::const_iterator a_end = params().authors().end();
940         for (; a_it != a_end; ++a_it)
941                 a_it->second.setUsed(false);
942
943         ParIterator const end = const_cast<Buffer *>(this)->par_iterator_end();
944         ParIterator it = const_cast<Buffer *>(this)->par_iterator_begin();
945         for ( ; it != end; ++it)
946                 it->checkAuthors(params().authors());
947
948         // now write out the buffer parameters.
949         ofs << "\\begin_header\n";
950         params().writeFile(ofs);
951         ofs << "\\end_header\n";
952
953         // write the text
954         ofs << "\n\\begin_body\n";
955         text().write(*this, ofs);
956         ofs << "\n\\end_body\n";
957
958         // Write marker that shows file is complete
959         ofs << "\\end_document" << endl;
960
961         // Shouldn't really be needed....
962         //ofs.close();
963
964         // how to check if close went ok?
965         // Following is an attempt... (BE 20001011)
966
967         // good() returns false if any error occured, including some
968         //        formatting error.
969         // bad()  returns true if something bad happened in the buffer,
970         //        which should include file system full errors.
971
972         bool status = true;
973         if (!ofs) {
974                 status = false;
975                 lyxerr << "File was not closed properly." << endl;
976         }
977
978         return status;
979 }
980
981
982 bool Buffer::makeLaTeXFile(FileName const & fname,
983                            string const & original_path,
984                            OutputParams const & runparams,
985                            bool output_preamble, bool output_body) const
986 {
987         string const encoding = runparams.encoding->iconvName();
988         LYXERR(Debug::LATEX, "makeLaTeXFile encoding: " << encoding << "...");
989
990         ofdocstream ofs;
991         try { ofs.reset(encoding); }
992         catch (iconv_codecvt_facet_exception & e) {
993                 lyxerr << "Caught iconv exception: " << e.what() << endl;
994                 Alert::error(_("Iconv software exception Detected"), bformat(_("Please "
995                         "verify that the support software for your encoding (%1$s) is "
996                         "properly installed"), from_ascii(encoding)));
997                 return false;
998         }
999         if (!openFileWrite(ofs, fname))
1000                 return false;
1001
1002         //TexStream ts(ofs.rdbuf(), &texrow());
1003         ErrorList & errorList = d->errorLists["Export"];
1004         errorList.clear();
1005         bool failed_export = false;
1006         try {
1007                 d->texrow.reset();
1008                 writeLaTeXSource(ofs, original_path,
1009                       runparams, output_preamble, output_body);
1010         }
1011         catch (EncodingException & e) {
1012                 odocstringstream ods;
1013                 ods.put(e.failed_char);
1014                 ostringstream oss;
1015                 oss << "0x" << hex << e.failed_char << dec;
1016                 docstring msg = bformat(_("Could not find LaTeX command for character '%1$s'"
1017                                           " (code point %2$s)"),
1018                                           ods.str(), from_utf8(oss.str()));
1019                 errorList.push_back(ErrorItem(msg, _("Some characters of your document are probably not "
1020                                 "representable in the chosen encoding.\n"
1021                                 "Changing the document encoding to utf8 could help."),
1022                                 e.par_id, e.pos, e.pos + 1));
1023                 failed_export = true;
1024         }
1025         catch (iconv_codecvt_facet_exception & e) {
1026                 errorList.push_back(ErrorItem(_("iconv conversion failed"),
1027                         _(e.what()), -1, 0, 0));
1028                 failed_export = true;
1029         }
1030         catch (exception const & e) {
1031                 errorList.push_back(ErrorItem(_("conversion failed"),
1032                         _(e.what()), -1, 0, 0));
1033                 failed_export = true;
1034         }
1035         catch (...) {
1036                 lyxerr << "Caught some really weird exception..." << endl;
1037                 lyx_exit(1);
1038         }
1039
1040         ofs.close();
1041         if (ofs.fail()) {
1042                 failed_export = true;
1043                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1044         }
1045
1046         errors("Export");
1047         return !failed_export;
1048 }
1049
1050
1051 void Buffer::writeLaTeXSource(odocstream & os,
1052                            string const & original_path,
1053                            OutputParams const & runparams_in,
1054                            bool const output_preamble, bool const output_body) const
1055 {
1056         // The child documents, if any, shall be already loaded at this point.
1057
1058         OutputParams runparams = runparams_in;
1059
1060         // Classify the unicode characters appearing in math insets
1061         Encodings::initUnicodeMath(*this);
1062
1063         // validate the buffer.
1064         LYXERR(Debug::LATEX, "  Validating buffer...");
1065         LaTeXFeatures features(*this, params(), runparams);
1066         validate(features);
1067         LYXERR(Debug::LATEX, "  Buffer validation done.");
1068
1069         // The starting paragraph of the coming rows is the
1070         // first paragraph of the document. (Asger)
1071         if (output_preamble && runparams.nice) {
1072                 os << "%% LyX " << lyx_version << " created this file.  "
1073                         "For more info, see http://www.lyx.org/.\n"
1074                         "%% Do not edit unless you really know what "
1075                         "you are doing.\n";
1076                 d->texrow.newline();
1077                 d->texrow.newline();
1078         }
1079         LYXERR(Debug::INFO, "lyx document header finished");
1080
1081         // Don't move this behind the parent_buffer=0 code below,
1082         // because then the macros will not get the right "redefinition"
1083         // flag as they don't see the parent macros which are output before.
1084         updateMacros();
1085
1086         // fold macros if possible, still with parent buffer as the
1087         // macros will be put in the prefix anyway.
1088         updateMacroInstances();
1089
1090         // There are a few differences between nice LaTeX and usual files:
1091         // usual is \batchmode and has a
1092         // special input@path to allow the including of figures
1093         // with either \input or \includegraphics (what figinsets do).
1094         // input@path is set when the actual parameter
1095         // original_path is set. This is done for usual tex-file, but not
1096         // for nice-latex-file. (Matthias 250696)
1097         // Note that input@path is only needed for something the user does
1098         // in the preamble, included .tex files or ERT, files included by
1099         // LyX work without it.
1100         if (output_preamble) {
1101                 if (!runparams.nice) {
1102                         // code for usual, NOT nice-latex-file
1103                         os << "\\batchmode\n"; // changed
1104                         // from \nonstopmode
1105                         d->texrow.newline();
1106                 }
1107                 if (!original_path.empty()) {
1108                         // FIXME UNICODE
1109                         // We don't know the encoding of inputpath
1110                         docstring const inputpath = from_utf8(latex_path(original_path));
1111                         os << "\\makeatletter\n"
1112                            << "\\def\\input@path{{"
1113                            << inputpath << "/}}\n"
1114                            << "\\makeatother\n";
1115                         d->texrow.newline();
1116                         d->texrow.newline();
1117                         d->texrow.newline();
1118                 }
1119
1120                 // get parent macros (if this buffer has a parent) which will be
1121                 // written at the document begin further down.
1122                 MacroSet parentMacros;
1123                 listParentMacros(parentMacros, features);
1124
1125                 // Write the preamble
1126                 runparams.use_babel = params().writeLaTeX(os, features, d->texrow);
1127
1128                 runparams.use_japanese = features.isRequired("japanese");
1129
1130                 if (!output_body)
1131                         return;
1132
1133                 // make the body.
1134                 os << "\\begin{document}\n";
1135                 d->texrow.newline();
1136
1137                 // output the parent macros
1138                 MacroSet::iterator it = parentMacros.begin();
1139                 MacroSet::iterator end = parentMacros.end();
1140                 for (; it != end; ++it)
1141                         (*it)->write(os, true);
1142         } // output_preamble
1143
1144         d->texrow.start(paragraphs().begin()->id(), 0);
1145
1146         LYXERR(Debug::INFO, "preamble finished, now the body.");
1147
1148         // if we are doing a real file with body, even if this is the
1149         // child of some other buffer, let's cut the link here.
1150         // This happens for example if only a child document is printed.
1151         Buffer const * save_parent = 0;
1152         if (output_preamble) {
1153                 save_parent = d->parent_buffer;
1154                 d->parent_buffer = 0;
1155         }
1156
1157         // the real stuff
1158         latexParagraphs(*this, text(), os, d->texrow, runparams);
1159
1160         // Restore the parenthood if needed
1161         if (output_preamble)
1162                 d->parent_buffer = save_parent;
1163
1164         // add this just in case after all the paragraphs
1165         os << endl;
1166         d->texrow.newline();
1167
1168         if (output_preamble) {
1169                 os << "\\end{document}\n";
1170                 d->texrow.newline();
1171                 LYXERR(Debug::LATEX, "makeLaTeXFile...done");
1172         } else {
1173                 LYXERR(Debug::LATEX, "LaTeXFile for inclusion made.");
1174         }
1175         runparams_in.encoding = runparams.encoding;
1176
1177         // Just to be sure. (Asger)
1178         d->texrow.newline();
1179
1180         LYXERR(Debug::INFO, "Finished making LaTeX file.");
1181         LYXERR(Debug::INFO, "Row count was " << d->texrow.rows() - 1 << '.');
1182 }
1183
1184
1185 bool Buffer::isLatex() const
1186 {
1187         return params().documentClass().outputType() == LATEX;
1188 }
1189
1190
1191 bool Buffer::isLiterate() const
1192 {
1193         return params().documentClass().outputType() == LITERATE;
1194 }
1195
1196
1197 bool Buffer::isDocBook() const
1198 {
1199         return params().documentClass().outputType() == DOCBOOK;
1200 }
1201
1202
1203 void Buffer::makeDocBookFile(FileName const & fname,
1204                               OutputParams const & runparams,
1205                               bool const body_only) const
1206 {
1207         LYXERR(Debug::LATEX, "makeDocBookFile...");
1208
1209         ofdocstream ofs;
1210         if (!openFileWrite(ofs, fname))
1211                 return;
1212
1213         writeDocBookSource(ofs, fname.absFilename(), runparams, body_only);
1214
1215         ofs.close();
1216         if (ofs.fail())
1217                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1218 }
1219
1220
1221 void Buffer::writeDocBookSource(odocstream & os, string const & fname,
1222                              OutputParams const & runparams,
1223                              bool const only_body) const
1224 {
1225         LaTeXFeatures features(*this, params(), runparams);
1226         validate(features);
1227
1228         d->texrow.reset();
1229
1230         DocumentClass const & tclass = params().documentClass();
1231         string const top_element = tclass.latexname();
1232
1233         if (!only_body) {
1234                 if (runparams.flavor == OutputParams::XML)
1235                         os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
1236
1237                 // FIXME UNICODE
1238                 os << "<!DOCTYPE " << from_ascii(top_element) << ' ';
1239
1240                 // FIXME UNICODE
1241                 if (! tclass.class_header().empty())
1242                         os << from_ascii(tclass.class_header());
1243                 else if (runparams.flavor == OutputParams::XML)
1244                         os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
1245                             << "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
1246                 else
1247                         os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
1248
1249                 docstring preamble = from_utf8(params().preamble);
1250                 if (runparams.flavor != OutputParams::XML ) {
1251                         preamble += "<!ENTITY % output.print.png \"IGNORE\">\n";
1252                         preamble += "<!ENTITY % output.print.pdf \"IGNORE\">\n";
1253                         preamble += "<!ENTITY % output.print.eps \"IGNORE\">\n";
1254                         preamble += "<!ENTITY % output.print.bmp \"IGNORE\">\n";
1255                 }
1256
1257                 string const name = runparams.nice
1258                         ? changeExtension(absFileName(), ".sgml") : fname;
1259                 preamble += features.getIncludedFiles(name);
1260                 preamble += features.getLyXSGMLEntities();
1261
1262                 if (!preamble.empty()) {
1263                         os << "\n [ " << preamble << " ]";
1264                 }
1265                 os << ">\n\n";
1266         }
1267
1268         string top = top_element;
1269         top += " lang=\"";
1270         if (runparams.flavor == OutputParams::XML)
1271                 top += params().language->code();
1272         else
1273                 top += params().language->code().substr(0, 2);
1274         top += '"';
1275
1276         if (!params().options.empty()) {
1277                 top += ' ';
1278                 top += params().options;
1279         }
1280
1281         os << "<!-- " << ((runparams.flavor == OutputParams::XML)? "XML" : "SGML")
1282             << " file was created by LyX " << lyx_version
1283             << "\n  See http://www.lyx.org/ for more information -->\n";
1284
1285         params().documentClass().counters().reset();
1286
1287         updateMacros();
1288
1289         sgml::openTag(os, top);
1290         os << '\n';
1291         docbookParagraphs(paragraphs(), *this, os, runparams);
1292         sgml::closeTag(os, top_element);
1293 }
1294
1295
1296 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1297 // Other flags: -wall -v0 -x
1298 int Buffer::runChktex()
1299 {
1300         setBusy(true);
1301
1302         // get LaTeX-Filename
1303         FileName const path(temppath());
1304         string const name = addName(path.absFilename(), latexName());
1305         string const org_path = filePath();
1306
1307         PathChanger p(path); // path to LaTeX file
1308         message(_("Running chktex..."));
1309
1310         // Generate the LaTeX file if neccessary
1311         OutputParams runparams(&params().encoding());
1312         runparams.flavor = OutputParams::LATEX;
1313         runparams.nice = false;
1314         makeLaTeXFile(FileName(name), org_path, runparams);
1315
1316         TeXErrors terr;
1317         Chktex chktex(lyxrc.chktex_command, onlyFilename(name), filePath());
1318         int const res = chktex.run(terr); // run chktex
1319
1320         if (res == -1) {
1321                 Alert::error(_("chktex failure"),
1322                              _("Could not run chktex successfully."));
1323         } else if (res > 0) {
1324                 ErrorList & errlist = d->errorLists["ChkTeX"];
1325                 errlist.clear();
1326                 bufferErrors(terr, errlist);
1327         }
1328
1329         setBusy(false);
1330
1331         errors("ChkTeX");
1332
1333         return res;
1334 }
1335
1336
1337 void Buffer::validate(LaTeXFeatures & features) const
1338 {
1339         params().validate(features);
1340
1341         updateMacros();
1342
1343         for_each(paragraphs().begin(), paragraphs().end(),
1344                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
1345
1346         if (lyxerr.debugging(Debug::LATEX)) {
1347                 features.showStruct();
1348         }
1349 }
1350
1351
1352 void Buffer::getLabelList(vector<docstring> & list) const
1353 {
1354         // If this is a child document, use the parent's list instead.
1355         if (d->parent_buffer) {
1356                 d->parent_buffer->getLabelList(list);
1357                 return;
1358         }
1359
1360         list.clear();
1361         Toc & toc = d->toc_backend.toc("label");
1362         TocIterator toc_it = toc.begin();
1363         TocIterator end = toc.end();
1364         for (; toc_it != end; ++toc_it) {
1365                 if (toc_it->depth() == 0)
1366                         list.push_back(toc_it->str());
1367         }
1368 }
1369
1370
1371 void Buffer::updateBibfilesCache(UpdateScope scope) const
1372 {
1373         // If this is a child document, use the parent's cache instead.
1374         if (d->parent_buffer && scope != UpdateChildOnly) {
1375                 d->parent_buffer->updateBibfilesCache();
1376                 return;
1377         }
1378
1379         d->bibfilesCache_.clear();
1380         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1381                 if (it->lyxCode() == BIBTEX_CODE) {
1382                         InsetBibtex const & inset =
1383                                 static_cast<InsetBibtex const &>(*it);
1384                         support::FileNameList const bibfiles = inset.getBibFiles();
1385                         d->bibfilesCache_.insert(d->bibfilesCache_.end(),
1386                                 bibfiles.begin(),
1387                                 bibfiles.end());
1388                 } else if (it->lyxCode() == INCLUDE_CODE) {
1389                         InsetInclude & inset =
1390                                 static_cast<InsetInclude &>(*it);
1391                         inset.updateBibfilesCache();
1392                         support::FileNameList const & bibfiles =
1393                                         inset.getBibfilesCache();
1394                         d->bibfilesCache_.insert(d->bibfilesCache_.end(),
1395                                 bibfiles.begin(),
1396                                 bibfiles.end());
1397                 }
1398         }
1399         // the bibinfo cache is now invalid
1400         d->bibinfoCacheValid_ = false;
1401 }
1402
1403
1404 void Buffer::invalidateBibinfoCache()
1405 {
1406         d->bibinfoCacheValid_ = false;
1407 }
1408
1409
1410 support::FileNameList const & Buffer::getBibfilesCache(UpdateScope scope) const
1411 {
1412         // If this is a child document, use the parent's cache instead.
1413         if (d->parent_buffer && scope != UpdateChildOnly)
1414                 return d->parent_buffer->getBibfilesCache();
1415
1416         // We update the cache when first used instead of at loading time.
1417         if (d->bibfilesCache_.empty())
1418                 const_cast<Buffer *>(this)->updateBibfilesCache(scope);
1419
1420         return d->bibfilesCache_;
1421 }
1422
1423
1424 BiblioInfo const & Buffer::masterBibInfo() const
1425 {
1426         // if this is a child document and the parent is already loaded
1427         // use the parent's list instead  [ale990412]
1428         Buffer const * const tmp = masterBuffer();
1429         LASSERT(tmp, /**/);
1430         if (tmp != this)
1431                 return tmp->masterBibInfo();
1432         return localBibInfo();
1433 }
1434
1435
1436 BiblioInfo const & Buffer::localBibInfo() const
1437 {
1438         if (d->bibinfoCacheValid_) {
1439                 support::FileNameList const & bibfilesCache = getBibfilesCache();
1440                 // compare the cached timestamps with the actual ones.
1441                 support::FileNameList::const_iterator ei = bibfilesCache.begin();
1442                 support::FileNameList::const_iterator en = bibfilesCache.end();
1443                 for (; ei != en; ++ ei) {
1444                         time_t lastw = ei->lastModified();
1445                         if (lastw != d->bibfileStatus_[*ei]) {
1446                                 d->bibinfoCacheValid_ = false;
1447                                 d->bibfileStatus_[*ei] = lastw;
1448                                 break;
1449                         }
1450                 }
1451         }
1452
1453         if (!d->bibinfoCacheValid_) {
1454                 d->bibinfo_.clear();
1455                 for (InsetIterator it = inset_iterator_begin(inset()); it; ++it)
1456                         it->fillWithBibKeys(d->bibinfo_, it);
1457                 d->bibinfoCacheValid_ = true;
1458         }
1459         return d->bibinfo_;
1460 }
1461
1462
1463 bool Buffer::isDepClean(string const & name) const
1464 {
1465         DepClean::const_iterator const it = d->dep_clean.find(name);
1466         if (it == d->dep_clean.end())
1467                 return true;
1468         return it->second;
1469 }
1470
1471
1472 void Buffer::markDepClean(string const & name)
1473 {
1474         d->dep_clean[name] = true;
1475 }
1476
1477
1478 bool Buffer::dispatch(string const & command, bool * result)
1479 {
1480         return dispatch(lyxaction.lookupFunc(command), result);
1481 }
1482
1483
1484 bool Buffer::dispatch(FuncRequest const & func, bool * result)
1485 {
1486         bool dispatched = true;
1487
1488         switch (func.action) {
1489                 case LFUN_BUFFER_EXPORT: {
1490                         bool const tmp = doExport(to_utf8(func.argument()), false);
1491                         if (result)
1492                                 *result = tmp;
1493                         break;
1494                 }
1495
1496                 case LFUN_BRANCH_ACTIVATE:
1497                 case LFUN_BRANCH_DEACTIVATE: {
1498                         BranchList & branchList = params().branchlist();
1499                         docstring const branchName = func.argument();
1500                         Branch * branch = branchList.find(branchName);
1501                         if (!branch)
1502                                 LYXERR0("Branch " << branchName << " does not exist.");
1503                         else
1504                                 branch->setSelected(func.action == LFUN_BRANCH_ACTIVATE);
1505                         if (result)
1506                                 *result = true;
1507                 }
1508
1509                 default:
1510                         dispatched = false;
1511         }
1512         return dispatched;
1513 }
1514
1515
1516 void Buffer::changeLanguage(Language const * from, Language const * to)
1517 {
1518         LASSERT(from, /**/);
1519         LASSERT(to, /**/);
1520
1521         for_each(par_iterator_begin(),
1522                  par_iterator_end(),
1523                  bind(&Paragraph::changeLanguage, _1, params(), from, to));
1524 }
1525
1526
1527 bool Buffer::isMultiLingual() const
1528 {
1529         ParConstIterator end = par_iterator_end();
1530         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
1531                 if (it->isMultiLingual(params()))
1532                         return true;
1533
1534         return false;
1535 }
1536
1537
1538 DocIterator Buffer::getParFromID(int const id) const
1539 {
1540         Buffer * buf = const_cast<Buffer *>(this);
1541         if (id < 0) {
1542                 // John says this is called with id == -1 from undo
1543                 lyxerr << "getParFromID(), id: " << id << endl;
1544                 return doc_iterator_end(buf);
1545         }
1546
1547         for (DocIterator it = doc_iterator_begin(buf); !it.atEnd(); it.forwardPar())
1548                 if (it.paragraph().id() == id)
1549                         return it;
1550
1551         return doc_iterator_end(buf);
1552 }
1553
1554
1555 bool Buffer::hasParWithID(int const id) const
1556 {
1557         return !getParFromID(id).atEnd();
1558 }
1559
1560
1561 ParIterator Buffer::par_iterator_begin()
1562 {
1563         return ParIterator(doc_iterator_begin(this));
1564 }
1565
1566
1567 ParIterator Buffer::par_iterator_end()
1568 {
1569         return ParIterator(doc_iterator_end(this));
1570 }
1571
1572
1573 ParConstIterator Buffer::par_iterator_begin() const
1574 {
1575         return ParConstIterator(doc_iterator_begin(this));
1576 }
1577
1578
1579 ParConstIterator Buffer::par_iterator_end() const
1580 {
1581         return ParConstIterator(doc_iterator_end(this));
1582 }
1583
1584
1585 Language const * Buffer::language() const
1586 {
1587         return params().language;
1588 }
1589
1590
1591 docstring const Buffer::B_(string const & l10n) const
1592 {
1593         return params().B_(l10n);
1594 }
1595
1596
1597 bool Buffer::isClean() const
1598 {
1599         return d->lyx_clean;
1600 }
1601
1602
1603 bool Buffer::isBakClean() const
1604 {
1605         return d->bak_clean;
1606 }
1607
1608
1609 bool Buffer::isExternallyModified(CheckMethod method) const
1610 {
1611         LASSERT(d->filename.exists(), /**/);
1612         // if method == timestamp, check timestamp before checksum
1613         return (method == checksum_method
1614                 || d->timestamp_ != d->filename.lastModified())
1615                 && d->checksum_ != d->filename.checksum();
1616 }
1617
1618
1619 void Buffer::saveCheckSum(FileName const & file) const
1620 {
1621         if (file.exists()) {
1622                 d->timestamp_ = file.lastModified();
1623                 d->checksum_ = file.checksum();
1624         } else {
1625                 // in the case of save to a new file.
1626                 d->timestamp_ = 0;
1627                 d->checksum_ = 0;
1628         }
1629 }
1630
1631
1632 void Buffer::markClean() const
1633 {
1634         if (!d->lyx_clean) {
1635                 d->lyx_clean = true;
1636                 updateTitles();
1637         }
1638         // if the .lyx file has been saved, we don't need an
1639         // autosave
1640         d->bak_clean = true;
1641 }
1642
1643
1644 void Buffer::markBakClean() const
1645 {
1646         d->bak_clean = true;
1647 }
1648
1649
1650 void Buffer::setUnnamed(bool flag)
1651 {
1652         d->unnamed = flag;
1653 }
1654
1655
1656 bool Buffer::isUnnamed() const
1657 {
1658         return d->unnamed;
1659 }
1660
1661
1662 // FIXME: this function should be moved to buffer_pimpl.C
1663 void Buffer::markDirty()
1664 {
1665         if (d->lyx_clean) {
1666                 d->lyx_clean = false;
1667                 updateTitles();
1668         }
1669         d->bak_clean = false;
1670
1671         DepClean::iterator it = d->dep_clean.begin();
1672         DepClean::const_iterator const end = d->dep_clean.end();
1673
1674         for (; it != end; ++it)
1675                 it->second = false;
1676 }
1677
1678
1679 FileName Buffer::fileName() const
1680 {
1681         return d->filename;
1682 }
1683
1684
1685 string Buffer::absFileName() const
1686 {
1687         return d->filename.absFilename();
1688 }
1689
1690
1691 string Buffer::filePath() const
1692 {
1693         return d->filename.onlyPath().absFilename() + "/";
1694 }
1695
1696
1697 bool Buffer::isReadonly() const
1698 {
1699         return d->read_only;
1700 }
1701
1702
1703 void Buffer::setParent(Buffer const * buffer)
1704 {
1705         // Avoids recursive include.
1706         d->parent_buffer = buffer == this ? 0 : buffer;
1707         updateMacros();
1708 }
1709
1710
1711 Buffer const * Buffer::parent() const
1712 {
1713         return d->parent_buffer;
1714 }
1715
1716
1717 void Buffer::collectRelatives(BufferSet & bufs) const
1718 {
1719         bufs.insert(this);
1720         if (parent())
1721                 parent()->collectRelatives(bufs);
1722
1723         // loop over children
1724         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
1725         Impl::BufferPositionMap::iterator end = d->children_positions.end();
1726         for (; it != end; ++it)
1727                 bufs.insert(const_cast<Buffer *>(it->first));
1728 }
1729
1730
1731 std::vector<Buffer const *> Buffer::allRelatives() const
1732 {
1733         BufferSet bufs;
1734         collectRelatives(bufs);
1735         BufferSet::iterator it = bufs.begin();
1736         std::vector<Buffer const *> ret;
1737         for (; it != bufs.end(); ++it)
1738                 ret.push_back(*it);
1739         return ret;
1740 }
1741
1742
1743 Buffer const * Buffer::masterBuffer() const
1744 {
1745         if (!d->parent_buffer)
1746                 return this;
1747
1748         return d->parent_buffer->masterBuffer();
1749 }
1750
1751
1752 bool Buffer::isChild(Buffer * child) const
1753 {
1754         return d->children_positions.find(child) != d->children_positions.end();
1755 }
1756
1757
1758 DocIterator Buffer::firstChildPosition(Buffer const * child)
1759 {
1760         Impl::BufferPositionMap::iterator it;
1761         it = d->children_positions.find(child);
1762         if (it == d->children_positions.end())
1763                 return DocIterator(this);
1764         return it->second;
1765 }
1766
1767
1768 std::vector<Buffer *> Buffer::getChildren() const
1769 {
1770         std::vector<Buffer *> clist;
1771         // loop over children
1772         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
1773         Impl::BufferPositionMap::iterator end = d->children_positions.end();
1774         for (; it != end; ++it) {
1775                 Buffer * child = const_cast<Buffer *>(it->first);
1776                 clist.push_back(child);
1777                 // there might be grandchildren
1778                 std::vector<Buffer *> glist = child->getChildren();
1779                 for (vector<Buffer *>::const_iterator git = glist.begin();
1780                      git != glist.end(); ++git)
1781                         clist.push_back(*git);
1782         }
1783         return clist;
1784 }
1785
1786
1787 template<typename M>
1788 typename M::iterator greatest_below(M & m, typename M::key_type const & x)
1789 {
1790         if (m.empty())
1791                 return m.end();
1792
1793         typename M::iterator it = m.lower_bound(x);
1794         if (it == m.begin())
1795                 return m.end();
1796
1797         it--;
1798         return it;
1799 }
1800
1801
1802 MacroData const * Buffer::getBufferMacro(docstring const & name,
1803                                          DocIterator const & pos) const
1804 {
1805         LYXERR(Debug::MACROS, "Searching for " << to_ascii(name) << " at " << pos);
1806
1807         // if paragraphs have no macro context set, pos will be empty
1808         if (pos.empty())
1809                 return 0;
1810
1811         // we haven't found anything yet
1812         DocIterator bestPos = par_iterator_begin();
1813         MacroData const * bestData = 0;
1814
1815         // find macro definitions for name
1816         Impl::NamePositionScopeMacroMap::iterator nameIt
1817                 = d->macros.find(name);
1818         if (nameIt != d->macros.end()) {
1819                 // find last definition in front of pos or at pos itself
1820                 Impl::PositionScopeMacroMap::const_iterator it
1821                         = greatest_below(nameIt->second, pos);
1822                 if (it != nameIt->second.end()) {
1823                         while (true) {
1824                                 // scope ends behind pos?
1825                                 if (pos < it->second.first) {
1826                                         // Looks good, remember this. If there
1827                                         // is no external macro behind this,
1828                                         // we found the right one already.
1829                                         bestPos = it->first;
1830                                         bestData = &it->second.second;
1831                                         break;
1832                                 }
1833
1834                                 // try previous macro if there is one
1835                                 if (it == nameIt->second.begin())
1836                                         break;
1837                                 it--;
1838                         }
1839                 }
1840         }
1841
1842         // find macros in included files
1843         Impl::PositionScopeBufferMap::const_iterator it
1844                 = greatest_below(d->position_to_children, pos);
1845         if (it == d->position_to_children.end())
1846                 // no children before
1847                 return bestData;
1848
1849         while (true) {
1850                 // do we know something better (i.e. later) already?
1851                 if (it->first < bestPos )
1852                         break;
1853
1854                 // scope ends behind pos?
1855                 if (pos < it->second.first) {
1856                         // look for macro in external file
1857                         d->macro_lock = true;
1858                         MacroData const * data
1859                         = it->second.second->getMacro(name, false);
1860                         d->macro_lock = false;
1861                         if (data) {
1862                                 bestPos = it->first;
1863                                 bestData = data;
1864                                 break;
1865                         }
1866                 }
1867
1868                 // try previous file if there is one
1869                 if (it == d->position_to_children.begin())
1870                         break;
1871                 --it;
1872         }
1873
1874         // return the best macro we have found
1875         return bestData;
1876 }
1877
1878
1879 MacroData const * Buffer::getMacro(docstring const & name,
1880         DocIterator const & pos, bool global) const
1881 {
1882         if (d->macro_lock)
1883                 return 0;
1884
1885         // query buffer macros
1886         MacroData const * data = getBufferMacro(name, pos);
1887         if (data != 0)
1888                 return data;
1889
1890         // If there is a master buffer, query that
1891         if (d->parent_buffer) {
1892                 d->macro_lock = true;
1893                 MacroData const * macro = d->parent_buffer->getMacro(
1894                         name, *this, false);
1895                 d->macro_lock = false;
1896                 if (macro)
1897                         return macro;
1898         }
1899
1900         if (global) {
1901                 data = MacroTable::globalMacros().get(name);
1902                 if (data != 0)
1903                         return data;
1904         }
1905
1906         return 0;
1907 }
1908
1909
1910 MacroData const * Buffer::getMacro(docstring const & name, bool global) const
1911 {
1912         // set scope end behind the last paragraph
1913         DocIterator scope = par_iterator_begin();
1914         scope.pit() = scope.lastpit() + 1;
1915
1916         return getMacro(name, scope, global);
1917 }
1918
1919
1920 MacroData const * Buffer::getMacro(docstring const & name,
1921         Buffer const & child, bool global) const
1922 {
1923         // look where the child buffer is included first
1924         Impl::BufferPositionMap::iterator it = d->children_positions.find(&child);
1925         if (it == d->children_positions.end())
1926                 return 0;
1927
1928         // check for macros at the inclusion position
1929         return getMacro(name, it->second, global);
1930 }
1931
1932
1933 void Buffer::updateMacros(DocIterator & it, DocIterator & scope) const
1934 {
1935         pit_type lastpit = it.lastpit();
1936
1937         // look for macros in each paragraph
1938         while (it.pit() <= lastpit) {
1939                 Paragraph & par = it.paragraph();
1940
1941                 // iterate over the insets of the current paragraph
1942                 InsetList const & insets = par.insetList();
1943                 InsetList::const_iterator iit = insets.begin();
1944                 InsetList::const_iterator end = insets.end();
1945                 for (; iit != end; ++iit) {
1946                         it.pos() = iit->pos;
1947
1948                         // is it a nested text inset?
1949                         if (iit->inset->asInsetText()) {
1950                                 // Inset needs its own scope?
1951                                 InsetText const * itext = iit->inset->asInsetText();
1952                                 bool newScope = itext->isMacroScope();
1953
1954                                 // scope which ends just behind the inset
1955                                 DocIterator insetScope = it;
1956                                 ++insetScope.pos();
1957
1958                                 // collect macros in inset
1959                                 it.push_back(CursorSlice(*iit->inset));
1960                                 updateMacros(it, newScope ? insetScope : scope);
1961                                 it.pop_back();
1962                                 continue;
1963                         }
1964
1965                         // is it an external file?
1966                         if (iit->inset->lyxCode() == INCLUDE_CODE) {
1967                                 // get buffer of external file
1968                                 InsetInclude const & inset =
1969                                         static_cast<InsetInclude const &>(*iit->inset);
1970                                 d->macro_lock = true;
1971                                 Buffer * child = inset.getChildBuffer();
1972                                 d->macro_lock = false;
1973                                 if (!child)
1974                                         continue;
1975
1976                                 // register its position, but only when it is
1977                                 // included first in the buffer
1978                                 if (d->children_positions.find(child) ==
1979                                         d->children_positions.end())
1980                                                 d->children_positions[child] = it;
1981
1982                                 // register child with its scope
1983                                 d->position_to_children[it] = Impl::ScopeBuffer(scope, child);
1984                                 continue;
1985                         }
1986
1987                         if (iit->inset->lyxCode() != MATHMACRO_CODE)
1988                                 continue;
1989
1990                         // get macro data
1991                         MathMacroTemplate & macroTemplate =
1992                                 static_cast<MathMacroTemplate &>(*iit->inset);
1993                         MacroContext mc(*this, it);
1994                         macroTemplate.updateToContext(mc);
1995
1996                         // valid?
1997                         bool valid = macroTemplate.validMacro();
1998                         // FIXME: Should be fixNameAndCheckIfValid() in fact,
1999                         // then the BufferView's cursor will be invalid in
2000                         // some cases which leads to crashes.
2001                         if (!valid)
2002                                 continue;
2003
2004                         // register macro
2005                         d->macros[macroTemplate.name()][it] =
2006                                 Impl::ScopeMacro(scope, MacroData(*this, it));
2007                 }
2008
2009                 // next paragraph
2010                 it.pit()++;
2011                 it.pos() = 0;
2012         }
2013 }
2014
2015
2016 void Buffer::updateMacros() const
2017 {
2018         if (d->macro_lock)
2019                 return;
2020
2021         LYXERR(Debug::MACROS, "updateMacro of " << d->filename.onlyFileName());
2022
2023         // start with empty table
2024         d->macros.clear();
2025         d->children_positions.clear();
2026         d->position_to_children.clear();
2027
2028         // Iterate over buffer, starting with first paragraph
2029         // The scope must be bigger than any lookup DocIterator
2030         // later. For the global lookup, lastpit+1 is used, hence
2031         // we use lastpit+2 here.
2032         DocIterator it = par_iterator_begin();
2033         DocIterator outerScope = it;
2034         outerScope.pit() = outerScope.lastpit() + 2;
2035         updateMacros(it, outerScope);
2036 }
2037
2038
2039 void Buffer::updateMacroInstances() const
2040 {
2041         LYXERR(Debug::MACROS, "updateMacroInstances for "
2042                 << d->filename.onlyFileName());
2043         DocIterator it = doc_iterator_begin(this);
2044         DocIterator end = doc_iterator_end(this);
2045         for (; it != end; it.forwardPos()) {
2046                 // look for MathData cells in InsetMathNest insets
2047                 Inset * inset = it.nextInset();
2048                 if (!inset)
2049                         continue;
2050
2051                 InsetMath * minset = inset->asInsetMath();
2052                 if (!minset)
2053                         continue;
2054
2055                 // update macro in all cells of the InsetMathNest
2056                 DocIterator::idx_type n = minset->nargs();
2057                 MacroContext mc = MacroContext(*this, it);
2058                 for (DocIterator::idx_type i = 0; i < n; ++i) {
2059                         MathData & data = minset->cell(i);
2060                         data.updateMacros(0, mc);
2061                 }
2062         }
2063 }
2064
2065
2066 void Buffer::listMacroNames(MacroNameSet & macros) const
2067 {
2068         if (d->macro_lock)
2069                 return;
2070
2071         d->macro_lock = true;
2072
2073         // loop over macro names
2074         Impl::NamePositionScopeMacroMap::iterator nameIt = d->macros.begin();
2075         Impl::NamePositionScopeMacroMap::iterator nameEnd = d->macros.end();
2076         for (; nameIt != nameEnd; ++nameIt)
2077                 macros.insert(nameIt->first);
2078
2079         // loop over children
2080         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2081         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2082         for (; it != end; ++it)
2083                 it->first->listMacroNames(macros);
2084
2085         // call parent
2086         if (d->parent_buffer)
2087                 d->parent_buffer->listMacroNames(macros);
2088
2089         d->macro_lock = false;
2090 }
2091
2092
2093 void Buffer::listParentMacros(MacroSet & macros, LaTeXFeatures & features) const
2094 {
2095         if (!d->parent_buffer)
2096                 return;
2097
2098         MacroNameSet names;
2099         d->parent_buffer->listMacroNames(names);
2100
2101         // resolve macros
2102         MacroNameSet::iterator it = names.begin();
2103         MacroNameSet::iterator end = names.end();
2104         for (; it != end; ++it) {
2105                 // defined?
2106                 MacroData const * data =
2107                 d->parent_buffer->getMacro(*it, *this, false);
2108                 if (data) {
2109                         macros.insert(data);
2110
2111                         // we cannot access the original MathMacroTemplate anymore
2112                         // here to calls validate method. So we do its work here manually.
2113                         // FIXME: somehow make the template accessible here.
2114                         if (data->optionals() > 0)
2115                                 features.require("xargs");
2116                 }
2117         }
2118 }
2119
2120
2121 Buffer::References & Buffer::references(docstring const & label)
2122 {
2123         if (d->parent_buffer)
2124                 return const_cast<Buffer *>(masterBuffer())->references(label);
2125
2126         RefCache::iterator it = d->ref_cache_.find(label);
2127         if (it != d->ref_cache_.end())
2128                 return it->second.second;
2129
2130         static InsetLabel const * dummy_il = 0;
2131         static References const dummy_refs;
2132         it = d->ref_cache_.insert(
2133                 make_pair(label, make_pair(dummy_il, dummy_refs))).first;
2134         return it->second.second;
2135 }
2136
2137
2138 Buffer::References const & Buffer::references(docstring const & label) const
2139 {
2140         return const_cast<Buffer *>(this)->references(label);
2141 }
2142
2143
2144 void Buffer::setInsetLabel(docstring const & label, InsetLabel const * il)
2145 {
2146         masterBuffer()->d->ref_cache_[label].first = il;
2147 }
2148
2149
2150 InsetLabel const * Buffer::insetLabel(docstring const & label) const
2151 {
2152         return masterBuffer()->d->ref_cache_[label].first;
2153 }
2154
2155
2156 void Buffer::clearReferenceCache() const
2157 {
2158         if (!d->parent_buffer)
2159                 d->ref_cache_.clear();
2160 }
2161
2162
2163 void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
2164         InsetCode code)
2165 {
2166         //FIXME: This does not work for child documents yet.
2167         LASSERT(code == CITE_CODE, /**/);
2168         // Check if the label 'from' appears more than once
2169         vector<docstring> labels;
2170         string paramName;
2171         BiblioInfo const & keys = masterBibInfo();
2172         BiblioInfo::const_iterator bit  = keys.begin();
2173         BiblioInfo::const_iterator bend = keys.end();
2174
2175         for (; bit != bend; ++bit)
2176                 // FIXME UNICODE
2177                 labels.push_back(bit->first);
2178         paramName = "key";
2179
2180         if (count(labels.begin(), labels.end(), from) > 1)
2181                 return;
2182
2183         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
2184                 if (it->lyxCode() == code) {
2185                         InsetCommand & inset = static_cast<InsetCommand &>(*it);
2186                         docstring const oldValue = inset.getParam(paramName);
2187                         if (oldValue == from)
2188                                 inset.setParam(paramName, to);
2189                 }
2190         }
2191 }
2192
2193
2194 void Buffer::getSourceCode(odocstream & os, pit_type par_begin,
2195         pit_type par_end, bool full_source) const
2196 {
2197         OutputParams runparams(&params().encoding());
2198         runparams.nice = true;
2199         runparams.flavor = OutputParams::LATEX;
2200         runparams.linelen = lyxrc.plaintext_linelen;
2201         // No side effect of file copying and image conversion
2202         runparams.dryrun = true;
2203
2204         d->texrow.reset();
2205         if (full_source) {
2206                 os << "% " << _("Preview source code") << "\n\n";
2207                 d->texrow.newline();
2208                 d->texrow.newline();
2209                 if (isDocBook())
2210                         writeDocBookSource(os, absFileName(), runparams, false);
2211                 else
2212                         // latex or literate
2213                         writeLaTeXSource(os, string(), runparams, true, true);
2214         } else {
2215                 runparams.par_begin = par_begin;
2216                 runparams.par_end = par_end;
2217                 if (par_begin + 1 == par_end) {
2218                         os << "% "
2219                            << bformat(_("Preview source code for paragraph %1$d"), par_begin)
2220                            << "\n\n";
2221                 } else {
2222                         os << "% "
2223                            << bformat(_("Preview source code from paragraph %1$s to %2$s"),
2224                                         convert<docstring>(par_begin),
2225                                         convert<docstring>(par_end - 1))
2226                            << "\n\n";
2227                 }
2228                 d->texrow.newline();
2229                 d->texrow.newline();
2230                 // output paragraphs
2231                 if (isDocBook())
2232                         docbookParagraphs(paragraphs(), *this, os, runparams);
2233                 else 
2234                         // latex or literate
2235                         latexParagraphs(*this, text(), os, d->texrow, runparams);
2236         }
2237 }
2238
2239
2240 ErrorList & Buffer::errorList(string const & type) const
2241 {
2242         static ErrorList emptyErrorList;
2243         map<string, ErrorList>::iterator I = d->errorLists.find(type);
2244         if (I == d->errorLists.end())
2245                 return emptyErrorList;
2246
2247         return I->second;
2248 }
2249
2250
2251 void Buffer::updateTocItem(std::string const & type,
2252         DocIterator const & dit) const
2253 {
2254         if (gui_)
2255                 gui_->updateTocItem(type, dit);
2256 }
2257
2258
2259 void Buffer::structureChanged() const
2260 {
2261         if (gui_)
2262                 gui_->structureChanged();
2263 }
2264
2265
2266 void Buffer::errors(string const & err) const
2267 {
2268         if (gui_)
2269                 gui_->errors(err);
2270 }
2271
2272
2273 void Buffer::message(docstring const & msg) const
2274 {
2275         if (gui_)
2276                 gui_->message(msg);
2277 }
2278
2279
2280 void Buffer::setBusy(bool on) const
2281 {
2282         if (gui_)
2283                 gui_->setBusy(on);
2284 }
2285
2286
2287 void Buffer::setReadOnly(bool on) const
2288 {
2289         if (d->wa_)
2290                 d->wa_->setReadOnly(on);
2291 }
2292
2293
2294 void Buffer::updateTitles() const
2295 {
2296         if (d->wa_)
2297                 d->wa_->updateTitles();
2298 }
2299
2300
2301 void Buffer::resetAutosaveTimers() const
2302 {
2303         if (gui_)
2304                 gui_->resetAutosaveTimers();
2305 }
2306
2307
2308 bool Buffer::hasGuiDelegate() const
2309 {
2310         return gui_;
2311 }
2312
2313
2314 void Buffer::setGuiDelegate(frontend::GuiBufferDelegate * gui)
2315 {
2316         gui_ = gui;
2317 }
2318
2319
2320
2321 namespace {
2322
2323 class AutoSaveBuffer : public ForkedProcess {
2324 public:
2325         ///
2326         AutoSaveBuffer(Buffer const & buffer, FileName const & fname)
2327                 : buffer_(buffer), fname_(fname) {}
2328         ///
2329         virtual boost::shared_ptr<ForkedProcess> clone() const
2330         {
2331                 return boost::shared_ptr<ForkedProcess>(new AutoSaveBuffer(*this));
2332         }
2333         ///
2334         int start()
2335         {
2336                 command_ = to_utf8(bformat(_("Auto-saving %1$s"),
2337                                                  from_utf8(fname_.absFilename())));
2338                 return run(DontWait);
2339         }
2340 private:
2341         ///
2342         virtual int generateChild();
2343         ///
2344         Buffer const & buffer_;
2345         FileName fname_;
2346 };
2347
2348
2349 int AutoSaveBuffer::generateChild()
2350 {
2351         // tmp_ret will be located (usually) in /tmp
2352         // will that be a problem?
2353         // Note that this calls ForkedCalls::fork(), so it's
2354         // ok cross-platform.
2355         pid_t const pid = fork();
2356         // If you want to debug the autosave
2357         // you should set pid to -1, and comment out the fork.
2358         if (pid != 0 && pid != -1)
2359                 return pid;
2360
2361         // pid = -1 signifies that lyx was unable
2362         // to fork. But we will do the save
2363         // anyway.
2364         bool failed = false;
2365         FileName const tmp_ret = FileName::tempName("lyxauto");
2366         if (!tmp_ret.empty()) {
2367                 buffer_.writeFile(tmp_ret);
2368                 // assume successful write of tmp_ret
2369                 if (!tmp_ret.moveTo(fname_))
2370                         failed = true;
2371         } else
2372                 failed = true;
2373
2374         if (failed) {
2375                 // failed to write/rename tmp_ret so try writing direct
2376                 if (!buffer_.writeFile(fname_)) {
2377                         // It is dangerous to do this in the child,
2378                         // but safe in the parent, so...
2379                         if (pid == -1) // emit message signal.
2380                                 buffer_.message(_("Autosave failed!"));
2381                 }
2382         }
2383
2384         if (pid == 0) // we are the child so...
2385                 _exit(0);
2386
2387         return pid;
2388 }
2389
2390 } // namespace anon
2391
2392
2393 // Perfect target for a thread...
2394 void Buffer::autoSave() const
2395 {
2396         if (isBakClean() || isReadonly()) {
2397                 // We don't save now, but we'll try again later
2398                 resetAutosaveTimers();
2399                 return;
2400         }
2401
2402         // emit message signal.
2403         message(_("Autosaving current document..."));
2404
2405         // create autosave filename
2406         string fname = filePath();
2407         fname += '#';
2408         fname += d->filename.onlyFileName();
2409         fname += '#';
2410
2411         AutoSaveBuffer autosave(*this, FileName(fname));
2412         autosave.start();
2413
2414         markBakClean();
2415         resetAutosaveTimers();
2416 }
2417
2418
2419 string Buffer::bufferFormat() const
2420 {
2421         if (isDocBook())
2422                 return "docbook";
2423         if (isLiterate())
2424                 return "literate";
2425         if (params().encoding().package() == Encoding::japanese)
2426                 return "platex";
2427         return "latex";
2428 }
2429
2430
2431 bool Buffer::doExport(string const & format, bool put_in_tempdir,
2432         string & result_file) const
2433 {
2434         string backend_format;
2435         OutputParams runparams(&params().encoding());
2436         runparams.flavor = OutputParams::LATEX;
2437         runparams.linelen = lyxrc.plaintext_linelen;
2438         vector<string> backs = backends();
2439         if (find(backs.begin(), backs.end(), format) == backs.end()) {
2440                 // Get shortest path to format
2441                 Graph::EdgePath path;
2442                 for (vector<string>::const_iterator it = backs.begin();
2443                      it != backs.end(); ++it) {
2444                         Graph::EdgePath p = theConverters().getPath(*it, format);
2445                         if (!p.empty() && (path.empty() || p.size() < path.size())) {
2446                                 backend_format = *it;
2447                                 path = p;
2448                         }
2449                 }
2450                 if (!path.empty())
2451                         runparams.flavor = theConverters().getFlavor(path);
2452                 else {
2453                         Alert::error(_("Couldn't export file"),
2454                                 bformat(_("No information for exporting the format %1$s."),
2455                                    formats.prettyName(format)));
2456                         return false;
2457                 }
2458         } else {
2459                 backend_format = format;
2460                 // FIXME: Don't hardcode format names here, but use a flag
2461                 if (backend_format == "pdflatex")
2462                         runparams.flavor = OutputParams::PDFLATEX;
2463         }
2464
2465         string filename = latexName(false);
2466         filename = addName(temppath(), filename);
2467         filename = changeExtension(filename,
2468                                    formats.extension(backend_format));
2469
2470         // fix macros
2471         updateMacroInstances();
2472
2473         // Plain text backend
2474         if (backend_format == "text")
2475                 writePlaintextFile(*this, FileName(filename), runparams);
2476         // no backend
2477         else if (backend_format == "lyx")
2478                 writeFile(FileName(filename));
2479         // Docbook backend
2480         else if (isDocBook()) {
2481                 runparams.nice = !put_in_tempdir;
2482                 makeDocBookFile(FileName(filename), runparams);
2483         }
2484         // LaTeX backend
2485         else if (backend_format == format) {
2486                 runparams.nice = true;
2487                 if (!makeLaTeXFile(FileName(filename), string(), runparams))
2488                         return false;
2489         } else if (!lyxrc.tex_allows_spaces
2490                    && contains(filePath(), ' ')) {
2491                 Alert::error(_("File name error"),
2492                            _("The directory path to the document cannot contain spaces."));
2493                 return false;
2494         } else {
2495                 runparams.nice = false;
2496                 if (!makeLaTeXFile(FileName(filename), filePath(), runparams))
2497                         return false;
2498         }
2499
2500         string const error_type = (format == "program")
2501                 ? "Build" : bufferFormat();
2502         ErrorList & error_list = d->errorLists[error_type];
2503         string const ext = formats.extension(format);
2504         FileName const tmp_result_file(changeExtension(filename, ext));
2505         bool const success = theConverters().convert(this, FileName(filename),
2506                 tmp_result_file, FileName(absFileName()), backend_format, format,
2507                 error_list);
2508         // Emit the signal to show the error list.
2509         if (format != backend_format)
2510                 errors(error_type);
2511         if (!success)
2512                 return false;
2513
2514         if (put_in_tempdir) {
2515                 result_file = tmp_result_file.absFilename();
2516                 return true;
2517         }
2518
2519         result_file = changeExtension(absFileName(), ext);
2520         // We need to copy referenced files (e. g. included graphics
2521         // if format == "dvi") to the result dir.
2522         vector<ExportedFile> const files =
2523                 runparams.exportdata->externalFiles(format);
2524         string const dest = onlyPath(result_file);
2525         CopyStatus status = SUCCESS;
2526         for (vector<ExportedFile>::const_iterator it = files.begin();
2527                 it != files.end() && status != CANCEL; ++it) {
2528                 string const fmt = formats.getFormatFromFile(it->sourceName);
2529                 status = copyFile(fmt, it->sourceName,
2530                         makeAbsPath(it->exportName, dest),
2531                         it->exportName, status == FORCE);
2532         }
2533         if (status == CANCEL) {
2534                 message(_("Document export cancelled."));
2535         } else if (tmp_result_file.exists()) {
2536                 // Finally copy the main file
2537                 status = copyFile(format, tmp_result_file,
2538                         FileName(result_file), result_file,
2539                         status == FORCE);
2540                 message(bformat(_("Document exported as %1$s "
2541                         "to file `%2$s'"),
2542                         formats.prettyName(format),
2543                         makeDisplayPath(result_file)));
2544         } else {
2545                 // This must be a dummy converter like fax (bug 1888)
2546                 message(bformat(_("Document exported as %1$s"),
2547                         formats.prettyName(format)));
2548         }
2549
2550         return true;
2551 }
2552
2553
2554 bool Buffer::doExport(string const & format, bool put_in_tempdir) const
2555 {
2556         string result_file;
2557         return doExport(format, put_in_tempdir, result_file);
2558 }
2559
2560
2561 bool Buffer::preview(string const & format) const
2562 {
2563         string result_file;
2564         if (!doExport(format, true, result_file))
2565                 return false;
2566         return formats.view(*this, FileName(result_file), format);
2567 }
2568
2569
2570 bool Buffer::isExportable(string const & format) const
2571 {
2572         vector<string> backs = backends();
2573         for (vector<string>::const_iterator it = backs.begin();
2574              it != backs.end(); ++it)
2575                 if (theConverters().isReachable(*it, format))
2576                         return true;
2577         return false;
2578 }
2579
2580
2581 vector<Format const *> Buffer::exportableFormats(bool only_viewable) const
2582 {
2583         vector<string> backs = backends();
2584         vector<Format const *> result =
2585                 theConverters().getReachable(backs[0], only_viewable, true);
2586         for (vector<string>::const_iterator it = backs.begin() + 1;
2587              it != backs.end(); ++it) {
2588                 vector<Format const *>  r =
2589                         theConverters().getReachable(*it, only_viewable, false);
2590                 result.insert(result.end(), r.begin(), r.end());
2591         }
2592         return result;
2593 }
2594
2595
2596 vector<string> Buffer::backends() const
2597 {
2598         vector<string> v;
2599         if (params().baseClass()->isTeXClassAvailable()) {
2600                 v.push_back(bufferFormat());
2601                 // FIXME: Don't hardcode format names here, but use a flag
2602                 if (v.back() == "latex")
2603                         v.push_back("pdflatex");
2604         }
2605         v.push_back("text");
2606         v.push_back("lyx");
2607         return v;
2608 }
2609
2610
2611 bool Buffer::readFileHelper(FileName const & s)
2612 {
2613         // File information about normal file
2614         if (!s.exists()) {
2615                 docstring const file = makeDisplayPath(s.absFilename(), 50);
2616                 docstring text = bformat(_("The specified document\n%1$s"
2617                                                      "\ncould not be read."), file);
2618                 Alert::error(_("Could not read document"), text);
2619                 return false;
2620         }
2621
2622         // Check if emergency save file exists and is newer.
2623         FileName const e(s.absFilename() + ".emergency");
2624
2625         if (e.exists() && s.exists() && e.lastModified() > s.lastModified()) {
2626                 docstring const file = makeDisplayPath(s.absFilename(), 20);
2627                 docstring const text =
2628                         bformat(_("An emergency save of the document "
2629                                   "%1$s exists.\n\n"
2630                                                "Recover emergency save?"), file);
2631                 switch (Alert::prompt(_("Load emergency save?"), text, 0, 2,
2632                                       _("&Recover"),  _("&Load Original"),
2633                                       _("&Cancel")))
2634                 {
2635                 case 0:
2636                         // the file is not saved if we load the emergency file.
2637                         markDirty();
2638                         return readFile(e);
2639                 case 1:
2640                         break;
2641                 default:
2642                         return false;
2643                 }
2644         }
2645
2646         // Now check if autosave file is newer.
2647         FileName const a(onlyPath(s.absFilename()) + '#' + onlyFilename(s.absFilename()) + '#');
2648
2649         if (a.exists() && s.exists() && a.lastModified() > s.lastModified()) {
2650                 docstring const file = makeDisplayPath(s.absFilename(), 20);
2651                 docstring const text =
2652                         bformat(_("The backup of the document "
2653                                   "%1$s is newer.\n\nLoad the "
2654                                                "backup instead?"), file);
2655                 switch (Alert::prompt(_("Load backup?"), text, 0, 2,
2656                                       _("&Load backup"), _("Load &original"),
2657                                       _("&Cancel") ))
2658                 {
2659                 case 0:
2660                         // the file is not saved if we load the autosave file.
2661                         markDirty();
2662                         return readFile(a);
2663                 case 1:
2664                         // Here we delete the autosave
2665                         a.removeFile();
2666                         break;
2667                 default:
2668                         return false;
2669                 }
2670         }
2671         return readFile(s);
2672 }
2673
2674
2675 bool Buffer::loadLyXFile(FileName const & s)
2676 {
2677         if (s.isReadableFile()) {
2678                 if (readFileHelper(s)) {
2679                         lyxvc().file_found_hook(s);
2680                         if (!s.isWritable())
2681                                 setReadonly(true);
2682                         return true;
2683                 }
2684         } else {
2685                 docstring const file = makeDisplayPath(s.absFilename(), 20);
2686                 // Here we probably should run
2687                 if (LyXVC::file_not_found_hook(s)) {
2688                         docstring const text =
2689                                 bformat(_("Do you want to retrieve the document"
2690                                                        " %1$s from version control?"), file);
2691                         int const ret = Alert::prompt(_("Retrieve from version control?"),
2692                                 text, 0, 1, _("&Retrieve"), _("&Cancel"));
2693
2694                         if (ret == 0) {
2695                                 // How can we know _how_ to do the checkout?
2696                                 // With the current VC support it has to be,
2697                                 // a RCS file since CVS do not have special ,v files.
2698                                 RCS::retrieve(s);
2699                                 return loadLyXFile(s);
2700                         }
2701                 }
2702         }
2703         return false;
2704 }
2705
2706
2707 void Buffer::bufferErrors(TeXErrors const & terr, ErrorList & errorList) const
2708 {
2709         TeXErrors::Errors::const_iterator cit = terr.begin();
2710         TeXErrors::Errors::const_iterator end = terr.end();
2711
2712         for (; cit != end; ++cit) {
2713                 int id_start = -1;
2714                 int pos_start = -1;
2715                 int errorRow = cit->error_in_line;
2716                 bool found = d->texrow.getIdFromRow(errorRow, id_start,
2717                                                        pos_start);
2718                 int id_end = -1;
2719                 int pos_end = -1;
2720                 do {
2721                         ++errorRow;
2722                         found = d->texrow.getIdFromRow(errorRow, id_end, pos_end);
2723                 } while (found && id_start == id_end && pos_start == pos_end);
2724
2725                 errorList.push_back(ErrorItem(cit->error_desc,
2726                         cit->error_text, id_start, pos_start, pos_end));
2727         }
2728 }
2729
2730
2731 void Buffer::setBuffersForInsets() const
2732 {
2733         inset().setBuffer(const_cast<Buffer &>(*this)); 
2734 }
2735
2736
2737 void Buffer::updateLabels(UpdateScope scope) const
2738 {
2739         // Use the master text class also for child documents
2740         Buffer const * const master = masterBuffer();
2741         DocumentClass const & textclass = master->params().documentClass();
2742
2743         // keep the buffers to be children in this set. If the call from the
2744         // master comes back we can see which of them were actually seen (i.e.
2745         // via an InsetInclude). The remaining ones in the set need still be updated.
2746         static std::set<Buffer const *> bufToUpdate;
2747         if (scope == UpdateMaster) {
2748                 // If this is a child document start with the master
2749                 if (master != this) {
2750                         bufToUpdate.insert(this);
2751                         master->updateLabels();
2752                         // Do this here in case the master has no gui associated with it. Then, 
2753                         // the TocModel is not updated and TocModel::toc_ is invalid (bug 5699).
2754                         if (!master->gui_)
2755                                 structureChanged();     
2756
2757                         // was buf referenced from the master (i.e. not in bufToUpdate anymore)?
2758                         if (bufToUpdate.find(this) == bufToUpdate.end())
2759                                 return;
2760                 }
2761
2762                 // start over the counters in the master
2763                 textclass.counters().reset();
2764         }
2765
2766         // update will be done below for this buffer
2767         bufToUpdate.erase(this);
2768
2769         // update all caches
2770         clearReferenceCache();
2771         updateMacros();
2772
2773         Buffer & cbuf = const_cast<Buffer &>(*this);
2774
2775         LASSERT(!text().paragraphs().empty(), /**/);
2776
2777         // do the real work
2778         ParIterator parit = cbuf.par_iterator_begin();
2779         updateLabels(parit);
2780
2781         if (master != this)
2782                 // TocBackend update will be done later.
2783                 return;
2784
2785         cbuf.tocBackend().update();
2786         if (scope == UpdateMaster)
2787                 cbuf.structureChanged();
2788 }
2789
2790
2791 static depth_type getDepth(DocIterator const & it)
2792 {
2793         depth_type depth = 0;
2794         for (size_t i = 0 ; i < it.depth() ; ++i)
2795                 if (!it[i].inset().inMathed())
2796                         depth += it[i].paragraph().getDepth() + 1;
2797         // remove 1 since the outer inset does not count
2798         return depth - 1;
2799 }
2800
2801 static depth_type getItemDepth(ParIterator const & it)
2802 {
2803         Paragraph const & par = *it;
2804         LabelType const labeltype = par.layout().labeltype;
2805
2806         if (labeltype != LABEL_ENUMERATE && labeltype != LABEL_ITEMIZE)
2807                 return 0;
2808
2809         // this will hold the lowest depth encountered up to now.
2810         depth_type min_depth = getDepth(it);
2811         ParIterator prev_it = it;
2812         while (true) {
2813                 if (prev_it.pit())
2814                         --prev_it.top().pit();
2815                 else {
2816                         // start of nested inset: go to outer par
2817                         prev_it.pop_back();
2818                         if (prev_it.empty()) {
2819                                 // start of document: nothing to do
2820                                 return 0;
2821                         }
2822                 }
2823
2824                 // We search for the first paragraph with same label
2825                 // that is not more deeply nested.
2826                 Paragraph & prev_par = *prev_it;
2827                 depth_type const prev_depth = getDepth(prev_it);
2828                 if (labeltype == prev_par.layout().labeltype) {
2829                         if (prev_depth < min_depth)
2830                                 return prev_par.itemdepth + 1;
2831                         if (prev_depth == min_depth)
2832                                 return prev_par.itemdepth;
2833                 }
2834                 min_depth = min(min_depth, prev_depth);
2835                 // small optimization: if we are at depth 0, we won't
2836                 // find anything else
2837                 if (prev_depth == 0)
2838                         return 0;
2839         }
2840 }
2841
2842
2843 static bool needEnumCounterReset(ParIterator const & it)
2844 {
2845         Paragraph const & par = *it;
2846         LASSERT(par.layout().labeltype == LABEL_ENUMERATE, /**/);
2847         depth_type const cur_depth = par.getDepth();
2848         ParIterator prev_it = it;
2849         while (prev_it.pit()) {
2850                 --prev_it.top().pit();
2851                 Paragraph const & prev_par = *prev_it;
2852                 if (prev_par.getDepth() <= cur_depth)
2853                         return  prev_par.layout().labeltype != LABEL_ENUMERATE;
2854         }
2855         // start of nested inset: reset
2856         return true;
2857 }
2858
2859
2860 // set the label of a paragraph. This includes the counters.
2861 static void setLabel(Buffer const & buf, ParIterator & it)
2862 {
2863         BufferParams const & bp = buf.masterBuffer()->params();
2864         DocumentClass const & textclass = bp.documentClass();
2865         Paragraph & par = it.paragraph();
2866         Layout const & layout = par.layout();
2867         Counters & counters = textclass.counters();
2868
2869         if (par.params().startOfAppendix()) {
2870                 // FIXME: only the counter corresponding to toplevel
2871                 // sectionning should be reset
2872                 counters.reset();
2873                 counters.appendix(true);
2874         }
2875         par.params().appendix(counters.appendix());
2876
2877         // Compute the item depth of the paragraph
2878         par.itemdepth = getItemDepth(it);
2879
2880         if (layout.margintype == MARGIN_MANUAL) {
2881                 if (par.params().labelWidthString().empty())
2882                         par.params().labelWidthString(par.translateIfPossible(layout.labelstring(), bp));
2883         } else {
2884                 par.params().labelWidthString(docstring());
2885         }
2886
2887         switch(layout.labeltype) {
2888         case LABEL_COUNTER:
2889                 if (layout.toclevel <= bp.secnumdepth
2890                     && (layout.latextype != LATEX_ENVIRONMENT
2891                         || isFirstInSequence(it.pit(), it.plist()))) {
2892                         counters.step(layout.counter);
2893                         par.params().labelString(
2894                                 par.expandLabel(layout, bp));
2895                 } else
2896                         par.params().labelString(docstring());
2897                 break;
2898
2899         case LABEL_ITEMIZE: {
2900                 // At some point of time we should do something more
2901                 // clever here, like:
2902                 //   par.params().labelString(
2903                 //    bp.user_defined_bullet(par.itemdepth).getText());
2904                 // for now, use a simple hardcoded label
2905                 docstring itemlabel;
2906                 switch (par.itemdepth) {
2907                 case 0:
2908                         itemlabel = char_type(0x2022);
2909                         break;
2910                 case 1:
2911                         itemlabel = char_type(0x2013);
2912                         break;
2913                 case 2:
2914                         itemlabel = char_type(0x2217);
2915                         break;
2916                 case 3:
2917                         itemlabel = char_type(0x2219); // or 0x00b7
2918                         break;
2919                 }
2920                 par.params().labelString(itemlabel);
2921                 break;
2922         }
2923
2924         case LABEL_ENUMERATE: {
2925                 // FIXME: Yes I know this is a really, really! bad solution
2926                 // (Lgb)
2927                 docstring enumcounter = from_ascii("enum");
2928
2929                 switch (par.itemdepth) {
2930                 case 2:
2931                         enumcounter += 'i';
2932                 case 1:
2933                         enumcounter += 'i';
2934                 case 0:
2935                         enumcounter += 'i';
2936                         break;
2937                 case 3:
2938                         enumcounter += "iv";
2939                         break;
2940                 default:
2941                         // not a valid enumdepth...
2942                         break;
2943                 }
2944
2945                 // Maybe we have to reset the enumeration counter.
2946                 if (needEnumCounterReset(it))
2947                         counters.reset(enumcounter);
2948
2949                 counters.step(enumcounter);
2950
2951                 string format;
2952
2953                 switch (par.itemdepth) {
2954                 case 0:
2955                         format = N_("\\arabic{enumi}.");
2956                         break;
2957                 case 1:
2958                         format = N_("(\\alph{enumii})");
2959                         break;
2960                 case 2:
2961                         format = N_("\\roman{enumiii}.");
2962                         break;
2963                 case 3:
2964                         format = N_("\\Alph{enumiv}.");
2965                         break;
2966                 default:
2967                         // not a valid enumdepth...
2968                         break;
2969                 }
2970
2971                 par.params().labelString(counters.counterLabel(
2972                         par.translateIfPossible(from_ascii(format), bp)));
2973
2974                 break;
2975         }
2976
2977         case LABEL_SENSITIVE: {
2978                 string const & type = counters.current_float();
2979                 docstring full_label;
2980                 if (type.empty())
2981                         full_label = buf.B_("Senseless!!! ");
2982                 else {
2983                         docstring name = buf.B_(textclass.floats().getType(type).name());
2984                         if (counters.hasCounter(from_utf8(type))) {
2985                                 counters.step(from_utf8(type));
2986                                 full_label = bformat(from_ascii("%1$s %2$s:"), 
2987                                                      name, 
2988                                                      counters.theCounter(from_utf8(type)));
2989                         } else
2990                                 full_label = bformat(from_ascii("%1$s #:"), name);      
2991                 }
2992                 par.params().labelString(full_label);   
2993                 break;
2994         }
2995
2996         case LABEL_NO_LABEL:
2997                 par.params().labelString(docstring());
2998                 break;
2999
3000         case LABEL_MANUAL:
3001         case LABEL_TOP_ENVIRONMENT:
3002         case LABEL_CENTERED_TOP_ENVIRONMENT:
3003         case LABEL_STATIC:      
3004         case LABEL_BIBLIO:
3005                 par.params().labelString(
3006                         par.translateIfPossible(layout.labelstring(), bp));
3007                 break;
3008         }
3009 }
3010
3011
3012 void Buffer::updateLabels(ParIterator & parit) const
3013 {
3014         LASSERT(parit.pit() == 0, /**/);
3015
3016         // set the position of the text in the buffer to be able
3017         // to resolve macros in it. This has nothing to do with
3018         // labels, but by putting it here we avoid implementing
3019         // a whole bunch of traversal routines just for this call.
3020         parit.text()->setMacrocontextPosition(parit);
3021
3022         depth_type maxdepth = 0;
3023         pit_type const lastpit = parit.lastpit();
3024         for ( ; parit.pit() <= lastpit ; ++parit.pit()) {
3025                 // reduce depth if necessary
3026                 parit->params().depth(min(parit->params().depth(), maxdepth));
3027                 maxdepth = parit->getMaxDepthAfter();
3028
3029                 // set the counter for this paragraph
3030                 setLabel(*this, parit);
3031
3032                 // Now the insets
3033                 InsetList::const_iterator iit = parit->insetList().begin();
3034                 InsetList::const_iterator end = parit->insetList().end();
3035                 for (; iit != end; ++iit) {
3036                         parit.pos() = iit->pos;
3037                         iit->inset->updateLabels(parit);
3038                 }
3039         }
3040 }
3041
3042 } // namespace lyx