]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/PreviewImage.C
* filetools.[Ch]: Make functions that start with a capital
[lyx.git] / src / graphics / PreviewImage.C
index 2ec2e846d2fab81079738ef2d88600247a700e1a..6a057d27f3e8409cd8bb70cf53287426f35957f3 100644 (file)
@@ -1,36 +1,41 @@
 /**
- *  \file PreviewImage.C
+ * \file PreviewImage.C
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "PreviewImage.h"
-#include "PreviewLoader.h"
 #include "GraphicsImage.h"
 #include "GraphicsLoader.h"
+#include "PreviewLoader.h"
 
 #include "support/lyxlib.h"
 
 #include <boost/bind.hpp>
-#include <boost/signals/trackable.hpp>
+
+namespace support = lyx::support;
+
+using std::string;
 
 
-namespace grfx {
+namespace lyx {
+namespace graphics {
 
-struct PreviewImage::Impl : public boost::signals::trackable {
+class PreviewImage::Impl : public boost::signals::trackable {
+public:
        ///
        Impl(PreviewImage & p, PreviewLoader & l,
             string const & s, string const & f, double af);
        ///
        ~Impl();
        ///
-       Image const * image(Inset const &, BufferView const &);
+       Image const * image();
        ///
        void statusChanged();
 
@@ -93,10 +98,9 @@ int PreviewImage::width() const
 }
 
 
-Image const * PreviewImage::image(Inset const & inset,
-                                 BufferView const & bv) const
+Image const * PreviewImage::image() const
 {
-       return pimpl_->image(inset, bv);
+       return pimpl_->image();
 }
 
 
@@ -113,15 +117,14 @@ PreviewImage::Impl::Impl(PreviewImage & p, PreviewLoader & l,
 
 PreviewImage::Impl::~Impl()
 {
-       lyx::unlink(iloader_.filename());
+       support::unlink(iloader_.filename());
 }
 
 
-Image const * PreviewImage::Impl::image(Inset const & inset,
-                                       BufferView const & bv)
+Image const * PreviewImage::Impl::image()
 {
        if (iloader_.status() == WaitingToLoad)
-               iloader_.startLoading(inset, bv);
+               iloader_.startLoading();
 
        return iloader_.image();
 }
@@ -147,10 +150,11 @@ void PreviewImage::Impl::statusChanged()
                break;
 
        case Ready:
-               lyx::unlink(iloader_.filename());
-               ploader_.emitSignal(parent_);
+               support::unlink(iloader_.filename());
                break;
        }
+       ploader_.emitSignal(parent_);
 }
 
-} // namespace grfx
+} // namespace graphics
+} // namespace lyx