]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_lefteqninset.h
index de99a1273aaccaee2b092bb52635c2de65002ad0..a59cd9de161fc2d8405addbb127b259f9040b925 100644 (file)
@@ -4,25 +4,22 @@
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/// The \kern primitive
+/// Support for LaTeX's \\lefteqn command
 
 class MathLefteqnInset : public MathNestInset {
 public:
        ///
        MathLefteqnInset();
        ///
-       MathInset * clone() const;
+       InsetBase * clone() const;
        ///
-       void draw(Painter &, int x, int y) const;
+       string name() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathStyles st) const;
+       void infoize(std::ostream & os) const;
 };
 #endif