mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4f7d532832
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4597 a592a061-630c-0410-9148-cb99ea01b6c8
42 lines
759 B
C++
42 lines
759 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
|
|
*/
|
|
|
|
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 draw(MathPainterInfo &, int x, int y) const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
/// write normalized content
|
|
void normalize(NormalStream & ns) const;
|
|
///
|
|
void metrics(MathMetricsInfo & mi) const;
|
|
///
|
|
void infoize(std::ostream & os) const;
|
|
|
|
private:
|
|
/// width of brace character
|
|
mutable int wid_;
|
|
};
|
|
|
|
#endif
|