]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
swallow <Return> events in mathed. Should mimic 1.3.x behaviour.
[lyx.git] / src / mathed / math_inset.C
index 2e57a7fbe5e8c5cfae685f348e0e9d09b61a66ca..00f9c90124c2306a2641963cde4bc8d9b5e67311 100644 (file)
-/*
- *  File:        math_inset.C
- *  Purpose:     Implementation of insets for mathed
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
- *  Created:     January 1996
- *  Description: 
+/**
+ * \file math_inset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  Dependencies: Xlib, XForms
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
  *
- *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
- *
- *   Version: 0.8beta.
- *
- *   You are free to use and modify this code under the terms of
- *   the GNU General Public Licence version 2 or later.
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
+#include "math_inset.h"
+#include "math_data.h"
+#include "math_mathmlstream.h"
+#include "debug.h"
+
+using std::string;
+using std::ostream;
+using std::endl;
+
+
+MathArray dummyCell;
+
+MathArray & MathInset::cell(idx_type)
+{
+       lyxerr << "I don't have a cell 1" << endl;
+       return dummyCell;
+}
+
+
+MathArray const & MathInset::cell(idx_type) const
+{
+       lyxerr << "I don't have a cell 2" << endl;
+       return dummyCell;
+}
+
+
+void MathInset::substitute(MathMacro const &)
+{}
+
+
+
+void MathInset::dump() const
+{
+       lyxerr << "---------------------------------------------" << endl;
+       WriteStream wi(lyxerr, false, true);
+       write(wi);
+       lyxerr << "\n---------------------------------------------" << endl;
+}
+
+
+void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const
+{
+#ifdef WITH_WARNINGS
+       lyxerr << "MathInset::metricsT(Text) called directly!" << endl;
 #endif
+}
 
-#include "math_iter.h"
-#include "math_inset.h"
-#include "symbol_def.h"
-#include "lyxfont.h"
-#include "mathed/support.h"
-#include "Painter.h"
 
-int MathedInset::df_asc;
-int MathedInset::df_des;
-int MathedInset::df_width;
-int MathedInset::workWidth;
+void MathInset::drawT(TextPainter &, int, int) const
+{
+#ifdef WITH_WARNINGS
+       lyxerr << "MathInset::drawT(Text) called directly!" << endl;
+#endif
+}
+
+
+
+void MathInset::write(WriteStream & os) const
+{
+       os << '\\' << name().c_str();
+       os.pendingSpace(true);
+}
+
+
+void MathInset::normalize(NormalStream & os) const
+{
+       os << '[' << name().c_str() << "] ";
+}
+
+
+void MathInset::octave(OctaveStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
+
+
+void MathInset::maple(MapleStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
+
+
+void MathInset::maxima(MaximaStream & os) const
+{
+       MapleStream ns(os.os());
+       maple(ns);
+}
 
 
-MathedInset::MathedInset(MathedInset * inset) 
+void MathInset::mathematica(MathematicaStream & os) const
 {
-   if (inset) {
-      name = inset->GetName();
-      objtype = inset->GetType();
-      size = inset->GetStyle();
-      width = inset->Width();
-      ascent = inset->Ascent();
-      descent = inset->Descent();
-   } else {
-      objtype = LM_OT_UNDEF;
-      size = LM_ST_TEXT;
-      width = ascent = descent = 0;
-      //name = 0;
-   }
+       NormalStream ns(os.os());
+       normalize(ns);
 }
 
 
-MathedInset::MathedInset(string const & nm, short ot, short st):
-  name(nm), objtype(ot), size(st) 
+void MathInset::mathmlize(MathMLStream & os) const
 {
-   width = ascent = descent = 0;
+       NormalStream ns(os.os());
+       normalize(ns);
 }
 
 
-// In a near future maybe we use a better fonts renderer
-void MathedInset::drawStr(Painter & pain, short type, int siz,
-                         int x, int y, string const & s)
+string const & MathInset::getType() const
 {
-       string st;
-       if (MathIsBinary(type))
-               for (string::const_iterator it = s.begin(); it != s.end(); ++it) {
-                       st += ' ';
-                       st += *it;
-                       st += ' ';
-               }
-       else
-               st = s;
-
-       LyXFont const mf = mathed_get_font(type, siz);
-       pain.text(x, y, st, mf);
+       static string const t("none");
+       return t;
 }
 
+
+string MathInset::name() const
+{
+       return "unknown";
+}
+
+
+ostream & operator<<(ostream & os, MathAtom const & at)
+{
+       WriteStream wi(os, false, false);
+       at->write(wi);
+       return os;
+}