]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLPainter.C
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / 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  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13
14 #include "font_metrics.h"
15 #include "support/lstrings.h"
16 #include "lyxrc.h"
17 #include "debug.h"
18 #include "LyXView.h"
19 #include "encoding.h"
20 #include "language.h"
21
22 #include "QWorkArea.h"
23 #include "qfont_loader.h"
24 #include "QLPainter.h"
25 #include "QLImage.h"
26 #include "qt_helpers.h"
27
28 #include <boost/scoped_array.hpp>
29
30 #include <qpainter.h>
31 #include <qbrush.h>
32 #include <qcolor.h>
33
34 #include <iostream>
35
36 using std::endl;
37
38
39 QLPainter::QLPainter(QWorkArea & qwa)
40         : Painter(), owner_(qwa), paint_check_(0)
41 {
42         qp_.reset(new QPainter);
43 }
44
45
46 void QLPainter::start()
47 {
48         if (++paint_check_ == 1)
49                 qp_->begin(owner_.getPixmap());
50 }
51
52
53 void QLPainter::end()
54 {
55         if (paint_check_ == 0) {
56                 lyxerr << "ended painting whilst not painting ??" << endl;
57         } else if (--paint_check_ == 0) {
58                 qp_->end();
59         }
60 }
61
62
63 int QLPainter::paperWidth() const
64 {
65         return owner_.workWidth();
66 }
67
68
69 int QLPainter::paperHeight() const
70 {
71         return owner_.workHeight();
72 }
73
74
75 QPainter & QLPainter::setPen(LColor::color c,
76         Painter::line_style ls, Painter::line_width lw)
77 {
78         QPen pen = qp_->pen();
79
80         pen.setColor(toqstr(lcolor.getX11Name(c)));
81
82         switch (ls) {
83                 case line_solid: pen.setStyle(QPen::SolidLine); break;
84                 case line_onoffdash: pen.setStyle(QPen::DotLine); break;
85         }
86
87         switch (lw) {
88                 case line_thin: pen.setWidth(0); break;
89                 case line_thick: pen.setWidth(3); break;
90         }
91
92         qp_->setPen(pen);
93         return *qp_;
94 }
95
96
97 Painter & QLPainter::point(int x, int y, LColor::color c)
98 {
99         setPen(c).drawPoint(x, y);
100         return *this;
101 }
102
103
104 Painter & QLPainter::line(int x1, int y1,
105         int x2, int y2,
106         LColor::color col,
107         line_style ls,
108         line_width lw)
109 {
110         setPen(col, ls, lw).drawLine(x1, y1, x2, y2);
111         return *this;
112 }
113
114
115 Painter & QLPainter::lines(int const * xp, int const * yp,
116         int np,
117         LColor::color col,
118         line_style ls,
119         line_width lw)
120 {
121         // FIXME ?
122
123         // Must use new as np is not known at compile time.
124         boost::scoped_array<QCOORD> points(new QCOORD[np * 2]);
125
126         for (int i = 0, j = 0; i < np; ++i) {
127                 points[j++] = xp[i];
128                 points[j++] = yp[i];
129         }
130
131         setPen(col, ls, lw).drawPolyline(QPointArray(np, points.get()));
132
133         return *this;
134 }
135
136
137 Painter & QLPainter::rectangle(int x, int y,
138         int w, int h,
139         LColor::color col,
140         line_style ls,
141         line_width lw)
142 {
143         //lyxerr << "rectangle " << x << ',' << y << ' '
144         //       << w << ',' << h << endl;
145         setPen(col, ls, lw).drawRect(x, y, w, h);
146         return *this;
147 }
148
149
150 Painter & QLPainter::fillRectangle(int x, int y,
151         int w, int h,
152         LColor::color col)
153 {
154         //lyxerr << "fillRectangle " << x << ',' << y << ' '
155         //       << w << ',' << h << endl;
156         qp_->fillRect(x, y, w, h, QColor(toqstr(lcolor.getX11Name(col))));
157         return *this;
158 }
159
160
161 Painter & QLPainter::fillPolygon(int const * xp, int const * yp,
162         int np, LColor::color col)
163 {
164         // Must use new as np is not known at compile time.
165         boost::scoped_array<QCOORD> points(new QCOORD[np * 2]);
166
167         //if (1) return *this;
168
169         for (int i = 0, j = 0; i < np; ++i) {
170                 points[j++] = xp[i];
171                 points[j++] = yp[i];
172         }
173
174         setPen(col);
175         qp_->setBrush(toqstr(lcolor.getX11Name(col)));
176         qp_->drawPolygon(QPointArray(np, points.get()));
177         qp_->setBrush(Qt::NoBrush);
178
179         return *this;
180 }
181
182
183 Painter & QLPainter::arc(int x, int y,
184         unsigned int w, unsigned int h,
185         int a1, int a2, LColor::color col)
186 {
187         lyxerr[Debug::GUI] << "arc: " << x << ',' << y
188                 << ' ' << w << ',' << h << ", angles "
189                 << a1 << " - " << a2 << endl;
190         // LyX usings 1/64ths degree, Qt usings 1/16th
191         setPen(col).drawArc(x, y, w, h, a1 / 4, a2 / 4);
192         return *this;
193 }
194
195
196 Painter & QLPainter::image(int x, int y,
197         int w, int h,
198         grfx::Image const & i)
199 {
200         qp_->drawPixmap(x, y, static_cast<grfx::QLImage const &>(i).qpixmap(), 0, 0, w, h);
201         return *this;
202 }
203
204
205 Painter & QLPainter::text(int x, int y,
206         string const & s, LyXFont const & f)
207 {
208         return text(x, y, s.data(), s.length(), f);
209 }
210
211
212 Painter & QLPainter::text(int x, int y,
213         char c, LyXFont const & f)
214 {
215         char s[2] = { c, '\0' };
216         return text(x, y, s, 1, f);
217 }
218
219
220 void QLPainter::smallCapsText(int x, int y,
221         QString const & s, LyXFont const & f)
222 {
223         LyXFont smallfont(f);
224         smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
225
226         QFont const & qfont = fontloader.get(f);
227         QFont const & qsmallfont = fontloader.get(smallfont);
228         QFontMetrics const & qfontm = QFontMetrics(qfont);
229         QFontMetrics const & qsmallfontm = QFontMetrics(qsmallfont);
230
231         int tmpx = x;
232         size_t ls = s.length();
233         for (size_t i = 0; i < ls; ++i) {
234                 QChar const c = s[i].upper();
235                 if (c != s[i]) {
236                         qp_->setFont(qsmallfont);
237                         qp_->drawText(tmpx, y, c);
238                         tmpx += qsmallfontm.width(c);
239                 } else {
240                         qp_->setFont(qfont);
241                         qp_->drawText(tmpx, y, c);
242                         tmpx += qfontm.width(c);
243                 }
244         }
245 }
246
247
248 Painter & QLPainter::text(int x, int y,
249         char const * s, size_t ls,
250         LyXFont const & f)
251 {
252         setPen(f.realColor());
253
254         Encoding const * encoding = f.language()->encoding();
255         if (f.isSymbolFont())
256                 encoding = encodings.symbol_encoding();
257
258         QString str;
259 #if QT_VERSION >= 300
260         str.setLength(ls);
261         for (size_t i = 0; i < ls; ++i)
262                 str[i] = QChar(encoding->ucs(s[i]));
263         // HACK: QT3 refuses to show single compose characters
264         if (ls == 1 && str[0].unicode() >= 0x05b0 && str[0].unicode() <= 0x05c2)
265                 str = ' ' + str;
266 #else
267         for (size_t i = 0; i < ls; ++i)
268                 str += QChar(encoding->ucs(s[i]));
269 #endif
270
271         if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
272                 qp_->setFont(fontloader.get(f));
273 #if QT_VERSION >= 300
274                 // We need to draw the text as LTR as we use our own bidi
275                 // code.
276                 qp_->drawText(x, y, str, -1, QPainter::LTR);
277 #else
278                 qp_->drawText(x, y, str);
279 #endif
280         } else {
281                 smallCapsText(x, y, str, f);
282         }
283
284         if (f.underbar() == LyXFont::ON) {
285                 underline(f, x, y, font_metrics::width(s, ls, f));
286         }
287
288         return *this;
289 }