]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/PreviewLoader.h
GuiWorkArea: coding style.
[lyx.git] / src / graphics / PreviewLoader.h
index d954401b7b996d35c2c40e375c06edfa9ed11c15..6910984c9ed13eb77c851ac49ee3bad94403fd4d 100644 (file)
@@ -18,9 +18,9 @@
 #ifndef PREVIEWLOADER_H
 #define PREVIEWLOADER_H
 
-#include <boost/scoped_ptr.hpp>
 #include <boost/signal.hpp>
 
+#include "ColorCode.h"
 
 namespace lyx {
 
@@ -68,7 +68,7 @@ public:
        /** We have accumulated several latex snippets with status "InQueue".
         *  Initiate their transformation into bitmap images.
         */
-       void startLoading() const;
+       void startLoading(bool wait = false) const;
 
        /** Connect and you'll be informed when the bitmap image file
         *  has been created and is ready for loading through
@@ -86,6 +86,10 @@ public:
 
        /// Which buffer owns this loader.
        Buffer const & buffer() const;
+       /// The background color used
+       static ColorCode backgroundColor() { return Color_background; }
+       /// The foreground color used
+       static ColorCode foregroundColor() { return Color_preview; }
 
 private:
        /// noncopyable
@@ -95,7 +99,7 @@ private:
        /// Use the Pimpl idiom to hide the internals.
        class Impl;
        /// The pointer never changes although *pimpl_'s contents may.
-       boost::scoped_ptr<Impl> const pimpl_;
+       Impl * const pimpl_;
 };
 
 } // namespace graphics