]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
small up/down tweaking
[lyx.git] / src / mathed / math_inset.C
index 5b1f844aed911e1a15cbd865402931ebeaf81f07..48f644d71a13f4ec02b7f903a0ddcc08523cda80 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.
  */
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <config.h>
-
-#include "Lsstream.h"
 #include "math_inset.h"
+#include "Lsstream.h"
 #include "math_scriptinset.h"
 #include "math_mathmlstream.h"
+#include "math_cursor.h"
+#include "math_parser.h"
 #include "debug.h"
 
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+#include "BufferView.h"
+#include "formulabase.h"
 
-int MathInset::height() const
-{
-       return ascent() + descent();
-}
+using std::ostream;
 
 
-std::ostream & operator<<(std::ostream & os, MathInset const & inset)
+int MathInset::height() const
 {
-       WriteStream wi(os, false);
-       inset.write(wi);
-       return os;
+       return ascent() + descent();
 }
 
 
@@ -48,33 +49,26 @@ MathInset::size_type MathInset::nargs() const
 }
 
 
-MathXArray dummyCell;
-
-MathXArray & MathInset::xcell(idx_type)
+Dimension MathInset::dimensions() const
 {
-       lyxerr << "I don't have a cell 1\n";
-       return dummyCell;
+       lyxerr << "call MathInset::dimensions()\n";
+       return Dimension(width(), ascent(), descent());
 }
 
 
-MathXArray const & MathInset::xcell(idx_type) const
-{
-       lyxerr << "I don't have a cell 2\n";
-       return dummyCell;
-}
-
+MathArray dummyCell;
 
 MathArray & MathInset::cell(idx_type)
 {
-       lyxerr << "I don't have a cell 3\n";
-       return dummyCell.data_;
+       lyxerr << "I don't have a cell 1\n";
+       return dummyCell;
 }
 
 
 MathArray const & MathInset::cell(idx_type) const
 {
-       lyxerr << "I don't have a cell 4\n";
-       return dummyCell.data_;
+       lyxerr << "I don't have a cell 2\n";
+       return dummyCell;
 }
 
 
@@ -115,13 +109,7 @@ bool MathInset::idxLeft(idx_type &, pos_type &) const
 }
 
 
-bool MathInset::idxUp(idx_type &) const
-{
-       return false;
-}
-
-
-bool MathInset::idxDown(idx_type &) const
+bool MathInset::idxUpDown(idx_type &, pos_type &, bool, int) const
 {
        return false;
 }
@@ -151,60 +139,74 @@ bool MathInset::idxEnd(idx_type &, pos_type &) const
 }
 
 
-void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit)
+void MathInset::getPos(idx_type, pos_type, int & x, int & y) const
 {
-       popit    = false;
-       deleteit = false;
+       lyxerr << "MathInset::getPos() called directly!\n";
+       x = y = 0;
 }
 
 
-void MathInset::normalize(NormalStream & os) const
+void MathInset::dump() const
 {
-       os << "[unknown ";
-       WriteStream wi(os.os(), false);
+       lyxerr << "---------------------------------------------\n";
+       WriteStream wi(lyxerr, false, true);
        write(wi);
-       os << "] ";
+       lyxerr << "\n---------------------------------------------\n";
 }
 
 
-void MathInset::dump() const
+bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const
 {
-       lyxerr << "---------------------------------------------\n";
-       WriteStream wi(lyxerr, false);
-       write(wi);
-       lyxerr << "\n---------------------------------------------\n";
+       return from <= idx && idx <= to;
 }
 
 
-void MathInset::validate(LaTeXFeatures &) const
-{}
+void MathInset::metrics(MathMetricsInfo &) const
+{
+       lyxerr << "MathInset::metrics() called directly!\n";
+}
 
 
-std::vector<MathInset::idx_type>
-       MathInset::idxBetween(idx_type from, idx_type to) const
+void MathInset::draw(MathPainterInfo &, int, int) const
 {
-       std::vector<idx_type> res;
-       for (idx_type i = from; i <= to; ++i)
-               res.push_back(i);
-       return res;
+       lyxerr << "MathInset::draw() called directly!\n";
 }
 
 
-void MathInset::metrics(MathMetricsInfo const &) const
+void MathInset::drawSelection(MathPainterInfo &,
+       idx_type, pos_type, idx_type, pos_type) const
 {
-       lyxerr << "MathInset::metrics() called directly!\n";
+       lyxerr << "MathInset::drawSelection() called directly!\n";
 }
 
 
-void MathInset::draw(Painter &, int, int) const
+void MathInset::metricsT(TextMetricsInfo const &) const
 {
-       lyxerr << "MathInset::draw() called directly!\n";
+#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
+
+void MathInset::write(WriteStream & os) const
 {
-       lyxerr << "MathInset::write() called directly!\n";
+       os << '\\' << name().c_str();
+       os.pendingSpace(true);
+}
+
+
+void MathInset::normalize(NormalStream & os) const
+{
+       os << '[' << name().c_str() << "] ";
 }
 
 
@@ -222,8 +224,91 @@ void MathInset::maplize(MapleStream & os) const
 }
 
 
+void MathInset::maximize(MaximaStream & os) const
+{
+       MapleStream ns(os.os());
+       maplize(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;
+}
+
+
+MathInset::result_type
+       MathInset::dispatch(FuncRequest const &, idx_type &, pos_type &)
+{
+       return UNDISPATCHED;
+}
+
+
+string const & MathInset::getType() const
+{
+       static string t("none");
+       return t;
+}
+
+
+string MathInset::name() const
+{
+       return "unknown";
+}
+
+
+string asString(MathArray const & ar)
+{
+       std::ostringstream os;
+       WriteStream ws(os);
+       ws << ar;
+       return STRCONV(os.str());
+}
+
+
+MathArray asArray(string const & str)
+{
+       MathArray ar;
+       mathed_parse_cell(ar, str);
+       return ar;
+}
+
+
+ostream & operator<<(ostream & os, MathAtom const & at)
+{
+       WriteStream wi(os, false, false);
+       at->write(wi);
+       return os;
+}
+
+
+Dialogs & getDialogs()
+{
+       return mathcursor->formula()->view()->owner()->getDialogs();
+}