]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathKern.h
Do some caching of window title and related UI
[lyx.git] / src / mathed / InsetMathKern.h
index 0e559afe92cf6909e1a441100d2db7dc349e41ab..b063e06d5b1dd3129578653e73edd38fb46db227 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 #define MATH_CHEATINSET_H
 
 #include "InsetMath.h"
-#include "lyxlength.h"
+#include "Length.h"
+
+
+namespace lyx {
 
 
 /// The \kern primitive
@@ -24,9 +27,9 @@ public:
        ///
        InsetMathKern();
        ///
-       explicit InsetMathKern(LyXLength const & wid);
+       explicit InsetMathKern(Length const & wid);
        ///
-       explicit InsetMathKern(std::string const & wid);
+       explicit InsetMathKern(docstring const & wid);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -36,13 +39,18 @@ public:
        ///
        void normalize(NormalStream & ns) const;
        ///
-       int width() const;
+       void mathmlize(MathStream &) const { }
+       ///
+       void htmlize(HtmlStream &) const { }
+       ///
+       InsetCode lyxCode() const { return MATH_KERN_CODE; }
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        /// width in em
-       LyXLength wid_;
-       /// in pixels
-       mutable int wid_pix_;
-
+       Length wid_;
 };
+
+
+} // namespace lyx
 #endif