]> git.lyx.org Git - features.git/blob - src/frontends/qt4/QLPainter.C
This commit is a big rework of the FontLoader/FontMetrics interaction. Only Qt4 for...
[features.git] / src / frontends / qt4 / QLPainter.C
1 /**
2  * \file QLPainter.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "QLPainter.h"
15
16 #include "GuiApplication.h"
17 #include "GuiWorkArea.h"
18 #include "QLImage.h"
19 #include "FontLoader.h"
20
21 #include "GuiApplication.h"
22 #include "qt_helpers.h"
23
24 #include "debug.h"
25 #include "language.h"
26 #include "LColor.h"
27
28 #include "frontends/FontMetrics.h"
29
30 #include "support/unicode.h"
31
32 #include <QPainter>
33 #include <QPicture>
34 #include <QPixmap>
35 #include <QImage>
36
37 using lyx::char_type;
38 using lyx::docstring;
39
40 using std::endl;
41 using std::string;
42
43 namespace lyx {
44 namespace frontend {
45
46 QLPainter::~QLPainter()
47 {
48 }
49
50
51 QLPainter::QLPainter(GuiWorkArea * qwa)
52         : Painter(), qwa_(qwa)
53 {
54 }
55
56
57 void QLPainter::start()
58 {
59         qp_.reset(new QPainter(qwa_->paintDevice()));
60         // new QPainter has default QPen:
61         current_color_ = LColor::black;
62         current_ls_ = line_solid;
63         current_lw_ = line_thin;
64 }
65
66
67 void QLPainter::end()
68 {
69         qp_->end();
70 }
71
72
73 int QLPainter::paperWidth() const
74 {
75         return qwa_->viewport()->width();
76 }
77
78
79 int QLPainter::paperHeight() const
80 {
81         return qwa_->viewport()->height();
82 }
83
84 void QLPainter::setQPainterPen(LColor_color col,
85         Painter::line_style ls, Painter::line_width lw)
86 {
87         if (col == current_color_ && ls == current_ls_ && lw == current_lw_)
88                 return;
89
90         current_color_ = col;
91         current_ls_ = ls;
92         current_lw_ = lw;
93
94         QPen pen = qp_.get()->pen();
95
96         pen.setColor(guiApp->colorCache().get(col));
97
98         switch (ls) {
99                 case line_solid: pen.setStyle(Qt::SolidLine); break;
100                 case line_onoffdash: pen.setStyle(Qt::DotLine); break;
101         }
102
103         switch (lw) {
104                 case line_thin: pen.setWidth(0); break;
105                 case line_thick: pen.setWidth(3); break;
106         }
107
108         qp_.get()->setPen(pen);
109 }
110
111
112 void QLPainter::point(int x, int y, LColor_color col)
113 {
114         setQPainterPen(col);
115         qp_->drawPoint(x, y);
116 }
117
118
119 void QLPainter::line(int x1, int y1, int x2, int y2,
120         LColor_color col,
121         line_style ls,
122         line_width lw)
123 {
124         setQPainterPen(col, ls, lw);
125         qp_->drawLine(x1, y1, x2, y2);
126 }
127
128
129 void QLPainter::lines(int const * xp, int const * yp, int np,
130         LColor_color col,
131         line_style ls,
132         line_width lw)
133 {
134         // FIXME ?
135
136         // Must use new as np is not known at compile time.
137         boost::scoped_array<QPoint> points(new QPoint[np]);
138
139         for (int i = 0; i < np; ++i) {
140                 points[i].setX(xp[i]);
141                 points[i].setY(yp[i]);
142         }
143
144         setQPainterPen(col, ls, lw);
145         qp_->drawPolyline(points.get(), np);
146 }
147
148
149 void QLPainter::rectangle(int x, int y, int w, int h,
150         LColor_color col,
151         line_style ls,
152         line_width lw)
153 {
154         setQPainterPen(col, ls, lw);
155         qp_->drawRect(x, y, w, h);
156 }
157
158
159 void QLPainter::fillRectangle(int x, int y, int w, int h, LColor_color col)
160 {
161         qp_->fillRect(x, y, w, h, guiApp->colorCache().get(col));
162 }
163
164
165 void QLPainter::arc(int x, int y, unsigned int w, unsigned int h,
166         int a1, int a2, LColor_color col)
167 {
168         // LyX usings 1/64ths degree, Qt usings 1/16th
169         setQPainterPen(col);
170         qp_->drawArc(x, y, w, h, a1 / 4, a2 / 4);
171 }
172
173
174 void QLPainter::image(int x, int y, int w, int h,
175         lyx::graphics::Image const & i)
176 {
177         lyx::graphics::QLImage const & qlimage =
178                 static_cast<lyx::graphics::QLImage const &>(i);
179
180         fillRectangle(x, y, w, h, LColor::graphicsbg);
181
182         qp_->drawImage(x, y, qlimage.qimage(), 0, 0, w, h);
183 }
184
185
186 void QLPainter::text(int x, int y, docstring const & s, LyXFont const & f)
187 {
188     return text(x, y, reinterpret_cast<char_type const *>(s.data()), s.length(), f);
189 }
190
191
192 void QLPainter::text(int x, int y, char_type c, LyXFont const & f)
193 {
194         char_type s[2] = { c, char_type('\0') };
195         return text(x, y, s, 1, f);
196 }
197
198
199 int QLPainter::smallCapsText(int x, int y,
200         QString const & s, LyXFont const & f)
201 {
202         LyXFont smallfont(f);
203         smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
204
205         QFont const & qfont = guiApp->guiFontLoader().get(f);
206         QFont const & qsmallfont = guiApp->guiFontLoader().get(smallfont);
207
208         setQPainterPen(f.realColor());
209         int textwidth = 0;
210         size_t ls = s.length();
211         for (unsigned int i = 0; i < ls; ++i) {
212                 QChar const c = s[i].toUpper();
213                 if (c != s.at(i)) {
214                         qp_->setFont(qsmallfont);
215                 } else {
216                         qp_->setFont(qfont);
217                 }
218                 qp_->drawText(x + textwidth, y, c);
219                 textwidth += qp_->fontMetrics().width(c);
220         }
221         return textwidth;
222 }
223
224
225 void QLPainter::text(int x, int y, char_type const * s, size_t ls,
226         LyXFont const & f)
227 {
228 #if 0
229         Encoding const * encoding = f.language()->encoding();
230         if (f.isSymbolFont())
231                 encoding = encodings.symbol_encoding();
232 #endif
233
234 #if 0
235         QString str;
236         str.setLength(ls);
237         for (unsigned int i = 0; i < ls; ++i)
238                 str[i] = QChar(encoding->ucs(s[i]));
239 #else
240         QString str = ucs4_to_qstring(s, ls);
241 #endif
242
243 #if 0
244         // HACK: QT3 refuses to show single compose characters
245         //       Still needed with Qt4?
246         if (ls == 1 && str[0].unicode() >= 0x05b0 && str[0].unicode() <= 0x05c2)
247                 str = ' ' + str;
248 #endif
249
250         QLFontInfo & fi = guiApp->guiFontLoader().fontinfo(f);
251
252         int textwidth;
253
254         if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
255                 setQPainterPen(f.realColor());
256                 qp_->setFont(fi.font);
257                 // We need to draw the text as LTR as we use our own bidi code.
258                 qp_->setLayoutDirection(Qt::LeftToRight);
259                 qp_->drawText(x, y, str);
260                 textwidth = qp_->fontMetrics().width(str);
261         } else {
262                 textwidth = smallCapsText(x, y, str, f);
263         }
264
265         if (f.underbar() == LyXFont::ON) {
266                 underline(f, x, y, textwidth);
267         }
268
269 }
270
271
272 void QLPainter::drawPixmap(int x, int y, QPixmap const & pixmap)
273 {
274         qp_->drawPixmap(x, y, pixmap);
275 }
276
277
278 void QLPainter::drawImage(int x, int y, QImage const & image)
279 {
280         qp_->drawImage(x, y, image);
281 }
282
283 } // namespace frontend
284 } // namespace lyx