2002-05-30 07:09:54 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
* \file InsetMathFont.h
|
2003-08-19 13:00:56 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2002-05-30 07:09:54 +00:00
|
|
|
#ifndef MATH_FONTINSET_H
|
|
|
|
#define MATH_FONTINSET_H
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathNest.h"
|
2002-05-30 07:09:54 +00:00
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2002-07-17 10:25:33 +00:00
|
|
|
class latexkeys;
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
/// Inset for font changes
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathFont : public InsetMathNest {
|
2002-05-30 07:09:54 +00:00
|
|
|
public:
|
|
|
|
///
|
2009-11-08 11:45:46 +00:00
|
|
|
explicit InsetMathFont(Buffer * buf, latexkeys const * key);
|
2002-05-30 07:09:54 +00:00
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathFont * asFontInset() { return this; }
|
2002-10-29 08:23:32 +00:00
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathFont const * asFontInset() const { return this; }
|
2002-07-18 11:02:33 +00:00
|
|
|
/// are we in math mode, text mode, or unsure?
|
|
|
|
mode_type currentMode() const;
|
2009-07-03 00:05:58 +00:00
|
|
|
/// do we allow changing mode during latex export?
|
|
|
|
bool lockedMode() const;
|
2002-05-30 07:09:54 +00:00
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
docstring name() const;
|
2002-08-01 15:53:46 +00:00
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-05-30 07:09:54 +00:00
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2002-05-30 07:09:54 +00:00
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
2002-05-30 07:09:54 +00:00
|
|
|
///
|
2002-06-04 09:06:04 +00:00
|
|
|
void drawT(TextPainter & pi, int x, int y) const;
|
2002-05-30 07:09:54 +00:00
|
|
|
///
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
void infoize(odocstream & os) const;
|
2007-03-21 17:21:59 +00:00
|
|
|
///
|
2007-12-22 14:39:22 +00:00
|
|
|
int kerning(BufferView const * bv) const { return cell(0).kerning(bv); }
|
2009-07-16 19:00:24 +00:00
|
|
|
///
|
|
|
|
InsetCode lyxCode() const { return MATH_FONT_CODE; }
|
2002-05-30 07:09:54 +00:00
|
|
|
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
2002-05-30 07:09:54 +00:00
|
|
|
/// the font to be used on screen
|
2002-07-17 10:25:33 +00:00
|
|
|
latexkeys const * key_;
|
2002-05-30 07:09:54 +00:00
|
|
|
};
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2002-05-30 07:09:54 +00:00
|
|
|
#endif
|