]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/QLPainter.C
* Painter.h:
[lyx.git] / src / frontends / qt4 / QLPainter.C
index 877f07fde989a09183a9f2962ab075719edb0256..da811712fe696b3af7dec4e63e76aa6660a3e5b0 100644 (file)
 
 #include "QLPainter.h"
 
-#include "QWorkArea.h"
+#include "GuiApplication.h"
+#include "GuiFontMetrics.h"
 #include "QLImage.h"
 
-#include "lcolorcache.h"
-#include "qfont_loader.h"
+#include "GuiApplication.h"
+#include "qt_helpers.h"
 
 #include "debug.h"
 #include "language.h"
 #include "LColor.h"
 
-#include "frontends/font_metrics.h"
+#include "support/unicode.h"
 
-#include <QPainter>
-#include <QPicture>
-#include <QPixmap>
-#include <QImage>
+#include <QWidget>
 
 using std::endl;
 using std::string;
 
+namespace lyx {
+namespace frontend {
 
-QLPainter::~QLPainter()
-{
-}
-
-QLPainter::QLPainter(QWorkArea * qwa)
-       : Painter(), paint_check_(0), qwa_(qwa)
+QLPainter::QLPainter(QWidget * qwa)
+       : qwa_(qwa)
 {
+       //lyxerr << "QLPainter::start()" << endl;
+       QPainter::begin(qwa_);
+       setRenderHint(QPainter::TextAntialiasing);
+       // new QPainter has default QPen:
+       current_color_ = LColor::black;
+       current_ls_ = line_solid;
+       current_lw_ = line_thin;
 }
 
-void QLPainter::start()
-{
-}
 
-
-void QLPainter::end()
-{
-//     if (qp_->isActive())
-//             qp_->end();
-}
-
-
-int QLPainter::paperWidth() const
+QLPainter::~QLPainter()
 {
-       return qwa_->viewport()->width();
+       QPainter::end();
+       //lyxerr << "QLPainter::end()" << endl;
 }
 
 
-int QLPainter::paperHeight() const
-{
-       return qwa_->viewport()->height();
-}
-
-/*
-QPainter & QLPainter::setPen(LColor_color c,
+void QLPainter::setQPainterPen(LColor_color col,
        Painter::line_style ls, Painter::line_width lw)
 {
-       QPen pen = qp_->pen();
+       if (col == current_color_ && ls == current_ls_ && lw == current_lw_)
+               return;
 
-       pen.setColor(lcolorcache.get(c));
+       current_color_ = col;
+       current_ls_ = ls;
+       current_lw_ = lw;
 
-       switch (ls) {
-               case line_solid: pen.setStyle(Qt::SolidLine); break;
-               case line_onoffdash: pen.setStyle(Qt::DotLine); break;
-       }
+       QPen pen = QPainter::pen();
 
-       switch (lw) {
-               case line_thin: pen.setWidth(0); break;
-               case line_thick: pen.setWidth(3); break;
-       }
-
-       qp_->setPen(pen);
-
-       return *qp_;
-}
-*/
-QPainter & QLPainter::setQPainterPen(QPainter & qp, LColor_color c,
-       Painter::line_style ls, Painter::line_width lw)
-{
-       QPen pen = qp.pen();
-
-       pen.setColor(lcolorcache.get(c));
+       pen.setColor(guiApp->colorCache().get(col));
 
        switch (ls) {
                case line_solid: pen.setStyle(Qt::SolidLine); break;
@@ -106,15 +78,17 @@ QPainter & QLPainter::setQPainterPen(QPainter & qp, LColor_color c,
                case line_thick: pen.setWidth(3); break;
        }
 
-       qp.setPen(pen);
-
-       return qp;
+       setPen(pen);
 }
 
-void QLPainter::point(int x, int y, LColor_color c)
+
+void QLPainter::point(int x, int y, LColor_color col)
 {
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, c).drawPoint(x, y);
+       if (!isDrawingEnabled())
+               return;
+
+       setQPainterPen(col);
+       drawPoint(x, y);
 }
 
 
@@ -123,8 +97,11 @@ void QLPainter::line(int x1, int y1, int x2, int y2,
        line_style ls,
        line_width lw)
 {
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, col, ls, lw).drawLine(x1, y1, x2, y2);
+       if (!isDrawingEnabled())
+               return;
+
+       setQPainterPen(col, ls, lw);
+       drawLine(x1, y1, x2, y2);
 }
 
 
@@ -143,8 +120,11 @@ void QLPainter::lines(int const * xp, int const * yp, int np,
                points[i].setY(yp[i]);
        }
 
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, col, ls, lw).drawPolyline(points.get(), np);
+       if (!isDrawingEnabled())
+               return;
+
+       setQPainterPen(col, ls, lw);
+       drawPolyline(points.get(), np);
 }
 
 
@@ -153,143 +133,132 @@ void QLPainter::rectangle(int x, int y, int w, int h,
        line_style ls,
        line_width lw)
 {
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, col, ls, lw).drawRect(x, y, w, h);
+       if (!isDrawingEnabled())
+               return;
+
+       setQPainterPen(col, ls, lw);
+       drawRect(x, y, w, h);
 }
 
 
 void QLPainter::fillRectangle(int x, int y, int w, int h, LColor_color col)
 {
-//     lyxerr[Debug::GRAPHICS] << BOOST_CURRENT_FUNCTION
-//             << "\nx=" << x << " y=" << y << " w=" << w << " h=" << h
-//             << " LColor " << col << endl;
-
-       QPainter qp(qwa_->pixmap());
-       qp.fillRect(x, y, w, h, lcolorcache.get(col));
-}
-
-
-void QLPainter::fillPolygon(int const * xp, int const * yp,
-       int np, LColor_color col)
-{
-       // Must use new as np is not known at compile time.
-       boost::scoped_array<QPoint> points(new QPoint[np]);
-
-       for (int i = 0; i < np; ++i) {
-               points[i].setX(xp[i]);
-               points[i].setY(yp[i]);
-       }
-
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, col);
-       qp.setBrush(lcolorcache.get(col));
-       qp.drawPolygon(points.get(), np);
-       qp.setBrush(Qt::NoBrush);
+       fillRect(x, y, w, h, guiApp->colorCache().get(col));
 }
 
 
 void QLPainter::arc(int x, int y, unsigned int w, unsigned int h,
        int a1, int a2, LColor_color col)
 {
+       if (!isDrawingEnabled())
+               return;
+
        // LyX usings 1/64ths degree, Qt usings 1/16th
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, col).drawArc(x, y, w, h, a1 / 4, a2 / 4);
+       setQPainterPen(col);
+       drawArc(x, y, w, h, a1 / 4, a2 / 4);
 }
 
 
-void QLPainter::image(int x, int y, int w, int h,
-       lyx::graphics::Image const & i)
+void QLPainter::image(int x, int y, int w, int h, graphics::Image const & i)
 {
-       lyx::graphics::QLImage const & qlimage =
-               static_cast<lyx::graphics::QLImage const &>(i);
+       graphics::QLImage const & qlimage =
+               static_cast<graphics::QLImage const &>(i);
 
        fillRectangle(x, y, w, h, LColor::graphicsbg);
 
-       QPainter qp(qwa_->pixmap());
-       qp.drawImage(x, y, qlimage.qimage(), 0, 0, w, h);
+       if (!isDrawingEnabled())
+               return;
+
+       drawImage(x, y, qlimage.qimage(), 0, 0, w, h);
 }
 
 
-void QLPainter::text(int x, int y, string const & s, LyXFont const & f)
+int QLPainter::text(int x, int y, docstring const & s, LyXFont const & f)
 {
-       return text(x, y, s.data(), s.length(), f);
+        return text(x, y, reinterpret_cast<char_type const *>(s.data()), s.length(), f);
 }
 
 
-void QLPainter::text(int x, int y, char c, LyXFont const & f)
+int QLPainter::text(int x, int y, char_type c, LyXFont const & f)
 {
-       char s[2] = { c, '\0' };
+       char_type s[2] = { c, char_type('\0') };
        return text(x, y, s, 1, f);
 }
 
 
-void QLPainter::smallCapsText(int x, int y,
+int QLPainter::smallCapsText(int x, int y,
        QString const & s, LyXFont const & f)
 {
        LyXFont smallfont(f);
        smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
 
-       QFont const & qfont = fontloader.get(f);
-       QFont const & qsmallfont = fontloader.get(smallfont);
-       QFontMetrics const & qfontm = QFontMetrics(qfont);
-       QFontMetrics const & qsmallfontm = QFontMetrics(qsmallfont);
-
-       QPainter qp(qwa_->pixmap());
-       int tmpx = x;
-       size_t ls = s.length();
-       for (size_t i = 0; i < ls; ++i) {
-               // Brain-dead MSVC wants at(i) rather than operator[]
-               QChar const c = s.at(i).upper();
+       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)) {
-                       qp.setFont(qsmallfont);
-                       qp.drawText(tmpx, y, c);
-                       tmpx += qsmallfontm.width(c);
+                       setFont(qsmallfont);
                } else {
-                       qp.setFont(qfont);
-                       qp.drawText(tmpx, y, c);
-                       tmpx += qfontm.width(c);
+                       setFont(qfont);
                }
+               if (isDrawingEnabled())
+                       drawText(x + textwidth, y, c);
+               textwidth += fontMetrics().width(c);
        }
+       return textwidth;
 }
 
 
-void QLPainter::text(int x, int y, char const * s, size_t ls,
+int QLPainter::text(int x, int y, char_type const * s, size_t ls,
        LyXFont const & f)
 {
-       QPainter qp(qwa_->pixmap());
-       setQPainterPen(qp, f.realColor());
-
+#if 0
        Encoding const * encoding = f.language()->encoding();
        if (f.isSymbolFont())
                encoding = encodings.symbol_encoding();
+#endif
 
        QString str;
-       str.setLength(ls);
-       for (int i = 0; i < ls; ++i)
-               // Brain-dead MSVC wants at(i) rather than operator[]
-               str[i] = QChar(encoding->ucs(s[i]));
+       ucs4_to_qstring(s, ls, str);
+
+#if 0
        // HACK: QT3 refuses to show single compose characters
+       //       Still needed with Qt4?
        if (ls == 1 && str[0].unicode() >= 0x05b0 && str[0].unicode() <= 0x05c2)
                str = ' ' + str;
+#endif
+
+       QLFontInfo & fi = guiApp->guiFontLoader().fontinfo(f);
+
+       int textwidth;
 
        if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
-               qp.setFont(fontloader.get(f));
-               // We need to draw the text as LTR as we use our own bidi
-               // code.
-               qp.setLayoutDirection(Qt::LeftToRight);
-               qp.drawText(x, y, str, -1);
+               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);
+               if (isDrawingEnabled())
+                       drawText(x, y, str);
+               // 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(str);
        } else {
-               smallCapsText(x, y, str, f);
+               textwidth = smallCapsText(x, y, str, f);
        }
 
        if (f.underbar() == LyXFont::ON) {
-               underline(f, x, y, font_metrics::width(s, ls, f));
+               underline(f, x, y, textwidth);
        }
 
+       return textwidth;
 }
-/// draw a pixmap from the image cache
-void QLPainter::pixmap(int x, int y, QPixmap const & pixmap)
-{
-       QPainter qp(qwa_->pixmap());
-       qp.drawPixmap(x, y, pixmap);
-}
+
+
+} // namespace frontend
+} // namespace lyx