]> git.lyx.org Git - features.git/blobdiff - src/BufferView.cpp
Rename anchor() to normalAnchor() as the anchor() function was already returning...
[features.git] / src / BufferView.cpp
index c12e4c1a0a3187f9c2261a9235b251c1e35f0e46..9a922f997febadca3a0f3e024287725fc775bdbc 100644 (file)
@@ -403,6 +403,11 @@ bool BufferView::fitCursor()
 
 void BufferView::processUpdateFlags(Update::flags flags)
 {
+       // last_inset_ points to the last visited inset. This pointer may become  
+       // invalid because of keyboard editing. Since all such operations  
+       // causes screen update(), I reset last_inset_ to avoid such a problem.  
+       d->last_inset_ = 0;  
+
        // This is close to a hot-path.
        LYXERR(Debug::DEBUG, "BufferView::processUpdateFlags()"
                << "[fitcursor = " << (flags & Update::FitCursor)
@@ -946,18 +951,21 @@ static Change::Type lookupChangeType(DocIterator const & dit, bool outer = false
 
 bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
 {
+       FuncCode const act = cmd.action();
+
        // Can we use a readonly buffer?
        if (buffer_.isReadonly()
-           && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
-           && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
+           && !lyxaction.funcHasFlag(act, LyXAction::ReadOnly)
+           && !lyxaction.funcHasFlag(act, LyXAction::NoBuffer)) {
                flag.message(from_utf8(N_("Document is read-only")));
                flag.setEnabled(false);
                return true;
        }
+
        // Are we in a DELETED change-tracking region?
        if (lookupChangeType(d->cursor_, true) == Change::DELETED
-           && !lyxaction.funcHasFlag(cmd.action, LyXAction::ReadOnly)
-           && !lyxaction.funcHasFlag(cmd.action, LyXAction::NoBuffer)) {
+           && !lyxaction.funcHasFlag(act, LyXAction::ReadOnly)
+           && !lyxaction.funcHasFlag(act, LyXAction::NoBuffer)) {
                flag.message(from_utf8(N_("This portion of the document is deleted.")));
                flag.setEnabled(false);
                return true;
@@ -968,10 +976,10 @@ bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
        if (cur.getStatus(cmd, flag))
                return true;
 
-       switch (cmd.action) {
+       switch (act) {
 
-       // FIXME: This is a bit problematic because we don't check is this is a
-       // document BufferView or not for these LFUNs. We probably have to
+       // FIXME: This is a bit problematic because we don't check if this is
+       // document BufferView or not for these LFUNs. We probably have to
        // dispatch both to currentBufferView() and, if that fails,
        // to documentBufferView(); same as we do know for current Buffer and
        // document Buffer. Ideally those LFUN should go to Buffer as they*
@@ -1020,7 +1028,6 @@ bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
        case LFUN_SCREEN_SHOW_CURSOR:
        case LFUN_BIBTEX_DATABASE_ADD:
        case LFUN_BIBTEX_DATABASE_DEL:
-       case LFUN_ALL_INSETS_TOGGLE:
        case LFUN_STATISTICS:
        case LFUN_BRANCH_ADD_INSERT:
        case LFUN_KEYMAP_OFF:
@@ -1154,10 +1161,10 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
        //lyxerr << [ cmd = " << cmd << "]" << endl;
 
        // Make sure that the cached BufferView is correct.
-       LYXERR(Debug::ACTION, " action[" << cmd.action << ']'
+       LYXERR(Debug::ACTION, " action[" << cmd.action() << ']'
                << " arg[" << to_utf8(cmd.argument()) << ']'
-               << " x[" << cmd.x << ']'
-               << " y[" << cmd.y << ']'
+               << " x[" << cmd.x() << ']'
+               << " y[" << cmd.y() << ']'
                << " button[" << cmd.button() << ']');
 
        string const argument = to_utf8(cmd.argument());
@@ -1165,14 +1172,15 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
 
        // Don't dispatch function that does not apply to internal buffers.
        if (buffer_.isInternal() 
-           && lyxaction.funcHasFlag(cmd.action, LyXAction::NoInternal))
+           && lyxaction.funcHasFlag(cmd.action(), LyXAction::NoInternal))
                return;
 
        // We'll set this back to false if need be.
        bool dispatched = true;
        buffer_.undo().beginUndoGroup();
 
-       switch (cmd.action) {
+       FuncCode const act = cmd.action();
+       switch (act) {
 
        case LFUN_BUFFER_PARAMS_APPLY: {
                DocumentClass const * const oldClass = buffer_.params().documentClassPtr();
@@ -1452,7 +1460,7 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                if (searched_string.empty())
                        break;
 
-               bool const fw = cmd.action == LFUN_WORD_FIND_FORWARD;
+               bool const fw = act == LFUN_WORD_FIND_FORWARD;
                docstring const data =
                        find2string(searched_string, true, false, fw);
                find(this, FuncRequest(LFUN_WORD_FIND, data));
@@ -1629,11 +1637,11 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                        showCursor();
                        p = getPos(cur, cur.boundary());
                }*/
-               int const scrolled = scroll(cmd.action == LFUN_SCREEN_UP
+               int const scrolled = scroll(act == LFUN_SCREEN_UP
                        ? -height_ : height_);
-               if (cmd.action == LFUN_SCREEN_UP && scrolled > -height_)
+               if (act == LFUN_SCREEN_UP && scrolled > -height_)
                        p = Point(0, 0);
-               if (cmd.action == LFUN_SCREEN_DOWN && scrolled < height_)
+               if (act == LFUN_SCREEN_DOWN && scrolled < height_)
                        p = Point(width_, height_);
                Cursor old = cur;
                bool const in_texted = cur.inTexted();
@@ -1642,7 +1650,7 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                updateHoveredInset();
 
                d->text_metrics_[&buffer_.text()].editXY(cur, p.x_, p.y_,
-                       true, cmd.action == LFUN_SCREEN_UP); 
+                       true, act == LFUN_SCREEN_UP); 
                //FIXME: what to do with cur.x_target()?
                bool update = in_texted && cur.bv().checkDepm(cur, old);
                cur.finishUndo();
@@ -1714,7 +1722,7 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                        while (!insname.empty()) {
                                if (insname == name || name == from_utf8("*")) {
                                        cur.recordUndo();
-                                       lyx::dispatch(fr);
+                                       lyx::dispatch(fr, dr);
                                        ++iterations;
                                        break;
                                }
@@ -1739,29 +1747,6 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
        }
 
 
-       case LFUN_ALL_INSETS_TOGGLE: {
-               string action;
-               string const name = split(to_utf8(cmd.argument()), action, ' ');
-               InsetCode const inset_code = insetCode(name);
-
-               FuncRequest fr(LFUN_INSET_TOGGLE, action);
-
-               Inset & inset = cur.buffer()->inset();
-               InsetIterator it  = inset_iterator_begin(inset);
-               InsetIterator const end = inset_iterator_end(inset);
-               for (; it != end; ++it) {
-                       if (it->asInsetCollapsable()
-                           && (inset_code == NO_CODE
-                           || inset_code == it->lyxCode())) {
-                               Cursor tmpcur = cur;
-                               tmpcur.pushBackward(*it);
-                               it->dispatch(tmpcur, fr);
-                       }
-               }
-               dr.update(Update::Force | Update::FitCursor);
-               break;
-       }
-
        case LFUN_BRANCH_ADD_INSERT: {
                docstring branch_name = from_utf8(cmd.getArg(0));
                if (branch_name.empty())
@@ -1995,18 +1980,18 @@ void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
        // surrounding Text will handle this event.
 
        // make sure we stay within the screen...
-       cmd.y = min(max(cmd.y, -1), height_);
+       cmd.set_y(min(max(cmd.y(), -1), height_));
 
-       d->mouse_position_cache_.x_ = cmd.x;
-       d->mouse_position_cache_.y_ = cmd.y;
+       d->mouse_position_cache_.x_ = cmd.x();
+       d->mouse_position_cache_.y_ = cmd.y();
 
-       if (cmd.action == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
+       if (cmd.action() == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
                updateHoveredInset();
                return;
        }
 
        // Build temporary cursor.
-       Inset * inset = d->text_metrics_[&buffer_.text()].editXY(cur, cmd.x, cmd.y);
+       Inset * inset = d->text_metrics_[&buffer_.text()].editXY(cur, cmd.x(), cmd.y());
 
        // Put anchor at the same position.
        cur.resetAnchor();
@@ -2047,10 +2032,12 @@ void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
 void BufferView::lfunScroll(FuncRequest const & cmd)
 {
        string const scroll_type = cmd.getArg(0);
-       int const scroll_step = 
-               (scroll_type == "line") ? d->scrollbarParameters_.single_step
-               : (scroll_type == "page") ? d->scrollbarParameters_.page_step : 0;
-       if (scroll_step == 0)
+       int scroll_step = 0;
+       if (scroll_type == "line")
+               scroll_step = d->scrollbarParameters_.single_step;
+       else if (scroll_type == "page")
+               scroll_step = d->scrollbarParameters_.page_step;
+       else
                return;
        string const scroll_quantity = cmd.getArg(1);
        if (scroll_quantity == "up")
@@ -2271,7 +2258,7 @@ bool BufferView::mouseSetCursor(Cursor & cur, bool select)
                d->cursor_.fixIfBroken();
 
        // FIXME: shift-mouse selection doesn't work well across insets.
-       bool do_selection = select && &d->cursor_.anchor().inset() == &cur.inset();
+       bool do_selection = select && &d->cursor_.normalAnchor().inset() == &cur.inset();
 
        // do the dEPM magic if needed
        // FIXME: (1) move this to InsetText::notifyCursorLeaves?
@@ -2851,10 +2838,10 @@ void BufferView::setInlineCompletion(Cursor & cur, DocIterator const & pos,
        
        // set update flags
        if (changed) {
-               if (singlePar && !(cur.disp_.update() & Update::Force))
-                       cur.updateFlags(cur.disp_.update() | Update::SinglePar);
+               if (singlePar && !(cur.result().update() & Update::Force))
+                       cur.updateFlags(cur.result().update() | Update::SinglePar);
                else
-                       cur.updateFlags(cur.disp_.update() | Update::Force);
+                       cur.updateFlags(cur.result().update() | Update::Force);
        }
 }