]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
use a single function dimension() instead of three.
[lyx.git] / src / mathed / math_inset.C
index f8e45759743f4197364504f9b3bdcd61e79746b2..428a5297137a7db2bf08699341339bffa682d5ed 100644 (file)
@@ -1,9 +1,9 @@
 /*
  *  File:        math_inset.C
  *  Purpose:     Implementation of insets for mathed
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  Created:     January 1996
- *  Description: 
+ *  Description:
  *
  *  Dependencies: Xlib, XForms
  *
 #pragma implementation
 #endif
 
+#include <config.h>
+
+#include "Lsstream.h"
 #include "math_inset.h"
 #include "math_scriptinset.h"
+#include "math_charinset.h"
+#include "math_mathmlstream.h"
+#include "math_cursor.h"
 #include "debug.h"
 
-
-MathInset::MathInset()
-       : xo_(0), yo_(0)
-{}
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+#include "BufferView.h"
+#include "formulabase.h"
 
 
-MathInset::~MathInset()
-{}
+using std::ostream;
+using std::vector;
 
 
 int MathInset::height() const
@@ -39,41 +45,34 @@ int MathInset::height() const
 }
 
 
-std::ostream & operator<<(std::ostream & os, MathInset const & inset)
+ostream & operator<<(ostream & os, MathAtom const & at)
 {
-       MathWriteInfo wi(0, os, false);
-       inset.write(wi);
+       if (at.nucleus())
+               os << *(at.nucleus());
+       else
+               os << "(nil)";
        return os;
 }
 
 
-int MathInset::xo() const
+ostream & operator<<(ostream & os, MathInset const & inset)
 {
-       return xo_;
-}
-
-
-int MathInset::yo() const
-{
-       return yo_;
-}
-
-
-void MathInset::xo(int x) const
-{
-       xo_ = x;
+       WriteStream wi(os, false, false);
+       inset.write(wi);
+       return os;
 }
 
-
-void MathInset::yo(int y) const
+MathInset::size_type MathInset::nargs() const
 {
-       yo_ = y;
+       return 0;
 }
 
 
-MathInset::size_type MathInset::nargs() const
+void MathInset::dimensions(int & w, int & a, int & d) const
 {
-       return 0;
+       w = width();
+       a = ascent();
+       d = descent();
 }
 
 
@@ -81,32 +80,41 @@ MathXArray dummyCell;
 
 MathXArray & MathInset::xcell(idx_type)
 {
-       lyxerr << "I don't have a cell\n";
+       lyxerr << "I don't have a cell 1\n";
        return dummyCell;
 }
 
 
 MathXArray const & MathInset::xcell(idx_type) const
 {
-       lyxerr << "I don't have a cell\n";
+       lyxerr << "I don't have a cell 2\n";
        return dummyCell;
 }
 
 
 MathArray & MathInset::cell(idx_type)
 {
-       lyxerr << "I don't have a cell\n";
-       return dummyCell.data_;
+       lyxerr << "I don't have a cell 3\n";
+       return dummyCell.data();
 }
 
 
 MathArray const & MathInset::cell(idx_type) const
 {
-       lyxerr << "I don't have a cell\n";
-       return dummyCell.data_;
+       lyxerr << "I don't have a cell 4\n";
+       return dummyCell.data();
 }
 
 
+MathInset::idx_type MathInset::index(row_type row, col_type col) const
+{
+       if (row != 0)
+               lyxerr << "illegal row: " << row << "\n";
+       if (col != 0)
+               lyxerr << "illegal col: " << col << "\n";
+       return 0;
+}
+
 void MathInset::substitute(MathMacro const &)
 {}
 
@@ -135,13 +143,7 @@ bool MathInset::idxLeft(idx_type &, pos_type &) const
 }
 
 
-bool MathInset::idxUp(idx_type &, pos_type &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxDown(idx_type &, pos_type &) const
+bool MathInset::idxUpDown(idx_type &, bool) const
 {
        return false;
 }
@@ -171,28 +173,10 @@ bool MathInset::idxEnd(idx_type &, pos_type &) const
 }
 
 
-void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit)
-{
-       popit    = false;
-       deleteit = false;
-}
-
-
-void MathInset::idxDeleteRange(idx_type, idx_type)
-{}
-
-
-void MathInset::getXY(int & x, int & y) const
-{
-       x = xo();
-       y = yo();
-}
-
-
-void MathInset::writeNormal(std::ostream & os) const
+void MathInset::normalize(NormalStream & os) const
 {
        os << "[unknown ";
-       MathWriteInfo wi(0, os, false);
+       WriteStream wi(os.os(), false, true);
        write(wi);
        os << "] ";
 }
@@ -201,51 +185,152 @@ void MathInset::writeNormal(std::ostream & os) const
 void MathInset::dump() const
 {
        lyxerr << "---------------------------------------------\n";
-       MathWriteInfo wi(0, lyxerr, false);
+       WriteStream wi(lyxerr, false, true);
        write(wi);
        lyxerr << "\n---------------------------------------------\n";
 }
 
 
-bool MathInset::covers(int x, int y) const
-{
-       //lyxerr << "cover? p: " << this << " x: " << x << " y: " <<  y
-       //      << " xo_: " << xo_ << " yo_: " << yo_  << endl;
-       return
-               x >= xo_ &&
-               x <= xo_ + width() &&
-               y >= yo_ - ascent() &&
-               y <= yo_ + descent();
-}
-
-
 void MathInset::validate(LaTeXFeatures &) const
 {}
 
 
-std::vector<MathInset::idx_type>
+vector<MathInset::idx_type>
        MathInset::idxBetween(idx_type from, idx_type to) const
 {
-       std::vector<idx_type> res;
+       vector<idx_type> res;
        for (idx_type i = from; i <= to; ++i)
                res.push_back(i);
        return res;
 }
 
 
-void MathInset::metrics(MathMetricsInfo const &) const
+void MathInset::metrics(MathMetricsInfo &) const
 {
        lyxerr << "MathInset::metrics() called directly!\n";
 }
 
 
-void MathInset::draw(Painter &, int, int) const
+void MathInset::draw(MathPainterInfo &, int, int) const
 {
        lyxerr << "MathInset::draw() called directly!\n";
 }
 
 
-void MathInset::write(MathWriteInfo &) const
+void MathInset::metricsT(TextMetricsInfo const &) const
+{
+#ifdef WITH_WARNINGS
+       lyxerr << "MathInset::metricsT(Text) called directly!\n";
+#endif
+}
+
+
+void MathInset::drawT(TextPainter &, int, int) const
+{
+#ifdef WITH_WARNINGS
+       lyxerr << "MathInset::drawT(Text) called directly!\n";
+#endif
+}
+
+
+
+void MathInset::write(WriteStream &) const
 {
        lyxerr << "MathInset::write() called directly!\n";
 }
+
+
+void MathInset::octavize(OctaveStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
+
+
+void MathInset::maplize(MapleStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
+
+
+void MathInset::mathematicize(MathematicaStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
+
+
+void MathInset::mathmlize(MathMLStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
+
+
+int MathInset::ascii(std::ostream &, int) const
+{
+       return 0;
+}
+
+
+int MathInset::linuxdoc(std::ostream &) const
+{
+       return 0;
+}
+
+
+int MathInset::docbook(std::ostream &, bool) const
+{
+       return 0;
+}
+
+
+int MathInset::dispatch(string const &, idx_type, pos_type) 
+{
+       return 0; // undispatched
+}
+
+
+std::vector<string> MathInset::getLabelList() const
+{
+       return std::vector<string>();
+}
+
+
+string const & MathInset::getType() const
+{
+       static string t("none");
+       return t;
+}
+
+
+string asString(MathArray const & ar)
+{
+       string res;
+       for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it)
+               if ((*it)->getChar())
+                       res += (*it)->getChar();
+       return res;
+}
+
+
+MathArray asArray(string const & str)
+{
+       MathArray ar;
+       for (string::const_iterator it = str.begin(); it != str.end(); ++it)
+               ar.push_back(MathAtom(new MathCharInset(*it)));
+       return ar;
+}
+
+
+Dialogs * getDialogs()
+{
+       return mathcursor->formula()->view()->owner()->getDialogs();
+}
+
+
+LyXFunc * getLyXFunc()
+{
+       return mathcursor->formula()->view()->owner()->getLyXFunc();
+}