]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_decorationinset.C
remove symbol_def.h
[lyx.git] / src / mathed / math_decorationinset.C
index de582f6f9057eafa03c52dbe480c6d53185dfd55..8d3d3501e8b70a631a0a9157d855174771f0e2d4 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -8,17 +6,14 @@
 #include "mathed/support.h"
 #include "math_parser.h"
 #include "support/LOstream.h"
-#include "support/lstrings.h"
 
 
 using std::ostream;
 
 
-MathDecorationInset::MathDecorationInset(int d)
-       : MathInset("", LM_OT_DECO, 1), deco_(d)
-{
-       upper_ = deco_ != LM_underline && deco_ != LM_underbrace;
-}
+MathDecorationInset::MathDecorationInset(string const & name)
+       : MathNestInset(1), name_(name)
+{}
 
 
 MathInset * MathDecorationInset::clone() const
@@ -27,44 +22,64 @@ MathInset * MathDecorationInset::clone() const
 }
 
 
+bool MathDecorationInset::upper() const
+{
+       return name_ != "underline" && name_ != "underbrace";
+}
+
 
-void MathDecorationInset::Metrics(MathStyles st)
+bool MathDecorationInset::protect() const
 {
-       xcell(0).Metrics(st);
+       return
+                       name_ == "overbrace" ||
+                       name_ == "underbrace" ||
+                       name_ == "overleftarrow" ||
+                       name_ == "overrightarrow";
+}
+
+
+void MathDecorationInset::metrics(MathStyles st) const
+{
+       xcell(0).metrics(st);
+       size_    = st;
        width_   = xcell(0).width();
        ascent_  = xcell(0).ascent();
        descent_ = xcell(0).descent();
 
-       dh_ = mathed_char_height(LM_TC_VAR, size(), 'I', ascent_, descent_);  
+       dh_ = 5; //mathed_char_height(LM_TC_VAR, size(), 'I', ascent_, descent_);  
 
-       if (upper_) {
+       if (upper()) {
+               dy_ = -ascent_ - dh_;
                ascent_ += dh_ + 1;
-               dy_ = -ascent_;
        } else {
                dy_ = descent_ + 1;
                descent_ += dh_ + 2;
        }
 }
 
-void MathDecorationInset::draw(Painter & pain, int x, int y)
+
+void MathDecorationInset::draw(Painter & pain, int x, int y) const
 { 
        xo(x);
        yo(x);
        xcell(0).draw(pain, x, y);
-       mathed_draw_deco(pain, x, y + dy_, width_, dh_, deco_);
+       mathed_draw_deco(pain, x, y + dy_, width_, dh_, name_);
 }
 
 
-void MathDecorationInset::Write(ostream & os, bool fragile) const
+void MathDecorationInset::write(ostream & os, bool fragile) const
 {
-       latexkeys const * l = lm_get_key_by_id(deco_, LM_TK_WIDE);
-       if (fragile &&
-           (compare(l->name, "overbrace") == 0 ||
-            compare(l->name, "underbrace") == 0 ||
-            compare(l->name, "overleftarrow") == 0 ||
-            compare(l->name, "overrightarrow") == 0))
+       if (fragile && protect())
                os << "\\protect";
-       os << '\\' << l->name << '{';
-       cell(0).Write(os, fragile);  
+       os << '\\' << name_ << '{';
+       cell(0).write(os, fragile);  
        os << '}';
 }
+
+
+void MathDecorationInset::writeNormal(ostream & os) const
+{
+       os << "[" << name_ << " ";
+       cell(0).writeNormal(os);
+       os << "] ";
+}