X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiPainter.h;h=a3849bb679ca4a65d8d48a362bde653bbe918933;hb=72f91cb394e180419cd3ab85f710b8ad538208f9;hp=8e75438884689f17deed634d330ccfb688ea11cd;hpb=381b86788d382ffe26a1f24427a668b9ee1d061e;p=lyx.git diff --git a/src/frontends/qt4/GuiPainter.h b/src/frontends/qt4/GuiPainter.h index 8e75438884..a3849bb679 100644 --- a/src/frontends/qt4/GuiPainter.h +++ b/src/frontends/qt4/GuiPainter.h @@ -42,7 +42,7 @@ public: int x2, int y2, Color, line_style = line_solid, - line_width = line_thin); + float line_width = thin_line); /** * lines - draw a set of lines @@ -56,7 +56,7 @@ public: int np, Color, line_style = line_solid, - line_width = line_thin); + float line_width = thin_line); /// draw a rectangle virtual void rectangle( @@ -64,7 +64,7 @@ public: int w, int h, Color, line_style = line_solid, - line_width = line_thin); + float line_width = thin_line); /// draw a filled rectangle virtual void fillRectangle( @@ -129,10 +129,15 @@ private: /// check the font, and if set, draw an dashed underline void dashedUnderline(FontInfo const & f, int x, int y, int width); + /// check the font, and if set, draw an strike-through line void strikeoutLine(FontInfo const & f, int x, int y, int width); + /// check the font, and if set, draw double underline + void doubleUnderline(FontInfo const & f, + int x, int y, int width); + /// draw a bevelled button border void buttonFrame(int x, int y, int w, int h); @@ -145,11 +150,11 @@ private: /// set pen parameters void setQPainterPen(QColor const & col, - line_style ls = line_solid, line_width lw = line_thin); + line_style ls = line_solid, float lw = thin_line); QColor current_color_; Painter::line_style current_ls_; - Painter::line_width current_lw_; + float current_lw_; /// bool const use_pixmap_cache_; ///