]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exfuncinset.C
several smallish changes/bugfixes/left overs from Porto
[lyx.git] / src / mathed / math_exfuncinset.C
index 10175f52c9551e3c4087eb4665a5173f4a93ce1b..0238540a821183d8212424758035a9b11a644928 100644 (file)
@@ -11,22 +11,28 @@ MathExFuncInset::MathExFuncInset(string const & name)
 {}
 
 
+MathExFuncInset::MathExFuncInset(string const & name, MathArray const & ar)
+       : MathNestInset(1), name_(name)
+{
+       cell(0) = ar;
+}
+
+
 MathInset * MathExFuncInset::clone() const
 {
        return new MathExFuncInset(*this);
 }
 
 
-void MathExFuncInset::metrics(MathMetricsInfo const & mi) const
+void MathExFuncInset::metrics(MathMetricsInfo & mi) const
 {
-       mi_ = mi;
-       mathed_string_dim(LM_TC_TEXTRM, mi_, name_, ascent_, descent_, width_);
+       mathed_string_dim(mi.base.font, name_, ascent_, descent_, width_);
 }
 
 
-void MathExFuncInset::draw(Painter & pain, int x, int y) const
-{  
-       drawStr(pain, LM_TC_TEXTRM, mi_, x, y, name_);
+void MathExFuncInset::draw(MathPainterInfo & pi, int x, int y) const
+{
+       drawStrBlack(pi, x, y, name_);
 }
 
 
@@ -58,5 +64,3 @@ void MathExFuncInset::write(WriteStream & os) const
 {
        os << '\\' << name_ << '{' << cell(0) << '}';
 }
-
-