]> 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 4b3115efcf7fb9b29333038bfaf48722a49c123f..e2987340fd0b6474ba7aa88e072f16be8c4cfed8 100644 (file)
@@ -4,30 +4,32 @@
 
 #include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
+/// 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, Dimension & dim) const;
        ///
-       void metrics(MathMetricsInfo const & st) 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