]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderGraphic.cpp
Fix bug #10194: Space missing in UI.
[lyx.git] / src / insets / RenderGraphic.cpp
index 3520290a973bff05ae6a1c44fa2e355fbd114187..48b41e285478875bcc4a5eb11b229dace4e5e10e 100644 (file)
@@ -14,9 +14,6 @@
 
 #include "insets/Inset.h"
 
-#include "support/FileName.h"
-#include "support/filetools.h"
-#include "support/gettext.h"
 #include "LyX.h"
 #include "LyXRC.h"
 #include "MetricsInfo.h"
 
 #include "graphics/GraphicsImage.h"
 
+#include "support/FileName.h"
 #include "support/filetools.h"
+#include "support/gettext.h"
 
-#include <boost/bind.hpp>
+#include "support/bind.h"
 
 using namespace std;
 
@@ -37,17 +36,14 @@ namespace lyx {
 
 RenderGraphic::RenderGraphic(Inset const * inset)
 {
-       loader_.connect(boost::bind(&Inset::updateFrontend, inset));
-       icon_.connect(boost::bind(&Inset::updateFrontend, inset));
+       loader_.connect(bind(&Inset::updateFrontend, inset));
 }
 
 
 RenderGraphic::RenderGraphic(RenderGraphic const & other, Inset const * inset)
-       : RenderBase(other), loader_(other.loader_), icon_(other.icon_),
-               params_(other.params_)
+       : RenderBase(other), loader_(other.loader_), params_(other.params_)
 {
-       loader_.connect(boost::bind(&Inset::updateFrontend, inset));
-       icon_.connect(boost::bind(&Inset::updateFrontend, inset));
+       loader_.connect(bind(&Inset::updateFrontend, inset));
 }
 
 
@@ -56,6 +52,10 @@ RenderBase * RenderGraphic::clone(Inset const * inset) const
        return new RenderGraphic(*this, inset);
 }
 
+void RenderGraphic::reload() const
+{
+       loader_.reload();
+}
 
 void RenderGraphic::update(graphics::Params const & params)
 {
@@ -63,15 +63,6 @@ void RenderGraphic::update(graphics::Params const & params)
 
        if (!params_.filename.empty())
                loader_.reset(params_.filename, params_);
-       // If icon is set to empty, icon_ will not be reset to empty
-       // but will not be displayed. This is to avoid repeated loading
-       // of the same icon when figure status changes.
-       if (!params_.icon.empty()) {
-               support::FileName const icon = support::libFileSearch("images/",
-                       params_.icon, "png");
-               if (!icon.empty()) // using an empty bounding box
-                       icon_.reset(icon, graphics::Params());
-       }
 }
 
 
@@ -79,8 +70,7 @@ namespace {
 
 bool displayGraphic(graphics::Params const & params)
 {
-       return params.display != graphics::NoDisplay &&
-               lyxrc.display_graphics != graphics::NoDisplay;
+       return params.display && lyxrc.display_graphics;
 }
 
 
@@ -145,53 +135,51 @@ bool readyToDisplay(graphics::Loader const & loader)
 
 void RenderGraphic::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       bool image_ready = displayGraphic(params_) && readyToDisplay(loader_);
-
-       dim.asc = image_ready ? loader_.image()->height() : 50;
-       dim.des = 0;
+       if (displayGraphic(params_)) {
+               if (loader_.status() == graphics::WaitingToLoad)
+                       loader_.startLoading();
+               if (!loader_.monitoring())
+                       loader_.startMonitoring();
+       }
 
+       bool const image_ready = displayGraphic(params_) && readyToDisplay(loader_);
        if (image_ready) {
                dim.wid = loader_.image()->width() + 2 * Inset::TEXT_TO_INSET_OFFSET;
-       } else {
-               int font_width = 0;
+               dim.asc = loader_.image()->height();
+               dim_ = dim;
+               return;
+       }
 
-               FontInfo msgFont(mi.base.font);
-               msgFont.setFamily(SANS_FAMILY);
+       dim.asc = 50;
+       dim.des = 0;
 
-               // FIXME UNICODE
-               docstring const justname = from_utf8(params_.filename.onlyFileName());
-               if (!justname.empty()) {
-                       msgFont.setSize(FONT_SIZE_FOOTNOTE);
-                       font_width = theFontMetrics(msgFont).width(justname);
-               }
+       int font_width = 0;
 
-               docstring const msg = statusMessage(params_, loader_.status());
-               if (!msg.empty()) {
-                       msgFont.setSize(FONT_SIZE_TINY);
-                       font_width = max(font_width,
-                               theFontMetrics(msgFont).width(msg));
-               }
+       FontInfo msgFont(mi.base.font);
+       msgFont.setFamily(SANS_FAMILY);
+
+       // FIXME UNICODE
+       docstring const justname = from_utf8(params_.filename.onlyFileName());
+       if (!justname.empty()) {
+               msgFont.setSize(FONT_SIZE_FOOTNOTE);
+               font_width = theFontMetrics(msgFont).width(justname);
+       }
 
-               dim.wid = max(50, font_width + 15);
+       docstring const msg = statusMessage(params_, loader_.status());
+       if (!msg.empty()) {
+               msgFont.setSize(FONT_SIZE_TINY);
+               font_width = max(font_width,
+                       theFontMetrics(msgFont).width(msg));
        }
 
+       dim.wid = max(50, font_width + 15);
+
        dim_ = dim;
 }
 
 
 void RenderGraphic::draw(PainterInfo & pi, int x, int y) const
 {
-       if (displayGraphic(params_)) {
-               if (loader_.status() == graphics::WaitingToLoad)
-                       loader_.startLoading();
-               if (!loader_.monitoring())
-                       loader_.startMonitoring();
-               if (icon_.status() == graphics::WaitingToLoad)
-                       icon_.startLoading();
-               if (!icon_.monitoring())
-                       icon_.startMonitoring();
-       }
-
        // This will draw the graphics. If the graphics has not been
        // loaded yet, we draw just a rectangle.
 
@@ -229,9 +217,6 @@ void RenderGraphic::draw(PainterInfo & pi, int x, int y) const
                                     y - 4, msg, msgFont);
                }
        }
-       if (!params_.icon.empty() && readyToDisplay(icon_))
-               pi.pain.image(x + Inset::TEXT_TO_INSET_OFFSET, y - dim_.asc, 
-                       10, 10, *icon_.image());
 }