]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiPainter.h
On Linux show in crash message box the backtrace
[lyx.git] / src / frontends / qt4 / GuiPainter.h
index a29507831fa80423089eb2aca5e1a64f9d3c5184..a4768c37c7b8759369a8d2b406f99805a7818a03 100644 (file)
@@ -41,8 +41,8 @@ public:
                int x1, int y1,
                int x2, int y2,
                Color,
-               line_style = line_solid,
-               float line_width = thin_line);
+               line_style ls = line_solid,
+               float lw = thin_line);
 
        /**
         * lines -  draw a set of lines
@@ -55,8 +55,8 @@ public:
                int const * yp,
                int np,
                Color,
-               line_style = line_solid,
-               float line_width = thin_line);
+               line_style ls = line_solid,
+               float lw = thin_line);
 
        /// draw a rectangle
        virtual void rectangle(
@@ -64,7 +64,7 @@ public:
                int w, int h,
                Color,
                line_style = line_solid,
-               float line_width = thin_line);
+               float lw = thin_line);
 
        /// draw a filled rectangle
        virtual void fillRectangle(
@@ -144,13 +144,6 @@ private:
        /// draw a bevelled button border
        void buttonFrame(int x, int y, int w, int h);
 
-       /// draw small caps text
-       /**
-       \return width of the drawn text.
-       */
-       int smallCapsText(int x, int y,
-               QString const & str, FontInfo const & f);
-
        /// set pen parameters
        void setQPainterPen(QColor const & col,
                line_style ls = line_solid, float lw = thin_line);