]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathFont.h
Better mechanism for setting cell height
[lyx.git] / src / mathed / InsetMathFont.h
index bfa380d19113aadc17490553c6761d25ced400a6..2dc524177ec391bad471a1eb08a13c1a3c8ef34e 100644 (file)
@@ -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,17 +24,21 @@ 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;
+       ///
+       void write(WriteStream & os) const;
        ///
        docstring name() const;
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -44,12 +48,20 @@ public:
        ///
        void validate(LaTeXFeatures & features) const;
        ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+       ///
        void infoize(odocstream & os) const;
        ///
-       int kerning() const { return cell(0).kerning(); }
+       int kerning(BufferView const * bv) const { return cell(0).kerning(bv); }
+       ///
+       InsetCode lyxCode() const { return MATH_FONT_CODE; }
 
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
+       std::string font() const;
+       ///
+       virtual Inset * clone() const;
        /// the font to be used on screen
        latexkeys const * key_;
 };