]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLImage.C
Implement monochrome, and fake grayscale with it
[lyx.git] / src / frontends / qt2 / QLImage.C
1 /**
2  * \file QLImage.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #include <config.h>
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif
17
18 #include "QLImage.h"
19 #include "graphics/GraphicsParams.h"
20 #include "converter.h"
21 #include "debug.h"
22 #include "support/LAssert.h"
23 #include "support/lyxfunctional.h"  // compare_memfun
24
25 #include <qimage.h>
26 #include <qwmatrix.h>
27 #include <qpainter.h>
28
29 #include <boost/tuple/tuple.hpp>
30
31 using std::find_if;
32 using std::endl;
33
34 namespace grfx {
35
36 /// Access to this class is through this static method.
37 Image::ImagePtr QLImage::newImage()
38 {
39         ImagePtr ptr;
40         ptr.reset(new QLImage);
41         return ptr;
42 }
43
44
45 /// Return the list of loadable formats.
46 Image::FormatList QLImage::loadableFormats()
47 {
48         static FormatList fmts;
49
50         if (!fmts.empty())
51                 return fmts;
52
53         // The formats recognised by LyX
54         Formats::const_iterator begin = formats.begin();
55         Formats::const_iterator end   = formats.end();
56
57         lyxerr[Debug::GRAPHICS]
58                 << "\nThe image loader can load the following directly:\n";
59
60         QStrList qt_formats = QImageIO::inputFormats();
61
62         QStrListIterator it(qt_formats);
63
64         for (; it.current(); ++it) {
65            lyxerr[Debug::GRAPHICS] << it.current() << endl;
66
67                 string ext = lowercase(it.current());
68
69                 // special case
70                 if (ext == "jpeg")
71                         ext = "jpg";
72
73                 Formats::const_iterator fit =
74                         find_if(begin, end, lyx::compare_memfun(&Format::extension, ext));
75                 if (fit != end)
76                         fmts.push_back(fit->name());
77         }
78
79         lyxerr[Debug::GRAPHICS]
80                 << "\nOf these, LyX recognises the following formats:\n";
81
82         FormatList::const_iterator fbegin = fmts.begin();
83         FormatList::const_iterator fend   = fmts.end();
84         for (FormatList::const_iterator fit = fbegin; fit != fend; ++fit) {
85                 if (fit != fbegin)
86                         lyxerr[Debug::GRAPHICS] << ", ";
87                 lyxerr[Debug::GRAPHICS] << *fit;
88         }
89         lyxerr[Debug::GRAPHICS] << '\n' << endl;
90
91         return fmts;
92 }
93
94
95 QLImage::QLImage()
96         : Image()
97 {
98 }
99
100
101 QLImage::QLImage(QLImage const & other)
102         : Image(other), pixmap_(other.pixmap_),
103           xformed_pixmap_(other.xformed_pixmap_)
104 {
105 }
106
107
108 QLImage::~QLImage()
109 {
110 }
111
112
113 Image * QLImage::clone() const
114 {
115         return new QLImage(*this);
116 }
117
118
119 unsigned int QLImage::getWidth() const
120 {
121         return xformed_pixmap_.width();
122 }
123
124
125 unsigned int QLImage::getHeight() const
126 {
127         return xformed_pixmap_.height();
128 }
129
130
131 void QLImage::load(string const & filename)
132 {
133         if (!pixmap_.isNull()) {
134                 lyxerr[Debug::GRAPHICS]
135                         << "Image is loaded already!" << endl;
136                 finishedLoading(false);
137                 return;
138         }
139
140         if (!pixmap_.load(filename.c_str())) {
141                 lyxerr[Debug::GRAPHICS]
142                         << "Unable to open image" << endl;
143                 finishedLoading(false);
144                 return;
145         }
146         lyxerr[Debug::GRAPHICS] << "just Loaded." << endl;
147         xformed_pixmap_ = pixmap_;
148         lyxerr[Debug::GRAPHICS] << "pixmap isNull " << pixmap_.isNull()
149                 << " xformed_pixmap_ isNull " << xformed_pixmap_.isNull() << endl;
150         finishedLoading(true);
151 }
152
153
154 bool QLImage::setPixmap(Params const & params)
155 {
156         lyxerr[Debug::GRAPHICS] << "pixmap isNull " << pixmap_.isNull()
157                 << " xformed_pixmap_ isNull " << xformed_pixmap_.isNull() << endl;
158         if (pixmap_.isNull() || params.display == NoDisplay)
159                 return false;
160
161         lyxerr[Debug::GRAPHICS] << "setPixmap()" << endl;
162
163         // FIXME: it's a fake kind of grayscale !
164  
165         switch (params.display) {
166                 case GrayscaleDisplay:
167                 case MonochromeDisplay: {
168                         QImage i(xformed_pixmap_.convertToImage());
169                         xformed_pixmap_.convertFromImage(i, QPixmap::Mono);
170                         break;
171                 }
172  
173                 default:
174                         break;
175         }
176 // FIXME
177 #if 0
178         unsigned int fill = packedcolor(LColor::graphicsbg);
179         if (fill != image_->fill_color) {
180                 // the background color has changed.
181                 // Note that in grayscale/monochrome images the background is
182                 // grayed also, so this call will have no visible effect. Sorry!
183                 flimage_replace_pixel(image_, image_->fill_color, fill);
184                 image_->fill_color = fill;
185         }
186 #endif
187
188         return true;
189 }
190
191
192 void QLImage::clip(Params const & params)
193 {
194         if (xformed_pixmap_.isNull())
195                 return;
196
197         if (params.bb.empty())
198                 // No clipping is necessary.
199                 return;
200
201         int const new_width  = params.bb.xr - params.bb.xl;
202         int const new_height = params.bb.yt - params.bb.yb;
203
204         // No need to check if the width, height are > 0 because the
205         // Bounding Box would be empty() in this case.
206         if (new_width > pixmap_.width() || new_height > pixmap_.height()) {
207                 // Bounds are invalid.
208                 return;
209         }
210
211         if (new_width == pixmap_.width() && new_height == pixmap_.height())
212                 return;
213
214         int const xoffset_l = params.bb.xl;
215         int const yoffset_t = (pixmap_.height() > params.bb.yt ?
216                                 pixmap_.height() - params.bb.yt : 0);
217
218         xformed_pixmap_.resize(new_width, new_height);
219         QPainter p;
220         p.begin(&xformed_pixmap_);
221         p.drawPixmap(0, 0, pixmap_, xoffset_l, yoffset_t, new_width, new_height);
222         p.end();
223 }
224
225
226 void QLImage::rotate(Params const & params)
227 {
228         if (xformed_pixmap_.isNull())
229                 return;
230
231         if (!params.angle)
232                 return;
233
234         // The angle passed to flimage_rotate is the angle in one-tenth of a
235         // degree units.
236
237         lyxerr[Debug::GRAPHICS] << "rotating image by " << params.angle << " degrees" << endl;
238
239         QWMatrix m;
240         m.rotate(-params.angle);
241         xformed_pixmap_ = xformed_pixmap_.xForm(m);
242 }
243
244
245 void QLImage::scale(Params const & params)
246 {
247         if (xformed_pixmap_.isNull())
248                 return;
249
250         unsigned int width;
251         unsigned int height;
252         boost::tie(width, height) = getScaledDimensions(params);
253
254         if (width == getWidth() && height == getHeight())
255                 return;
256
257         lyxerr[Debug::GRAPHICS] << "resizing image to " << width << "(" <<
258                 (double(width)/getWidth()) << ")," << height << "(" <<
259                 (double(height)/getHeight()) << ")" << endl;
260         QWMatrix m;
261         m.scale(double(width) / getWidth(), double(height) / getHeight());
262         xformed_pixmap_ = xformed_pixmap_.xForm(m);
263 }
264
265 } // namespace grfx