]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/QLPainter.C
* qt_helpers.[Ch]: new conversion from/to ucs4 strings and chars to/from QChar and...
[lyx.git] / src / frontends / qt4 / QLPainter.C
index 7293cb0be8b69902666cde2f0a078543d967af60..4fdbd7f28bea087c1f8ec55f858c4987841c354f 100644 (file)
 
 #include "QLPainter.h"
 
-#include "QWorkArea.h"
+#include "GuiWorkArea.h"
 #include "QLImage.h"
+#include "ColorCache.h"
+#include "FontLoader.h"
 
-#include "lcolorcache.h"
-#include "qfont_loader.h"
+#include "Application.h"
+#include "qt_helpers.h"
 
 #include "debug.h"
 #include "language.h"
 
 #include "frontends/font_metrics.h"
 
+#include "support/unicode.h"
+
 #include <QPainter>
 #include <QPicture>
 #include <QPixmap>
 #include <QImage>
 
+using lyx::char_type;
+using lyx::docstring;
+
 using std::endl;
 using std::string;
 
+namespace lyx {
+namespace frontend {
 
 QLPainter::~QLPainter()
 {
 }
 
-QLPainter::QLPainter(QWorkArea * qwa)
+
+QLPainter::QLPainter(GuiWorkArea * qwa)
        : Painter(), qwa_(qwa)
 {
 }
 
 
+void QLPainter::start()
+{
+       qp_.reset(new QPainter(qwa_->paintDevice()));
+       // new QPainter has default QPen:
+       current_color_ = LColor::black;
+       current_ls_ = line_solid;
+       current_lw_ = line_thin;
+}
+
+
+void QLPainter::end()
+{
+       qp_->end();
+}
+
+
 int QLPainter::paperWidth() const
 {
        return qwa_->viewport()->width();
@@ -55,7 +81,7 @@ int QLPainter::paperHeight() const
        return qwa_->viewport()->height();
 }
 
-void QLPainter::setQPainterPen(QPainter & qp, LColor_color col,
+void QLPainter::setQPainterPen(LColor_color col,
        Painter::line_style ls, Painter::line_width lw)
 {
        if (col == current_color_ && ls == current_ls_ && lw == current_lw_)
@@ -65,7 +91,7 @@ void QLPainter::setQPainterPen(QPainter & qp, LColor_color col,
        current_ls_ = ls;
        current_lw_ = lw;
 
-       QPen pen = qp.pen();
+       QPen pen = qp_.get()->pen();
 
        pen.setColor(lcolorcache.get(col));
 
@@ -79,14 +105,14 @@ void QLPainter::setQPainterPen(QPainter & qp, LColor_color col,
                case line_thick: pen.setWidth(3); break;
        }
 
-       qp.setPen(pen);
+       qp_.get()->setPen(pen);
 }
 
+
 void QLPainter::point(int x, int y, LColor_color col)
 {
-       QPainter qp(qwa_->paintDevice());
-       setQPainterPen(qp, col);
-       qp.drawPoint(x, y);
+       setQPainterPen(col);
+       qp_->drawPoint(x, y);
 }
 
 
@@ -95,9 +121,8 @@ void QLPainter::line(int x1, int y1, int x2, int y2,
        line_style ls,
        line_width lw)
 {
-       QPainter qp(qwa_->paintDevice());
-       setQPainterPen(qp, col, ls, lw);
-       qp.drawLine(x1, y1, x2, y2);
+       setQPainterPen(col, ls, lw);
+       qp_->drawLine(x1, y1, x2, y2);
 }
 
 
@@ -116,9 +141,8 @@ void QLPainter::lines(int const * xp, int const * yp, int np,
                points[i].setY(yp[i]);
        }
 
-       QPainter qp(qwa_->paintDevice());
-       setQPainterPen(qp, col, ls, lw);
-       qp.drawPolyline(points.get(), np);
+       setQPainterPen(col, ls, lw);
+       qp_->drawPolyline(points.get(), np);
 }
 
 
@@ -127,35 +151,14 @@ void QLPainter::rectangle(int x, int y, int w, int h,
        line_style ls,
        line_width lw)
 {
-       QPainter qp(qwa_->paintDevice());
-       setQPainterPen(qp, col, ls, lw);
-       qp.drawRect(x, y, w, h);
+       setQPainterPen(col, ls, lw);
+       qp_->drawRect(x, y, w, h);
 }
 
 
 void QLPainter::fillRectangle(int x, int y, int w, int h, LColor_color col)
 {
-       QPainter qp(qwa_->paintDevice());
-       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_->paintDevice());
-       setQPainterPen(qp, col);
-       qp.setBrush(lcolorcache.get(col));
-       qp.drawPolygon(points.get(), np);
-       qp.setBrush(Qt::NoBrush);
+       qp_->fillRect(x, y, w, h, lcolorcache.get(col));
 }
 
 
@@ -163,9 +166,8 @@ void QLPainter::arc(int x, int y, unsigned int w, unsigned int h,
        int a1, int a2, LColor_color col)
 {
        // LyX usings 1/64ths degree, Qt usings 1/16th
-       QPainter qp(qwa_->paintDevice());
-       setQPainterPen(qp, col);
-       qp.drawArc(x, y, w, h, a1 / 4, a2 / 4);
+       setQPainterPen(col);
+       qp_->drawArc(x, y, w, h, a1 / 4, a2 / 4);
 }
 
 
@@ -177,20 +179,19 @@ void QLPainter::image(int x, int y, int w, int h,
 
        fillRectangle(x, y, w, h, LColor::graphicsbg);
 
-       QPainter qp(qwa_->paintDevice());
-       qp.drawImage(x, y, qlimage.qimage(), 0, 0, w, h);
+       qp_->drawImage(x, y, qlimage.qimage(), 0, 0, w, h);
 }
 
 
-void QLPainter::text(int x, int y, string const & s, LyXFont const & f)
+void 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)
+void 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);
 }
 
@@ -201,54 +202,60 @@ void QLPainter::smallCapsText(int x, int y,
        LyXFont smallfont(f);
        smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
 
-       QFont const & qfont = fontloader.get(f);
-       QFont const & qsmallfont = fontloader.get(smallfont);
+       QFont const & qfont = theApp->fontLoader().get(f);
+       QFont const & qsmallfont = theApp->fontLoader().get(smallfont);
        QFontMetrics const & qfontm = QFontMetrics(qfont);
        QFontMetrics const & qsmallfontm = QFontMetrics(qsmallfont);
 
-       QPainter qp(qwa_->paintDevice());
-       setQPainterPen(qp, f.realColor());
+       setQPainterPen(f.realColor());
        int tmpx = x;
        size_t ls = s.length();
-       for (size_t i = 0; i < ls; ++i) {
-               QChar const c = s[i].upper();
+       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);
+                       qp_->setFont(qsmallfont);
+                       qp_->drawText(tmpx, y, c);
                        tmpx += qsmallfontm.width(c);
                } else {
-                       qp.setFont(qfont);
-                       qp.drawText(tmpx, y, c);
+                       qp_->setFont(qfont);
+                       qp_->drawText(tmpx, y, c);
                        tmpx += qfontm.width(c);
                }
        }
 }
 
 
-void QLPainter::text(int x, int y, char const * s, size_t ls,
+void QLPainter::text(int x, int y, char_type const * s, size_t ls,
        LyXFont const & f)
 {
+#if 0
        Encoding const * encoding = f.language()->encoding();
        if (f.isSymbolFont())
                encoding = encodings.symbol_encoding();
+#endif
 
+#if 0
        QString str;
        str.setLength(ls);
-       for (int i = 0; i < ls; ++i)
+       for (unsigned int i = 0; i < ls; ++i)
                str[i] = QChar(encoding->ucs(s[i]));
+#else
+       QString str = ucs4_to_qstring(s, ls);
+#endif
 
+#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
 
        if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
-               QPainter qp(qwa_->paintDevice());
-               setQPainterPen(qp, f.realColor());
-               qp.setFont(fontloader.get(f));
+               setQPainterPen(f.realColor());
+               qp_->setFont(theApp->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);
+               qp_->setLayoutDirection(Qt::LeftToRight);
+               qp_->drawText(x, y, str);
        } else {
                smallCapsText(x, y, str, f);
        }
@@ -258,15 +265,18 @@ void QLPainter::text(int x, int y, char const * s, size_t ls,
        }
 
 }
-/// draw a pixmap from the image cache
+
+
 void QLPainter::drawPixmap(int x, int y, QPixmap const & pixmap)
 {
-       QPainter qp(qwa_->paintDevice());
-       qp.drawPixmap(x, y, pixmap);
+       qp_->drawPixmap(x, y, pixmap);
 }
 
+
 void QLPainter::drawImage(int x, int y, QImage const & image)
 {
-       QPainter qp(qwa_->paintDevice());
-       qp.drawImage(x, y, image);
+       qp_->drawImage(x, y, image);
 }
+
+} // namespace frontend
+} // namespace lyx