X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_inset.C;h=00f9c90124c2306a2641963cde4bc8d9b5e67311;hb=a8a1f10e765512b40f6942e5594363fe16542c1c;hp=d5d6af8653c90962a0250adb69fee0c773f598f3;hpb=38fce2feaced45d99f3e78ee8e877f2c37aa6bd1;p=lyx.git diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index d5d6af8653..00f9c90124 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -1,180 +1,60 @@ -/* - * 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. */ #include #include "math_inset.h" -#include "Lsstream.h" -#include "math_scriptinset.h" +#include "math_data.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" - +using std::string; using std::ostream; - - -BufferView * MathInset::view() const -{ - if (!mathcursor) - return 0; - return mathcursor->formula()->view(); -} - - -MathInset::size_type MathInset::nargs() const -{ - return 0; -} +using std::endl; MathArray dummyCell; MathArray & MathInset::cell(idx_type) { - lyxerr << "I don't have a cell 1\n"; + 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\n"; + 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 &, 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!\n"; - x = y = 0; -} - void MathInset::dump() const { - lyxerr << "---------------------------------------------\n"; + lyxerr << "---------------------------------------------" << endl; WriteStream wi(lyxerr, false, true); write(wi); - lyxerr << "\n---------------------------------------------\n"; -} - - -bool MathInset::idxBetween(idx_type idx, idx_type from, idx_type to) const -{ - return from <= idx && idx <= to; -} - - -void MathInset::draw(PainterInfo &, int, int) const -{ - lyxerr << "MathInset::draw() called directly!\n"; -} - - -void MathInset::drawSelection(PainterInfo &, - idx_type, pos_type, idx_type, pos_type) const -{ - lyxerr << "MathInset::drawSelection() called directly!\n"; + lyxerr << "\n---------------------------------------------" << endl; } void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const { #ifdef WITH_WARNINGS - lyxerr << "MathInset::metricsT(Text) called directly!\n"; + lyxerr << "MathInset::metricsT(Text) called directly!" << endl; #endif } @@ -182,7 +62,7 @@ void MathInset::metricsT(TextMetricsInfo const &, Dimension &) const void MathInset::drawT(TextPainter &, int, int) const { #ifdef WITH_WARNINGS - lyxerr << "MathInset::drawT(Text) called directly!\n"; + lyxerr << "MathInset::drawT(Text) called directly!" << endl; #endif } @@ -236,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"); @@ -267,32 +129,9 @@ string MathInset::name() const } -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; } - - -string MathInset::fileInsetLabel() const -{ - return "Formula"; -}