X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_inset.C;h=1a9b26d3e5d3924af921f8105d1240eea70ff8fd;hb=f1ff990de782f1a4c3ae14902f5242bdb012b264;hp=0b43d32b91b4fb6b7e475c4261bf475313a84762;hpb=0f3b5ab99121253c582ed4af6142dfe9b6cc1777;p=lyx.git diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index 0b43d32b91..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 * @@ -15,269 +15,258 @@ * the GNU General Public Licence version 2 or later. */ -#ifdef __GNUG__ -#pragma implementation -#endif +#include #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) -{} - - -MathInset::~MathInset() -{} +using std::ostream; +using std::endl; -int MathInset::height() const +BufferView * MathInset::view() const { - return ascent() + descent(); + return mathcursor ? mathcursor->formula()->view() : 0; } -MathStyles MathInset::size() const +MathInset::size_type MathInset::nargs() const { - return size_.size; + return 0; } -std::ostream & operator<<(std::ostream & os, MathInset const & inset) -{ - MathWriteInfo wi(0, os, false); - inset.write(wi); - return os; -} - +MathArray dummyCell; -int MathInset::xo() const +MathArray & MathInset::cell(idx_type) { - return xo_; + lyxerr << "I don't have a cell 1" << endl; + return dummyCell; } -int MathInset::yo() const +MathArray const & MathInset::cell(idx_type) const { - return yo_; + lyxerr << "I don't have a cell 2" << endl; + return dummyCell; } -void MathInset::xo(int x) const +MathInset::idx_type MathInset::index(row_type row, col_type col) const { - xo_ = x; + 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::yo(int y) const +bool MathInset::idxNext(idx_type &, pos_type &) const { - yo_ = y; + return false; } -MathInset::size_type MathInset::nargs() const +bool MathInset::idxRight(idx_type &, pos_type &) const { - return 0; + return false; } -MathXArray dummyCell; - -MathXArray & MathInset::xcell(idx_type) +bool MathInset::idxPrev(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::idxLeft(idx_type &, pos_type &) const { - lyxerr << "I don't have a cell\n"; - return dummyCell; + return false; } -MathArray & MathInset::cell(idx_type) +bool MathInset::idxUpDown(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::idxUpDown2(idx_type &, pos_type &, bool, int) const { - lyxerr << "I don't have a cell\n"; - return dummyCell.data_; + return false; } -void MathInset::substitute(MathMacro const &) -{} - - -bool MathInset::idxNext(idx_type &, pos_type &) const +bool MathInset::idxFirst(idx_type &, pos_type &) const { return false; } -bool MathInset::idxRight(idx_type &, pos_type &) const +bool MathInset::idxLast(idx_type &, pos_type &) const { return false; } -bool MathInset::idxPrev(idx_type &, pos_type &) const +bool MathInset::idxHome(idx_type &, pos_type &) const { return false; } -bool MathInset::idxLeft(idx_type &, pos_type &) const +bool MathInset::idxEnd(idx_type &, pos_type &) const { return false; } -bool MathInset::idxUp(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::idxDown(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::idxFirst(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::idxLast(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::idxHome(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::idxEnd(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 } -void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit) + +void MathInset::write(WriteStream & os) const { - popit = false; - deleteit = false; + os << '\\' << name().c_str(); + os.pendingSpace(true); } -void MathInset::idxDeleteRange(idx_type, idx_type) -{} +void MathInset::normalize(NormalStream & os) const +{ + os << '[' << name().c_str() << "] "; +} -void MathInset::getXY(int & x, int & y) const +void MathInset::octave(OctaveStream & os) const { - x = xo(); - y = yo(); + NormalStream ns(os.os()); + normalize(ns); } -/* -void MathInset::userSetSize(MathStyles sz) +void MathInset::maple(MapleStream & 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::maxima(MaximaStream & os) const { - os << "[unknown "; - MathWriteInfo wi(0, os, false); - write(wi); - os << "] "; + MapleStream ns(os.os()); + maple(ns); } -void MathInset::dump() const +void MathInset::mathematica(MathematicaStream & os) const { - lyxerr << "---------------------------------------------\n"; - MathWriteInfo wi(0, lyxerr, false); - write(wi); - lyxerr << "\n---------------------------------------------\n"; + NormalStream ns(os.os()); + normalize(ns); } -void MathInset::push_back(unsigned char, MathTextCodes) +void MathInset::mathmlize(MathMLStream & os) const { - lyxerr << "can't push without a cell\n"; + NormalStream ns(os.os()); + normalize(ns); } -void MathInset::push_back(MathInset *) +int MathInset::ascii(std::ostream &, int) const { - lyxerr << "can't push without a cell\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::idxBetween(idx_type from, idx_type to) const +string const & MathInset::getType() const { - std::vector 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"; }