X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fformulamacro.C;h=806ad0cc6bba99f618cfa3f05adf1b753ebadd46;hb=49b9dbdf104e55708cc0d8dc67706029ead80812;hp=f25e1907ec19ecf7993dfd5287f762aa2c357fe6;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/mathed/formulamacro.C b/src/mathed/formulamacro.C index f25e1907ec..806ad0cc6b 100644 --- a/src/mathed/formulamacro.C +++ b/src/mathed/formulamacro.C @@ -14,7 +14,7 @@ */ #include -#include +#include #ifdef __GNUG__ #pragma implementation "formulamacro.h" @@ -42,7 +42,7 @@ InsetFormulaMacro::InsetFormulaMacro(): } -InsetFormulaMacro::InsetFormulaMacro(LString nm, int na, bool /*e*/): +InsetFormulaMacro::InsetFormulaMacro(string nm, int na, bool /*e*/): InsetFormula(true), name(nm) { tmacro = MathMacroTable::mathMTable.getTemplate(name.c_str()); @@ -82,7 +82,7 @@ int InsetFormulaMacro::Latex(FILE *file, signed char /*fragile*/) } -int InsetFormulaMacro::Latex(LString &file, signed char /*fragile*/) +int InsetFormulaMacro::Latex(string &file, signed char /*fragile*/) { int ret = 1; tmacro->WriteDef(file); @@ -90,13 +90,13 @@ int InsetFormulaMacro::Latex(LString &file, signed char /*fragile*/) } -int InsetFormulaMacro::Linuxdoc(LString &/*file*/) +int InsetFormulaMacro::Linuxdoc(string &/*file*/) { return 0; } -int InsetFormulaMacro::DocBook(LString &/*file*/) +int InsetFormulaMacro::DocBook(string &/*file*/) { return 0; } @@ -143,7 +143,7 @@ int InsetFormulaMacro::Width(LyXFont const &f) const tmacro->update(); return InsetFormula::Width(f); } - LString ilabel(_("Macro: ")); + string ilabel(_("Macro: ")); ilabel += name; return 6 + f.stringWidth(ilabel); } @@ -160,14 +160,14 @@ void InsetFormulaMacro::Draw(LyXFont font, LyXScreen &scr, } else { font.setColor(LyXFont::MATH); - int y=baseline - Ascent(font)+1; - int w=Width(font) - 2, h=(Ascent(font)+Descent(font)-2); + int y= baseline - Ascent(font)+1; + int w= Width(font) - 2, h= (Ascent(font)+Descent(font)-2); scr.fillRectangle(gc_lighted, int(x), y, w, h); scr.drawFrame(FL_UP_FRAME, int(x), y, w, h, FL_BLACK, -1); - LString s(_("Macro: ")); + string s(_("Macro: ")); s += name; scr.drawString(font, s, baseline, int(x +2)); x += Width(font) - 1; @@ -197,9 +197,9 @@ void InsetFormulaMacro::InsetUnlock() bool InsetFormulaMacro::LocalDispatch(int action, char const *arg) { - if (action==LFUN_MATH_MACROARG) { + if (action == LFUN_MATH_MACROARG) { int i = atoi(arg) - 1; - if (i>=0 && igetNoArgs()) { + if (i>= 0 && igetNoArgs()) { mathcursor->Insert(tmacro->getMacroPar(i), LM_TC_INSET); InsetFormula::UpdateLocal(); }