X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFont.h;h=2dc524177ec391bad471a1eb08a13c1a3c8ef34e;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=eec65728b40921ea8066717ce36adc9aedcea529;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathFont.h b/src/mathed/InsetMathFont.h index eec65728b4..2dc524177e 100644 --- a/src/mathed/InsetMathFont.h +++ b/src/mathed/InsetMathFont.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -24,15 +24,19 @@ class latexkeys; class InsetMathFont : public InsetMathNest { public: /// - explicit InsetMathFont(latexkeys const * key); + explicit InsetMathFont(Buffer * buf, latexkeys const * key); /// InsetMathFont * asFontInset() { return this; } /// InsetMathFont const * asFontInset() const { return this; } /// are we in math mode, text mode, or unsure? mode_type currentMode() const; + /// do we allow changing mode during latex export? + bool lockedMode() const; /// - std::string name() const; + void write(WriteStream & os) const; + /// + docstring name() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -44,10 +48,20 @@ public: /// void validate(LaTeXFeatures & features) const; /// - void infoize(std::ostream & os) const; + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; + /// + void infoize(odocstream & os) const; + /// + int kerning(BufferView const * bv) const { return cell(0).kerning(bv); } + /// + InsetCode lyxCode() const { return MATH_FONT_CODE; } private: - virtual std::auto_ptr doClone() const; + std::string font() const; + /// + virtual Inset * clone() const; /// the font to be used on screen latexkeys const * key_; };