]> 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 d6535fc49e61603872b45d18edcfe192ad3650c8..e2987340fd0b6474ba7aa88e072f16be8c4cfed8 100644 (file)
@@ -5,26 +5,31 @@
 #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(MathMetricsInfo & 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;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
 };
 
 #endif