2001-08-06 06:23:09 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
#ifndef MATH_CHARINSET_H
|
|
|
|
|
#define MATH_CHARINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_inset.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/** The base character inset.
|
|
|
|
|
\author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class MathCharInset : public MathInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
MathCharInset(char c, MathTextCodes t);
|
|
|
|
|
///
|
|
|
|
|
MathInset * clone() const;
|
|
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
|
void metrics(MathStyles st) const;
|
|
|
|
|
///
|
|
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-08-06 06:23:09 +00:00
|
|
|
|
///
|
|
|
|
|
void write(std::ostream &, bool fragile) const;
|
|
|
|
|
///
|
|
|
|
|
void writeNormal(std::ostream &) const;
|
|
|
|
|
///
|
|
|
|
|
int ascent() const;
|
|
|
|
|
///
|
|
|
|
|
int descent() const;
|
|
|
|
|
///
|
|
|
|
|
int width() const;
|
|
|
|
|
/// identifies Charinsets
|
|
|
|
|
bool isCharInset() const { return true; }
|
|
|
|
|
///
|
|
|
|
|
char getChar() const { return char_; }
|
2001-08-09 08:53:16 +00:00
|
|
|
|
///
|
2001-08-14 11:19:19 +00:00
|
|
|
|
MathTextCodes code() const { return code_; }
|
|
|
|
|
///
|
2001-08-09 08:53:16 +00:00
|
|
|
|
bool isRelOp() const;
|
2001-08-10 13:17:39 +00:00
|
|
|
|
///
|
|
|
|
|
void handleFont(MathTextCodes t);
|
2001-08-06 06:23:09 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
/// the character
|
|
|
|
|
char char_;
|
2001-08-10 13:17:39 +00:00
|
|
|
|
///
|
|
|
|
|
MathTextCodes code_;
|
2001-08-06 06:23:09 +00:00
|
|
|
|
};
|
|
|
|
|
#endif
|