]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_substackinset.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / mathed / math_substackinset.h
index 2de0c7b470a292c8d0eb6f3b53fa92ae95ea1ce4..e2987340fd0b6474ba7aa88e072f16be8c4cfed8 100644 (file)
@@ -5,21 +5,26 @@
 #include "math_gridinset.h"
 
 
+/// support for AMS's \\substack
 
 class MathSubstackInset : public MathGridInset {
 public:
        ///
        MathSubstackInset();
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
        MathSubstackInset const * asSubstackInset() const { return this; }
 
        ///
        void normalize();
        ///
+       void infoize(std::ostream & os) const;
+       ///
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;