]> git.lyx.org Git - lyx.git/blobdiff - src/support/docstream.h
Cmake build: Omit also hidden header files from globbing
[lyx.git] / src / support / docstream.h
index 6da05e36a84e7d6a7ac3c2e9ef62a071903bb489..e2f56f91c889b309a1b9c1e8b6d8d71cb0fce997 100644 (file)
@@ -90,15 +90,16 @@ typedef odocstream & (*odocstream_manip)(odocstream &);
     they were iomanip's to ensure that the next output will start at the
     beginning of a line. Using "breakln", a '\n' char will be output if needed,
     while using "safebreakln", "%\n" will be output if needed.
-    The class also records the last output character.
+    The class also records the last output character and can tell whether
+    a paragraph break was just output.
   */
 
 class otexstream {
 public:
        ///
        otexstream(odocstream & os, TexRow & texrow)
-               : os_(os), texrow_(texrow),
-                 canbreakline_(false), protectspace_(false), lastchar_(0) {}
+               : os_(os), texrow_(texrow), canbreakline_(false),
+                 protectspace_(false), parbreak_(true), lastchar_(0) {}
        ///
        odocstream & os() { return os_; }
        ///
@@ -114,9 +115,16 @@ public:
        ///
        bool protectSpace() const { return protectspace_; }
        ///
-       void lastChar(char_type const & c) { lastchar_ = c; }
+       void lastChar(char_type const & c)
+       {
+               parbreak_ = (!canbreakline_ && c == '\n');
+               canbreakline_ = (c != '\n');
+               lastchar_ = c;
+       }
        ///
        char_type lastChar() const { return lastchar_; }
+       ///
+       bool afterParbreak() const { return parbreak_; }
 private:
        ///
        odocstream & os_;
@@ -127,6 +135,8 @@ private:
        ///
        bool protectspace_;
        ///
+       bool parbreak_;
+       ///
        char_type lastchar_;
 };