]> git.lyx.org Git - lyx.git/blob - src/buffer.C
The "I want this in now" patch.
[lyx.git] / src / buffer.C
1 /**
2  * \file buffer.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "buffer.h"
14 #include "bufferlist.h"
15 #include "LyXAction.h"
16 #include "lyxrc.h"
17 #include "lyxlex.h"
18 #include "tex-strings.h"
19 #include "layout.h"
20 #include "bufferview_funcs.h"
21 #include "lyxfont.h"
22 #include "version.h"
23 #include "LaTeX.h"
24 #include "Chktex.h"
25 #include "debug.h"
26 #include "LaTeXFeatures.h"
27 #include "lyxtext.h"
28 #include "gettext.h"
29 #include "language.h"
30 #include "exporter.h"
31 #include "errorlist.h"
32 #include "Lsstream.h"
33 #include "format.h"
34 #include "BufferView.h"
35 #include "ParagraphParameters.h"
36 #include "iterators.h"
37 #include "lyxtextclasslist.h"
38 #include "sgml.h"
39 #include "paragraph_funcs.h"
40 #include "messages.h"
41 #include "author.h"
42
43 #include "frontends/LyXView.h"
44
45 #include "mathed/formulamacro.h"
46 #include "mathed/formula.h"
47
48 #include "insets/inseterror.h"
49 #include "insets/insetbibitem.h"
50 #include "insets/insetbibtex.h"
51 #include "insets/insetinclude.h"
52 #include "insets/insettext.h"
53
54 #include "frontends/Dialogs.h"
55 #include "frontends/Alert.h"
56
57 #include "graphics/Previews.h"
58
59 #include "support/textutils.h"
60 #include "support/filetools.h"
61 #include "support/path.h"
62 #include "support/os.h"
63 #include "support/tostr.h"
64 #include "support/lyxlib.h"
65 #include "support/FileInfo.h"
66 #include "support/lyxmanip.h"
67 #include "support/lyxtime.h"
68
69 #include <boost/bind.hpp>
70 #include <boost/tuple/tuple.hpp>
71
72 #include <fstream>
73 #include <iomanip>
74 #include <map>
75 #include <stack>
76 #include <list>
77 #include <algorithm>
78
79 #include <cstdlib>
80 #include <cmath>
81 #include <unistd.h>
82 #include <sys/types.h>
83 #include <utime.h>
84
85 #ifdef HAVE_LOCALE
86 #include <locale>
87 #endif
88
89 #ifndef CXX_GLOBAL_CSTD
90 using std::pow;
91 #endif
92
93 using std::ostream;
94 using std::ofstream;
95 using std::ifstream;
96 using std::fstream;
97 using std::ios;
98 using std::setw;
99 using std::endl;
100 using std::pair;
101 using std::make_pair;
102 using std::vector;
103 using std::map;
104 using std::stack;
105 using std::list;
106 using std::for_each;
107
108 using lyx::pos_type;
109 using lyx::textclass_type;
110
111 // all these externs should eventually be removed.
112 extern BufferList bufferlist;
113
114 namespace {
115
116 const int LYX_FORMAT = 223;
117
118 } // namespace anon
119
120 Buffer::Buffer(string const & file, bool ronly)
121         : niceFile(true), lyx_clean(true), bak_clean(true),
122           unnamed(false), read_only(ronly),
123           filename_(file), users(0)
124 {
125         lyxerr[Debug::INFO] << "Buffer::Buffer()" << endl;
126         filepath_ = OnlyPath(file);
127         lyxvc.buffer(this);
128         if (read_only || lyxrc.use_tempdir) {
129                 tmppath = CreateBufferTmpDir();
130         } else {
131                 tmppath.erase();
132         }
133
134         // set initial author
135         authors().record(Author(lyxrc.user_name, lyxrc.user_email));
136 }
137
138
139 Buffer::~Buffer()
140 {
141         lyxerr[Debug::INFO] << "Buffer::~Buffer()" << endl;
142         // here the buffer should take care that it is
143         // saved properly, before it goes into the void.
144
145         // make sure that views using this buffer
146         // forgets it.
147         if (users)
148                 users->buffer(0);
149
150         if (!tmppath.empty() && destroyDir(tmppath) != 0) {
151                 Alert::warning(_("Could not remove temporary directory"),
152                         bformat(_("Could not remove the temporary directory %1$s"), tmppath));
153         }
154
155         paragraphs.clear();
156
157         // Remove any previewed LaTeX snippets assocoated with this buffer.
158         grfx::Previews::get().removeLoader(this);
159 }
160
161
162 string const Buffer::getLatexName(bool no_path) const
163 {
164         string const name = ChangeExtension(MakeLatexName(fileName()), ".tex");
165         return no_path ? OnlyFilename(name) : name;
166 }
167
168
169 pair<Buffer::LogType, string> const Buffer::getLogName() const
170 {
171         string const filename = getLatexName(false);
172
173         if (filename.empty())
174                 return make_pair(Buffer::latexlog, string());
175
176         string path = OnlyPath(filename);
177
178         if (lyxrc.use_tempdir || !IsDirWriteable(path))
179                 path = tmppath;
180
181         string const fname = AddName(path,
182                                      OnlyFilename(ChangeExtension(filename,
183                                                                   ".log")));
184         string const bname =
185                 AddName(path, OnlyFilename(
186                         ChangeExtension(filename,
187                                         formats.extension("literate") + ".out")));
188
189         // If no Latex log or Build log is newer, show Build log
190
191         FileInfo const f_fi(fname);
192         FileInfo const b_fi(bname);
193
194         if (b_fi.exist() &&
195             (!f_fi.exist() || f_fi.getModificationTime() < b_fi.getModificationTime())) {
196                 lyxerr[Debug::FILES] << "Log name calculated as: " << bname << endl;
197                 return make_pair(Buffer::buildlog, bname);
198         }
199         lyxerr[Debug::FILES] << "Log name calculated as: " << fname << endl;
200         return make_pair(Buffer::latexlog, fname);
201 }
202
203
204 void Buffer::setReadonly(bool flag)
205 {
206         if (read_only != flag) {
207                 read_only = flag;
208                 updateTitles();
209                 users->owner()->getDialogs().updateBufferDependent(false);
210         }
211 }
212
213
214 AuthorList & Buffer::authors()
215 {
216         return params.authorlist;
217 }
218
219
220 /// Update window titles of all users
221 // Should work on a list
222 void Buffer::updateTitles() const
223 {
224         if (users)
225                 users->owner()->updateWindowTitle();
226 }
227
228
229 /// Reset autosave timer of all users
230 // Should work on a list
231 void Buffer::resetAutosaveTimers() const
232 {
233         if (users)
234                 users->owner()->resetAutosaveTimer();
235 }
236
237
238 void Buffer::setFileName(string const & newfile)
239 {
240         filename_ = MakeAbsPath(newfile);
241         filepath_ = OnlyPath(filename_);
242         setReadonly(IsFileWriteable(filename_) == 0);
243         updateTitles();
244 }
245
246
247 // We'll remove this later. (Lgb)
248 namespace {
249
250 void unknownClass(string const & unknown)
251 {
252         Alert::warning(_("Unknown document class"),
253                 bformat(_("Using the default document class, because the "
254                         " class %1$s is unknown."), unknown));
255 }
256
257 } // anon
258
259 int Buffer::readHeader(LyXLex & lex)
260 {
261         int unknown_tokens = 0;
262
263         while (lex.isOK()) {
264                 lex.nextToken();
265                 string const token = lex.getString();
266
267                 if (token.empty())
268                         continue;
269
270                 if (token == "\\end_header")
271                         break;
272
273                 lyxerr[Debug::PARSER] << "Handling header token: `"
274                                       << token << '\'' << endl;
275
276                 string unknown = params.readToken(lex, token);
277                 if (!unknown.empty()) {
278                         if (unknown[0] != '\\') {
279                                 unknownClass(unknown);
280                         } else {
281                                 ++unknown_tokens;
282                         }
283                 }
284         }
285         return unknown_tokens;
286 }
287
288
289 // candidate for move to BufferView
290 // (at least some parts in the beginning of the func)
291 //
292 // Uwe C. Schroeder
293 // changed to be public and have one parameter
294 // if par = 0 normal behavior
295 // else insert behavior
296 // Returns false if "\the_end" is not read (Asger)
297 bool Buffer::readBody(LyXLex & lex, ParagraphList::iterator pit)
298 {
299         int unknown_tokens = 0;
300
301         Paragraph::depth_type depth = 0;
302         bool the_end_read = false;
303
304         if (paragraphs.empty()) {
305                 unknown_tokens += readHeader(lex);
306
307                 if (!params.getLyXTextClass().load()) {
308                         string theclass = params.getLyXTextClass().name();
309                         Alert::error(_("Can't load document class"), bformat(
310                                         "Using the default document class, because the "
311                                         " class %1$s could not be loaded.", theclass));
312                         params.textclass = 0;
313                 }
314         } else {
315                 // We are inserting into an existing document
316                 users->text->breakParagraph(paragraphs);
317
318                 // We don't want to adopt the parameters from the
319                 // document we insert, so read them into a temporary buffer
320                 // and then discard it
321
322                 Buffer tmpbuf("", false);
323                 tmpbuf.readHeader(lex);
324         }
325
326         while (lex.isOK()) {
327                 lex.nextToken();
328                 string const token = lex.getString();
329
330                 if (token.empty())
331                         continue;
332
333                 lyxerr[Debug::PARSER] << "Handling token: `"
334                                       << token << '\'' << endl;
335
336                 if (token == "\\the_end") {
337                         the_end_read = true;
338                         continue;
339                 }
340
341                 unknown_tokens += readParagraph(lex, token, paragraphs, pit, depth);
342         }
343
344
345         if (unknown_tokens > 0) {
346                 string s;
347                 if (unknown_tokens == 1) {
348                         s = bformat(_("Encountered one unknown token when reading "
349                                 "the document %1$s."), fileName());
350                 } else {
351                         s = bformat(_("Encountered %1$s unknown tokens when reading "
352                                 "the document %2$s."), tostr(unknown_tokens), fileName());
353                 }
354                 Alert::warning(_("Document format failure"), s);
355         }
356
357         return the_end_read;
358 }
359
360
361 int Buffer::readParagraph(LyXLex & lex, string const & token,
362                       ParagraphList & pars, ParagraphList::iterator & pit,
363                       Paragraph::depth_type & depth)
364 {
365         static Change current_change;
366         int unknown = 0;
367
368         if (token == "\\layout") {
369                 lex.pushToken(token);
370
371                 Paragraph * par = new Paragraph();
372                 par->params().depth(depth);
373                 if (params.tracking_changes)
374                         par->trackChanges();
375                 LyXFont f(LyXFont::ALL_INHERIT, params.language);
376                 par->setFont(0, f);
377
378                 // FIXME: goddamn InsetTabular makes us pass a Buffer
379                 // not BufferParams
380                 unknown += ::readParagraph(*this, *par, lex);
381
382                 // insert after
383                 if (pit != pars.end())
384                         ++pit;
385                 pit = pars.insert(pit, par);
386         } else if (token == "\\begin_deeper") {
387                 ++depth;
388         } else if (token == "\\end_deeper") {
389                 if (!depth) {
390                         lex.printError("\\end_deeper: " "depth is already null");
391                 } else {
392                         --depth;
393                 }
394         } else {
395                 ++unknown;
396         }
397         return unknown;
398 }
399
400
401 // needed to insert the selection
402 void Buffer::insertStringAsLines(ParagraphList::iterator & par, pos_type & pos,
403                                  LyXFont const & fn,string const & str)
404 {
405         LyXLayout_ptr const & layout = par->layout();
406
407         LyXFont font = fn;
408
409         par->checkInsertChar(font);
410         // insert the string, don't insert doublespace
411         bool space_inserted = true;
412         bool autobreakrows = !par->inInset() ||
413                 static_cast<InsetText *>(par->inInset())->getAutoBreakRows();
414         for(string::const_iterator cit = str.begin();
415             cit != str.end(); ++cit) {
416                 if (*cit == '\n') {
417                         if (autobreakrows && (!par->empty() || layout->keepempty)) {
418                                 breakParagraph(params, paragraphs, par, pos,
419                                                layout->isEnvironment());
420                                 ++par;
421                                 pos = 0;
422                                 space_inserted = true;
423                         } else {
424                                 continue;
425                         }
426                         // do not insert consecutive spaces if !free_spacing
427                 } else if ((*cit == ' ' || *cit == '\t') &&
428                            space_inserted && !layout->free_spacing &&
429                                    !par->isFreeSpacing())
430                 {
431                         continue;
432                 } else if (*cit == '\t') {
433                         if (!layout->free_spacing && !par->isFreeSpacing()) {
434                                 // tabs are like spaces here
435                                 par->insertChar(pos, ' ', font);
436                                 ++pos;
437                                 space_inserted = true;
438                         } else {
439                                 const pos_type nb = 8 - pos % 8;
440                                 for (pos_type a = 0; a < nb ; ++a) {
441                                         par->insertChar(pos, ' ', font);
442                                         ++pos;
443                                 }
444                                 space_inserted = true;
445                         }
446                 } else if (!IsPrintable(*cit)) {
447                         // Ignore unprintables
448                         continue;
449                 } else {
450                         // just insert the character
451                         par->insertChar(pos, *cit, font);
452                         ++pos;
453                         space_inserted = (*cit == ' ');
454                 }
455
456         }
457 }
458
459
460 bool Buffer::readFile(LyXLex & lex, string const & filename)
461 {
462         bool ret = readFile(lex, filename, paragraphs.begin());
463
464         // After we have read a file, we must ensure that the buffer
465         // language is set and used in the gui.
466         // If you know of a better place to put this, please tell me. (Lgb)
467         updateDocLang(params.language);
468
469         return ret;
470 }
471
472
473 // FIXME: all the below Alerts should give the filename..
474 bool Buffer::readFile(LyXLex & lex, string const & filename,
475                       ParagraphList::iterator pit)
476 {
477         if (!lex.isOK()) {
478                 Alert::error(_("Document could not be read"),
479                         _("The specified document could not be read."));
480                 return false;
481         }
482
483         lex.next();
484         string const token(lex.getString());
485
486         if (!lex.isOK()) {
487                 Alert::error(_("Document could not be read"),
488                         _("The specified document could not be read."));
489                 return false;
490         }
491
492         // the first token _must_ be...
493         if (token != "\\lyxformat") {
494                 Alert::error(_("Document format failure"),
495                         _("The specified document is not a LyX document."));
496                 return false;
497         }
498
499         lex.eatLine();
500         string tmp_format = lex.getString();
501         //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
502         // if present remove ".," from string.
503         string::size_type dot = tmp_format.find_first_of(".,");
504         //lyxerr << "           dot found at " << dot << endl;
505         if (dot != string::npos)
506                         tmp_format.erase(dot, 1);
507         file_format = strToInt(tmp_format);
508         //lyxerr << "format: " << file_format << endl;
509         if (file_format == LYX_FORMAT) {
510                 // current format
511         } else if (file_format > LYX_FORMAT) {
512                 Alert::warning(_("Document format failure"),
513                         _("This document was created with a newer version of "
514                         "LyX. This is likely to cause problems."));
515         } else if (file_format < LYX_FORMAT) {
516                 // old formats
517                 if (file_format < 200) {
518                         Alert::error(_("Document format failure"),
519                                 _("This LyX document is too old to be read "
520                                 "by this version of LyX. Try LyX 0.10."));
521                         return false;
522                 } else if (!filename.empty()) {
523                         string command =
524                                 LibFileSearch("lyx2lyx", "lyx2lyx");
525                         if (command.empty()) {
526                                 Alert::error(_("Conversion script not found"),
527                                         _("The document is from an earlier version "
528                                           "of LyX, but the conversion script lyx2lyx "
529                                           "could not be found."));
530                                 return false;
531                         }
532                         command += " -t"
533                                 +tostr(LYX_FORMAT) + ' '
534                                 + QuoteName(filename);
535                         lyxerr[Debug::INFO] << "Running '"
536                                             << command << '\''
537                                             << endl;
538                         cmd_ret const ret = RunCommand(command);
539                         if (ret.first) {
540                                 Alert::error(_("Conversion script failed"),
541                                         _("The document is from an earlier version "
542                                           "of LyX, but the lyx2lyx script failed "
543                                           "to convert it."));
544                                 return false;
545                         }
546                         istringstream is(STRCONV(ret.second));
547                         LyXLex tmplex(0, 0);
548                         tmplex.setStream(is);
549                         return readFile(tmplex, string(), pit);
550                 } else {
551                         // This code is reached if lyx2lyx failed (for
552                         // some reason) to change the file format of
553                         // the file.
554                         lyx::Assert(false);
555                         return false;
556                 }
557         }
558         bool the_end = readBody(lex, pit);
559         params.setPaperStuff();
560
561         if (!the_end) {
562                 Alert::error(_("Document format failure"),
563                         _("The document ended unexpectedly, which means "
564                           "that it is probably corrupted."));
565         }
566         return true;
567 }
568
569
570 // Should probably be moved to somewhere else: BufferView? LyXView?
571 bool Buffer::save() const
572 {
573         // We don't need autosaves in the immediate future. (Asger)
574         resetAutosaveTimers();
575
576         // make a backup
577         string s;
578         if (lyxrc.make_backup) {
579                 s = fileName() + '~';
580                 if (!lyxrc.backupdir_path.empty())
581                         s = AddName(lyxrc.backupdir_path,
582                                     subst(os::slashify_path(s),'/','!'));
583
584                 // Rename is the wrong way of making a backup,
585                 // this is the correct way.
586                 /* truss cp fil fil2:
587                    lstat("LyXVC3.lyx", 0xEFFFF898)                 Err#2 ENOENT
588                    stat("LyXVC.lyx", 0xEFFFF688)                   = 0
589                    open("LyXVC.lyx", O_RDONLY)                     = 3
590                    open("LyXVC3.lyx", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 4
591                    fstat(4, 0xEFFFF508)                            = 0
592                    fstat(3, 0xEFFFF508)                            = 0
593                    read(3, " # T h i s   f i l e   w".., 8192)     = 5579
594                    write(4, " # T h i s   f i l e   w".., 5579)    = 5579
595                    read(3, 0xEFFFD4A0, 8192)                       = 0
596                    close(4)                                        = 0
597                    close(3)                                        = 0
598                    chmod("LyXVC3.lyx", 0100644)                    = 0
599                    lseek(0, 0, SEEK_CUR)                           = 46440
600                    _exit(0)
601                 */
602
603                 // Should probably have some more error checking here.
604                 // Doing it this way, also makes the inodes stay the same.
605                 // This is still not a very good solution, in particular we
606                 // might loose the owner of the backup.
607                 FileInfo finfo(fileName());
608                 if (finfo.exist()) {
609                         mode_t fmode = finfo.getMode();
610                         struct utimbuf times = {
611                                 finfo.getAccessTime(),
612                                 finfo.getModificationTime() };
613
614                         ifstream ifs(fileName().c_str());
615                         ofstream ofs(s.c_str(), ios::out|ios::trunc);
616                         if (ifs && ofs) {
617                                 ofs << ifs.rdbuf();
618                                 ifs.close();
619                                 ofs.close();
620                                 ::chmod(s.c_str(), fmode);
621
622                                 if (::utime(s.c_str(), &times)) {
623                                         lyxerr << "utime error." << endl;
624                                 }
625                         } else {
626                                 lyxerr << "LyX was not able to make "
627                                         "backup copy. Beware." << endl;
628                         }
629                 }
630         }
631
632         if (writeFile(fileName())) {
633                 markClean();
634                 removeAutosaveFile(fileName());
635         } else {
636                 // Saving failed, so backup is not backup
637                 if (lyxrc.make_backup) {
638                         lyx::rename(s, fileName());
639                 }
640                 return false;
641         }
642         return true;
643 }
644
645
646 bool Buffer::writeFile(string const & fname) const
647 {
648         if (read_only && (fname == fileName())) {
649                 return false;
650         }
651
652         FileInfo finfo(fname);
653         if (finfo.exist() && !finfo.writable()) {
654                 return false;
655         }
656
657         ofstream ofs(fname.c_str());
658         if (!ofs) {
659                 return false;
660         }
661
662 #ifdef HAVE_LOCALE
663         // Use the standard "C" locale for file output.
664         ofs.imbue(std::locale::classic());
665 #endif
666
667         // The top of the file should not be written by params.
668
669         // write out a comment in the top of the file
670         ofs << '#' << lyx_docversion
671             << " created this file. For more info see http://www.lyx.org/\n"
672             << "\\lyxformat " << LYX_FORMAT << "\n";
673
674         // now write out the buffer paramters.
675         params.writeFile(ofs);
676
677         ofs << "\\end_header\n";
678
679         Paragraph::depth_type depth = 0;
680
681         // this will write out all the paragraphs
682         // using recursive descent.
683         ParagraphList::iterator pit = paragraphs.begin();
684         ParagraphList::iterator pend = paragraphs.end();
685         for (; pit != pend; ++pit)
686                 pit->write(this, ofs, params, depth);
687
688         // Write marker that shows file is complete
689         ofs << "\n\\the_end" << endl;
690
691         ofs.close();
692
693         // how to check if close went ok?
694         // Following is an attempt... (BE 20001011)
695
696         // good() returns false if any error occured, including some
697         //        formatting error.
698         // bad()  returns true if something bad happened in the buffer,
699         //        which should include file system full errors.
700
701         bool status = true;
702         if (!ofs.good()) {
703                 status = false;
704 #if 0
705                 if (ofs.bad()) {
706                         lyxerr << "Buffer::writeFile: BAD ERROR!" << endl;
707                 } else {
708                         lyxerr << "Buffer::writeFile: NOT SO BAD ERROR!"
709                                << endl;
710                 }
711 #endif
712         }
713
714         return status;
715 }
716
717
718 namespace {
719
720 pair<int, string> const addDepth(int depth, int ldepth)
721 {
722         int d = depth * 2;
723         if (ldepth > depth)
724                 d += (ldepth - depth) * 2;
725         return make_pair(d, string(d, ' '));
726 }
727
728 }
729
730
731 string const Buffer::asciiParagraph(Paragraph const & par,
732                                     unsigned int linelen,
733                                     bool noparbreak) const
734 {
735         ostringstream buffer;
736         Paragraph::depth_type depth = 0;
737         int ltype = 0;
738         Paragraph::depth_type ltype_depth = 0;
739         bool ref_printed = false;
740 //      if (!par->previous()) {
741 #if 0
742         // begins or ends a deeper area ?
743         if (depth != par->params().depth()) {
744                 if (par->params().depth() > depth) {
745                         while (par->params().depth() > depth) {
746                                 ++depth;
747                         }
748                 } else {
749                         while (par->params().depth() < depth) {
750                                 --depth;
751                         }
752                 }
753         }
754 #else
755         depth = par.params().depth();
756 #endif
757
758         // First write the layout
759         string const & tmp = par.layout()->name();
760         if (compare_no_case(tmp, "itemize") == 0) {
761                 ltype = 1;
762                 ltype_depth = depth + 1;
763         } else if (compare_ascii_no_case(tmp, "enumerate") == 0) {
764                 ltype = 2;
765                 ltype_depth = depth + 1;
766         } else if (contains(ascii_lowercase(tmp), "ection")) {
767                 ltype = 3;
768                 ltype_depth = depth + 1;
769         } else if (contains(ascii_lowercase(tmp), "aragraph")) {
770                 ltype = 4;
771                 ltype_depth = depth + 1;
772         } else if (compare_ascii_no_case(tmp, "description") == 0) {
773                 ltype = 5;
774                 ltype_depth = depth + 1;
775         } else if (compare_ascii_no_case(tmp, "abstract") == 0) {
776                 ltype = 6;
777                 ltype_depth = 0;
778         } else if (compare_ascii_no_case(tmp, "bibliography") == 0) {
779                 ltype = 7;
780                 ltype_depth = 0;
781         } else {
782                 ltype = 0;
783                 ltype_depth = 0;
784         }
785
786         /* maybe some vertical spaces */
787
788         /* the labelwidthstring used in lists */
789
790         /* some lines? */
791
792         /* some pagebreaks? */
793
794         /* noindent ? */
795
796         /* what about the alignment */
797
798         // linelen <= 0 is special and means we don't have paragraph breaks
799
800         string::size_type currlinelen = 0;
801
802         if (!noparbreak) {
803                 if (linelen > 0)
804                         buffer << "\n\n";
805
806                 buffer << string(depth * 2, ' ');
807                 currlinelen += depth * 2;
808
809                 //--
810                 // we should probably change to the paragraph language in the
811                 // gettext here (if possible) so that strings are outputted in
812                 // the correct language! (20012712 Jug)
813                 //--
814                 switch (ltype) {
815                 case 0: // Standard
816                 case 4: // (Sub)Paragraph
817                 case 5: // Description
818                         break;
819                 case 6: // Abstract
820                         if (linelen > 0) {
821                                 buffer << _("Abstract") << "\n\n";
822                                 currlinelen = 0;
823                         } else {
824                                 string const abst = _("Abstract: ");
825                                 buffer << abst;
826                                 currlinelen += abst.length();
827                         }
828                         break;
829                 case 7: // Bibliography
830                         if (!ref_printed) {
831                                 if (linelen > 0) {
832                                         buffer << _("References") << "\n\n";
833                                         currlinelen = 0;
834                                 } else {
835                                         string const refs = _("References: ");
836                                         buffer << refs;
837                                         currlinelen += refs.length();
838                                 }
839
840                                 ref_printed = true;
841                         }
842                         break;
843                 default:
844                 {
845                         string const parlab = par.params().labelString();
846                         buffer << parlab << ' ';
847                         currlinelen += parlab.length() + 1;
848                 }
849                 break;
850
851                 }
852         }
853
854         if (!currlinelen) {
855                 pair<int, string> p = addDepth(depth, ltype_depth);
856                 buffer << p.second;
857                 currlinelen += p.first;
858         }
859
860         // this is to change the linebreak to do it by word a bit more
861         // intelligent hopefully! (only in the case where we have a
862         // max linelength!) (Jug)
863
864         string word;
865
866         for (pos_type i = 0; i < par.size(); ++i) {
867                 char c = par.getUChar(params, i);
868                 switch (c) {
869                 case Paragraph::META_INSET:
870                 {
871                         Inset const * inset = par.getInset(i);
872                         if (inset) {
873                                 if (linelen > 0) {
874                                         buffer << word;
875                                         currlinelen += word.length();
876                                         word.erase();
877                                 }
878                                 if (inset->ascii(this, buffer, linelen)) {
879                                         // to be sure it breaks paragraph
880                                         currlinelen += linelen;
881                                 }
882                         }
883                 }
884                 break;
885
886                 default:
887                         if (c == ' ') {
888                                 if (linelen > 0 &&
889                                     currlinelen + word.length() > linelen - 10) {
890                                         buffer << "\n";
891                                         pair<int, string> p = addDepth(depth, ltype_depth);
892                                         buffer << p.second;
893                                         currlinelen = p.first;
894                                 }
895
896                                 buffer << word << ' ';
897                                 currlinelen += word.length() + 1;
898                                 word.erase();
899
900                         } else {
901                                 if (c != '\0') {
902                                         word += c;
903                                 } else {
904                                         lyxerr[Debug::INFO] <<
905                                                 "writeAsciiFile: NULL char in structure." << endl;
906                                 }
907                                 if ((linelen > 0) &&
908                                         (currlinelen + word.length()) > linelen)
909                                 {
910                                         buffer << "\n";
911
912                                         pair<int, string> p =
913                                                 addDepth(depth, ltype_depth);
914                                         buffer << p.second;
915                                         currlinelen = p.first;
916                                 }
917                         }
918                         break;
919                 }
920         }
921         buffer << word;
922         return STRCONV(buffer.str());
923 }
924
925
926 void Buffer::writeFileAscii(string const & fname, int linelen)
927 {
928         ofstream ofs(fname.c_str());
929         if (!ofs) {
930                 string const file = MakeDisplayPath(fname, 50);
931                 string text = bformat(_("Could not save the document\n%1$s."), file);
932                 Alert::error(_("Could not save document"), text);
933                 return;
934         }
935         writeFileAscii(ofs, linelen);
936 }
937
938
939 void Buffer::writeFileAscii(ostream & os, int linelen)
940 {
941         ParagraphList::iterator beg = paragraphs.begin();
942         ParagraphList::iterator end = paragraphs.end();
943         ParagraphList::iterator it = beg;
944         for (; it != end; ++it) {
945                 os << asciiParagraph(*it, linelen, it == beg);
946         }
947         os << "\n";
948 }
949
950
951
952 void Buffer::makeLaTeXFile(string const & fname,
953                            string const & original_path,
954                            LatexRunParams const & runparams,
955                            bool only_body, bool only_preamble)
956 {
957         lyxerr[Debug::LATEX] << "makeLaTeXFile..." << endl;
958
959         ofstream ofs(fname.c_str());
960         if (!ofs) {
961                 string const file = MakeDisplayPath(fname, 50);
962                 string text = bformat(_("Could not open the specified document\n%1$s."),
963                         file);
964                 Alert::error(_("Could not open file"), text);
965                 return;
966         }
967
968         makeLaTeXFile(ofs, original_path,
969                       runparams, only_body, only_preamble);
970
971         ofs.close();
972         if (ofs.fail()) {
973                 lyxerr << "File was not closed properly." << endl;
974         }
975 }
976
977
978 void Buffer::makeLaTeXFile(ostream & os,
979                            string const & original_path,
980                            LatexRunParams const & runparams_in,
981                            bool only_body, bool only_preamble)
982 {
983         LatexRunParams runparams = runparams_in;
984         niceFile = runparams.nice; // this will be used by Insetincludes.
985
986         // validate the buffer.
987         lyxerr[Debug::LATEX] << "  Validating buffer..." << endl;
988         LaTeXFeatures features(params);
989         validate(features);
990         lyxerr[Debug::LATEX] << "  Buffer validation done." << endl;
991
992         texrow.reset();
993         // The starting paragraph of the coming rows is the
994         // first paragraph of the document. (Asger)
995         texrow.start(paragraphs.begin()->id(), 0);
996
997         if (!only_body && runparams.nice) {
998                 os << "%% " << lyx_docversion << " created this file.  "
999                         "For more info, see http://www.lyx.org/.\n"
1000                         "%% Do not edit unless you really know what "
1001                         "you are doing.\n";
1002                 texrow.newline();
1003                 texrow.newline();
1004         }
1005         lyxerr[Debug::INFO] << "lyx header finished" << endl;
1006         // There are a few differences between nice LaTeX and usual files:
1007         // usual is \batchmode and has a
1008         // special input@path to allow the including of figures
1009         // with either \input or \includegraphics (what figinsets do).
1010         // input@path is set when the actual parameter
1011         // original_path is set. This is done for usual tex-file, but not
1012         // for nice-latex-file. (Matthias 250696)
1013         if (!only_body) {
1014                 if (!runparams.nice) {
1015                         // code for usual, NOT nice-latex-file
1016                         os << "\\batchmode\n"; // changed
1017                         // from \nonstopmode
1018                         texrow.newline();
1019                 }
1020                 if (!original_path.empty()) {
1021                         string inputpath = os::external_path(original_path);
1022                         subst(inputpath, "~", "\\string~");
1023                         os << "\\makeatletter\n"
1024                             << "\\def\\input@path{{"
1025                             << inputpath << "/}}\n"
1026                             << "\\makeatother\n";
1027                         texrow.newline();
1028                         texrow.newline();
1029                         texrow.newline();
1030                 }
1031
1032                 // Write the preamble
1033                 runparams.use_babel = params.writeLaTeX(os, features, texrow);
1034
1035                 if (only_preamble)
1036                         return;
1037
1038                 // make the body.
1039                 os << "\\begin{document}\n";
1040                 texrow.newline();
1041         } // only_body
1042         lyxerr[Debug::INFO] << "preamble finished, now the body." << endl;
1043
1044         if (!lyxrc.language_auto_begin) {
1045                 os << subst(lyxrc.language_command_begin, "$$lang",
1046                              params.language->babel())
1047                     << endl;
1048                 texrow.newline();
1049         }
1050
1051         latexParagraphs(this, paragraphs, os, texrow, runparams, false);
1052
1053         // add this just in case after all the paragraphs
1054         os << endl;
1055         texrow.newline();
1056
1057         if (!lyxrc.language_auto_end) {
1058                 os << subst(lyxrc.language_command_end, "$$lang",
1059                              params.language->babel())
1060                     << endl;
1061                 texrow.newline();
1062         }
1063
1064         if (!only_body) {
1065                 os << "\\end{document}\n";
1066                 texrow.newline();
1067
1068                 lyxerr[Debug::LATEX] << "makeLaTeXFile...done" << endl;
1069         } else {
1070                 lyxerr[Debug::LATEX] << "LaTeXFile for inclusion made."
1071                                      << endl;
1072         }
1073
1074         // Just to be sure. (Asger)
1075         texrow.newline();
1076
1077         lyxerr[Debug::INFO] << "Finished making LaTeX file." << endl;
1078         lyxerr[Debug::INFO] << "Row count was " << texrow.rows() - 1
1079                             << '.' << endl;
1080
1081         // we want this to be true outside previews (for insetexternal)
1082         niceFile = true;
1083 }
1084
1085
1086 bool Buffer::isLatex() const
1087 {
1088         return params.getLyXTextClass().outputType() == LATEX;
1089 }
1090
1091
1092 bool Buffer::isLinuxDoc() const
1093 {
1094         return params.getLyXTextClass().outputType() == LINUXDOC;
1095 }
1096
1097
1098 bool Buffer::isLiterate() const
1099 {
1100         return params.getLyXTextClass().outputType() == LITERATE;
1101 }
1102
1103
1104 bool Buffer::isDocBook() const
1105 {
1106         return params.getLyXTextClass().outputType() == DOCBOOK;
1107 }
1108
1109
1110 bool Buffer::isSGML() const
1111 {
1112         LyXTextClass const & tclass = params.getLyXTextClass();
1113
1114         return tclass.outputType() == LINUXDOC ||
1115                tclass.outputType() == DOCBOOK;
1116 }
1117
1118
1119 void Buffer::makeLinuxDocFile(string const & fname, bool nice, bool body_only)
1120 {
1121         ofstream ofs(fname.c_str());
1122
1123         if (!ofs) {
1124                 string const file = MakeDisplayPath(fname, 50);
1125                 string text = bformat(_("Could not save the specified document\n%1$s.\n"),
1126                         file);
1127                 Alert::error(_("Could not save document"), text);
1128                 return;
1129         }
1130
1131         niceFile = nice; // this will be used by included files.
1132
1133         LaTeXFeatures features(params);
1134
1135         validate(features);
1136
1137         texrow.reset();
1138
1139         LyXTextClass const & tclass = params.getLyXTextClass();
1140
1141         string top_element = tclass.latexname();
1142
1143         if (!body_only) {
1144                 ofs << "<!doctype linuxdoc system";
1145
1146                 string preamble = params.preamble;
1147                 const string name = nice ? ChangeExtension(filename_, ".sgml")
1148                          : fname;
1149                 preamble += features.getIncludedFiles(name);
1150                 preamble += features.getLyXSGMLEntities();
1151
1152                 if (!preamble.empty()) {
1153                         ofs << " [ " << preamble << " ]";
1154                 }
1155                 ofs << ">\n\n";
1156
1157                 if (params.options.empty())
1158                         sgml::openTag(ofs, 0, false, top_element);
1159                 else {
1160                         string top = top_element;
1161                         top += ' ';
1162                         top += params.options;
1163                         sgml::openTag(ofs, 0, false, top);
1164                 }
1165         }
1166
1167         ofs << "<!-- "  << lyx_docversion
1168             << " created this file. For more info see http://www.lyx.org/"
1169             << " -->\n";
1170
1171         Paragraph::depth_type depth = 0; // paragraph depth
1172         string item_name;
1173         vector<string> environment_stack(5);
1174
1175         users->resetErrorList();
1176
1177         ParagraphList::iterator pit = paragraphs.begin();
1178         ParagraphList::iterator pend = paragraphs.end();
1179         for (; pit != pend; ++pit) {
1180                 LyXLayout_ptr const & style = pit->layout();
1181                 // treat <toc> as a special case for compatibility with old code
1182                 if (pit->isInset(0)) {
1183                         Inset * inset = pit->getInset(0);
1184                         Inset::Code lyx_code = inset->lyxCode();
1185                         if (lyx_code == Inset::TOC_CODE) {
1186                                 string const temp = "toc";
1187                                 sgml::openTag(ofs, depth, false, temp);
1188                                 continue;
1189                         }
1190                 }
1191
1192                 // environment tag closing
1193                 for (; depth > pit->params().depth(); --depth) {
1194                         sgml::closeTag(ofs, depth, false, environment_stack[depth]);
1195                         environment_stack[depth].erase();
1196                 }
1197
1198                 // write opening SGML tags
1199                 switch (style->latextype) {
1200                 case LATEX_PARAGRAPH:
1201                         if (depth == pit->params().depth()
1202                            && !environment_stack[depth].empty()) {
1203                                 sgml::closeTag(ofs, depth, false, environment_stack[depth]);
1204                                 environment_stack[depth].erase();
1205                                 if (depth)
1206                                         --depth;
1207                                 else
1208                                         ofs << "</p>";
1209                         }
1210                         sgml::openTag(ofs, depth, false, style->latexname());
1211                         break;
1212
1213                 case LATEX_COMMAND:
1214                         if (depth != 0)
1215                                 sgmlError(pit, 0,
1216                                           _("Error: Wrong depth for LatexType Command.\n"));
1217
1218                         if (!environment_stack[depth].empty()) {
1219                                 sgml::closeTag(ofs, depth, false, environment_stack[depth]);
1220                                 ofs << "</p>";
1221                         }
1222
1223                         environment_stack[depth].erase();
1224                         sgml::openTag(ofs, depth, false, style->latexname());
1225                         break;
1226
1227                 case LATEX_ENVIRONMENT:
1228                 case LATEX_ITEM_ENVIRONMENT:
1229                 case LATEX_BIB_ENVIRONMENT:
1230                 {
1231                         string const & latexname = style->latexname();
1232
1233                         if (depth == pit->params().depth()
1234                             && environment_stack[depth] != latexname) {
1235                                 sgml::closeTag(ofs, depth, false,
1236                                              environment_stack[depth]);
1237                                 environment_stack[depth].erase();
1238                         }
1239                         if (depth < pit->params().depth()) {
1240                                depth = pit->params().depth();
1241                                environment_stack[depth].erase();
1242                         }
1243                         if (environment_stack[depth] != latexname) {
1244                                 if (depth == 0) {
1245                                         sgml::openTag(ofs, depth, false, "p");
1246                                 }
1247                                 sgml::openTag(ofs, depth, false, latexname);
1248
1249                                 if (environment_stack.size() == depth + 1)
1250                                         environment_stack.push_back("!-- --");
1251                                 environment_stack[depth] = latexname;
1252                         }
1253
1254                         if (style->latexparam() == "CDATA")
1255                                 ofs << "<![CDATA[";
1256
1257                         if (style->latextype == LATEX_ENVIRONMENT) break;
1258
1259                         if (style->labeltype == LABEL_MANUAL)
1260                                 item_name = "tag";
1261                         else
1262                                 item_name = "item";
1263
1264                         sgml::openTag(ofs, depth + 1, false, item_name);
1265                 }
1266                 break;
1267
1268                 default:
1269                         sgml::openTag(ofs, depth, false, style->latexname());
1270                         break;
1271                 }
1272
1273                 simpleLinuxDocOnePar(ofs, pit, depth);
1274
1275                 ofs << "\n";
1276                 // write closing SGML tags
1277                 switch (style->latextype) {
1278                 case LATEX_COMMAND:
1279                         break;
1280                 case LATEX_ENVIRONMENT:
1281                 case LATEX_ITEM_ENVIRONMENT:
1282                 case LATEX_BIB_ENVIRONMENT:
1283                         if (style->latexparam() == "CDATA")
1284                                 ofs << "]]>";
1285                         break;
1286                 default:
1287                         sgml::closeTag(ofs, depth, false, style->latexname());
1288                         break;
1289                 }
1290         }
1291
1292         // Close open tags
1293         for (int i = depth; i >= 0; --i)
1294                 sgml::closeTag(ofs, depth, false, environment_stack[i]);
1295
1296         if (!body_only) {
1297                 ofs << "\n\n";
1298                 sgml::closeTag(ofs, 0, false, top_element);
1299         }
1300
1301         ofs.close();
1302         // How to check for successful close
1303
1304         // we want this to be true outside previews (for insetexternal)
1305         niceFile = true;
1306
1307         users->showErrorList(_("LinuxDoc"));
1308 }
1309
1310
1311 // checks, if newcol chars should be put into this line
1312 // writes newline, if necessary.
1313 namespace {
1314
1315 void sgmlLineBreak(ostream & os, string::size_type & colcount,
1316                           string::size_type newcol)
1317 {
1318         colcount += newcol;
1319         if (colcount > lyxrc.ascii_linelen) {
1320                 os << "\n";
1321                 colcount = newcol; // assume write after this call
1322         }
1323 }
1324
1325 enum PAR_TAG {
1326         NONE=0,
1327         TT = 1,
1328         SF = 2,
1329         BF = 4,
1330         IT = 8,
1331         SL = 16,
1332         EM = 32
1333 };
1334
1335
1336 string tag_name(PAR_TAG const & pt) {
1337         switch (pt) {
1338         case NONE: return "!-- --";
1339         case TT: return "tt";
1340         case SF: return "sf";
1341         case BF: return "bf";
1342         case IT: return "it";
1343         case SL: return "sl";
1344         case EM: return "em";
1345         }
1346         return "";
1347 }
1348
1349
1350 inline
1351 void operator|=(PAR_TAG & p1, PAR_TAG const & p2)
1352 {
1353         p1 = static_cast<PAR_TAG>(p1 | p2);
1354 }
1355
1356
1357 inline
1358 void reset(PAR_TAG & p1, PAR_TAG const & p2)
1359 {
1360         p1 = static_cast<PAR_TAG>(p1 & ~p2);
1361 }
1362
1363 } // anon
1364
1365
1366 // Handle internal paragraph parsing -- layout already processed.
1367 void Buffer::simpleLinuxDocOnePar(ostream & os,
1368         ParagraphList::iterator par,
1369         Paragraph::depth_type /*depth*/) const
1370 {
1371         LyXLayout_ptr const & style = par->layout();
1372
1373         string::size_type char_line_count = 5;     // Heuristic choice ;-)
1374
1375         // gets paragraph main font
1376         LyXFont font_old;
1377         bool desc_on;
1378         if (style->labeltype == LABEL_MANUAL) {
1379                 font_old = style->labelfont;
1380                 desc_on = true;
1381         } else {
1382                 font_old = style->font;
1383                 desc_on = false;
1384         }
1385
1386         LyXFont::FONT_FAMILY family_type = LyXFont::ROMAN_FAMILY;
1387         LyXFont::FONT_SERIES series_type = LyXFont::MEDIUM_SERIES;
1388         LyXFont::FONT_SHAPE  shape_type  = LyXFont::UP_SHAPE;
1389         bool is_em = false;
1390
1391         stack<PAR_TAG> tag_state;
1392         // parsing main loop
1393         for (pos_type i = 0; i < par->size(); ++i) {
1394
1395                 PAR_TAG tag_close = NONE;
1396                 list < PAR_TAG > tag_open;
1397
1398                 LyXFont const font = par->getFont(params, i, outerFont(par, paragraphs));
1399
1400                 if (font_old.family() != font.family()) {
1401                         switch (family_type) {
1402                         case LyXFont::SANS_FAMILY:
1403                                 tag_close |= SF;
1404                                 break;
1405                         case LyXFont::TYPEWRITER_FAMILY:
1406                                 tag_close |= TT;
1407                                 break;
1408                         default:
1409                                 break;
1410                         }
1411
1412                         family_type = font.family();
1413
1414                         switch (family_type) {
1415                         case LyXFont::SANS_FAMILY:
1416                                 tag_open.push_back(SF);
1417                                 break;
1418                         case LyXFont::TYPEWRITER_FAMILY:
1419                                 tag_open.push_back(TT);
1420                                 break;
1421                         default:
1422                                 break;
1423                         }
1424                 }
1425
1426                 if (font_old.series() != font.series()) {
1427                         switch (series_type) {
1428                         case LyXFont::BOLD_SERIES:
1429                                 tag_close |= BF;
1430                                 break;
1431                         default:
1432                                 break;
1433                         }
1434
1435                         series_type = font.series();
1436
1437                         switch (series_type) {
1438                         case LyXFont::BOLD_SERIES:
1439                                 tag_open.push_back(BF);
1440                                 break;
1441                         default:
1442                                 break;
1443                         }
1444
1445                 }
1446
1447                 if (font_old.shape() != font.shape()) {
1448                         switch (shape_type) {
1449                         case LyXFont::ITALIC_SHAPE:
1450                                 tag_close |= IT;
1451                                 break;
1452                         case LyXFont::SLANTED_SHAPE:
1453                                 tag_close |= SL;
1454                                 break;
1455                         default:
1456                                 break;
1457                         }
1458
1459                         shape_type = font.shape();
1460
1461                         switch (shape_type) {
1462                         case LyXFont::ITALIC_SHAPE:
1463                                 tag_open.push_back(IT);
1464                                 break;
1465                         case LyXFont::SLANTED_SHAPE:
1466                                 tag_open.push_back(SL);
1467                                 break;
1468                         default:
1469                                 break;
1470                         }
1471                 }
1472                 // handle <em> tag
1473                 if (font_old.emph() != font.emph()) {
1474                         if (font.emph() == LyXFont::ON) {
1475                                 tag_open.push_back(EM);
1476                                 is_em = true;
1477                         }
1478                         else if (is_em) {
1479                                 tag_close |= EM;
1480                                 is_em = false;
1481                         }
1482                 }
1483
1484                 list < PAR_TAG > temp;
1485                 while (!tag_state.empty() && tag_close) {
1486                         PAR_TAG k =  tag_state.top();
1487                         tag_state.pop();
1488                         os << "</" << tag_name(k) << '>';
1489                         if (tag_close & k)
1490                                 reset(tag_close,k);
1491                         else
1492                                 temp.push_back(k);
1493                 }
1494
1495                 for(list< PAR_TAG >::const_iterator j = temp.begin();
1496                     j != temp.end(); ++j) {
1497                         tag_state.push(*j);
1498                         os << '<' << tag_name(*j) << '>';
1499                 }
1500
1501                 for(list< PAR_TAG >::const_iterator j = tag_open.begin();
1502                     j != tag_open.end(); ++j) {
1503                         tag_state.push(*j);
1504                         os << '<' << tag_name(*j) << '>';
1505                 }
1506
1507                 char c = par->getChar(i);
1508
1509                 if (c == Paragraph::META_INSET) {
1510                         Inset * inset = par->getInset(i);
1511                         inset->linuxdoc(this, os);
1512                         font_old = font;
1513                         continue;
1514                 }
1515
1516                 if (style->latexparam() == "CDATA") {
1517                         // "TeX"-Mode on == > SGML-Mode on.
1518                         if (c != '\0')
1519                                 os << c;
1520                         ++char_line_count;
1521                 } else {
1522                         bool ws;
1523                         string str;
1524                         boost::tie(ws, str) = sgml::escapeChar(c);
1525                         if (ws && !style->free_spacing && !par->isFreeSpacing()) {
1526                                 // in freespacing mode, spaces are
1527                                 // non-breaking characters
1528                                 if (desc_on) {// if char is ' ' then...
1529
1530                                         ++char_line_count;
1531                                         sgmlLineBreak(os, char_line_count, 6);
1532                                         os << "</tag>";
1533                                         desc_on = false;
1534                                 } else  {
1535                                         sgmlLineBreak(os, char_line_count, 1);
1536                                         os << c;
1537                                 }
1538                         } else {
1539                                 os << str;
1540                                 char_line_count += str.length();
1541                         }
1542                 }
1543                 font_old = font;
1544         }
1545
1546         while (!tag_state.empty()) {
1547                 os << "</" << tag_name(tag_state.top()) << '>';
1548                 tag_state.pop();
1549         }
1550
1551         // resets description flag correctly
1552         if (desc_on) {
1553                 // <tag> not closed...
1554                 sgmlLineBreak(os, char_line_count, 6);
1555                 os << "</tag>";
1556         }
1557 }
1558
1559
1560 // Print an error message.
1561 void Buffer::sgmlError(ParagraphList::iterator pit, int pos,
1562                        string const & message) const
1563 {
1564         users->addError(ErrorItem(message, string(), pit->id(), pos, pos));
1565 }
1566
1567
1568 void Buffer::makeDocBookFile(string const & fname, bool nice, bool only_body)
1569 {
1570         ofstream ofs(fname.c_str());
1571         if (!ofs) {
1572                 string const file = MakeDisplayPath(fname, 50);
1573                 string text = bformat(_("Could not save the specified document\n%1$s.\n"),
1574                         file);
1575                 Alert::error(_("Could not save document"), text);
1576                 return;
1577         }
1578
1579         niceFile = nice; // this will be used by Insetincludes.
1580
1581         LaTeXFeatures features(params);
1582         validate(features);
1583
1584         texrow.reset();
1585
1586         LyXTextClass const & tclass = params.getLyXTextClass();
1587         string top_element = tclass.latexname();
1588
1589         if (!only_body) {
1590                 ofs << "<!DOCTYPE " << top_element
1591                     << "  PUBLIC \"-//OASIS//DTD DocBook V4.1//EN\"";
1592
1593                 string preamble = params.preamble;
1594                 const string name = nice ? ChangeExtension(filename_, ".sgml")
1595                          : fname;
1596                 preamble += features.getIncludedFiles(name);
1597                 preamble += features.getLyXSGMLEntities();
1598
1599                 if (!preamble.empty()) {
1600                         ofs << "\n [ " << preamble << " ]";
1601                 }
1602                 ofs << ">\n\n";
1603         }
1604
1605         string top = top_element;
1606         top += " lang=\"";
1607         top += params.language->code();
1608         top += '"';
1609
1610         if (!params.options.empty()) {
1611                 top += ' ';
1612                 top += params.options;
1613         }
1614         sgml::openTag(ofs, 0, false, top);
1615
1616         ofs << "<!-- DocBook file was created by " << lyx_docversion
1617             << "\n  See http://www.lyx.org/ for more information -->\n";
1618
1619         vector<string> environment_stack(10);
1620         vector<string> environment_inner(10);
1621         vector<string> command_stack(10);
1622
1623         bool command_flag = false;
1624         Paragraph::depth_type command_depth = 0;
1625         Paragraph::depth_type command_base = 0;
1626         Paragraph::depth_type cmd_depth = 0;
1627         Paragraph::depth_type depth = 0; // paragraph depth
1628
1629         string item_name;
1630         string command_name;
1631
1632         users->resetErrorList();
1633
1634         ParagraphList::iterator par = paragraphs.begin();
1635         ParagraphList::iterator pend = paragraphs.end();
1636
1637         for (; par != pend; ++par) {
1638                 string sgmlparam;
1639                 string c_depth;
1640                 string c_params;
1641                 int desc_on = 0; // description mode
1642
1643                 LyXLayout_ptr const & style = par->layout();
1644
1645                 // environment tag closing
1646                 for (; depth > par->params().depth(); --depth) {
1647                         if (environment_inner[depth] != "!-- --") {
1648                                 item_name = "listitem";
1649                                 sgml::closeTag(ofs, command_depth + depth, false, item_name);
1650                                 if (environment_inner[depth] == "varlistentry")
1651                                         sgml::closeTag(ofs, depth+command_depth, false, environment_inner[depth]);
1652                         }
1653                         sgml::closeTag(ofs, depth + command_depth, false, environment_stack[depth]);
1654                         environment_stack[depth].erase();
1655                         environment_inner[depth].erase();
1656                 }
1657
1658                 if (depth == par->params().depth()
1659                    && environment_stack[depth] != style->latexname()
1660                    && !environment_stack[depth].empty()) {
1661                         if (environment_inner[depth] != "!-- --") {
1662                                 item_name= "listitem";
1663                                 sgml::closeTag(ofs, command_depth+depth, false, item_name);
1664                                 if (environment_inner[depth] == "varlistentry")
1665                                         sgml::closeTag(ofs, depth + command_depth, false, environment_inner[depth]);
1666                         }
1667
1668                         sgml::closeTag(ofs, depth + command_depth, false, environment_stack[depth]);
1669
1670                         environment_stack[depth].erase();
1671                         environment_inner[depth].erase();
1672                 }
1673
1674                 // Write opening SGML tags.
1675                 switch (style->latextype) {
1676                 case LATEX_PARAGRAPH:
1677                         sgml::openTag(ofs, depth + command_depth,
1678                                     false, style->latexname());
1679                         break;
1680
1681                 case LATEX_COMMAND:
1682                         if (depth != 0)
1683                                 sgmlError(par, 0,
1684                                           _("Error: Wrong depth for LatexType Command.\n"));
1685
1686                         command_name = style->latexname();
1687
1688                         sgmlparam = style->latexparam();
1689                         c_params = split(sgmlparam, c_depth,'|');
1690
1691                         cmd_depth = lyx::atoi(c_depth);
1692
1693                         if (command_flag) {
1694                                 if (cmd_depth < command_base) {
1695                                         for (Paragraph::depth_type j = command_depth;
1696                                              j >= command_base; --j) {
1697                                                 sgml::closeTag(ofs, j, false, command_stack[j]);
1698                                                 ofs << endl;
1699                                         }
1700                                         command_depth = command_base = cmd_depth;
1701                                 } else if (cmd_depth <= command_depth) {
1702                                         for (int j = command_depth;
1703                                              j >= int(cmd_depth); --j) {
1704                                                 sgml::closeTag(ofs, j, false, command_stack[j]);
1705                                                 ofs << endl;
1706                                         }
1707                                         command_depth = cmd_depth;
1708                                 } else
1709                                         command_depth = cmd_depth;
1710                         } else {
1711                                 command_depth = command_base = cmd_depth;
1712                                 command_flag = true;
1713                         }
1714                         if (command_stack.size() == command_depth + 1)
1715                                 command_stack.push_back(string());
1716                         command_stack[command_depth] = command_name;
1717
1718                         // treat label as a special case for
1719                         // more WYSIWYM handling.
1720                         // This is a hack while paragraphs can't have
1721                         // attributes, like id in this case.
1722                         if (par->isInset(0)) {
1723                                 Inset * inset = par->getInset(0);
1724                                 Inset::Code lyx_code = inset->lyxCode();
1725                                 if (lyx_code == Inset::LABEL_CODE) {
1726                                         command_name += " id=\"";
1727                                         command_name += (static_cast<InsetCommand *>(inset))->getContents();
1728                                         command_name += '"';
1729                                         desc_on = 3;
1730                                 }
1731                         }
1732
1733                         sgml::openTag(ofs, depth + command_depth, false, command_name);
1734
1735                         item_name = c_params.empty() ? "title" : c_params;
1736                         sgml::openTag(ofs, depth + 1 + command_depth, false, item_name);
1737                         break;
1738
1739                 case LATEX_ENVIRONMENT:
1740                 case LATEX_ITEM_ENVIRONMENT:
1741                         if (depth < par->params().depth()) {
1742                                 depth = par->params().depth();
1743                                 environment_stack[depth].erase();
1744                         }
1745
1746                         if (environment_stack[depth] != style->latexname()) {
1747                                 if (environment_stack.size() == depth + 1) {
1748                                         environment_stack.push_back("!-- --");
1749                                         environment_inner.push_back("!-- --");
1750                                 }
1751                                 environment_stack[depth] = style->latexname();
1752                                 environment_inner[depth] = "!-- --";
1753                                 sgml::openTag(ofs, depth + command_depth, false, environment_stack[depth]);
1754                         } else {
1755                                 if (environment_inner[depth] != "!-- --") {
1756                                         item_name= "listitem";
1757                                         sgml::closeTag(ofs, command_depth + depth, false, item_name);
1758                                         if (environment_inner[depth] == "varlistentry")
1759                                                 sgml::closeTag(ofs, depth + command_depth, false, environment_inner[depth]);
1760                                 }
1761                         }
1762
1763                         if (style->latextype == LATEX_ENVIRONMENT) {
1764                                 if (!style->latexparam().empty()) {
1765                                         if (style->latexparam() == "CDATA")
1766                                                 ofs << "<![CDATA[";
1767                                         else
1768                                                 sgml::openTag(ofs, depth + command_depth, false, style->latexparam());
1769                                 }
1770                                 break;
1771                         }
1772
1773                         desc_on = (style->labeltype == LABEL_MANUAL);
1774
1775                         environment_inner[depth] = desc_on ? "varlistentry" : "listitem";
1776                         sgml::openTag(ofs, depth + 1 + command_depth,
1777                                     false, environment_inner[depth]);
1778
1779                         item_name = desc_on ? "term" : "para";
1780                         sgml::openTag(ofs, depth + 1 + command_depth,
1781                                     false, item_name);
1782                         break;
1783                 default:
1784                         sgml::openTag(ofs, depth + command_depth,
1785                                     false, style->latexname());
1786                         break;
1787                 }
1788
1789                 simpleDocBookOnePar(ofs, par, desc_on,
1790                                     depth + 1 + command_depth);
1791
1792                 string end_tag;
1793                 // write closing SGML tags
1794                 switch (style->latextype) {
1795                 case LATEX_COMMAND:
1796                         end_tag = c_params.empty() ? "title" : c_params;
1797                         sgml::closeTag(ofs, depth + command_depth,
1798                                      false, end_tag);
1799                         break;
1800                 case LATEX_ENVIRONMENT:
1801                         if (!style->latexparam().empty()) {
1802                                 if (style->latexparam() == "CDATA")
1803                                         ofs << "]]>";
1804                                 else
1805                                         sgml::closeTag(ofs, depth + command_depth, false, style->latexparam());
1806                         }
1807                         break;
1808                 case LATEX_ITEM_ENVIRONMENT:
1809                         if (desc_on == 1) break;
1810                         end_tag = "para";
1811                         sgml::closeTag(ofs, depth + 1 + command_depth, false, end_tag);
1812                         break;
1813                 case LATEX_PARAGRAPH:
1814                         sgml::closeTag(ofs, depth + command_depth, false, style->latexname());
1815                         break;
1816                 default:
1817                         sgml::closeTag(ofs, depth + command_depth, false, style->latexname());
1818                         break;
1819                 }
1820         }
1821
1822         // Close open tags
1823         for (int d = depth; d >= 0; --d) {
1824                 if (!environment_stack[depth].empty()) {
1825                         if (environment_inner[depth] != "!-- --") {
1826                                 item_name = "listitem";
1827                                 sgml::closeTag(ofs, command_depth + depth, false, item_name);
1828                                if (environment_inner[depth] == "varlistentry")
1829                                        sgml::closeTag(ofs, depth + command_depth, false, environment_inner[depth]);
1830                         }
1831
1832                         sgml::closeTag(ofs, depth + command_depth, false, environment_stack[depth]);
1833                 }
1834         }
1835
1836         for (int j = command_depth; j >= 0 ; --j)
1837                 if (!command_stack[j].empty()) {
1838                         sgml::closeTag(ofs, j, false, command_stack[j]);
1839                         ofs << endl;
1840                 }
1841
1842         ofs << "\n\n";
1843         sgml::closeTag(ofs, 0, false, top_element);
1844
1845         ofs.close();
1846         // How to check for successful close
1847
1848         // we want this to be true outside previews (for insetexternal)
1849         niceFile = true;
1850         users->showErrorList(_("DocBook"));
1851 }
1852
1853
1854 void Buffer::simpleDocBookOnePar(ostream & os,
1855                                  ParagraphList::iterator par, int & desc_on,
1856                                  Paragraph::depth_type depth) const
1857 {
1858         bool emph_flag = false;
1859
1860         LyXLayout_ptr const & style = par->layout();
1861
1862         LyXFont font_old = (style->labeltype == LABEL_MANUAL ? style->labelfont : style->font);
1863
1864         int char_line_count = depth;
1865         //if (!style.free_spacing)
1866         //      os << string(depth,' ');
1867
1868         // parsing main loop
1869         for (pos_type i = 0; i < par->size(); ++i) {
1870                 LyXFont font = par->getFont(params, i, outerFont(par, paragraphs));
1871
1872                 // handle <emphasis> tag
1873                 if (font_old.emph() != font.emph()) {
1874                         if (font.emph() == LyXFont::ON) {
1875                                 if (style->latexparam() == "CDATA")
1876                                         os << "]]>";
1877                                 os << "<emphasis>";
1878                                 if (style->latexparam() == "CDATA")
1879                                         os << "<![CDATA[";
1880                                 emph_flag = true;
1881                         } else if (i) {
1882                                 if (style->latexparam() == "CDATA")
1883                                         os << "]]>";
1884                                 os << "</emphasis>";
1885                                 if (style->latexparam() == "CDATA")
1886                                         os << "<![CDATA[";
1887                                 emph_flag = false;
1888                         }
1889                 }
1890
1891
1892                 if (par->isInset(i)) {
1893                         Inset * inset = par->getInset(i);
1894                         // don't print the inset in position 0 if desc_on == 3 (label)
1895                         if (i || desc_on != 3) {
1896                                 if (style->latexparam() == "CDATA")
1897                                         os << "]]>";
1898                                 inset->docbook(this, os, false);
1899                                 if (style->latexparam() == "CDATA")
1900                                         os << "<![CDATA[";
1901                         }
1902                 } else {
1903                         char c = par->getChar(i);
1904                         bool ws;
1905                         string str;
1906                         boost::tie(ws, str) = sgml::escapeChar(c);
1907
1908                         if (style->pass_thru) {
1909                                 os << c;
1910                         } else if (style->free_spacing || par->isFreeSpacing() || c != ' ') {
1911                                         os << str;
1912                         } else if (desc_on ==1) {
1913                                 ++char_line_count;
1914                                 os << "\n</term><listitem><para>";
1915                                 desc_on = 2;
1916                         } else {
1917                                 os << ' ';
1918                         }
1919                 }
1920                 font_old = font;
1921         }
1922
1923         if (emph_flag) {
1924                 if (style->latexparam() == "CDATA")
1925                         os << "]]>";
1926                 os << "</emphasis>";
1927                 if (style->latexparam() == "CDATA")
1928                         os << "<![CDATA[";
1929         }
1930
1931         // resets description flag correctly
1932         if (desc_on == 1) {
1933                 // <term> not closed...
1934                 os << "</term>\n<listitem><para>&nbsp;</para>";
1935         }
1936         if (style->free_spacing)
1937                 os << '\n';
1938 }
1939
1940
1941 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1942 // Other flags: -wall -v0 -x
1943 int Buffer::runChktex()
1944 {
1945         if (!users->text) return 0;
1946
1947         users->owner()->busy(true);
1948
1949         // get LaTeX-Filename
1950         string const name = getLatexName();
1951         string path = filePath();
1952
1953         string const org_path = path;
1954         if (lyxrc.use_tempdir || !IsDirWriteable(path)) {
1955                 path = tmppath;
1956         }
1957
1958         Path p(path); // path to LaTeX file
1959         users->owner()->message(_("Running chktex..."));
1960
1961         // Generate the LaTeX file if neccessary
1962         LatexRunParams runparams;
1963         runparams.flavor = LatexRunParams::LATEX;
1964         runparams.nice = false;
1965         makeLaTeXFile(name, org_path, runparams);
1966
1967         TeXErrors terr;
1968         Chktex chktex(lyxrc.chktex_command, name, filePath());
1969         int res = chktex.run(terr); // run chktex
1970
1971         if (res == -1) {
1972                 Alert::error(_("chktex failure"),
1973                         _("Could not run chktex successfully."));
1974         } else if (res > 0) {
1975                 // Insert all errors as errors boxes
1976                 ErrorList el (*this, terr);
1977                 users->setErrorList(el);
1978                 users->showErrorList(_("ChkTeX"));
1979         }
1980
1981         users->owner()->busy(false);
1982
1983         return res;
1984 }
1985
1986
1987 void Buffer::validate(LaTeXFeatures & features) const
1988 {
1989         LyXTextClass const & tclass = params.getLyXTextClass();
1990
1991         if (params.tracking_changes) {
1992                 features.require("dvipost");
1993                 features.require("color");
1994         }
1995
1996         // AMS Style is at document level
1997         if (params.use_amsmath == BufferParams::AMS_ON
1998             || tclass.provides(LyXTextClass::amsmath))
1999                 features.require("amsmath");
2000
2001         for_each(paragraphs.begin(), paragraphs.end(),
2002                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
2003
2004         // the bullet shapes are buffer level not paragraph level
2005         // so they are tested here
2006         for (int i = 0; i < 4; ++i) {
2007                 if (params.user_defined_bullets[i] != ITEMIZE_DEFAULTS[i]) {
2008                         int const font = params.user_defined_bullets[i].getFont();
2009                         if (font == 0) {
2010                                 int const c = params
2011                                         .user_defined_bullets[i]
2012                                         .getCharacter();
2013                                 if (c == 16
2014                                    || c == 17
2015                                    || c == 25
2016                                    || c == 26
2017                                    || c == 31) {
2018                                         features.require("latexsym");
2019                                 }
2020                         } else if (font == 1) {
2021                                 features.require("amssymb");
2022                         } else if ((font >= 2 && font <= 5)) {
2023                                 features.require("pifont");
2024                         }
2025                 }
2026         }
2027
2028         if (lyxerr.debugging(Debug::LATEX)) {
2029                 features.showStruct();
2030         }
2031 }
2032
2033
2034 vector<string> const Buffer::getLabelList() const
2035 {
2036         /// if this is a child document and the parent is already loaded
2037         /// Use the parent's list instead  [ale990407]
2038         if (!params.parentname.empty()
2039             && bufferlist.exists(params.parentname)) {
2040                 Buffer const * tmp = bufferlist.getBuffer(params.parentname);
2041                 if (tmp)
2042                         return tmp->getLabelList();
2043         }
2044
2045         vector<string> label_list;
2046         for (inset_iterator it = inset_const_iterator_begin();
2047              it != inset_const_iterator_end(); ++it) {
2048                 vector<string> const l = it->getLabelList();
2049                 label_list.insert(label_list.end(), l.begin(), l.end());
2050         }
2051         return label_list;
2052 }
2053
2054
2055 // This is also a buffer property (ale)
2056 void Buffer::fillWithBibKeys(vector<pair<string, string> > & keys) const
2057 {
2058         /// if this is a child document and the parent is already loaded
2059         /// use the parent's list instead  [ale990412]
2060         if (!params.parentname.empty() && bufferlist.exists(params.parentname)) {
2061                 Buffer const * tmp = bufferlist.getBuffer(params.parentname);
2062                 if (tmp) {
2063                         tmp->fillWithBibKeys(keys);
2064                         return;
2065                 }
2066         }
2067
2068         for (inset_iterator it = inset_const_iterator_begin();
2069                 it != inset_const_iterator_end(); ++it) {
2070                 if (it->lyxCode() == Inset::BIBTEX_CODE)
2071                         static_cast<InsetBibtex &>(*it).fillWithBibKeys(this, keys);
2072                 else if (it->lyxCode() == Inset::INCLUDE_CODE)
2073                         static_cast<InsetInclude &>(*it).fillWithBibKeys(keys);
2074                 else if (it->lyxCode() == Inset::BIBITEM_CODE) {
2075                         InsetBibitem & bib = static_cast<InsetBibitem &>(*it);
2076                         string const key = bib.getContents();
2077                         string const opt = bib.getOptions();
2078                         string const ref; // = pit->asString(this, false);
2079                         string const info = opt + "TheBibliographyRef" + ref;
2080                         keys.push_back(pair<string, string>(key, info));
2081                 }
2082         }
2083 }
2084
2085
2086 bool Buffer::isDepClean(string const & name) const
2087 {
2088         DepClean::const_iterator it = dep_clean_.find(name);
2089         if (it == dep_clean_.end())
2090                 return true;
2091         return it->second;
2092 }
2093
2094
2095 void Buffer::markDepClean(string const & name)
2096 {
2097         dep_clean_[name] = true;
2098 }
2099
2100
2101 bool Buffer::dispatch(string const & command, bool * result)
2102 {
2103         // Split command string into command and argument
2104         string cmd;
2105         string line = ltrim(command);
2106         string const arg = trim(split(line, cmd, ' '));
2107
2108         return dispatch(lyxaction.LookupFunc(cmd), arg, result);
2109 }
2110
2111
2112 bool Buffer::dispatch(int action, string const & argument, bool * result)
2113 {
2114         bool dispatched = true;
2115
2116         switch (action) {
2117                 case LFUN_EXPORT: {
2118                         bool const tmp = Exporter::Export(this, argument, false);
2119                         if (result)
2120                                 *result = tmp;
2121                         break;
2122                 }
2123
2124                 default:
2125                         dispatched = false;
2126         }
2127         return dispatched;
2128 }
2129
2130
2131 void Buffer::resizeInsets(BufferView * bv)
2132 {
2133         /// then remove all LyXText in text-insets
2134         for_each(paragraphs.begin(), paragraphs.end(),
2135                  boost::bind(&Paragraph::resizeInsetsLyXText, _1, bv));
2136 }
2137
2138
2139 void Buffer::redraw()
2140 {
2141 #warning repaint needed here, or do you mean update() ?
2142         users->repaint();
2143         users->fitCursor();
2144 }
2145
2146
2147 void Buffer::changeLanguage(Language const * from, Language const * to)
2148 {
2149         lyxerr << "Changing Language!" << endl;
2150
2151         // Take care of l10n/i18n
2152         updateDocLang(to);
2153
2154         ParIterator end = par_iterator_end();
2155         for (ParIterator it = par_iterator_begin(); it != end; ++it)
2156                 (*it)->changeLanguage(params, from, to);
2157 }
2158
2159
2160 void Buffer::updateDocLang(Language const * nlang)
2161 {
2162         messages_.reset(new Messages(nlang->code()));
2163 }
2164
2165
2166 bool Buffer::isMultiLingual()
2167 {
2168         ParIterator end = par_iterator_end();
2169         for (ParIterator it = par_iterator_begin(); it != end; ++it)
2170                 if ((*it)->isMultiLingual(params))
2171                         return true;
2172
2173         return false;
2174 }
2175
2176
2177 void Buffer::inset_iterator::setParagraph()
2178 {
2179         while (pit != pend) {
2180                 it = pit->insetlist.begin();
2181                 if (it != pit->insetlist.end())
2182                         return;
2183                 ++pit;
2184         }
2185 }
2186
2187
2188 Inset * Buffer::getInsetFromID(int id_arg) const
2189 {
2190         for (inset_iterator it = inset_const_iterator_begin();
2191                  it != inset_const_iterator_end(); ++it)
2192         {
2193                 if (it->id() == id_arg)
2194                         return &(*it);
2195                 Inset * in = it->getInsetFromID(id_arg);
2196                 if (in)
2197                         return in;
2198         }
2199         return 0;
2200 }
2201
2202
2203 ParIterator Buffer::getParFromID(int id) const
2204 {
2205 #warning FIXME: const correctness! (Andre)
2206         ParIterator it(const_cast<Buffer*>(this)->par_iterator_begin());
2207         ParIterator end(const_cast<Buffer*>(this)->par_iterator_end());
2208
2209 #warning FIXME, perhaps this func should return a ParIterator? (Lgb)
2210         if (id < 0) {
2211                 // John says this is called with id == -1 from undo
2212                 lyxerr << "getParFromID(), id: " << id << endl;
2213                 return end;
2214         }
2215
2216         for (; it != end; ++it)
2217                 if ((*it)->id() == id)
2218                         return it;
2219
2220         return end;
2221 }
2222
2223
2224 bool Buffer::hasParWithID(int id) const
2225 {
2226         ParIterator it(const_cast<Buffer*>(this)->par_iterator_begin());
2227         ParIterator end(const_cast<Buffer*>(this)->par_iterator_end());
2228
2229         if (id < 0) {
2230                 // John says this is called with id == -1 from undo
2231                 lyxerr << "hasParWithID(), id: " << id << endl;
2232                 return 0;
2233         }
2234
2235         for (; it != end; ++it)
2236                 if ((*it)->id() == id)
2237                         return true;
2238
2239         return false;
2240 }
2241
2242
2243 ParIterator Buffer::par_iterator_begin()
2244 {
2245         return ParIterator(paragraphs.begin(), paragraphs);
2246 }
2247
2248
2249 ParIterator Buffer::par_iterator_end()
2250 {
2251         return ParIterator(paragraphs.end(), paragraphs);
2252 }
2253
2254 ParConstIterator Buffer::par_iterator_begin() const
2255 {
2256         return ParConstIterator(paragraphs.begin(), paragraphs);
2257 }
2258
2259
2260 ParConstIterator Buffer::par_iterator_end() const
2261 {
2262         return ParConstIterator(paragraphs.end(), paragraphs);
2263 }
2264
2265
2266
2267 void Buffer::addUser(BufferView * u)
2268 {
2269         users = u;
2270 }
2271
2272
2273 void Buffer::delUser(BufferView *)
2274 {
2275         users = 0;
2276 }
2277
2278
2279 Language const * Buffer::getLanguage() const
2280 {
2281         return params.language;
2282 }
2283
2284
2285 string const Buffer::B_(string const & l10n) const
2286 {
2287         if (messages_.get()) {
2288                 return messages_->get(l10n);
2289         }
2290
2291         return _(l10n);
2292 }
2293
2294
2295 bool Buffer::isClean() const
2296 {
2297         return lyx_clean;
2298 }
2299
2300
2301 bool Buffer::isBakClean() const
2302 {
2303         return bak_clean;
2304 }
2305
2306
2307 void Buffer::markClean() const
2308 {
2309         if (!lyx_clean) {
2310                 lyx_clean = true;
2311                 updateTitles();
2312         }
2313         // if the .lyx file has been saved, we don't need an
2314         // autosave
2315         bak_clean = true;
2316 }
2317
2318
2319 void Buffer::markBakClean()
2320 {
2321         bak_clean = true;
2322 }
2323
2324
2325 void Buffer::setUnnamed(bool flag)
2326 {
2327         unnamed = flag;
2328 }
2329
2330
2331 bool Buffer::isUnnamed()
2332 {
2333         return unnamed;
2334 }
2335
2336
2337 void Buffer::markDirty()
2338 {
2339         if (lyx_clean) {
2340                 lyx_clean = false;
2341                 updateTitles();
2342         }
2343         bak_clean = false;
2344
2345         DepClean::iterator it = dep_clean_.begin();
2346         DepClean::const_iterator const end = dep_clean_.end();
2347
2348         for (; it != end; ++it) {
2349                 it->second = false;
2350         }
2351 }
2352
2353
2354 string const & Buffer::fileName() const
2355 {
2356         return filename_;
2357 }
2358
2359
2360 string const & Buffer::filePath() const
2361 {
2362         return filepath_;
2363 }
2364
2365
2366 bool Buffer::isReadonly() const
2367 {
2368         return read_only;
2369 }
2370
2371
2372 BufferView * Buffer::getUser() const
2373 {
2374         return users;
2375 }
2376
2377
2378 void Buffer::setParentName(string const & name)
2379 {
2380         params.parentname = name;
2381 }
2382
2383
2384 Buffer::inset_iterator::inset_iterator()
2385         : pit(0), pend(0)
2386 {}
2387
2388
2389 Buffer::inset_iterator::inset_iterator(base_type p, base_type e)
2390         : pit(p), pend(e)
2391 {
2392         setParagraph();
2393 }
2394
2395
2396 Buffer::inset_iterator & Buffer::inset_iterator::operator++()
2397 {
2398         if (pit != pend) {
2399                 ++it;
2400                 if (it == pit->insetlist.end()) {
2401                         ++pit;
2402                         setParagraph();
2403                 }
2404         }
2405         return *this;
2406 }
2407
2408
2409 Buffer::inset_iterator Buffer::inset_iterator::operator++(int)
2410 {
2411         inset_iterator tmp = *this;
2412         ++*this;
2413         return tmp;
2414 }
2415
2416
2417 Buffer::inset_iterator::reference Buffer::inset_iterator::operator*()
2418 {
2419         return *it.getInset();
2420 }
2421
2422
2423 Buffer::inset_iterator::pointer Buffer::inset_iterator::operator->()
2424 {
2425         return it.getInset();
2426 }
2427
2428
2429 ParagraphList::iterator Buffer::inset_iterator::getPar() const
2430 {
2431         return pit;
2432 }
2433
2434
2435 lyx::pos_type Buffer::inset_iterator::getPos() const
2436 {
2437         return it.getPos();
2438 }
2439
2440
2441 bool operator==(Buffer::inset_iterator const & iter1,
2442                 Buffer::inset_iterator const & iter2)
2443 {
2444         return iter1.pit == iter2.pit
2445                 && (iter1.pit == iter1.pend || iter1.it == iter2.it);
2446 }
2447
2448
2449 bool operator!=(Buffer::inset_iterator const & iter1,
2450                 Buffer::inset_iterator const & iter2)
2451 {
2452         return !(iter1 == iter2);
2453 }