mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
45 lines
877 B
C
45 lines
877 B
C
|
// -*- C++ -*-
|
|||
|
#ifndef MATH_FONTOLDINSET_H
|
|||
|
#define MATH_FONTOLDINSET_H
|
|||
|
|
|||
|
#include "math_nestinset.h"
|
|||
|
|
|||
|
#ifdef __GNUG__
|
|||
|
#pragma interface
|
|||
|
#endif
|
|||
|
|
|||
|
/** Old-style font changes
|
|||
|
\author Andr<EFBFBD> P<EFBFBD>nitz
|
|||
|
*/
|
|||
|
|
|||
|
class latexkeys;
|
|||
|
|
|||
|
class MathFontOldInset : public MathNestInset {
|
|||
|
public:
|
|||
|
///
|
|||
|
explicit MathFontOldInset(latexkeys const * key);
|
|||
|
///
|
|||
|
MathInset * clone() const;
|
|||
|
/// we write extra braces in any case...
|
|||
|
bool extraBraces() const { return true; }
|
|||
|
///
|
|||
|
void metrics(MathMetricsInfo & mi) const;
|
|||
|
///
|
|||
|
void draw(MathPainterInfo & pi, int x, int y) const;
|
|||
|
///
|
|||
|
void metricsT(TextMetricsInfo const & mi) const;
|
|||
|
///
|
|||
|
void drawT(TextPainter & pi, int x, int y) const;
|
|||
|
///
|
|||
|
void write(WriteStream & os) const;
|
|||
|
///
|
|||
|
void normalize(NormalStream &) const;
|
|||
|
///
|
|||
|
void infoize(std::ostream & os) const;
|
|||
|
|
|||
|
private:
|
|||
|
/// the font to be used on screen
|
|||
|
latexkeys const * key_;
|
|||
|
};
|
|||
|
#endif
|