mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
43 lines
716 B
C
43 lines
716 B
C
|
// -*- 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;
|
|||
|
///
|
|||
|
void draw(Painter &, int x, int baseline);
|
|||
|
///
|
|||
|
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_; }
|
|||
|
|
|||
|
private:
|
|||
|
/// the character
|
|||
|
char char_;
|
|||
|
};
|
|||
|
#endif
|