]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLPainter.C
qtabular skeleton
[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 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "font_metrics.h"
18 #include "support/lstrings.h"
19 #include "lyxrc.h"
20 #include "debug.h"
21 #include "LyXView.h"
22 #include "encoding.h"
23 #include "language.h"
24
25 #include "QWorkArea.h"
26 #include "qfont_loader.h"
27 #include "QLPainter.h"
28 #include "QLImage.h"
29
30 #include <boost/scoped_array.hpp>
31
32 #include <qpainter.h>
33 #include <qbrush.h>
34 #include <qcolor.h>
35
36 #include <iostream>
37
38 using std::endl;
39
40
41 QLPainter::QLPainter(QWorkArea & qwa)
42         : Painter(), owner_(qwa), paint_check_(0)
43 {
44         qp_.reset(new QPainter);
45 }
46
47
48 void QLPainter::start()
49 {
50         if (++paint_check_ == 1)
51                 qp_->begin(owner_.getPixmap());
52 }
53
54
55 void QLPainter::end()
56 {
57         if (paint_check_ == 0) {
58                 lyxerr << "ended painting whilst not painting ??" << endl;
59         } else if (--paint_check_ == 0) {
60                 qp_->end();
61         }
62 }
63
64
65 int QLPainter::paperWidth() const
66 {
67         return owner_.workWidth();
68 }
69
70
71 int QLPainter::paperHeight() const
72 {
73         return owner_.workHeight();
74 }
75
76
77 QPainter & QLPainter::setPen(LColor::color c,
78         Painter::line_style ls, Painter::line_width lw)
79 {
80         QPen pen = qp_->pen();
81
82         pen.setColor(lcolor.getX11Name(c).c_str());
83
84         switch (ls) {
85                 case line_solid: pen.setStyle(QPen::SolidLine); break;
86                 case line_onoffdash: pen.setStyle(QPen::DotLine); break;
87         }
88
89         switch (lw) {
90                 case line_thin: pen.setWidth(0); break;
91                 case line_thick: pen.setWidth(3); break;
92         }
93
94         qp_->setPen(pen);
95         return *qp_;
96 }
97
98
99 Painter & QLPainter::point(int x, int y, LColor::color c)
100 {
101         setPen(c).drawPoint(x, y);
102         return *this;
103 }
104
105
106 Painter & QLPainter::line(int x1, int y1,
107         int x2, int y2,
108         LColor::color col,
109         line_style ls,
110         line_width lw)
111 {
112         setPen(col, ls, lw).drawLine(x1, y1, x2, y2);
113         return *this;
114 }
115
116
117 Painter & QLPainter::lines(int const * xp, int const * yp,
118         int np,
119         LColor::color col,
120         line_style ls,
121         line_width lw)
122 {
123         // FIXME ?
124
125         // Must use new as np is not known at compile time.
126         boost::scoped_array<QCOORD> points(new QCOORD[np * 2]);
127
128         for (int i = 0, j = 0; i < np; ++i) {
129                 points[j++] = xp[i];
130                 points[j++] = yp[i];
131         }
132
133         setPen(col, ls, lw).drawPolyline(QPointArray(np, points.get()));
134
135         return *this;
136 }
137
138
139 Painter & QLPainter::rectangle(int x, int y,
140         int w, int h,
141         LColor::color col,
142         line_style ls,
143         line_width lw)
144 {
145         //lyxerr << "rectangle " << x<<","<<y << " " <<w<<","<<h<<endl;
146         setPen(col, ls, lw).drawRect(x, y, w, h);
147         return *this;
148 }
149
150
151 Painter & QLPainter::fillRectangle(int x, int y,
152         int w, int h,
153         LColor::color col)
154 {
155         //lyxerr << "fillRectangle " << x<<","<<y << " " <<w<<","<<h<<endl;
156         qp_->fillRect(x, y, w, h, QColor(lcolor.getX11Name(col).c_str()));
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(lcolor.getX11Name(col).c_str());
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.color());
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 }