]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.h
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_fontinset.h
index 91e20458d341ba7129f10667cd2d4c16f173d87c..5174823b0435ab38c55385dbb159f797a1cb69bf 100644 (file)
@@ -1,39 +1,45 @@
 // -*- 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"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-/** Inset for font changes
-    \author André Pönitz
- */
 
 class latexkeys;
 
+/// Inset for font changes
 class MathFontInset : public MathNestInset {
 public:
        ///
        explicit MathFontInset(latexkeys const * key);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> 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;
        ///
-       void metrics(MathMetricsInfo & mi) const;
+       std::string name() const;
        ///
-       void draw(MathPainterInfo & pi, int x, int y) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void metricsT(TextMetricsInfo const & mi) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void drawT(TextPainter & pi, int x, int y) const;
+       void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
        ///
-       void write(WriteStream & os) const;
-       ///
-       void normalize(NormalStream &) const;
+       void drawT(TextPainter & pi, int x, int y) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///