lyx_mirror/src/mathed/math_lefteqninset.h

26 lines
458 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_LEFTEQNINSET_H
#define MATH_LEFTEQNINSET_H
#include "math_nestinset.h"
/// Support for LaTeX's \\lefteqn command
class MathLefteqnInset : public MathNestInset {
public:
///
MathLefteqnInset();
///
InsetBase * clone() const;
///
string name() const;
///
void metrics(MetricsInfo & mi, Dimension & dim) const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
void infoize(std::ostream & os) const;
};
#endif