X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderGraphic.cpp;h=df1a93a1804f565301945bf8b5c60a94ef899a74;hb=483e1fcd196ed61be3928e6f59f69dadbc2aaea4;hp=bb3cebf0a0908c21d888e43d4c86ece96c9ea694;hpb=9d0ea8aeff32833a90b3fe64df0c5518a9e241be;p=lyx.git diff --git a/src/insets/RenderGraphic.cpp b/src/insets/RenderGraphic.cpp index bb3cebf0a0..df1a93a180 100644 --- a/src/insets/RenderGraphic.cpp +++ b/src/insets/RenderGraphic.cpp @@ -14,6 +14,8 @@ #include "insets/Inset.h" +#include "support/FileName.h" +#include "support/filetools.h" #include "support/gettext.h" #include "LyX.h" #include "LyXRC.h" @@ -28,6 +30,7 @@ #include +using namespace std; namespace lyx { @@ -64,8 +67,7 @@ namespace { bool displayGraphic(graphics::Params const & params) { - return params.display != graphics::NoDisplay && - lyxrc.display_graphics != graphics::NoDisplay; + return params.display && lyxrc.display_graphics; } @@ -130,49 +132,51 @@ bool readyToDisplay(graphics::Loader const & loader) void RenderGraphic::metrics(MetricsInfo & mi, Dimension & dim) const { + if (displayGraphic(params_)) { + if (loader_.status() == graphics::WaitingToLoad) + loader_.startLoading(); + if (!loader_.monitoring()) + loader_.startMonitoring(); + } + bool image_ready = displayGraphic(params_) && readyToDisplay(loader_); + if (image_ready) { + dim.wid = loader_.image()->width() + 2 * Inset::TEXT_TO_INSET_OFFSET; + dim.asc = loader_.image()->height(); + dim_ = dim; + return; + } dim.asc = image_ready ? loader_.image()->height() : 50; dim.des = 0; - if (image_ready) { - dim.wid = loader_.image()->width() + 2 * Inset::TEXT_TO_INSET_OFFSET; - } else { - int font_width = 0; - - FontInfo msgFont(mi.base.font); - msgFont.setFamily(SANS_FAMILY); + int font_width = 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); - } + FontInfo msgFont(mi.base.font); + msgFont.setFamily(SANS_FAMILY); - docstring const msg = statusMessage(params_, loader_.status()); - if (!msg.empty()) { - msgFont.setSize(FONT_SIZE_TINY); - font_width = std::max(font_width, - theFontMetrics(msgFont).width(msg)); - } + // 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 = std::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(); - } - // This will draw the graphics. If the graphics has not been // loaded yet, we draw just a rectangle. @@ -193,7 +197,7 @@ void RenderGraphic::draw(PainterInfo & pi, int x, int y) const // Print the file name. FontInfo msgFont = pi.base.font; msgFont.setFamily(SANS_FAMILY); - std::string const justname = params_.filename.onlyFileName(); + string const justname = params_.filename.onlyFileName(); if (!justname.empty()) { msgFont.setSize(FONT_SIZE_FOOTNOTE);