]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.h
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / inset.h
index 7832a320175be571755316f886b4e666099b50ec..73c8a4380f72e2e04ed22de600b48d3844caf9c9 100644 (file)
 #define INSETOLD_H
 
 #include "insetbase.h"
-#include "dimension.h"
 
 
 namespace lyx {
 
-class LColor_color;
-
-
 /// Insets
 class InsetOld : public InsetBase {
 public:
@@ -35,39 +31,23 @@ public:
 
        ///
        InsetOld();
-       ///
-       int ascent() const;
-       ///
-       int descent() const;
-       ///
-       int width() const;
 
        ///
        void setInsetName(docstring const & s) { name_ = s; }
        ///
        virtual docstring const & getInsetName() const { return name_; }
-       ///
-       virtual void setBackgroundColor(LColor_color);
-       ///
-       LColor_color backgroundColor() const;
        /// set x/y drawing position cache
        void setPosCache(PainterInfo const &, int, int) const;
 
 protected:
        ///
        InsetOld(InsetOld const & in);
-       ///
-       mutable Dimension dim_;
 
 private:
        InsetOld & operator=(InsetOld const &) const;
 
        ///
        docstring name_;
-       /** We store the LColor::color value as an int to get LColor.h out
-        *  of the header file.
-        */
-       int background_color_;
 };