]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formula.C
fix pullArg when pressing <Delete> at the end of an cell
[lyx.git] / src / mathed / formula.C
index dc8867387418674f022e6a4401c9df9e6f15330b..31af423668c2985d0b523bb75415fee006172d9f 100644 (file)
@@ -38,7 +38,6 @@
 #include "math_matrixinset.h"
 #include "mathed/support.h"
 
-using std::ostringstream;
 using std::ostream;
 using std::ifstream;
 using std::istream;
@@ -65,10 +64,8 @@ InsetFormula::InsetFormula(MathInsetTypes t)
 
 
 InsetFormula::InsetFormula(string const & s)
-       : InsetFormulaBase(0)
+       : InsetFormulaBase(mathed_parse(s))
 {
-       istringstream is(s.c_str());
-       par(mathed_parse(is));
        Metrics();
 }
 
@@ -124,6 +121,7 @@ void InsetFormula::draw(BufferView * bv, LyXFont const &,
 {
        int x = int(xx) - 1;
        y -= 2;
+
        MathInset::workwidth = bv->workWidth();
        Painter & pain = bv->painter();
 
@@ -131,22 +129,14 @@ void InsetFormula::draw(BufferView * bv, LyXFont const &,
        int w = par()->width();
        int h = par()->height();
        int a = par()->ascent();
-       pain.fillRectangle(int(x), y - a, w, h, LColor::mathbg);
-
-       if (mathcursor) {
-               if (mathcursor->formula() == this) {
-                       if (mathcursor->Selection()) {
-                               int xp[10];
-                               int yp[10];
-                               int n;
-                               mathcursor->SelGetArea(xp, yp, n);
-                               pain.fillPolygon(xp, yp, n, LColor::selection);
-                       }
-                       pain.rectangle(int(x), y - a, w, h, LColor::mathframe);
-               }
+       pain.fillRectangle(x, y - a, w, h, LColor::mathbg);
+
+       if (mathcursor && mathcursor->formula() == this) {
+               mathcursor->drawSelection(pain);
+               pain.rectangle(x, y - a, w, h, LColor::mathframe);
        }
 
-       par()->draw(pain, int(x), y);
+       par()->draw(pain, x, y);
        xx += par()->width();
 
        setCursorVisible(false);
@@ -174,8 +164,12 @@ InsetFormula::localDispatch(BufferView * bv, kb_action action,
 
                case LFUN_BREAKLINE: 
                        bv->lockedInsetStoreUndo(Undo::INSERT);
+                       int x;
+                       int y;
+                       mathcursor->GetPos(x, y);
                        mathcursor->breakLine();
-                       updateLocal(bv);
+                       mathcursor->normalize();
+                       updateLocal(bv, true);
                        break;
 
                case LFUN_MATH_NUMBER:
@@ -187,7 +181,7 @@ InsetFormula::localDispatch(BufferView * bv, kb_action action,
                                for (int row = 0; row < par()->nrows(); ++row)
                                        par()->numbered(row, !old);
                                bv->owner()->message(old ? _("No number") : _("Number"));
-                               updateLocal(bv);
+                               updateLocal(bv, true);
                        }
                        break;
                }
@@ -201,7 +195,7 @@ InsetFormula::localDispatch(BufferView * bv, kb_action action,
                                bool old = par()->numbered(row);
                                bv->owner()->message(old ? _("No number") : _("Number"));
                                par()->numbered(row, !old);
-                               updateLocal(bv);
+                               updateLocal(bv, true);
                        }
                        break;
                }
@@ -240,14 +234,14 @@ InsetFormula::localDispatch(BufferView * bv, kb_action action,
 
                        par()->label(row, new_label);
 
-                       updateLocal(bv);
+                       updateLocal(bv, true);
                        break;
                }
 
                case LFUN_MATH_EXTERN:
                        bv->lockedInsetStoreUndo(Undo::EDIT);
                        handleExtern(arg, bv);
-                       updateLocal(bv);
+                       updateLocal(bv, true);
                        break;
 
                case LFUN_MATH_MUTATE:
@@ -259,7 +253,7 @@ InsetFormula::localDispatch(BufferView * bv, kb_action action,
                        par()->mutate(arg);
                        mathcursor->SetPos(x, y);
                        mathcursor->normalize();
-                       updateLocal(bv);
+                       updateLocal(bv, true);
                        break;
                }
 
@@ -274,7 +268,7 @@ InsetFormula::localDispatch(BufferView * bv, kb_action action,
                                par()->mutate(LM_OT_SIMPLE);
                        mathcursor->SetPos(x, y);
                        mathcursor->normalize();
-                       updateLocal(bv);
+                       updateLocal(bv, true);
                        break;
                }
 
@@ -331,20 +325,26 @@ void InsetFormula::validate(LaTeXFeatures & features) const
        par()->Validate(features);
 }
 
+bool InsetFormula::insetAllowed(Inset::Code code) const
+{
+       return code == Inset::LABEL_CODE; 
+}
+
 
 int InsetFormula::ascent(BufferView *, LyXFont const &) const
 {
-       return par()->ascent();
+       return par()->ascent() + 1;
 }
 
 
 int InsetFormula::descent(BufferView *, LyXFont const &) const
 {
-       return par()->descent();
+       return par()->descent() + 1;
 }
 
 
 int InsetFormula::width(BufferView *, LyXFont const &) const
 {
+       Metrics();
        return par()->width();
 }