]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_unknowninset.C
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_unknowninset.C
index 20e83eb96f55981c178cac46cb5187085fceee91..b562092460f27afb9c8c826862e0bf522a7dc34b 100644 (file)
@@ -1,20 +1,14 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
+
 
 #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)
 {}
 
 
@@ -24,56 +18,76 @@ 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;
 }
 
 
-void MathUnknownInset::write(WriteStream & os) const
+bool MathUnknownInset::match(MathAtom const & at) const
 {
-       os << "\\" << name_.c_str() << ' ';
+       MathUnknownInset const * q = at->asUnknownInset();
+       return q && name_ == q->name_;
 }
 
 
 void MathUnknownInset::normalize(NormalStream & os) const
 {
-       os << "[func " << name_.c_str() << ']';
+       os << "[unknown " << name_ << ']';
+}
+
+
+void MathUnknownInset::metrics(MathMetricsInfo & mi) const
+{
+       mathed_string_dim(mi.base.font, name_, dim_);
 }
 
 
-void MathUnknownInset::metrics(MathMetricsInfo const & mi) const 
+void MathUnknownInset::draw(MathPainterInfo & pi, int x, int y) const
 {
-       mi_ = mi;
-       mathed_string_dim(LM_TC_TEX, mi_, 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, LM_TC_TEX, mi_, x, y, name_);
+void MathUnknownInset::finalize()
+{
+       final_ = true;
+}
+
+
+bool MathUnknownInset::final() const
+{
+       return final_;
 }
 
 
-void MathUnknownInset::maplize(MapleStream & os) const
+void MathUnknownInset::maple(MapleStream & os) const
+{
+       os << name_;
+}
+
+void MathUnknownInset::mathematica(MathematicaStream & os) const
 {
-       os << name_.c_str();
+       os << name_;
 }
 
 
 void MathUnknownInset::mathmlize(MathMLStream & os) const
 {
-       os << MTag("mi") << name_.c_str() << ETag("mi");
+       os << MTag("mi") << name_ << ETag("mi");
 }
 
 
-void MathUnknownInset::octavize(OctaveStream & os) const
+void MathUnknownInset::octave(OctaveStream & os) const
 {
-       os << name_.c_str();
+       os << name_;
 }