]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
Always use std::endl with lyxerr
[lyx.git] / src / mathed / math_inset.C
index 114ab8a4827442a96adb9d007727345b67505c9e..1a9b26d3e5d3924af921f8105d1240eea70ff8fd 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
  *
  *   the GNU General Public Licence version 2 or later.
  */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_inset.h"
 #include "math_scriptinset.h"
+#include "math_mathmlstream.h"
+#include "math_cursor.h"
 #include "debug.h"
 
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+#include "BufferView.h"
+#include "formulabase.h"
 
-int MathInset::workwidth;
-
-
-MathInset::MathInset()
-       : xo_(0), yo_(0)
-{}
+using std::ostream;
+using std::endl;
 
 
-MathInset::~MathInset()
-{}
+BufferView * MathInset::view() const
+{
+       return mathcursor ? mathcursor->formula()->view() : 0;
+}
 
 
-int MathInset::height() const
+MathInset::size_type MathInset::nargs() const
 {
-       return ascent() + descent();
+       return 0;
 }
 
 
-std::ostream & operator<<(std::ostream & os, MathInset const & inset)
+MathArray dummyCell;
+
+MathArray & MathInset::cell(idx_type)
 {
-       MathWriteInfo wi(0, os, false);
-       inset.write(wi);
-       return os;
+       lyxerr << "I don't have a cell 1" << endl;
+       return dummyCell;
 }
 
 
-int MathInset::xo() const
+MathArray const & MathInset::cell(idx_type) const
 {
-       return xo_;
+       lyxerr << "I don't have a cell 2" << endl;
+       return dummyCell;
 }
 
 
-int MathInset::yo() const
+MathInset::idx_type MathInset::index(row_type row, col_type col) const
 {
-       return yo_;
+       if (row != 0)
+               lyxerr << "illegal row: " << row << endl;
+       if (col != 0)
+               lyxerr << "illegal col: " << col << endl;
+       return 0;
 }
 
+void MathInset::substitute(MathMacro const &)
+{}
+
 
-void MathInset::xo(int x) const
+bool MathInset::idxNext(idx_type &, pos_type &) const
 {
-       xo_ = x;
+       return false;
 }
 
 
-void MathInset::yo(int y) const
+bool MathInset::idxRight(idx_type &, pos_type &) const
 {
-       yo_ = y;
+       return false;
 }
 
 
-MathInset::size_type MathInset::nargs() const
+bool MathInset::idxPrev(idx_type &, pos_type &) const
 {
-       return 0;
+       return false;
 }
 
 
-MathXArray dummyCell;
-
-MathXArray & MathInset::xcell(idx_type)
+bool MathInset::idxLeft(idx_type &, pos_type &) const
 {
-       lyxerr << "I don't have a cell\n";
-       return dummyCell;
+       return false;
 }
 
 
-MathXArray const & MathInset::xcell(idx_type) const
+bool MathInset::idxUpDown(idx_type &, pos_type &, bool, int) const
 {
-       lyxerr << "I don't have a cell\n";
-       return dummyCell;
+       return false;
 }
 
 
-MathArray & MathInset::cell(idx_type)
+bool MathInset::idxUpDown2(idx_type &, pos_type &, bool, int) const
 {
-       lyxerr << "I don't have a cell\n";
-       return dummyCell.data_;
+       return false;
 }
 
 
-MathArray const & MathInset::cell(idx_type) const
+bool MathInset::idxFirst(idx_type &, pos_type &) const
 {
-       lyxerr << "I don't have a cell\n";
-       return dummyCell.data_;
+       return false;
 }
 
 
-void MathInset::substitute(MathMacro const &)
-{}
+bool MathInset::idxLast(idx_type &, pos_type &) const
+{
+       return false;
+}
 
 
-bool MathInset::idxNext(idx_type &, pos_type &) const
+bool MathInset::idxHome(idx_type &, pos_type &) const
 {
        return false;
 }
 
 
-bool MathInset::idxRight(idx_type &, pos_type &) const
+bool MathInset::idxEnd(idx_type &, pos_type &) const
 {
        return false;
 }
 
 
-bool MathInset::idxPrev(idx_type &, pos_type &) const
+void MathInset::getPos(idx_type, pos_type, int & x, int & y) const
 {
-       return false;
+       lyxerr << "MathInset::getPos() called directly!" << endl;
+       x = y = 0;
 }
 
 
-bool MathInset::idxLeft(idx_type &, pos_type &) const
+void MathInset::dump() const
 {
-       return false;
+       lyxerr << "---------------------------------------------" << endl;
+       WriteStream wi(lyxerr, false, true);
+       write(wi);
+       lyxerr << "\n---------------------------------------------" << endl;
 }
 
 
-bool MathInset::idxUp(idx_type &, pos_type &) const
+bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const
 {
-       return false;
+       return from <= idx && idx <= to;
 }
 
 
-bool MathInset::idxDown(idx_type &, pos_type &) const
+void MathInset::drawSelection(PainterInfo &,
+       idx_type, pos_type, idx_type, pos_type) const
 {
-       return false;
+       lyxerr << "MathInset::drawSelection() called directly!" << endl;
 }
 
 
-bool MathInset::idxFirst(idx_type &, pos_type &) const
+void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const
 {
-       return false;
+#ifdef WITH_WARNINGS
+       lyxerr << "MathInset::metricsT(Text) called directly!" << endl;
+#endif
 }
 
 
-bool MathInset::idxLast(idx_type &, pos_type &) const
+void MathInset::drawT(TextPainter &, int, int) const
 {
-       return false;
+#ifdef WITH_WARNINGS
+       lyxerr << "MathInset::drawT(Text) called directly!" << endl;
+#endif
 }
 
 
-bool MathInset::idxHome(idx_type &, pos_type &) const
+
+void MathInset::write(WriteStream & os) const
 {
-       return false;
+       os << '\\' << name().c_str();
+       os.pendingSpace(true);
 }
 
 
-bool MathInset::idxEnd(idx_type &, pos_type &) const
+void MathInset::normalize(NormalStream & os) const
 {
-       return false;
+       os << '[' << name().c_str() << "] ";
 }
 
 
-void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit)
+void MathInset::octave(OctaveStream & os) const
 {
-       popit    = false;
-       deleteit = false;
+       NormalStream ns(os.os());
+       normalize(ns);
 }
 
 
-void MathInset::idxDeleteRange(idx_type, idx_type)
-{}
+void MathInset::maple(MapleStream & os) const
+{
+       NormalStream ns(os.os());
+       normalize(ns);
+}
 
 
-void MathInset::getXY(int & x, int & y) const
+void MathInset::maxima(MaximaStream & os) const
 {
-       x = xo();
-       y = yo();
+       MapleStream ns(os.os());
+       maple(ns);
 }
 
 
-/*
-void MathInset::userSetSize(MathStyles sz)
+void MathInset::mathematica(MathematicaStream & os) const
 {
-       if (sz >= 0) {
-               size_ = sz;      
-               flag = flag & ~LMPF_FIXED_SIZE;
-       }
+       NormalStream ns(os.os());
+       normalize(ns);
 }
-*/
 
-void MathInset::writeNormal(std::ostream & os) const
+
+void MathInset::mathmlize(MathMLStream & os) const
 {
-       os << "[unknown ";
-       MathWriteInfo wi(0, os, false);
-       write(wi);
-       os << "] ";
+       NormalStream ns(os.os());
+       normalize(ns);
 }
 
 
-void MathInset::dump() const
+int MathInset::ascii(std::ostream &, int) const
 {
-       lyxerr << "---------------------------------------------\n";
-       MathWriteInfo wi(0, lyxerr, false);
-       write(wi);
-       lyxerr << "\n---------------------------------------------\n";
+       return 0;
 }
 
 
-bool MathInset::covers(int x, int y) const
+int MathInset::linuxdoc(std::ostream &) 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();
+       return 0;
 }
 
 
-void MathInset::validate(LaTeXFeatures &) const
-{}
+int MathInset::docbook(std::ostream &, bool) const
+{
+       return 0;
+}
 
 
-std::vector<MathInset::idx_type>
-       MathInset::idxBetween(idx_type from, idx_type to) const
+string const & MathInset::getType() const
 {
-       std::vector<idx_type> res;
-       for (idx_type i = from; i <= to; ++i)
-               res.push_back(i);
-       return res;
+       static string const t("none");
+       return t;
 }
 
 
-void MathInset::metrics(MathMetricsInfo const & st) const
+string MathInset::name() const
 {
-       lyxerr << "MathInset::metrics() called directly!\n";
-       size_ = st;
+       return "unknown";
 }
 
 
-void MathInset::draw(Painter &, int, int) const
+ostream & operator<<(ostream & os, MathAtom const & at)
 {
-       lyxerr << "MathInset::draw() called directly!\n";
+       WriteStream wi(os, false, false);
+       at->write(wi);
+       return os;
 }
 
 
-void MathInset::write(MathWriteInfo &) const
+string MathInset::fileInsetLabel() const
 {
-       lyxerr << "MathInset::write() called directly!\n";
+       return "Formula";
 }