]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.h
Ensure all #warning statements are wrapped by #ifdef WITH_WARNINGS.
[lyx.git] / src / mathed / math_sizeinset.h
index b4e25958c71a2397a76f5fcda0c8ae801ea01ebf..2ec061a0e36e2e169160cdea75838583d2d76e0a 100644 (file)
@@ -1,38 +1,49 @@
 // -*- C++ -*-
+/**
+ * \file math_sizeinset.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 MATHSIZEINSET_H
 #define MATHSIZEINSET_H
 
 #include "math_nestinset.h"
-#include "math_defs.h"
-
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "metricsinfo.h"
 
-/** An inset for \scriptsize etc
-    \author André Pönitz
-*/
 
 class latexkeys;
 
+/// An inset for \scriptsize etc.
 class MathSizeInset : public MathNestInset {
 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(MathMetricsInfo const & st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
+
        ///
-       void write(MathWriteInfo & os) const;
+       void write(WriteStream & os) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void normalize(NormalStream &) const;
+       ///
+       void infoize(std::ostream & os) const;
 
 private:
-       /// 
+       ///
        latexkeys const * key_;
+       ///
+       Styles const style_;
 };
 
 #endif