mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
71d514f39e
(i.e. no more \mathrm{a}\mathrm{b}) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2533 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.1 KiB
C++
63 lines
1.1 KiB
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é Pönitz
|
|
*/
|
|
|
|
class MathCharInset : public MathInset {
|
|
public:
|
|
///
|
|
explicit MathCharInset(char c);
|
|
///
|
|
MathCharInset(char c, MathTextCodes t);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
MathTextCodes nativeCode(char c) const;
|
|
///
|
|
void metrics(MathStyles st) const;
|
|
///
|
|
void draw(Painter &, int x, int y) const;
|
|
///
|
|
void write(std::ostream &, bool fragile) const;
|
|
///
|
|
void writeHeader(std::ostream &) const;
|
|
///
|
|
void writeTrailer(std::ostream &) const;
|
|
///
|
|
void writeRaw(std::ostream &) const;
|
|
///
|
|
void writeNormal(std::ostream &) const;
|
|
///
|
|
int ascent() const;
|
|
///
|
|
int descent() const;
|
|
///
|
|
int width() const;
|
|
/// identifies Charinsets
|
|
MathCharInset const * asCharInset() const { return this; }
|
|
///
|
|
char getChar() const { return char_; }
|
|
///
|
|
MathTextCodes code() const { return code_; }
|
|
///
|
|
bool isRelOp() const;
|
|
///
|
|
void handleFont(MathTextCodes t);
|
|
|
|
private:
|
|
/// the character
|
|
char char_;
|
|
///
|
|
MathTextCodes code_;
|
|
};
|
|
#endif
|