]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_unknowninset.C
fix #1073
[lyx.git] / src / mathed / math_unknowninset.C
index ad14c66d1c7b015895156eb4853fceabaaca0727..c350985a73140c003b960006763ed32b95160dc1 100644 (file)
@@ -1,22 +1,14 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_unknowninset.h"
-#include "font.h"
-#include "Painter.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
 
-extern LyXFont WhichFont(short type, int size);
-
-
-MathUnknownInset::MathUnknownInset(string const & nm)
-       : name_(nm)
+MathUnknownInset::MathUnknownInset(string const & nm, bool final, bool black)
+       : name_(nm), final_(final), black_(black)
 {}
 
 
@@ -26,51 +18,64 @@ MathInset * MathUnknownInset::clone() const
 }
 
 
-string const & MathUnknownInset::name() const
+string MathUnknownInset::name() const
 {
        return name_;
 }
 
 
-void MathUnknownInset::setName(string const & n)
+void MathUnknownInset::setName(string const & name)
 {
-       name_ = n;
+       name_ = name;
 }
 
 
-bool MathUnknownInset::match(MathInset * p) const
+bool MathUnknownInset::match(MathAtom const & at) const
 {
-       MathUnknownInset const * q = p->asUnknownInset();
+       MathUnknownInset const * q = at->asUnknownInset();
        return q && name_ == q->name_;
 }
 
 
-void MathUnknownInset::write(WriteStream & os) const
+void MathUnknownInset::normalize(NormalStream & os) const
 {
-       os << "\\" << name_ << ' ';
+       os << "[unknown " << name_ << ']';
 }
 
 
-void MathUnknownInset::normalize(NormalStream & os) const
+void MathUnknownInset::metrics(MetricsInfo & mi) const
 {
-       os << "[unknown " << name_ << ']';
+       mathed_string_dim(mi.base.font, name_, dim_);
 }
 
 
-void MathUnknownInset::metrics(MathMetricsInfo const & mi) const 
+void MathUnknownInset::draw(PainterInfo & pi, int x, int y) const
 {
-       whichFont(font_, LM_TC_TEX, mi);
-       mathed_string_dim(font_, name_, ascent_, descent_, width_);
+       if (black_)
+               drawStrBlack(pi, x, y, name_);
+       else
+               drawStrRed(pi, x, y, name_);
 }
 
 
-void MathUnknownInset::draw(Painter & pain, int x, int y) const
-{ 
-       drawStr(pain, font_, x, y, name_);
+void MathUnknownInset::finalize()
+{
+       final_ = true;
 }
 
 
-void MathUnknownInset::maplize(MapleStream & os) const
+bool MathUnknownInset::final() const
+{
+       return final_;
+}
+
+
+void MathUnknownInset::maple(MapleStream & os) const
+{
+       os << name_;
+}
+
+void MathUnknownInset::mathematica(MathematicaStream & os) const
 {
        os << name_;
 }
@@ -82,7 +87,7 @@ void MathUnknownInset::mathmlize(MathMLStream & os) const
 }
 
 
-void MathUnknownInset::octavize(OctaveStream & os) const
+void MathUnknownInset::octave(OctaveStream & os) const
 {
        os << name_;
 }