]> git.lyx.org Git - lyx.git/blob - src/insets/RenderGraphic.cpp
05ce78a93814935e442846d8b379d9a651988665
[lyx.git] / src / insets / RenderGraphic.cpp
1 /**
2  * \file RenderGraphic.cpp
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  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "RenderGraphic.h"
14
15 #include "insets/Inset.h"
16
17 #include "support/gettext.h"
18 #include "LyX.h"
19 #include "LyXRC.h"
20 #include "MetricsInfo.h"
21
22 #include "frontends/FontMetrics.h"
23 #include "frontends/Painter.h"
24
25 #include "graphics/GraphicsImage.h"
26
27 #include "support/filetools.h"
28
29 #include <boost/bind.hpp>
30
31 using namespace std;
32
33 namespace lyx {
34
35
36 RenderGraphic::RenderGraphic(Inset const * inset)
37 {
38         loader_.connect(boost::bind(&Inset::updateFrontend, inset));
39 }
40
41
42 RenderGraphic::RenderGraphic(RenderGraphic const & other, Inset const * inset)
43         : RenderBase(other), loader_(other.loader_), params_(other.params_)
44 {
45         loader_.connect(boost::bind(&Inset::updateFrontend, inset));
46 }
47
48
49 RenderBase * RenderGraphic::clone(Inset const * inset) const
50 {
51         return new RenderGraphic(*this, inset);
52 }
53
54
55 void RenderGraphic::update(graphics::Params const & params)
56 {
57         params_ = params;
58
59         if (!params_.filename.empty())
60                 loader_.reset(params_.filename, params_);
61 }
62
63
64 namespace {
65
66 bool displayGraphic(graphics::Params const & params)
67 {
68         return params.display != graphics::NoDisplay &&
69                 lyxrc.display_graphics != graphics::NoDisplay;
70 }
71
72
73 docstring const statusMessage(graphics::Params const & params,
74                            graphics::ImageStatus status)
75 {
76         docstring ret;
77
78         if (!displayGraphic(params))
79                 ret = _("Not shown.");
80         else {
81                 switch (status) {
82                 case graphics::WaitingToLoad:
83                         ret = _("Not shown.");
84                         break;
85                 case graphics::Loading:
86                         ret = _("Loading...");
87                         break;
88                 case graphics::Converting:
89                         ret = _("Converting to loadable format...");
90                         break;
91                 case graphics::Loaded:
92                         ret = _("Loaded into memory. Generating pixmap...");
93                         break;
94                 case graphics::ScalingEtc:
95                         ret = _("Scaling etc...");
96                         break;
97                 case graphics::Ready:
98                         ret = _("Ready to display");
99                         break;
100                 case graphics::ErrorNoFile:
101                         ret = _("No file found!");
102                         break;
103                 case graphics::ErrorConverting:
104                         ret = _("Error converting to loadable format");
105                         break;
106                 case graphics::ErrorLoading:
107                         ret = _("Error loading file into memory");
108                         break;
109                 case graphics::ErrorGeneratingPixmap:
110                         ret = _("Error generating the pixmap");
111                         break;
112                 case graphics::ErrorUnknown:
113                         ret = _("No image");
114                         break;
115                 }
116         }
117
118         return ret;
119 }
120
121
122 bool readyToDisplay(graphics::Loader const & loader)
123 {
124         if (!loader.image() || loader.status() != graphics::Ready)
125                 return false;
126         return loader.image()->isDrawable();
127 }
128
129 } // namespace anon
130
131
132 void RenderGraphic::metrics(MetricsInfo & mi, Dimension & dim) const
133 {
134         bool image_ready = displayGraphic(params_) && readyToDisplay(loader_);
135
136         dim.asc = image_ready ? loader_.image()->height() : 50;
137         dim.des = 0;
138
139         if (image_ready) {
140                 dim.wid = loader_.image()->width() + 2 * Inset::TEXT_TO_INSET_OFFSET;
141         } else {
142                 int font_width = 0;
143
144                 FontInfo msgFont(mi.base.font);
145                 msgFont.setFamily(SANS_FAMILY);
146
147                 // FIXME UNICODE
148                 docstring const justname = from_utf8(params_.filename.onlyFileName());
149                 if (!justname.empty()) {
150                         msgFont.setSize(FONT_SIZE_FOOTNOTE);
151                         font_width = theFontMetrics(msgFont).width(justname);
152                 }
153
154                 docstring const msg = statusMessage(params_, loader_.status());
155                 if (!msg.empty()) {
156                         msgFont.setSize(FONT_SIZE_TINY);
157                         font_width = max(font_width,
158                                 theFontMetrics(msgFont).width(msg));
159                 }
160
161                 dim.wid = max(50, font_width + 15);
162         }
163
164         dim_ = dim;
165 }
166
167
168 void RenderGraphic::draw(PainterInfo & pi, int x, int y) const
169 {
170         if (displayGraphic(params_)) {
171                 if (loader_.status() == graphics::WaitingToLoad)
172                         loader_.startLoading();
173                 if (!loader_.monitoring())
174                         loader_.startMonitoring();
175         }
176
177         // This will draw the graphics. If the graphics has not been
178         // loaded yet, we draw just a rectangle.
179
180         if (displayGraphic(params_) && readyToDisplay(loader_)) {
181                 pi.pain.image(x + Inset::TEXT_TO_INSET_OFFSET,
182                               y - dim_.asc,
183                               dim_.wid - 2 * Inset::TEXT_TO_INSET_OFFSET,
184                               dim_.asc + dim_.des,
185                               *loader_.image());
186
187         } else {
188                 pi.pain.rectangle(x + Inset::TEXT_TO_INSET_OFFSET,
189                                   y - dim_.asc,
190                                   dim_.wid - 2 * Inset::TEXT_TO_INSET_OFFSET,
191                                   dim_.asc + dim_.des,
192                                   Color_foreground);
193
194                 // Print the file name.
195                 FontInfo msgFont = pi.base.font;
196                 msgFont.setFamily(SANS_FAMILY);
197                 string const justname = params_.filename.onlyFileName();
198
199                 if (!justname.empty()) {
200                         msgFont.setSize(FONT_SIZE_FOOTNOTE);
201                         pi.pain.text(x + Inset::TEXT_TO_INSET_OFFSET + 6,
202                                    y - theFontMetrics(msgFont).maxAscent() - 4,
203                                    from_utf8(justname), msgFont);
204                 }
205
206                 // Print the message.
207                 docstring const msg = statusMessage(params_, loader_.status());
208                 if (!msg.empty()) {
209                         msgFont.setSize(FONT_SIZE_TINY);
210                         pi.pain.text(x + Inset::TEXT_TO_INSET_OFFSET + 6,
211                                      y - 4, msg, msgFont);
212                 }
213         }
214 }
215
216
217 } // namespace lyx