]> git.lyx.org Git - lyx.git/blobdiff - src/insets/render_preview.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / render_preview.h
index 516eb99b1cac82a338745655e819d48c2d18af6c..ecec3237a0c163069703a006ff7cd60acc11f7b3 100644 (file)
 
 #include "support/FileMonitor.h"
 
-#include <boost/signals/signal0.hpp>
+#include <boost/signal.hpp>
 #include <boost/signals/trackable.hpp>
 #include <boost/signals/connection.hpp>
 
 class Buffer;
-class BufferView;
+class LyXRC_PreviewStatus;
 class MetricsInfo;
 class PainterInfo;
 
@@ -41,12 +41,12 @@ class PreviewLoader;
 
 class RenderPreview : public RenderBase, public boost::signals::trackable {
 public:
-       /// a wrapper for Previews::activated()
-       static bool activated();
+       /// a wrapper for Previews::status()
+       static LyXRC_PreviewStatus status();
 
-       RenderPreview();
-       RenderPreview(RenderPreview const &);
-       RenderBase * clone() const;
+       RenderPreview(InsetBase const *);
+       RenderPreview(RenderPreview const &, InsetBase const *);
+       std::auto_ptr<RenderBase> clone(InsetBase const *) const;
 
        /// Compute the size of the object, returned in dim
        void metrics(MetricsInfo &, Dimension & dim) const;
@@ -72,16 +72,18 @@ public:
         */
        void removePreview(Buffer const &);
 
-       /// The preview has been generated and is ready to use.
-       bool previewReady() const;
+       /** \returns a pointer to the PreviewImage associated with this snippet
+        *  of latex.
+        */
+       lyx::graphics::PreviewImage const *
+       getPreviewImage(Buffer const & buffer) const;
 
-       /// Connect and you'll be informed when the preview is ready.
-       typedef boost::signal0<void>::slot_type slot_type;
-       boost::signals::connection connect(slot_type const &);
+       /// equivalent to dynamic_cast
+       virtual RenderPreview * asPreview() { return this; }
 
 private:
        /// Not implemented.
-       void operator=(RenderPreview const &);
+       RenderPreview & operator=(RenderPreview const &);
 
        /// This method is connected to the PreviewLoader::imageReady signal.
        void imageReady(lyx::graphics::PreviewImage const &);
@@ -89,22 +91,19 @@ private:
        /// The thing that we're trying to generate a preview of.
        std::string snippet_;
 
-       /// We don't own this. Cached for efficiency reasons.
-       lyx::graphics::PreviewImage const * pimage_;
-
        /** Store the connection to the preview loader so that we connect
         *  only once.
         */
        boost::signals::connection ploader_connection_;
 
-       /// This signal is emitted when the preview is ready for display.
-       boost::signal0<void> preview_ready_signal_;
+       /// Inform the core that the inset has changed.
+       InsetBase const * parent_;
 };
 
 
 class RenderMonitoredPreview : public RenderPreview {
 public:
-       RenderMonitoredPreview() : monitor_(std::string(), 2000) {}
+       RenderMonitoredPreview(InsetBase const *);
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -114,9 +113,14 @@ public:
        void startMonitoring() const { monitor_.start(); }
        void stopMonitoring() const { monitor_.stop(); }
 
+
        /// Connect and you'll be informed when the file changes.
+       typedef lyx::support::FileMonitor::slot_type slot_type;
        boost::signals::connection fileChanged(slot_type const &);
 
+       /// equivalent to dynamic_cast
+       virtual RenderMonitoredPreview * asMonitoredPreview() { return this; }
+
 private:
        ///
        mutable lyx::support::FileMonitor monitor_;