From 811980f739cf7635c02b445d436cfe4b30edf449 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 27 Jul 2001 10:08:04 +0000 Subject: [PATCH] rename MathBigopInset into MathSymbolInset. That's what it is nowadays... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2365 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/Makefile.am | 4 ++-- src/mathed/math_cursor.C | 6 +++--- src/mathed/math_hash.C | 2 +- src/mathed/math_parser.C | 6 +++--- .../{math_bigopinset.C => math_symbolinset.C} | 16 ++++++++-------- .../{math_bigopinset.h => math_symbolinset.h} | 8 ++++---- 6 files changed, 21 insertions(+), 21 deletions(-) rename src/mathed/{math_bigopinset.C => math_symbolinset.C} (58%) rename src/mathed/{math_bigopinset.h => math_symbolinset.h} (75%) diff --git a/src/mathed/Makefile.am b/src/mathed/Makefile.am index 9c2c89f6f0..05126bf7c0 100644 --- a/src/mathed/Makefile.am +++ b/src/mathed/Makefile.am @@ -20,8 +20,6 @@ libmathed_la_SOURCES = \ formulamacro.h \ math_arrayinset.C \ math_arrayinset.h \ - math_bigopinset.C \ - math_bigopinset.h \ math_cursor.C \ math_cursor.h \ math_decorationinset.C \ @@ -62,6 +60,8 @@ libmathed_la_SOURCES = \ math_spaceinset.h \ math_sqrtinset.C \ math_sqrtinset.h \ + math_symbolinset.C \ + math_symbolinset.h \ support.C \ support.h \ symbol_def.h diff --git a/src/mathed/math_cursor.C b/src/mathed/math_cursor.C index cfebdbaf5f..9b33d79b6f 100644 --- a/src/mathed/math_cursor.C +++ b/src/mathed/math_cursor.C @@ -30,7 +30,7 @@ #include "formulabase.h" #include "math_cursor.h" #include "math_arrayinset.h" -#include "math_bigopinset.h" +#include "math_symbolinset.h" #include "math_decorationinset.h" #include "math_deliminset.h" #include "math_dotsinset.h" @@ -668,7 +668,7 @@ void MathCursor::interpret(string const & s) case LM_TK_SYM: case LM_TK_BIGSYM: case LM_TK_FUNCLIM: - p = new MathBigopInset(l); + p = new MathSymbolInset(l); break; case LM_TK_STACK: @@ -712,7 +712,7 @@ void MathCursor::interpret(string const & s) insert(p); if (p->nargs()) { plainLeft(); - right(); // do not push for e.g. MathBigopInset + right(); // do not push for e.g. MathSymbolInset if (oldsel) selPaste(); } diff --git a/src/mathed/math_hash.C b/src/mathed/math_hash.C index df1f63ac25..f61b338879 100644 --- a/src/mathed/math_hash.C +++ b/src/mathed/math_hash.C @@ -177,7 +177,7 @@ latexkeys const wordlist[] = {"neq", LM_TK_SYM, LM_neq, LMB_RELATION}, {"newcommand", LM_TK_NEWCOMMAND, 0 , LMB_NONE}, {"ni", LM_TK_SYM, LM_ni, LMB_RELATION}, - {"nolimits", LM_TK_LIMIT, -1, LMB_NONE}, + {"nolimits", LM_TK_LIMIT, static_cast(-1), LMB_NONE}, {"nonumber", LM_TK_NONUM, 0, LMB_NONE}, {"not", LM_TK_DECORATION, LM_not, LMB_NONE}, {"notin", LM_TK_MACRO, LM_notin, LMB_RELATION}, diff --git a/src/mathed/math_parser.C b/src/mathed/math_parser.C index 42bbdda033..1848d74925 100644 --- a/src/mathed/math_parser.C +++ b/src/mathed/math_parser.C @@ -29,7 +29,7 @@ #include "array.h" #include "math_inset.h" #include "math_arrayinset.h" -#include "math_bigopinset.h" +#include "math_symbolinset.h" #include "math_dotsinset.h" #include "math_decorationinset.h" #include "math_deliminset.h" @@ -644,7 +644,7 @@ void mathed_parse(MathArray & array, unsigned flags) case LM_TK_SYM: case LM_TK_FUNCLIM: limits = 0; - array.push_back(new MathBigopInset(yylval.l)); + array.push_back(new MathSymbolInset(yylval.l)); break; case LM_TK_BOP: @@ -748,7 +748,7 @@ void mathed_parse(MathArray & array, unsigned flags) break; case LM_TK_FUNC: - array.push_back(new MathFuncInset(yylval.l->name)); + array.push_back(new MathSymbolInset(yylval.l)); break; case LM_TK_UNDEF: diff --git a/src/mathed/math_bigopinset.C b/src/mathed/math_symbolinset.C similarity index 58% rename from src/mathed/math_bigopinset.C rename to src/mathed/math_symbolinset.C index 4ae2fdb25b..12aebfd950 100644 --- a/src/mathed/math_bigopinset.C +++ b/src/mathed/math_symbolinset.C @@ -1,34 +1,34 @@ -#include "math_bigopinset.h" +#include "math_symbolinset.h" #include "mathed/math_parser.h" #include "support/LOstream.h" using std::ostream; -MathBigopInset::MathBigopInset(const latexkeys * l) +MathSymbolInset::MathSymbolInset(const latexkeys * l) : sym_(l) {} -MathInset * MathBigopInset::clone() const +MathInset * MathSymbolInset::clone() const { - return new MathBigopInset(*this); + return new MathSymbolInset(*this); } -void MathBigopInset::write(ostream & os, bool /* fragile */) const +void MathSymbolInset::write(ostream & os, bool /* fragile */) const { os << '\\' << sym_->name << ' '; } -void MathBigopInset::writeNormal(ostream & os) const +void MathSymbolInset::writeNormal(ostream & os) const { os << "[bigop " << sym_->name << "] "; } -void MathBigopInset::metrics(MathStyles st) +void MathSymbolInset::metrics(MathStyles st) { size(st); @@ -45,7 +45,7 @@ void MathBigopInset::metrics(MathStyles st) } -void MathBigopInset::draw(Painter & pain, int x, int y) +void MathSymbolInset::draw(Painter & pain, int x, int y) { xo(x); yo(y); diff --git a/src/mathed/math_bigopinset.h b/src/mathed/math_symbolinset.h similarity index 75% rename from src/mathed/math_bigopinset.h rename to src/mathed/math_symbolinset.h index 2c1a477b32..823fdf6571 100644 --- a/src/mathed/math_bigopinset.h +++ b/src/mathed/math_symbolinset.h @@ -1,16 +1,16 @@ // -*- C++ -*- -#ifndef MATH_BIGOPINSET_H -#define MATH_BIGOPINSET_H +#ifndef MATH_SYMBOLINSET_H +#define MATH_SYMBOLINSET_H #include "math_inset.h" struct latexkeys; /// big operators -class MathBigopInset : public MathInset { +class MathSymbolInset : public MathInset { public: /// - explicit MathBigopInset(latexkeys const *); + explicit MathSymbolInset(latexkeys const *); /// MathInset * clone() const; /// -- 2.39.2