mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
fe87869cb7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4289 a592a061-630c-0410-9148-cb99ea01b6c8
29 lines
501 B
C++
29 lines
501 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_LEFTEQNINSET_H
|
|
#define MATH_LEFTEQNINSET_H
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
/// Support for LaTeX's \\lefteqn command
|
|
|
|
class MathLefteqnInset : public MathNestInset {
|
|
public:
|
|
///
|
|
MathLefteqnInset();
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void draw(MathPainterInfo &, int x, int y) const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void metrics(MathMetricsInfo & st) const;
|
|
};
|
|
#endif
|