]> git.lyx.org Git - lyx.git/blobdiff - src/rowpainter.h
Header cleanup cont.
[lyx.git] / src / rowpainter.h
index 1ea10d48496da610023e3977524179de73ce642a..480a2dd56c58a946e7fe99626795e1edc5131ed5 100644 (file)
@@ -58,6 +58,7 @@ public:
        void paintSelection();
 
 private:
+       void paintSeparator(double orig_x, double width, FontInfo const & font);
        void paintForeignMark(double orig_x, Language const * lang, int desc = 0);
        void paintMisspelledMark(double orig_x, bool changed);
        void paintHebrewComposeChar(pos_type & vpos, FontInfo const & font);
@@ -75,6 +76,12 @@ private:
        /// return the label font for this row
        FontInfo labelFont() const;
 
+       ///
+       void paintLabel();
+       ///
+       void paintTopLevelLabel();
+
+
        /// contains painting related information.
        PainterInfo & pi_;
 
@@ -104,8 +111,10 @@ private:
        int const yo_;    // current baseline
        double x_;
        int width_;
-       float line_thickness_;
-       int line_offset_;
+       float solid_line_thickness_;
+       int solid_line_offset_;
+       float dotted_line_thickness_;
+       int dotted_line_offset_;
 };
 
 } // namespace lyx