]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stringinset.C
Ensure all #warning statements are wrapped by #ifdef WITH_WARNINGS.
[lyx.git] / src / mathed / math_stringinset.C
index b3cb3767677fb4fea738ab84e80ed3c67f12db51..dfb664c26c68b5f6a588d14c438fb730969c8996 100644 (file)
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include <cctype>
+/**
+ * \file math_stringinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
 
 #include "math_stringinset.h"
 #include "math_mathmlstream.h"
-#include "LColor.h"
-#include "Painter.h"
-#include "support.h"
-#include "math_parser.h"
-#include "debug.h"
-
-
-MathStringInset::MathStringInset(string const & s, MathTextCodes t)
-       : str_(s), code_(t)
-{}
+#include "math_streamstr.h"
+#include "math_support.h"
 
 
-MathInset * MathStringInset::clone() const
-{   
-       return new MathStringInset(*this);
-}
+using std::string;
+using std::auto_ptr;
 
 
-int MathStringInset::ascent() const
-{
-       return mathed_string_ascent(code_, mi_, str_);
-}
+MathStringInset::MathStringInset(string const & s)
+       : str_(s)
+{}
 
 
-int MathStringInset::descent() const
+auto_ptr<InsetBase> MathStringInset::clone() const
 {
-       return mathed_string_descent(code_, mi_, str_);
+       return auto_ptr<InsetBase>(new MathStringInset(*this));
 }
 
 
-int MathStringInset::width() const
+void MathStringInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       return mathed_string_width(code_, mi_, str_);
+       mathed_string_dim(mi.base.font, str_, dim);
 }
 
 
-void MathStringInset::metrics(MathMetricsInfo const & mi) const
+void MathStringInset::draw(PainterInfo & pi, int x, int y) const
 {
-       mi_ = mi;
-}
-
-
-void MathStringInset::draw(Painter & pain, int x, int y) const
-{ 
        //lyxerr << "drawing '" << str_ << "' code: " << code_ << endl;
-       drawStr(pain, code_, mi_, x, y, str_);
+       drawStr(pi, pi.base.font, x, y, str_);
 }
 
 
-void MathStringInset::write(MathWriteInfo & os) const
+void MathStringInset::normalize(NormalStream & os) const
 {
-       if (math_font_name(code_)) 
-               os << '\\' << math_font_name(code_) << '{' << str_.c_str() << '}';
-       else 
-               os << str_.c_str();
+       os << "[string " << str_ << ' ' << "mathalpha" << ']';
 }
 
 
-void MathStringInset::writeNormal(NormalStream & os) const
+void MathStringInset::maple(MapleStream & os) const
 {
-       os << "[string " << str_.c_str() << ' ' << "mathalpha" << "]";
-}
-
-
-void MathStringInset::maplize(MapleStream & os) const
-{
-       if (code_ != LM_TC_VAR || str_.size() <= 1) {
-               os << str_.c_str();
+       if (/*code_ != LM_TC_VAR ||*/ str_.size() <= 1) {
+               os << ' ' << str_ << ' ';
                return;
-       }       
+       }
 
        // insert '*' between adjacent chars if type is LM_TC_VAR
        os << str_[0];
-       for (string::size_type i = 1; i < str_.size(); ++i) 
-               os << '*' << str_[i];
+       for (string::size_type i = 1; i < str_.size(); ++i)
+               os << str_[i];
 }
 
 
-void MathStringInset::octavize(OctaveStream & os) const
+void MathStringInset::mathematica(MathematicaStream & os) const
 {
-       if (code_ != LM_TC_VAR || str_.size() <= 1) {
-               os << str_.c_str();
+       os << ' ' << str_ << ' ';
+}
+
+
+void MathStringInset::octave(OctaveStream & os) const
+{
+       if (/*code_ != LM_TC_VAR ||*/ str_.size() <= 1) {
+               os << ' ' << str_ << ' ';
                return;
-       }       
+       }
 
        // insert '*' between adjacent chars if type is LM_TC_VAR
        os << str_[0];
-       for (string::size_type i = 1; i < str_.size(); ++i) 
-               os << '*' << str_[i];
+       for (string::size_type i = 1; i < str_.size(); ++i)
+               os << str_[i];
 }
 
 
 void MathStringInset::mathmlize(MathMLStream & os) const
 {
+/*
        if (code_ == LM_TC_VAR)
-               os << "<mi>" << str_.c_str() << "</mi>";
+               os << "<mi> " << str_ << " </mi>";
        else if (code_ == LM_TC_CONST)
-               os << "<mn>" << str_.c_str() << "</mn>";
+               os << "<mn> " << str_ << " </mn>";
        else if (code_ == LM_TC_RM || code_ == LM_TC_TEXTRM)
-               os << "<mtext>" << str_.c_str() << "</mtext>";
+               os << "<mtext> " << str_ <<  " </mtext>";
        else
-               os << str_.c_str();
+*/
+               os << str_;
+}
+
+
+void MathStringInset::write(WriteStream & os) const
+{
+       os << str_;
 }