mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
99d1627a47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
26 lines
449 B
C++
26 lines
449 B
C++
// -*- 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();
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
string name() const;
|
|
///
|
|
void metrics(MathMetricsInfo & mi) const;
|
|
///
|
|
void draw(MathPainterInfo & pi, int x, int y) const;
|
|
///
|
|
void infoize(std::ostream & os) const;
|
|
};
|
|
#endif
|