]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/XPainter.C
introduce namespace lyx::support
[lyx.git] / src / frontends / xforms / XPainter.C
1 /**
2  * \file XPainter.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #include <config.h>
13
14 #include "XPainter.h"
15 #include "LString.h"
16 #include "debug.h"
17 #include "XWorkArea.h"
18 #include "xfont_metrics.h"
19 #include "ColorHandler.h"
20 #include "lyxrc.h"
21 #include "encoding.h"
22 #include "language.h"
23
24 #include "xformsImage.h"
25
26 #include "support/LAssert.h"
27 #include "support/lstrings.h"
28
29 #include <boost/scoped_array.hpp>
30
31 #include <cmath>
32
33 using namespace lyx::support;
34
35 using std::endl;
36 using std::max;
37
38
39 XPainter::XPainter(XWorkArea & xwa)
40         : Painter(), owner_(xwa)
41 {
42 }
43
44
45 int XPainter::paperWidth() const
46 {
47         return owner_.workWidth();
48 }
49
50
51 int XPainter::paperHeight() const
52 {
53         return owner_.workHeight();
54 }
55
56
57 Painter & XPainter::point(int x, int y, LColor::color c)
58 {
59         XDrawPoint(fl_get_display(), owner_.getPixmap(),
60                 lyxColorHandler->getGCForeground(c), x, y);
61         return *this;
62 }
63
64
65 Painter & XPainter::line(int x1, int y1,
66         int x2, int y2,
67         LColor::color col,
68         line_style ls,
69         line_width lw)
70 {
71         XDrawLine(fl_get_display(), owner_.getPixmap(),
72                 lyxColorHandler->getGCLinepars(ls, lw, col),
73                 x1, y1, x2, y2);
74         return *this;
75 }
76
77
78 Painter & XPainter::lines(int const * xp, int const * yp,
79         int np,
80         LColor::color col,
81         line_style ls,
82         line_width lw)
83 {
84         boost::scoped_array<XPoint> points(new XPoint[np]);
85
86         for (int i = 0; i < np; ++i) {
87                 points[i].x = xp[i];
88                 points[i].y = yp[i];
89         }
90
91         XDrawLines(fl_get_display(), owner_.getPixmap(),
92                 lyxColorHandler->getGCLinepars(ls, lw, col),
93                 points.get(), np, CoordModeOrigin);
94
95         return *this;
96 }
97
98
99 Painter & XPainter::rectangle(int x, int y,
100         int w, int h,
101         LColor::color col,
102         line_style ls,
103         line_width lw)
104 {
105         XDrawRectangle(fl_get_display(), owner_.getPixmap(),
106                 lyxColorHandler->getGCLinepars(ls, lw, col),
107                 x, y, w, h);
108         return *this;
109 }
110
111
112 Painter & XPainter::fillRectangle(int x, int y,
113         int w, int h,
114         LColor::color col)
115 {
116         XFillRectangle(fl_get_display(), owner_.getPixmap(),
117                 lyxColorHandler->getGCForeground(col), x, y, w, h);
118         return *this;
119 }
120
121
122 Painter & XPainter::fillPolygon(int const * xp, int const * yp,
123         int np, LColor::color col)
124 {
125         boost::scoped_array<XPoint> points(new XPoint[np]);
126
127         for (int i = 0; i < np; ++i) {
128                 points[i].x = xp[i];
129                 points[i].y = yp[i];
130         }
131
132         XFillPolygon(fl_get_display(), owner_.getPixmap(),
133                 lyxColorHandler->getGCForeground(col), points.get(),
134                 np, Nonconvex, CoordModeOrigin);
135
136         return *this;
137 }
138
139
140 Painter & XPainter::arc(int x, int y,
141         unsigned int w, unsigned int h,
142         int a1, int a2, LColor::color col)
143 {
144         XDrawArc(fl_get_display(), owner_.getPixmap(),
145                 lyxColorHandler->getGCForeground(col),
146                 x, y, w, h, a1, a2);
147         return *this;
148 }
149
150
151 Painter & XPainter::image(int x, int y,
152         int w, int h,
153         grfx::Image const & i)
154 {
155         grfx::xformsImage const & image =
156                 static_cast<grfx::xformsImage const &>(i);
157
158         XGCValues val;
159         val.function = GXcopy;
160         GC gc = XCreateGC(fl_get_display(), owner_.getPixmap(),
161                 GCFunction, &val);
162         XCopyArea(fl_get_display(), image.getPixmap(), owner_.getPixmap(),
163                 gc, 0, 0, w, h, x, y);
164         XFreeGC(fl_get_display(), gc);
165         return *this;
166 }
167
168
169 Painter & XPainter::text(int x, int y,
170         string const & s, LyXFont const & f)
171 {
172         return text(x, y, s.data(), s.length(), f);
173 }
174
175
176 Painter & XPainter::text(int x, int y,
177         char c, LyXFont const & f)
178 {
179         char s[2] = { c, '\0' };
180         return text(x, y, s, 1, f);
181 }
182
183
184 Painter & XPainter::text(int x, int y,
185         char const * s, size_t ls,
186         LyXFont const & f)
187 {
188         if (lyxrc.font_norm_type == LyXRC::ISO_10646_1) {
189                 boost::scoped_array<XChar2b> xs(new XChar2b[ls]);
190                 Encoding const * encoding = f.language()->encoding();
191                 LyXFont font(f);
192                 if (f.isSymbolFont()) {
193 #ifdef USE_UNICODE_FOR_SYMBOLS
194                         font.setFamily(LyXFont::ROMAN_FAMILY);
195                         font.setShape(LyXFont::UP_SHAPE);
196 #endif
197                         encoding = encodings.symbol_encoding();
198                 }
199                 for (size_t i = 0; i < ls; ++i) {
200                         Uchar c = encoding->ucs(s[i]);
201                         xs[i].byte1 = c >> 8;
202                         xs[i].byte2 = c & 0xff;
203                 }
204                 text(x, y, xs.get(), ls, font);
205                 return *this;
206         }
207
208         GC gc = lyxColorHandler->getGCForeground(f.realColor());
209         if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
210                 xfont_metrics::XSetFont(fl_get_display(), gc, f);
211                 XDrawString(fl_get_display(), owner_.getPixmap(), gc, x, y, s, ls);
212         } else {
213                 LyXFont smallfont(f);
214                 smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
215                 int tmpx = x;
216                 for (size_t i = 0; i < ls; ++i) {
217                         char const c = uppercase(s[i]);
218                         if (c != s[i]) {
219                                 xfont_metrics::XSetFont(fl_get_display(), gc, smallfont);
220                                 XDrawString(fl_get_display(), owner_.getPixmap(), gc,
221                                         tmpx, y, &c, 1);
222                                 tmpx += xfont_metrics::XTextWidth(smallfont, &c, 1);
223                         } else {
224                                 xfont_metrics::XSetFont(fl_get_display(), gc, f);
225                                 XDrawString(fl_get_display(), owner_.getPixmap(), gc,
226                                         tmpx, y, &c, 1);
227                                 tmpx += xfont_metrics::XTextWidth(f, &c, 1);
228                         }
229                 }
230         }
231
232         if (f.underbar() == LyXFont::ON) {
233                 underline(f, x, y, font_metrics::width(s, ls, f));
234         }
235
236         return *this;
237 }
238
239
240 Painter & XPainter::text(int x, int y,
241         XChar2b const * s, size_t ls,
242         LyXFont const & f)
243 {
244         GC gc = lyxColorHandler->getGCForeground(f.realColor());
245         if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
246                 xfont_metrics::XSetFont(fl_get_display(), gc, f);
247                 XDrawString16(fl_get_display(), owner_.getPixmap(), gc, x, y, s, ls);
248         } else {
249                 LyXFont smallfont(f);
250                 smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
251                 static XChar2b c;
252                 int tmpx = x;
253                 for (size_t i = 0; i < ls; ++i) {
254                         if (s[i].byte1)
255                                 c = s[i];
256                         else {
257                                 c.byte1 = s[i].byte1;
258                                 c.byte2 = uppercase(s[i].byte2);
259                         }
260                         if (c.byte2 != s[i].byte2) {
261                                 xfont_metrics::XSetFont(fl_get_display(), gc, smallfont);
262                                 XDrawString16(fl_get_display(), owner_.getPixmap(), gc,
263                                         tmpx, y, &c, 1);
264                                 tmpx += xfont_metrics::XTextWidth16(smallfont, &c, 1);
265                         } else {
266                                 xfont_metrics::XSetFont(fl_get_display(), gc, f);
267                                 XDrawString16(fl_get_display(), owner_.getPixmap(), gc,
268                                         tmpx, y, &c, 1);
269                                 tmpx += xfont_metrics::XTextWidth16(f, &c, 1);
270                         }
271                 }
272         }
273
274         if (f.underbar() == LyXFont::ON) {
275                 underline(f, x, y, xfont_metrics::width(s, ls, f));
276         }
277
278         return *this;
279 }