]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_decorationinset.h
fix #1073
[lyx.git] / src / mathed / math_decorationinset.h
index d90bcaeeaa78e6476e986d20dfb0214752a1e307..09c50d58d324fa835081d9ac3749f42d75c5b69d 100644 (file)
@@ -2,33 +2,52 @@
 #ifndef MATH_DECORATIONINSET_H
 #define MATH_DECORATIONINSET_H
 
-#include "math_inset.h"
+#include "math_nestinset.h"
+#include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** Decorations over (below) a math object
-    \author Alejandro Aguilar Sierra
+/** Decorations and accents over (below) a math object
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
  */
-class MathDecorationInset : public MathInset {
+
+class latexkeys;
+
+class MathDecorationInset : public MathNestInset {
 public:
        ///
-       MathDecorationInset(int);
+       explicit MathDecorationInset(latexkeys const * key);
+       ///
+       MathInset * clone() const;
        ///
-       MathInset *  Clone() const;
+       void draw(PainterInfo &, int x, int y) const;
        ///
-       void draw(Painter &, int, int);
+       void write(WriteStream & os) const;
        ///
-       void Write(std::ostream &, bool fragile) const;
+       void metrics(MetricsInfo & mi) const;
        ///
-       void Metrics(MathStyles st);
+       void normalize(NormalStream & os) const;
        ///
-       bool GetLimits() const;
+       void infoize(std::ostream & os) const;
+       ///
+       bool isScriptable() const;
+
 private:
        ///
-       int deco_;
+       bool upper() const;
+       ///
+       bool protect() const;
+       /// is it a wide decoration?
+       bool wide() const;
+
        ///
-       bool upper_;
+       latexkeys const * key_;
+       /// height cache of deco
+       mutable int dh_;
+       /// vertical offset cache of deco
+       mutable int dy_;
+       /// width for non-wide deco
+       mutable int dw_;
 };
 #endif