]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formulamacro.C
oh well
[lyx.git] / src / mathed / formulamacro.C
index 39b91c9cdcc326c20bf36d51c1630734cd54602d..5c1d85181e9bc6f468757347b532aeba0287a0be 100644 (file)
@@ -3,7 +3,7 @@
  *  Purpose:     Implementation of the formula macro LyX inset
  *  Author:      André Pönitz, based on ideas of Alejandro Aguilar Sierra
  *  Created:     March 2001
- *  Description: Allows the edition of math macros inside Lyx. 
+ *  Description: Allows the edition of math macros inside Lyx.
  *
  *  Copyright: 2001  The LyX Project
  *
@@ -47,10 +47,10 @@ InsetFormulaMacro::InsetFormulaMacro()
 }
 
 
-InsetFormulaMacro::InsetFormulaMacro(string name, int nargs)
+InsetFormulaMacro::InsetFormulaMacro(string const & name, int nargs)
 {
        setInsetName(name);
-       MathMacroTable::create(name, nargs, string());
+       MathMacroTable::create(name, nargs);
 }
 
 
@@ -71,15 +71,15 @@ Inset * InsetFormulaMacro::clone(Buffer const &, bool) const
 void InsetFormulaMacro::write(Buffer const *, ostream & os) const
 {
        os << "FormulaMacro ";
-       WriteStream wi(os, false);
+       WriteStream wi(os, false, false);
        par()->write(wi);
 }
 
 
-int InsetFormulaMacro::latex(Buffer const *, ostream & os, bool fragile, 
+int InsetFormulaMacro::latex(Buffer const *, ostream & os, bool fragile,
                             bool /*free_spacing*/) const
 {
-       WriteStream wi(os, fragile);
+       WriteStream wi(os, fragile, true);
        par()->write(wi);
        return 2;
 }
@@ -87,7 +87,7 @@ int InsetFormulaMacro::latex(Buffer const *, ostream & os, bool fragile,
 
 int InsetFormulaMacro::ascii(Buffer const *, ostream & os, int) const
 {
-       WriteStream wi(os, false);
+       WriteStream wi(os, false, true);
        par()->write(wi);
        return 0;
 }
@@ -140,38 +140,6 @@ int InsetFormulaMacro::width(BufferView * bv, LyXFont const & f) const
 }
 
 
-
-UpdatableInset::RESULT
-InsetFormulaMacro::localDispatch(BufferView * bv,
-                                kb_action action, string const & arg)
-{
-       RESULT result = DISPATCHED;
-       switch (action) {
-               case LFUN_MATH_MACROARG: {
-                       int const i = lyx::atoi(arg);
-                       lyxerr << "inserting macro arg " << i << "\n";
-                       //if (i > 0 && i <= par()->numargs()) {
-                               mathcursor->insert(MathAtom(new MathMacroArgument(i)));
-                               updateLocal(bv, true);
-                       //} else {
-                       //      lyxerr << "not in range 0.." << par()->numargs() << "\n";
-                       //}
-                       break;
-               }
-               
-               default: {
-                       result = InsetFormulaBase::localDispatch(bv, action, arg);
-                       // force redraw if anything happened
-                       if (result != UNDISPATCHED) {
-                               bv->text->status(bv, LyXText::NEED_MORE_REFRESH);
-                               bv->updateInset(this, false);
-                       }
-               }
-       }
-       return result;
-}
-
-
 MathAtom const & InsetFormulaMacro::par() const
 {
        return MathMacroTable::provide(getInsetName());
@@ -197,32 +165,34 @@ MathInsetTypes InsetFormulaMacro::getType() const
 
 
 void InsetFormulaMacro::draw(BufferView * bv, LyXFont const & f,
-                            int y, float & x, bool /*cleared*/) const
+                            int y, float & xx, bool /*cleared*/) const
 {
        Painter & pain = bv->painter();
        LyXFont font(f);
 
        // label
        font.setColor(LColor::math);
-       
+
+       int const x = int(xx);
        int const a = y - ascent(bv, font) + 1;
        int const w = width(bv, font) - 2;
        int const h = ascent(bv, font) + descent(bv, font) - 2;
 
        // LColor::mathbg used to be "AntiqueWhite" but is "linen" now, too
-       pain.fillRectangle(int(x), a , w, h, LColor::mathmacrobg);
-       pain.rectangle(int(x), a, w, h, LColor::mathframe);
+       pain.fillRectangle(x, a, w, h, LColor::mathmacrobg);
+       pain.rectangle(x, a, w, h, LColor::mathframe);
 
        if (mathcursor &&
                        const_cast<InsetFormulaBase const *>(mathcursor->formula()) == this)
                mathcursor->drawSelection(pain);
 
-       pain.text(int(x + 2), y, prefix(), font);
-       x += width(bv, font);
+       pain.text(x + 2, y, prefix(), font);
 
        // formula
-       xo_ = int(x) - par()->width() - 5;
+       par()->draw(pain, x + lyxfont::width(prefix(), f) + 5, y);
+       xx += w + 2;
+       xo_ = x;
        yo_ = y;
-       par()->draw(pain, xo_, yo_);
-}
 
+       setCursorVisible(false);
+}