]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.h
Fix event loop to no longer eat CPU
[lyx.git] / src / mathed / math_fontinset.h
index a07f2ad02eaf2b7168e393f6b0ed2830d19485cc..efe6ce2033b032db71660a79ffd2f48c80dfb3c8 100644 (file)
@@ -1,46 +1,51 @@
 // -*- C++ -*-
+/**
+ * \file math_fontinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_FONTINSET_H
 #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
- */
+class latexkeys;
 
+/// Inset for font changes
 class MathFontInset : public MathNestInset {
 public:
        ///
-       explicit MathFontInset(string const & name);
+       explicit MathFontInset(latexkeys const * key);
        ///
-       MathInset * clone() const;
+       MathFontInset * asFontInset() { return this; }
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       MathFontInset const * asFontInset() const { return this; }
+       /// are we in math mode, text mode, or unsure?
+       mode_type currentMode() const;
        ///
-       void draw(MathPainterInfo & pi, int x, int y) const;
+       std::string name() const;
        ///
-       void metricsT(TextMetricsInfo const & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void drawT(TextPainter & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void write(WriteStream & os) const;
+       void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
        ///
-       void normalize(NormalStream &) const;
-       /// identifies Fontinsets
-       MathFontInset const * asFontInset() const { return this; }
+       void drawT(TextPainter & pi, int x, int y) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
        void infoize(std::ostream & os) const;
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        /// the font to be used on screen
-       string name_;
+       latexkeys const * key_;
 };
 #endif