]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
Minimal fix needed to give Qt a label dialog again.
[lyx.git] / src / lyxrow.h
index c82190dec62b9bca7a21841037a9aa2f1d0be5e0..fb53c7d4540236b1493c539b312005ae2606540f 100644 (file)
@@ -67,18 +67,24 @@ public:
        ///
        Row * previous() const;
 
+       /// return true if this row is the start of a paragraph
+       bool isParStart() const;
+
+       /// return true if this  row is the end of a paragraph
+       bool isParEnd() const;
+
        /// return the position of the last character in this row
        lyx::pos_type lastPos() const;
        /// return the position of the last normal, printable character in this row
        lyx::pos_type lastPrintablePos() const;
-       
+
        /**
         * Returns the number of separators.
         * The separator on the very last column doesnt count.
         */
        int numberOfSeparators() const;
 
-       /** 
+       /**
         * Returns the number of hfills. It works like a LaTeX \hfill:
         * the hfills at the beginning and at the end are ignored.
         * This is much more useful than not to ignore!