]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderBase.h
This should be the last of the commits refactoring the InsetLayout code.
[lyx.git] / src / insets / RenderBase.h
index ce9d753f51ab704ae82e0ed537a9654ad5a150b7..e42035d87fd936e2947a335304193824667cd090 100644 (file)
@@ -14,8 +14,6 @@
 
 #include "Dimension.h"
 
-#include <memory>
-
 
 namespace lyx {
 
@@ -36,9 +34,12 @@ public:
 
        /// compute the size of the object returned in dim.
        /// \retval true if the metrics has changed.
-       virtual bool metrics(MetricsInfo & mi, Dimension & dim) const = 0;
+       virtual void metrics(MetricsInfo & mi, Dimension & dim) const = 0;
        /// draw inset and update (xo, yo)-cache
        virtual void draw(PainterInfo & pi, int x, int y) const = 0;
+       ///
+       Dimension const & dimension() const { return dim_; };
+
        /// render state, exact meaning of state is render-specific
        void setRenderState(int state) { state_ = state; }
        /// get render state