]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / mathed / math_sizeinset.h
index b4e25958c71a2397a76f5fcda0c8ae801ea01ebf..daf08171011c5aa1daf8b567a1cd66d1b241196c 100644 (file)
@@ -3,14 +3,13 @@
 #define MATHSIZEINSET_H
 
 #include "math_nestinset.h"
-#include "math_defs.h"
+#include "metricsinfo.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** An inset for \scriptsize etc
-    \author André Pönitz
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
 */
 
 class latexkeys;
@@ -20,19 +19,26 @@ public:
        ///
        explicit MathSizeInset(latexkeys const * l);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
+       /// we write extra braces in any case...
+       bool extraBraces() const { return true; }
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void draw(PainterInfo &, int x, int y) const;
+
        ///
-       void draw(Painter &, int x, int y) const;
+       void write(WriteStream & os) const;
        ///
-       void write(MathWriteInfo & os) const;
+       void normalize(NormalStream &) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void infoize(std::ostream & os) const;
 
 private:
-       /// 
+       ///
        latexkeys const * key_;
+       ///
+       Styles const style_;
 };
 
 #endif