lyx_mirror/src/mathed/math_decorationinset.h

46 lines
806 B
C
Raw Normal View History

// -*- 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