]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.h
fix #1073
[lyx.git] / src / mathed / math_fontinset.h
index 1c62eb9a7b0071844297b8ff5608fb8cf799fd3f..7673b0742297ba26fe8855fb8f08a58d5d266712 100644 (file)
@@ -3,37 +3,38 @@
 #define MATH_FONTINSET_H
 
 #include "math_nestinset.h"
-#include "LString.h"
-#include "lyxfont.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** The base character inset.
-    \author André Pönitz
+/** Inset for font changes
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 
+class latexkeys;
+
 class MathFontInset : public MathNestInset {
 public:
        ///
-       explicit MathFontInset(string const & name);
+       explicit MathFontInset(latexkeys const * key);
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathMetricsInfo & st) const;
+       MathFontInset * asFontInset() { return this; }
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       MathFontInset const * asFontInset() const { return this; }
+       /// are we in math mode, text mode, or unsure?
+       mode_type currentMode() const;
        ///
-       void metricsT(TextMetricsInfo const & st) const;
+       string name() const;
        ///
-       void drawT(TextPainter &, int x, int y) const;
+       void metrics(MetricsInfo & mi) const;
        ///
-       void write(WriteStream & os) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void normalize(NormalStream &) const;
-       /// identifies Fontinsets
-       MathFontInset const * asFontInset() const { return this; }
+       void metricsT(TextMetricsInfo const & mi) const;
+       ///
+       void drawT(TextPainter & pi, int x, int y) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
@@ -41,6 +42,6 @@ public:
 
 private:
        /// the font to be used on screen
-       string name_;
+       latexkeys const * key_;
 };
 #endif