mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
9f0fe8a2f6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2514 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
806 B
C++
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
|