X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_inset.C;h=00f9c90124c2306a2641963cde4bc8d9b5e67311;hb=a8a1f10e765512b40f6942e5594363fe16542c1c;hp=0c4fae9707078b78e3a2430222d049a1b5136efe;hpb=fda0fb66f3d0ebfec867b1eeaf33d24762020552;p=lyx.git diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index 0c4fae9707..00f9c90124 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -12,28 +12,15 @@ #include #include "math_inset.h" +#include "math_data.h" #include "math_mathmlstream.h" -#include "math_cursor.h" #include "debug.h" -#include "formulabase.h" - +using std::string; 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) @@ -50,85 +37,10 @@ MathArray const & MathInset::cell(idx_type) const } -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; -} - 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 &, pos_type &, bool, int) const -{ - return false; -} - - -bool MathInset::idxUpDown2(idx_type &, pos_type &, bool, int) const -{ - return false; -} - - -bool MathInset::idxFirst(idx_type &, pos_type &) const -{ - return false; -} - - -bool MathInset::idxLast(idx_type &, pos_type &) const -{ - return false; -} - - -bool MathInset::idxHome(idx_type &, pos_type &) const -{ - return false; -} - - -bool MathInset::idxEnd(idx_type &, pos_type &) const -{ - return false; -} - - -void MathInset::getPos(idx_type, pos_type, int & x, int & y) const -{ - lyxerr << "MathInset::getPos() called directly!" << endl; - x = y = 0; -} - void MathInset::dump() const { @@ -139,19 +51,6 @@ void MathInset::dump() const } -bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const -{ - return from <= idx && idx <= to; -} - - -void MathInset::drawSelection(PainterInfo &, - idx_type, pos_type, idx_type, pos_type) const -{ - lyxerr << "MathInset::drawSelection() called directly!" << endl; -} - - void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const { #ifdef WITH_WARNINGS @@ -217,24 +116,6 @@ void MathInset::mathmlize(MathMLStream & os) const } -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; -} - - string const & MathInset::getType() const { static string const t("none"); @@ -254,9 +135,3 @@ ostream & operator<<(ostream & os, MathAtom const & at) at->write(wi); return os; } - - -string MathInset::fileInsetLabel() const -{ - return "Formula"; -}