]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.h
small up/down tweaking
[lyx.git] / src / mathed / math_fontinset.h
index a07f2ad02eaf2b7168e393f6b0ed2830d19485cc..7d331e9c5bfa455f2b0c69a751a4f1d1a79c7515 100644 (file)
@@ -3,24 +3,34 @@
 #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;
        ///
+       MathFontInset * asFontInset() { return this; }
+       ///
+       MathFontInset const * asFontInset() const { return this; }
+       /// are we in math mode, text mode, or unsure?
+       mode_type currentMode() const;
+       ///
+       string name() const;
+       ///
        void metrics(MathMetricsInfo & mi) const;
        ///
        void draw(MathPainterInfo & pi, int x, int y) const;
@@ -29,18 +39,12 @@ public:
        ///
        void drawT(TextPainter & pi, int x, int y) const;
        ///
-       void write(WriteStream & os) const;
-       ///
-       void normalize(NormalStream &) const;
-       /// identifies Fontinsets
-       MathFontInset const * asFontInset() const { return this; }
-       ///
        void validate(LaTeXFeatures & features) const;
        ///
        void infoize(std::ostream & os) const;
 
 private:
        /// the font to be used on screen
-       string name_;
+       latexkeys const * key_;
 };
 #endif