2001-02-26 12:53:35 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_DECORATIONINSET_H
|
|
|
|
#define MATH_DECORATIONINSET_H
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "math_inset.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-07-13 07:55:55 +00:00
|
|
|
/** Decorations and accents over (below) a math object
|
2001-02-16 09:25:43 +00:00
|
|
|
\author Alejandro Aguilar Sierra
|
|
|
|
*/
|
2001-06-25 00:06:33 +00:00
|
|
|
class MathDecorationInset : public MathInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-07-13 07:55:55 +00:00
|
|
|
MathDecorationInset(string const & name, int);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-07-05 14:48:45 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
|
|
|
void draw(Painter &, int, int);
|
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void write(std::ostream &, bool fragile) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void metrics(MathStyles st);
|
2001-07-13 07:55:55 +00:00
|
|
|
///
|
2001-07-26 06:56:43 +00:00
|
|
|
void writeNormal(std::ostream & os) const;
|
2001-02-16 09:25:43 +00:00
|
|
|
private:
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-02-16 09:25:43 +00:00
|
|
|
int deco_;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-02-16 09:25:43 +00:00
|
|
|
bool upper_;
|
2001-07-05 14:48:45 +00:00
|
|
|
/// height of deco
|
|
|
|
int dh_;
|
|
|
|
/// vertical offset of deco
|
|
|
|
int dy_;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
#endif
|