]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.C
Scons: update_po target, part one: language_l10n.pot
[lyx.git] / src / output_plaintext.C
index 0a6d16eddc20b8b7738dfef77fed4047fee88dad..d3072e4dc8a0e9d3284c3c2dced865a750c02189 100644 (file)
@@ -29,7 +29,6 @@ namespace lyx {
 
 using support::ascii_lowercase;
 using support::compare_ascii_no_case;
-using support::compare_no_case;
 using support::contains;
 using support::FileName;
 
@@ -59,8 +58,10 @@ void writePlaintextFile(Buffer const & buf, odocstream & os,
        ParagraphList::const_iterator it = beg;
        for (; it != end; ++it) {
                writePlaintextParagraph(buf, *it, os, runparams, ref_printed);
+               os << "\n";
+               if (runparams.linelen > 0)
+                       os << "\n";
        }
-       os << "\n";
 }
 
 
@@ -89,7 +90,7 @@ void writePlaintextParagraph(Buffer const & buf,
 
        // First write the layout
        string const & tmp = par.layout()->name();
-       if (compare_no_case(tmp, "itemize") == 0) {
+       if (compare_ascii_no_case(tmp, "itemize") == 0) {
                ltype = 1;
                ltype_depth = depth + 1;
        } else if (compare_ascii_no_case(tmp, "enumerate") == 0) {
@@ -115,25 +116,16 @@ void writePlaintextParagraph(Buffer const & buf,
                ltype_depth = 0;
        }
 
-       /* maybe some vertical spaces */
-
        /* the labelwidthstring used in lists */
 
-       /* some lines? */
-
-       /* some pagebreaks? */
-
        /* noindent ? */
 
        /* what about the alignment */
 
-       // runparams.linelen <= 0 is special and means we don't have paragraph breaks
+       // runparams.linelen == 0 is special and means we don't have paragraph breaks
 
        string::size_type currlinelen = 0;
 
-       if (runparams.linelen > 0)
-               os << "\n\n";
-
        os << docstring(depth * 2, ' ');
        currlinelen += depth * 2;
 
@@ -175,55 +167,58 @@ void writePlaintextParagraph(Buffer const & buf,
 
        default: {
                docstring const label = par.params().labelString();
-               os << label << ' ';
-               currlinelen += label.length() + 1;
+               if (!label.empty()) {
+                       os << label << ' ';
+                       currlinelen += label.length() + 1;
+               }
                break;
        }
 
        }
 
-       if (!currlinelen) {
+       if (currlinelen == 0) {
                pair<int, docstring> p = addDepth(depth, ltype_depth);
                os << p.second;
                currlinelen += p.first;
        }
 
-       // this is to change the linebreak to do it by word a bit more
-       // intelligent hopefully! (only in the case where we have a
-       // max runparams.linelength!) (Jug)
-
        docstring word;
 
        for (pos_type i = 0; i < par.size(); ++i) {
+               // deleted characters don't make much sense in plain text output
+               if (par.isDeleted(i))
+                       continue;
+
                char_type c = par.getUChar(buf.params(), i);
-               switch (c) {
-               case Paragraph::META_INSET: {
-                       InsetBase const * inset = par.getInset(i);
-                       if (runparams.linelen > 0) {
-                               os << word;
-                               currlinelen += word.length();
-                               word.erase();
-                       }
-                       OutputParams rp = runparams;
-                       rp.depth = par.params().depth();
-                       if (inset->plaintext(buf, os, rp)) {
-                               // to be sure it breaks paragraph
-                               currlinelen += runparams.linelen;
-                       }
-                       break;
-               }
 
-               case ' ':
+               if (c == Paragraph::META_INSET || c == ' ') {
                        if (runparams.linelen > 0 &&
-                           currlinelen + word.length() > runparams.linelen - 10) {
+                           currlinelen + word.length() > runparams.linelen) {
                                os << '\n';
                                pair<int, docstring> p = addDepth(depth, ltype_depth);
                                os << p.second;
                                currlinelen = p.first;
                        }
-                       os << word << ' ';
-                       currlinelen += word.length() + 1;
+                       os << word;
+                       currlinelen += word.length();
                        word.erase();
+               }
+
+               switch (c) {
+               case Paragraph::META_INSET: {
+                       OutputParams rp = runparams;
+                       rp.depth = par.params().depth();
+                       int len = par.getInset(i)->plaintext(buf, os, rp);
+                       if (len >= InsetBase::PLAINTEXT_NEWLINE)
+                               currlinelen = len - InsetBase::PLAINTEXT_NEWLINE;
+                       else
+                               currlinelen += len;
+                       break;
+               }
+
+               case ' ':
+                       os << ' ';
+                       currlinelen++;
                        break;
 
                case '\0':
@@ -233,18 +228,22 @@ void writePlaintextParagraph(Buffer const & buf,
 
                default:
                        word += c;
-                       if (runparams.linelen > 0 &&
-                           currlinelen + word.length() > runparams.linelen)
-                       {
-                               os << '\n';
-                               pair<int, docstring> p = addDepth(depth, ltype_depth);
-                               os << p.second;
-                               currlinelen = p.first;
-                       }
                        break;
                }
        }
-       os << word;
+
+       // currlinelen may be greater than runparams.linelen!
+       // => check whether word is empty and do nothing in this case
+       if (!word.empty()) {
+               if (runparams.linelen > 0 &&
+                   currlinelen + word.length() > runparams.linelen) {
+                       os << '\n';
+                       pair<int, docstring> p = addDepth(depth, ltype_depth);
+                       os << p.second;
+                       currlinelen = p.first;
+               }
+               os << word;
+       }
 }