]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontinset.h
Remove mixed_content from output parameters.
[lyx.git] / src / mathed / math_fontinset.h
index 7673b0742297ba26fe8855fb8f08a58d5d266712..5174823b0435ab38c55385dbb159f797a1cb69bf 100644 (file)
@@ -1,24 +1,29 @@
 // -*- 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"
 
 
-/** Inset for font changes
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS
- */
-
 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; }
        ///
@@ -26,13 +31,13 @@ public:
        /// are we in math mode, text mode, or unsure?
        mode_type currentMode() const;
        ///
-       string name() const;
+       std::string name() const;
        ///
-       void metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metricsT(TextMetricsInfo const & mi) const;
+       void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
        ///
        void drawT(TextPainter & pi, int x, int y) const;
        ///