mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
1829cdef6a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
971 B
C++
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
|