lyx_mirror/src/mathed/math_fontoldinset.h
André Pönitz 1829cdef6a promote MathMetricsInfo to MetricsInfo, change mathed accordingly
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
2003-03-21 14:20:48 +00:00

46 lines
971 B
C++

// -*- C++ -*-
#ifndef MATH_FONTOLDINSET_H
#define MATH_FONTOLDINSET_H
#include "math_nestinset.h"
/** Old-style font changes
* \author André Pönitz
*
* Full author contact details are available in file CREDITS
*/
class latexkeys;
class MathFontOldInset : public MathNestInset {
public:
///
explicit MathFontOldInset(latexkeys const * key);
///
MathInset * clone() const;
/// we are in text mode.
mode_type currentMode() const { return TEXT_MODE; }
/// we write extra braces in any case...
bool extraBraces() const { return true; }
///
void metrics(MetricsInfo & mi) const;
///
void draw(PainterInfo & 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