]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetgraphics.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetgraphics.h
index b67d7842b204a336358ef3ab3e2a10faa87f9e37..b91cd04c6ce56d06a06b2b31f99f4c5d91eac067 100644 (file)
 
 #include "inset.h"
 #include "insetgraphicsParams.h"
-#include "dimension.h"
 
-#include <boost/signals/trackable.hpp>
 #include <boost/scoped_ptr.hpp>
+#include <boost/signals/trackable.hpp>
+
 
 class Dialogs;
+class GraphicRenderer;
 class LaTeXFeatures;
 
 ///
-class InsetGraphics : public Inset, public boost::signals::trackable {
+class InsetGraphics : public InsetOld, public boost::signals::trackable {
 public:
        ///
        InsetGraphics();
@@ -64,10 +65,10 @@ public:
        void validate(LaTeXFeatures & features) const;
 
        /// returns LyX code associated with the inset. Used for TOC, ...)
-       Inset::Code lyxCode() const { return Inset::GRAPHICS_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::GRAPHICS_CODE; }
 
        ///
-       virtual Inset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
 
        /** Set the inset parameters, used by the GUIndependent dialog.
            Return true of new params are different from what was so far.
@@ -78,17 +79,11 @@ public:
        InsetGraphicsParams const & params() const;
 
 private:
-       /// Returns the cached BufferView.
-       BufferView * view() const;
-
        ///
        friend class InsetGraphicsMailer;
 
-       /// Is the image ready to draw, or should we display a message instead?
-       bool imageIsDrawable() const;
-
-       /** This method is connected to cache_->statusChanged, so we are
-           informed when the image has been loaded.
+       /** This method is connected to the graphics loader, so we are
+        *  informed when the image has been loaded.
         */
        void statusChanged();
 
@@ -108,13 +103,8 @@ private:
        /// holds the entity name that defines the graphics location (SGML).
        string const graphic_label;
 
-       /// The cached variables
-       class Cache;
-       friend class Cache;
-       /// The pointer never changes although *cache_'s contents may.
-       boost::scoped_ptr<Cache> const cache_;
-       /// dimension cache
-       mutable Dimension dim_;
+       /// The thing that actually draws the image on LyX's screen.
+       boost::scoped_ptr<GraphicRenderer> const graphic_;
 };
 
 
@@ -129,11 +119,14 @@ public:
        ///
        virtual string const & name() const { return name_; }
        ///
-       virtual string const inset2string() const;
+       virtual string const inset2string(Buffer const &) const;
        ///
-       static void string2params(string const &, InsetGraphicsParams &);
+       static void string2params(string const & data,
+                                 Buffer const & buffer,
+                                 InsetGraphicsParams &);
        ///
-       static string const params2string(InsetGraphicsParams const &);
+       static string const params2string(InsetGraphicsParams const &,
+                                         Buffer const &);
 private:
        ///
        static string const name_;