lyx_mirror/src/mathed/math_decorationinset.h
André Pönitz 9f0fe8a2f6 make on-screen appearance of nested delimiters closer to what LaTeX does
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2514 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-15 06:53:25 +00:00

46 lines
806 B
C++

// -*- C++ -*-
#ifndef MATH_DECORATIONINSET_H
#define MATH_DECORATIONINSET_H
#include "math_nestinset.h"
#ifdef __GNUG__
#pragma interface
#endif
/** Decorations and accents over (below) a math object
\author Alejandro Aguilar Sierra
*/
struct latexkeys;
class MathDecorationInset : public MathNestInset {
public:
///
explicit MathDecorationInset(latexkeys const *);
///
MathInset * clone() const;
///
void draw(Painter &, int x, int y) const;
///
void write(std::ostream &, bool fragile) const;
///
void metrics(MathStyles st) const;
///
void writeNormal(std::ostream & os) const;
private:
///
bool upper() const;
///
bool protect() const;
///
latexkeys const * key_;
/// height cache of deco
mutable int dh_;
/// vertical offset cache of deco
mutable int dy_;
};
#endif