]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiPainter.cpp
Use <cstdint> instead of <boost/cstdint.hpp>
[lyx.git] / src / frontends / qt4 / GuiPainter.cpp
index c59edddb0269452d26ba73978381594e3011b696..c1f3677815f26b646f49b1e4ceda2b04356717b2 100644 (file)
 
 #include "GuiPainter.h"
 
+#include "ColorCache.h"
 #include "GuiApplication.h"
+#include "GuiFontLoader.h"
 #include "GuiFontMetrics.h"
 #include "GuiImage.h"
-
-#include "GuiApplication.h"
 #include "qt_helpers.h"
 
-#include "debug.h"
-#include "Language.h"
-#include "Color.h"
+#include "Font.h"
+#include "LyXRC.h"
 
-#include "support/unicode.h"
+#include "support/debug.h"
+#include "support/lassert.h"
+#include "support/lyxlib.h"
 
-#include <QPixmapCache>
-#include <QTextLayout>
+#include <algorithm>
 
-// Set USE_PIXMAP_CACHE to 1 for enabling the use of a Pixmap cache when
-// drawing text. This is especially useful for older PPC/Mac systems.
-#if (QT_VERSION < 0x040200) || defined(Q_WS_X11)
-#define USE_PIXMAP_CACHE 0
-#else
-#define USE_PIXMAP_CACHE 1
-#endif
+#include <QTextLayout>
 
-using std::endl;
-using std::string;
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 namespace frontend {
 
-namespace {
-
-bool const usePixmapCache = USE_PIXMAP_CACHE;
+const int Painter::thin_line = 1;
 
-QString generateStringSignature(QString const & str, Font const & f)
+GuiPainter::GuiPainter(QPaintDevice * device, double pixel_ratio)
+       : QPainter(device), Painter(pixel_ratio)
 {
-       QString sig = str;
-       sig.append(QChar(static_cast<short>(f.family())));
-       sig.append(QChar(static_cast<short>(f.series())));
-       sig.append(QChar(static_cast<short>(f.realShape())));
-       sig.append(QChar(static_cast<short>(f.size())));
-       sig.append(QChar(static_cast<short>(f.color())));
-       return sig;
-}
-
-} // anon namespace
-
-GuiPainter::GuiPainter(QPaintDevice * device)
-       : QPainter(device), Painter()
-{
-       // new QPainter has default QPen:
-       current_color_ = Color::black;
-       current_ls_ = line_solid;
-       current_lw_ = line_thin;
+       // set cache correctly
+       current_color_ = pen().color();
+       current_ls_ = pen().style() == Qt::DotLine ? line_onoffdash : line_solid;
+       current_lw_ = pen().width();
 }
 
 
@@ -77,8 +56,8 @@ GuiPainter::~GuiPainter()
 }
 
 
-void GuiPainter::setQPainterPen(Color_color col,
-       Painter::line_style ls, Painter::line_width lw)
+void GuiPainter::setQPainterPen(QColor const & col,
+       Painter::line_style ls, int lw)
 {
        if (col == current_color_ && ls == current_ls_ && lw == current_lw_)
                return;
@@ -88,44 +67,86 @@ void GuiPainter::setQPainterPen(Color_color col,
        current_lw_ = lw;
 
        QPen pen = QPainter::pen();
-
-       pen.setColor(guiApp->colorCache().get(col));
+       pen.setColor(col);
 
        switch (ls) {
-               case line_solid: pen.setStyle(Qt::SolidLine); break;
-               case line_onoffdash: pen.setStyle(Qt::DotLine); break;
+       case line_solid:
+       case line_solid_aliased:
+               pen.setStyle(Qt::SolidLine); break;
+       case line_onoffdash:
+               pen.setStyle(Qt::DotLine); break;
        }
 
-       switch (lw) {
-               case line_thin: pen.setWidth(0); break;
-               case line_thick: pen.setWidth(3); break;
-       }
+       pen.setWidth(lw);
 
        setPen(pen);
 }
 
 
-void GuiPainter::point(int x, int y, Color_color col)
+QColor GuiPainter::computeColor(Color col)
 {
-       if (!isDrawingEnabled())
-               return;
+       return filterColor(guiApp->colorCache().get(col));
+}
+
 
-       setQPainterPen(col);
+QColor GuiPainter::filterColor(QColor const & col)
+{
+       if (monochrome_min_.empty())
+               return col;
+
+       // map into [min,max] interval
+       QColor const & min = monochrome_min_.top();
+       QColor const & max = monochrome_max_.top();
+
+       qreal v = col.valueF();
+       v *= v; // make it a bit steeper (i.e. darker)
+
+       qreal minr, ming, minb;
+       qreal maxr, maxg, maxb;
+       min.getRgbF(&minr, &ming, &minb);
+       max.getRgbF(&maxr, &maxg, &maxb);
+
+       QColor c;
+       c.setRgbF(
+               v * (minr - maxr) + maxr,
+               v * (ming - maxg) + maxg,
+               v * (minb - maxb) + maxb);
+       return c;
+}
+
+
+void GuiPainter::enterMonochromeMode(Color const & min, Color const & max)
+{
+       QColor qmin = filterColor(guiApp->colorCache().get(min));
+       QColor qmax = filterColor(guiApp->colorCache().get(max));
+       monochrome_min_.push(qmin);
+       monochrome_max_.push(qmax);
+}
+
+
+void GuiPainter::leaveMonochromeMode()
+{
+       LASSERT(!monochrome_min_.empty(), return);
+       monochrome_min_.pop();
+       monochrome_max_.pop();
+}
+
+
+void GuiPainter::point(int x, int y, Color col)
+{
+       setQPainterPen(computeColor(col));
        drawPoint(x, y);
 }
 
 
 void GuiPainter::line(int x1, int y1, int x2, int y2,
-       Color_color col,
+       Color col,
        line_style ls,
-       line_width lw)
+       int lw)
 {
-       if (!isDrawingEnabled())
-               return;
-
-       setQPainterPen(col, ls, lw);
+       setQPainterPen(computeColor(col), ls, lw);
        bool const do_antialiasing = renderHints() & TextAntialiasing
-               && x1 != x2 && y1 != y2;
+               && x1 != x2 && y1 != y2 && ls != line_solid_aliased;
        setRenderHint(Antialiasing, do_antialiasing);
        drawLine(x1, y1, x2, y2);
        setRenderHint(Antialiasing, false);
@@ -133,18 +154,19 @@ void GuiPainter::line(int x1, int y1, int x2, int y2,
 
 
 void GuiPainter::lines(int const * xp, int const * yp, int np,
-       Color_color col,
+       Color col,
+       fill_style fs,
        line_style ls,
-       line_width lw)
+       int lw)
 {
-       if (!isDrawingEnabled())
-               return;
-
        // double the size if needed
+       // FIXME THREAD
        static QVector<QPoint> points(32);
        if (np > points.size())
                points.resize(2 * np);
 
+       // Note: the proper way to not get blurry vertical and horizontal lines is
+       // to add 0.5 to all coordinates.
        bool antialias = false;
        for (int i = 0; i < np; ++i) {
                points[i].setX(xp[i]);
@@ -152,41 +174,77 @@ void GuiPainter::lines(int const * xp, int const * yp, int np,
                if (i != 0)
                        antialias |= xp[i-1] != xp[i] && yp[i-1] != yp[i];
        }
-       setQPainterPen(col, ls, lw);
+       QColor const color = computeColor(col);
+       setQPainterPen(color, ls, lw);
        bool const text_is_antialiased = renderHints() & TextAntialiasing;
-       setRenderHint(Antialiasing, antialias && text_is_antialiased);
-       drawPolyline(points.data(), np);
+       setRenderHint(Antialiasing,
+                     antialias && text_is_antialiased && ls != line_solid_aliased);
+       if (fs == fill_none) {
+               drawPolyline(points.data(), np);
+       } else {
+               QBrush const oldbrush = brush();
+               setBrush(QBrush(color));
+               drawPolygon(points.data(), np, fs == fill_oddeven ?
+                           Qt::OddEvenFill : Qt::WindingFill);
+               setBrush(oldbrush);
+       }
        setRenderHint(Antialiasing, false);
 }
 
 
-void GuiPainter::rectangle(int x, int y, int w, int h,
-       Color_color col,
+void GuiPainter::path(int const * xp, int const * yp,
+       int const * c1x, int const * c1y,
+       int const * c2x, int const * c2y,
+       int np,
+       Color col,
+       fill_style fs,
        line_style ls,
-       line_width lw)
+       int lw)
 {
-       if (!isDrawingEnabled())
-               return;
+       QPainterPath bpath;
+       // This is the starting point, so its control points are meaningless
+       bpath.moveTo(xp[0], yp[0]);
+
+       for (int i = 1; i < np; ++i) {
+               bool line = c1x[i] == xp[i - 1] && c1y[i] == yp[i - 1] &&
+                           c2x[i] == xp[i] && c2y[i] == yp[i];
+               if (line)
+                       bpath.lineTo(xp[i], yp[i]);
+               else
+                       bpath.cubicTo(c1x[i], c1y[i],  c2x[i], c2y[i], xp[i], yp[i]);
+       }
+       QColor const color = computeColor(col);
+       setQPainterPen(color, ls, lw);
+       bool const text_is_antialiased = renderHints() & TextAntialiasing;
+       setRenderHint(Antialiasing, text_is_antialiased && ls != line_solid_aliased);
+       drawPath(bpath);
+       if (fs != fill_none)
+               fillPath(bpath, QBrush(color));
+       setRenderHint(Antialiasing, false);
+}
+
 
-       setQPainterPen(col, ls, lw);
+void GuiPainter::rectangle(int x, int y, int w, int h,
+       Color col,
+       line_style ls,
+       int lw)
+{
+       setQPainterPen(computeColor(col), ls, lw);
        drawRect(x, y, w, h);
 }
 
 
-void GuiPainter::fillRectangle(int x, int y, int w, int h, Color_color col)
+void GuiPainter::fillRectangle(int x, int y, int w, int h, Color col)
 {
        fillRect(x, y, w, h, guiApp->colorCache().get(col));
 }
 
 
 void GuiPainter::arc(int x, int y, unsigned int w, unsigned int h,
-       int a1, int a2, Color_color col)
+       int a1, int a2, Color col)
 {
-       if (!isDrawingEnabled())
-               return;
-
        // LyX usings 1/64ths degree, Qt usings 1/16th
-       setQPainterPen(col);
+       setQPainterPen(computeColor(col));
        bool const do_antialiasing = renderHints() & TextAntialiasing;
        setRenderHint(Antialiasing, do_antialiasing);
        drawArc(x, y, w, h, a1 / 4, a2 / 4);
@@ -199,54 +257,40 @@ void GuiPainter::image(int x, int y, int w, int h, graphics::Image const & i)
        graphics::GuiImage const & qlimage =
                static_cast<graphics::GuiImage const &>(i);
 
-       fillRectangle(x, y, w, h, Color::graphicsbg);
-
-       if (!isDrawingEnabled())
-               return;
-
-       drawImage(x, y, qlimage.qimage(), 0, 0, w, h);
+       fillRectangle(x, y, w, h, Color_graphicsbg);
+
+       QImage const image = qlimage.image();
+       QRectF const drect = QRectF(x, y, w, h);
+       QRectF const srect = QRectF(0, 0, image.width(), image.height());
+       // Bilinear filtering is needed on a rare occasion for instant previews when
+       // the user's configuration mixes low-dpi and high-dpi monitors (#10114).
+       // This filter is optimised by qt on pixel-aligned images, so this does not
+       // affect performances in other cases.
+       setRenderHint(SmoothPixmapTransform);
+       drawImage(drect, image, srect);
+       setRenderHint(SmoothPixmapTransform, false);
 }
 
 
-int GuiPainter::text(int x, int y, char_type c, Font const & f)
+void GuiPainter::text(int x, int y, char_type c, FontInfo const & f)
 {
-       docstring s(1, c);
-       return text(x, y, s, f);
+       text(x, y, docstring(1, c), f);
 }
 
 
-int GuiPainter::smallCapsText(int x, int y,
-       QString const & s, Font const & f)
+void GuiPainter::text(int x, int y, docstring const & s, FontInfo const & f)
 {
-       Font smallfont(f);
-       smallfont.decSize().decSize().setShape(Font::UP_SHAPE);
-
-       QFont const & qfont = guiApp->guiFontLoader().get(f);
-       QFont const & qsmallfont = guiApp->guiFontLoader().get(smallfont);
-
-       setQPainterPen(f.realColor());
-       int textwidth = 0;
-       size_t const ls = s.length();
-       for (unsigned int i = 0; i < ls; ++i) {
-               QChar const c = s[i].toUpper();
-               if (c != s.at(i)) {
-                       setFont(qsmallfont);
-               } else {
-                       setFont(qfont);
-               }
-               if (isDrawingEnabled())
-                       drawText(x + textwidth, y, c);
-               textwidth += fontMetrics().width(c);
-       }
-       return textwidth;
+       text(x, y, s, f, Auto, 0.0, 0.0);
 }
 
 
-int GuiPainter::text(int x, int y, docstring const & s,
-               Font const & f)
+void GuiPainter::text(int x, int y, docstring const & s,
+                      FontInfo const & f, Direction const dir,
+                      double const wordspacing, double const tw)
 {
+       //LYXERR0("text: x=" << x << ", s=" << s);
        if (s.empty())
-               return 0;
+               return;
 
        /* Caution: The following ucs4 to QString conversions work for symbol fonts
        only because they are no real conversions but simple casts in reality.
@@ -254,8 +298,8 @@ int GuiPainter::text(int x, int y, docstring const & s,
        of the symbol in the font (as given in lib/symbols) as a char_type to the
        frontend. This is just wrong, because the symbol is no UCS4 character at
        all. You can think of this number as the code point of the symbol in a
-       custom symbol encoding. It works because this char_type is lateron again
-       interpreted as a position in the font again.
+       custom symbol encoding. It works because this char_type is later on again
+       interpreted as a position in the font.
        The correct solution would be to have extra functions for symbols, but that
        would require to duplicate a lot of frontend and mathed support code.
        */
@@ -268,98 +312,250 @@ int GuiPainter::text(int x, int y, docstring const & s,
                str = ' ' + str;
 #endif
 
-       GuiFontInfo & fi = guiApp->guiFontLoader().fontinfo(f);
+       QFont ff = getFont(f);
+       ff.setWordSpacing(wordspacing);
+       GuiFontMetrics const & fm = getFontMetrics(f);
 
-       int textwidth;
-
-       if (f.realShape() == Font::SMALLCAPS_SHAPE) {
-               textwidth = smallCapsText(x, y, str, f);
-               if (f.underbar() == Font::ON)
-                       underline(f, x, y, textwidth);
-               return textwidth;
+       int textwidth = 0;
+       if (tw == 0.0)
+               // Take into account space stretching (word spacing)
+               textwidth = fm.width(s) +
+                       static_cast<int>(fm.countExpanders(s) * wordspacing);
+       else
+               textwidth = static_cast<int>(tw);
+
+       textDecoration(f, x, y, textwidth);
+
+       setQPainterPen(computeColor(f.realColor()));
+       if (dir != Auto) {
+               auto ptl = fm.getTextLayout(s, dir == RtL, wordspacing);
+               QTextLine const & tline = ptl->lineForTextPosition(0);
+               ptl->draw(this, QPointF(x, y - tline.ascent()));
+       } else {
+               if (font() != ff)
+                       setFont(ff);
+               drawText(x, y, str);
        }
+       //LYXERR(Debug::PAINTING, "draw " << string(str.toUtf8())
+       //      << " at " << x << "," << y);
+}
 
-       // Here we use the font width cache instead of
-       //   textwidth = fontMetrics().width(str);
-       // because the above is awfully expensive on MacOSX
-       textwidth = fi.metrics->width(s);
-       if (f.underbar() == Font::ON)
-               underline(f, x, y, textwidth);
-
-       if (!isDrawingEnabled())
-               return textwidth;
-
-       // Qt4 does not display a glyph whose codepoint is the
-       // same as that of a soft-hyphen (0x00ad), unless it
-       // occurs at a line-break. As a kludge, we force Qt to
-       // render this glyph using a one-column line.
-       if (s.size() == 1 && str[0].unicode() == 0x00ad) {
-               setQPainterPen(f.realColor());
-               QTextLayout adsymbol(str);
-               adsymbol.setFont(fi.font);
-               adsymbol.beginLayout();
-               QTextLine line = adsymbol.createLine();
-               line.setNumColumns(1);
-               line.setPosition(QPointF(0, -line.ascent()));
-               adsymbol.endLayout();
-               line.draw(this, QPointF(x, y));
-               return textwidth;
-       }
 
-       if (!usePixmapCache) {
-               // don't use the pixmap cache,
-               // draw directly onto the painting device
-               setQPainterPen(f.realColor());
-               if (font() != fi.font)
-                       setFont(fi.font);
-               // We need to draw the text as LTR as we use our own bidi code.
-               setLayoutDirection(Qt::LeftToRight);
-               // We need to draw the text as LTR as we use our own bidi code.
-               setLayoutDirection(Qt::LeftToRight);
-               drawText(x, y, str);
-               //LYXERR(Debug::PAINTING) << "draw " << std::string(str.toUtf8())
-               //      << " at " << x << "," << y << std::endl;
-               return textwidth;
-       }
+void GuiPainter::text(int x, int y, docstring const & str, Font const & f,
+                      double const wordspacing, double const tw)
+{
+       text(x, y, str, f.fontInfo(), f.isVisibleRightToLeft() ? RtL : LtR,
+            wordspacing, tw);
+}
+
+
+void GuiPainter::text(int x, int y, docstring const & str, Font const & f,
+                      Color other, size_type const from, size_type const to,
+                      double const wordspacing, double const tw)
+{
+       GuiFontMetrics const & fm = getFontMetrics(f.fontInfo());
+       FontInfo fi = f.fontInfo();
+       Direction const dir = f.isVisibleRightToLeft() ? RtL : LtR;
+
+       // dimensions
+       int const ascent = fm.maxAscent();
+       int const height = fm.maxAscent() + fm.maxDescent();
+       int xmin = fm.pos2x(str, from, dir == RtL, wordspacing);
+       int xmax = fm.pos2x(str, to, dir == RtL, wordspacing);
+       // Avoid this case, since it would make the `other' text spill in some cases
+       if (xmin == xmax) {
+               text(x, y, str, fi, dir, wordspacing, tw);
+               return;
+       } else if (xmin > xmax)
+               swap(xmin, xmax);
+
+       // First the part in other color
+       Color const orig = fi.realColor();
+       fi.setPaintColor(other);
+       QRegion const clip(x + xmin, y - ascent, xmax - xmin, height);
+       setClipRegion(clip);
+       text(x, y, str, fi, dir, wordspacing, tw);
+
+       // Then the part in normal color
+       // Note that in Qt5, it is not possible to use Qt::UniteClip,
+       // therefore QRegion is used.
+       fi.setPaintColor(orig);
+       QRegion region(viewport());
+       setClipRegion(region - clip);
+       text(x, y, str, fi, dir, wordspacing, tw);
+       setClipping(false);
+}
+
+
+void GuiPainter::textDecoration(FontInfo const & f, int x, int y, int width)
+{
+       if (f.underbar() == FONT_ON)
+               underline(f, x, y, width);
+       if (f.strikeout() == FONT_ON)
+               strikeoutLine(f, x, y, width);
+       if (f.xout() == FONT_ON)
+               crossoutLines(f, x, y, width);
+       if (f.uuline() == FONT_ON)
+               doubleUnderline(f, x, y, width);
+       if (f.uwave() == FONT_ON)
+               // f.color() doesn't work on some circumstances
+               wavyHorizontalLine(x, y, width,  f.realColor().baseColor);
+}
+
+
+static int max(int a, int b) { return a > b ? a : b; }
+
+
+void GuiPainter::rectText(int x, int y, docstring const & str,
+       FontInfo const & font, Color back, Color frame)
+{
+       int width, ascent, descent;
+
+       FontMetrics const & fm = theFontMetrics(font);
+       fm.rectText(str, width, ascent, descent);
+
+       if (back != Color_none)
+               fillRectangle(x + 1, y - ascent + 1, width - 1,
+                             ascent + descent - 1, back);
+
+       if (frame != Color_none)
+               rectangle(x, y - ascent, width, ascent + descent, frame);
 
-       QPixmap pm;
-       QString key = generateStringSignature(str, f);
-       // Warning: Left bearing is in general negative! Only the case
-       // where left bearing is negative is of interest WRT the the 
-       // pixmap width and the text x-position.
-       // Only the left bearing of the first character is important
-       // as we always write from left to right, even for
-       // right-to-left languages.
-       int const lb = std::min(fi.metrics->lbearing(s[0]), 0);
-       int const mA = fi.metrics->maxAscent();
-       if (!QPixmapCache::find(key, pm)) {
-               // Only the right bearing of the last character is
-               // important as we always write from left to right,
-               // even for right-to-left languages.
-               int const rb = fi.metrics->rbearing(s[s.size()-1]);
-               int const w = textwidth + rb - lb;
-               int const mD = fi.metrics->maxDescent();
-               int const h = mA + mD;
-               pm = QPixmap(w, h);
-               pm.fill(Qt::transparent);
-               GuiPainter p(&pm);
-               p.setQPainterPen(f.realColor());
-               if (p.font() != fi.font)
-                       p.setFont(fi.font);
-               // We need to draw the text as LTR as we use our own bidi code.
-               p.setLayoutDirection(Qt::LeftToRight);
-               p.drawText(-lb, mA, str);
-               QPixmapCache::insert(key, pm);
-               //LYXERR(Debug::PAINTING) << "h=" << h << "  mA=" << mA << "  mD=" << mD
-               //      << "  w=" << w << "  lb=" << lb << "  tw=" << textwidth 
-               //      << "  rb=" << rb << endl;
+       // FIXME: let offset depend on font
+       text(x + 3, y, str, font);
+}
+
+
+void GuiPainter::buttonText(int x, int baseline, docstring const & s,
+       FontInfo const & font, Color back, Color frame, int offset)
+{
+       int width, ascent, descent;
+
+       FontMetrics const & fm = theFontMetrics(font);
+       fm.buttonText(s, offset, width, ascent, descent);
+
+       static int const d = offset / 2;
+
+       fillRectangle(x + d + 1, baseline - ascent + 1, width - offset - 1,
+                             ascent + descent - 1, back);
+       rectangle(x + d, baseline - ascent, width - offset, ascent + descent, frame);
+       text(x + offset, baseline, s, font);
+}
+
+
+int GuiPainter::preeditText(int x, int y, char_type c,
+       FontInfo const & font, preedit_style style)
+{
+       FontInfo temp_font = font;
+       FontMetrics const & fm = theFontMetrics(font);
+       int ascent = fm.maxAscent();
+       int descent = fm.maxDescent();
+       int height = ascent + descent;
+       int width = fm.width(c);
+
+       switch (style) {
+               case preedit_default:
+                       // default unselecting mode.
+                       fillRectangle(x, y - height + 1, width, height, Color_background);
+                       dashedUnderline(font, x, y - descent + 1, width);
+                       break;
+               case preedit_selecting:
+                       // We are in selecting mode: white text on black background.
+                       fillRectangle(x, y - height + 1, width, height, Color_black);
+                       temp_font.setColor(Color_white);
+                       break;
+               case preedit_cursor:
+                       // The character comes with a cursor.
+                       fillRectangle(x, y - height + 1, width, height, Color_background);
+                       underline(font, x, y - descent + 1, width);
+                       break;
        }
-       // Draw the cached pixmap.
-       drawPixmap(x + lb, y - mA, pm);
+       text(x, y - descent + 1, c, temp_font);
 
-       return textwidth;
+       return width;
 }
 
 
+void GuiPainter::underline(FontInfo const & f, int x, int y, int width,
+                           line_style ls)
+{
+       FontMetrics const & fm = theFontMetrics(f);
+       int const pos = fm.underlinePos();
+
+       line(x, y + pos, x + width, y + pos,
+            f.realColor(), ls, fm.lineWidth());
+}
+
+
+void GuiPainter::strikeoutLine(FontInfo const & f, int x, int y, int width)
+{
+       FontMetrics const & fm = theFontMetrics(f);
+       int const pos = fm.strikeoutPos();
+
+       line(x, y - pos, x + width, y - pos,
+            f.realColor(), line_solid, fm.lineWidth());
+}
+
+
+void GuiPainter::crossoutLines(FontInfo const & f, int x, int y, int width)
+{
+       FontInfo tmpf = f;
+       tmpf.setXout(FONT_OFF);
+
+       // the definition of \xout in ulem.sty is
+    //  \def\xout{\bgroup \markoverwith{\hbox to.35em{\hss/\hss}}\ULon}
+       // Let's mimick it somewhat.
+       double offset = max(0.35 * theFontMetrics(tmpf).em(), 1);
+       for (int i = 0 ; i < iround(width / offset) ; ++i)
+               text(x + iround(i * offset), y, '/', tmpf);
+}
+
+
+void GuiPainter::doubleUnderline(FontInfo const & f, int x, int y, int width)
+{
+       FontMetrics const & fm = theFontMetrics(f);
+       int const pos1 = fm.underlinePos() + fm.lineWidth();
+       int const pos2 = fm.underlinePos() - fm.lineWidth() + 1;
+
+       line(x, y + pos1, x + width, y + pos1,
+                f.realColor(), line_solid, fm.lineWidth());
+       line(x, y + pos2, x + width, y + pos2,
+                f.realColor(), line_solid, fm.lineWidth());
+}
+
+
+void GuiPainter::dashedUnderline(FontInfo const & f, int x, int y, int width)
+{
+       FontMetrics const & fm = theFontMetrics(f);
+
+       int const below = max(fm.maxDescent() / 2, 2);
+       int height = max((fm.maxDescent() / 4) - 1, 1);
+
+       if (height >= 2)
+               height += below;
+
+       for (int n = 0; n != height; ++n)
+               line(x, y + below + n, x + width, y + below + n, f.realColor(), line_onoffdash);
+}
+
+
+void GuiPainter::wavyHorizontalLine(int x, int y, int width, ColorCode col)
+{
+       setQPainterPen(computeColor(col));
+       int const step = 2;
+       int const xend = x + width;
+       int height = 1;
+       //FIXME: I am not sure if Antialiasing gives the best effect.
+       //setRenderHint(Antialiasing, true);
+       while (x < xend) {
+               height = - height;
+               drawLine(x, y - height, x + step, y + height);
+               x += step;
+               drawLine(x, y + height, x + step/2, y + height);
+               x += step/2;
+       }
+       //setRenderHint(Antialiasing, false);
+}
+
 } // namespace frontend
 } // namespace lyx