X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_inset.C;h=00f9c90124c2306a2641963cde4bc8d9b5e67311;hb=a8a1f10e765512b40f6942e5594363fe16542c1c;hp=ef12d2c77bd17ef3a7dd50a59e25356c1c395787;hpb=2b8ef58dc021912b2862328b9000cfe37578ea37;p=lyx.git diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index ef12d2c77b..00f9c90124 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -1,240 +1,137 @@ -/* - * File: math_inset.C - * Purpose: Implementation of insets for mathed - * Author: Alejandro Aguilar Sierra - * Created: January 1996 - * Description: +/** + * \file math_inset.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * Dependencies: Xlib, XForms + * \author Alejandro Aguilar Sierra + * \author André Pönitz * - * Copyright: 1996, 1997 Alejandro Aguilar Sierra - * - * Version: 0.8beta. - * - * You are free to use and modify this code under the terms of - * the GNU General Public Licence version 2 or later. + * Full author contact details are available in file CREDITS. */ -#ifdef __GNUG__ -#pragma implementation -#endif - #include -#include "Lsstream.h" #include "math_inset.h" -#include "math_scriptinset.h" +#include "math_data.h" #include "math_mathmlstream.h" #include "debug.h" - +using std::string; using std::ostream; -using std::vector; - - -int MathInset::height() const -{ - return ascent() + descent(); -} - - -ostream & operator<<(ostream & os, MathInset const & inset) -{ - WriteStream wi(os, false); - inset.write(wi); - return os; -} - - -MathInset::size_type MathInset::nargs() const -{ - return 0; -} +using std::endl; -MathXArray dummyCell; - -MathXArray & MathInset::xcell(idx_type) -{ - 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 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" << endl; + 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" << endl; + return dummyCell; } -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 &) {} -bool MathInset::idxNext(idx_type &, pos_type &) const -{ - return false; -} - - -bool MathInset::idxRight(idx_type &, pos_type &) const -{ - return false; -} - - -bool MathInset::idxPrev(idx_type &, pos_type &) const -{ - return false; -} - - -bool MathInset::idxLeft(idx_type &, pos_type &) const -{ - return false; -} - -bool MathInset::idxUpDown(idx_type &, bool) 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 +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 -{ - return false; -} - -bool MathInset::idxEnd(idx_type &, pos_type &) const +void MathInset::write(WriteStream & os) const { - return false; -} - - -void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit) -{ - popit = false; - deleteit = false; + os << '\\' << name().c_str(); + os.pendingSpace(true); } void MathInset::normalize(NormalStream & os) const { - os << "[unknown "; - WriteStream wi(os.os(), false); - write(wi); - os << "] "; -} - - -void MathInset::dump() const -{ - lyxerr << "---------------------------------------------\n"; - WriteStream wi(lyxerr, false); - write(wi); - lyxerr << "\n---------------------------------------------\n"; -} - - -void MathInset::validate(LaTeXFeatures &) const -{} - - -vector - MathInset::idxBetween(idx_type from, idx_type to) const -{ - vector res; - for (idx_type i = from; i <= to; ++i) - res.push_back(i); - return res; + os << '[' << name().c_str() << "] "; } -void MathInset::metrics(MathMetricsInfo const &) const +void MathInset::octave(OctaveStream & os) const { - lyxerr << "MathInset::metrics() called directly!\n"; + NormalStream ns(os.os()); + normalize(ns); } -void MathInset::draw(Painter &, int, int) const +void MathInset::maple(MapleStream & os) const { - lyxerr << "MathInset::draw() called directly!\n"; + NormalStream ns(os.os()); + normalize(ns); } -void MathInset::metricsT(TextMetricsInfo const &) const +void MathInset::maxima(MaximaStream & os) const { - lyxerr << "MathInset::metricsT(Text) called directly!\n"; + MapleStream ns(os.os()); + maple(ns); } -void MathInset::drawT(TextPainter &, int, int) const +void MathInset::mathematica(MathematicaStream & os) const { - lyxerr << "MathInset::drawT(Text) called directly!\n"; + NormalStream ns(os.os()); + normalize(ns); } - -void MathInset::write(WriteStream &) const +void MathInset::mathmlize(MathMLStream & os) const { - lyxerr << "MathInset::write() called directly!\n"; + NormalStream ns(os.os()); + normalize(ns); } -void MathInset::octavize(OctaveStream & os) const +string const & MathInset::getType() const { - NormalStream ns(os.os()); - normalize(ns); + static string const t("none"); + return t; } -void MathInset::maplize(MapleStream & os) const +string MathInset::name() const { - NormalStream ns(os.os()); - normalize(ns); + return "unknown"; } -void MathInset::mathmlize(MathMLStream & os) const +ostream & operator<<(ostream & os, MathAtom const & at) { - NormalStream ns(os.os()); - normalize(ns); + WriteStream wi(os, false, false); + at->write(wi); + return os; }