lyx_mirror/src/mathed/math_braceinset.h
André Pönitz bf2e2d58f3 Running Angus' rmcopyright.sh and hand-correcting a few cases.
Still a lot to be done in this area...


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5262 a592a061-630c-0410-9148-cb99ea01b6c8
2002-09-11 08:26:02 +00:00

52 lines
1004 B
C++

// -*- C++ -*-
#ifndef MATH_BRACEINSET_H
#define MATH_BRACEINSET_H
#include "math_nestinset.h"
#ifdef __GNUG__
#pragma interface
#endif
/** Extra nesting
* \author André Pönitz
*
* Full author contact details are available in file CREDITS
*/
class MathBraceInset : public MathNestInset {
public:
///
MathBraceInset();
///
MathBraceInset(MathArray const & ar);
///
MathInset * clone() const;
/// we write extra braces in any case...
bool extraBraces() const { return true; }
///
void metrics(MathMetricsInfo & mi) const;
///
void draw(MathPainterInfo &, int x, int y) const;
///
void write(WriteStream & os) const;
/// write normalized content
void normalize(NormalStream & ns) const;
///
void maplize(MapleStream &) const;
///
void mathematicize(MathematicaStream &) const;
///
void octavize(OctaveStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void infoize(std::ostream & os) const;
private:
/// width of brace character
mutable int wid_;
};
#endif