]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnderset.h
Cell in delimiter inset should not be tight
[lyx.git] / src / mathed / InsetMathUnderset.h
index 4eb2fce5174a4910b28c2a563eae9969be925a56..239a576aebb06d6d4b909a4553dbe4119621e8b9 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.
  */
@@ -13,7 +13,7 @@
 #define MATH_UNDERSETINSET_H
 
 
-#include "InsetMathFracBase.h"
+#include "InsetMathFrac.h"
 
 
 namespace lyx {
@@ -22,23 +22,32 @@ namespace lyx {
 class InsetMathUnderset : public InsetMathFracBase {
 public:
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       InsetMathUnderset(Buffer * buf) : InsetMathFracBase(buf) {}
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       bool idxFirst(LCursor & cur) const;
+       bool idxFirst(Cursor & cur) const;
        ///
-       bool idxLast(LCursor & cur) const;
+       bool idxLast(Cursor & cur) const;
        ///
-       bool idxUpDown(LCursor & cur, bool up) const;
+       bool idxUpDown(Cursor & cur, bool up) const;
        ///
        void write(WriteStream & ws) const;
        ///
        void normalize(NormalStream & ns) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
+       ///
+       InsetCode lyxCode() const { return MATH_UNDERSET_CODE; }
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };