X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_inset.C;h=1a9b26d3e5d3924af921f8105d1240eea70ff8fd;hb=f1ff990de782f1a4c3ae14902f5242bdb012b264;hp=48d2a6e523ca3f877e8f32ed54fa8df069f6e9fb;hpb=285bdca67927584b2d56ab69c8a562a4b4c76326;p=lyx.git diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index 48d2a6e523..1a9b26d3e5 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -1,9 +1,9 @@ /* * File: math_inset.C * Purpose: Implementation of insets for mathed - * Author: Alejandro Aguilar Sierra + * Author: Alejandro Aguilar Sierra * Created: January 1996 - * Description: + * Description: * * Dependencies: Xlib, XForms * @@ -17,151 +17,256 @@ #include -#ifdef __GNUG__ -#pragma implementation -#endif - -#include "math_iter.h" #include "math_inset.h" -#include "symbol_def.h" -#include "lyxfont.h" -#include "mathed/support.h" -#include "Painter.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" + +using std::ostream; +using std::endl; + + +BufferView * MathInset::view() const +{ + return mathcursor ? mathcursor->formula()->view() : 0; +} + + +MathInset::size_type MathInset::nargs() const +{ + return 0; +} + + +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; +} -// Initialize some static class variables. -int MathedInset::df_asc; -int MathedInset::df_des; -int MathedInset::df_width; -int MathedInset::workWidth; +MathInset::idx_type MathInset::index(row_type row, col_type col) const +{ + if (row != 0) + lyxerr << "illegal row: " << row << endl; + if (col != 0) + lyxerr << "illegal col: " << col << endl; + return 0; +} -MathedInset::MathedInset(string const & nm, short ot, short st) - : name(nm), objtype(ot), width(0), ascent(0), descent(0), size_(st) +void MathInset::substitute(MathMacro const &) {} -// 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) +bool MathInset::idxNext(idx_type &, pos_type &) const +{ + return false; +} + + +bool MathInset::idxRight(idx_type &, pos_type &) 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); + return false; } -int MathedInset::Ascent() const +bool MathInset::idxPrev(idx_type &, pos_type &) const { - return ascent; + return false; } -int MathedInset::Descent() const +bool MathInset::idxLeft(idx_type &, pos_type &) const { - return descent; + return false; } -int MathedInset::Width() const +bool MathInset::idxUpDown(idx_type &, pos_type &, bool, int) const { - return width; + return false; } -int MathedInset::Height() const +bool MathInset::idxUpDown2(idx_type &, pos_type &, bool, int) const { - return ascent + descent; + return false; } -bool MathedInset::GetLimits() const +bool MathInset::idxFirst(idx_type &, pos_type &) const { return false; } -void MathedInset::SetLimits(bool) {} +bool MathInset::idxLast(idx_type &, pos_type &) const +{ + return false; +} -string const & MathedInset::GetName() const +bool MathInset::idxHome(idx_type &, pos_type &) const { - return name; + return false; } -short MathedInset::GetType() const +bool MathInset::idxEnd(idx_type &, pos_type &) const { - return objtype; + return false; } -short MathedInset::GetStyle() const +void MathInset::getPos(idx_type, pos_type, int & x, int & y) const { - return size_; + lyxerr << "MathInset::getPos() called directly!" << endl; + x = y = 0; } -void MathedInset::SetType(short t) +void MathInset::dump() const { - objtype = t; + lyxerr << "---------------------------------------------" << endl; + WriteStream wi(lyxerr, false, true); + write(wi); + lyxerr << "\n---------------------------------------------" << endl; } -void MathedInset::SetStyle(short st) +bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const { - size_ = st; + return from <= idx && idx <= to; } -void MathedInset::SetName(string const & n) +void MathInset::drawSelection(PainterInfo &, + idx_type, pos_type, idx_type, pos_type) const { - name = n; + lyxerr << "MathInset::drawSelection() called directly!" << endl; } -void MathedInset::defaultAscent(int da) +void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const { - df_asc = da; +#ifdef WITH_WARNINGS + lyxerr << "MathInset::metricsT(Text) called directly!" << endl; +#endif } +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); +} + + +void MathInset::mathematica(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; +} + -void MathedInset::defaultDescent(int dd) +int MathInset::docbook(std::ostream &, bool) const { - df_des = dd; + return 0; } -void MathedInset::defaultWidth(int dw) +string const & MathInset::getType() const { - df_width = dw; + static string const t("none"); + return t; } -short MathedInset::size() const +string MathInset::name() const { - return size_; + return "unknown"; } -void MathedInset::size(short s) +ostream & operator<<(ostream & os, MathAtom const & at) { - size_ = s; + WriteStream wi(os, false, false); + at->write(wi); + return os; } -void MathedInset::incSize() +string MathInset::fileInsetLabel() const { - ++size_; + return "Formula"; }