]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_decorationinset.h
remove symbol_def.h
[lyx.git] / src / mathed / math_decorationinset.h
index 6f189c9ab473247de72eb5a494211064a25becc1..58f74cca21a1e6721c02466496778ebfac5f4fcd 100644 (file)
@@ -2,35 +2,43 @@
 #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
+/** Decorations and accents over (below) a math object
     \author Alejandro Aguilar Sierra
  */
-class MathDecorationInset : public MathInset {
+
+class MathDecorationInset : public MathNestInset {
 public:
        ///
-       explicit MathDecorationInset(int);
+       explicit MathDecorationInset(string const & name);
        ///
        MathInset * clone() const;
        ///
-       void draw(Painter &, int, int);
+       void draw(Painter &, int x, int y) const;
+       ///
+       void write(std::ostream &, bool fragile) const;
        ///
-       void Write(std::ostream &, bool fragile) const;
+       void metrics(MathStyles st) const;
        ///
-       void Metrics(MathStyles st, int asc = 0, int des = 0);
+       void writeNormal(std::ostream & os) const;
+
 private:
        ///
-       int deco_;
+       bool upper() const;
+       ///
+       bool protect() const;
+
        ///
-       bool upper_;
-       /// height of deco
-       int dh_;
-       /// vertical offset of deco
-       int dy_;
+       string const name_;
+       /// height cache of deco
+       mutable int dh_;
+       /// vertical offset cache of deco
+       mutable int dy_;
 };
 #endif