]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.h
small up/down tweaking
[lyx.git] / src / mathed / math_sizeinset.h
index b4e25958c71a2397a76f5fcda0c8ae801ea01ebf..fa93d50837d4ad1c1f63646dc0e1c5f7d6c03528 100644 (file)
@@ -3,14 +3,16 @@
 #define MATHSIZEINSET_H
 
 #include "math_nestinset.h"
-#include "math_defs.h"
+#include "math_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;
@@ -21,18 +23,25 @@ public:
        explicit MathSizeInset(latexkeys const * l);
        ///
        MathInset * clone() const;
+       /// we write extra braces in any case...
+       bool extraBraces() const { return true; }
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, 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_;
+       ///
+       MathStyles const style_;
 };
 
 #endif