]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.cpp
Get rid of all-insets-toggle and explain how to replace it with inset-forall.
[lyx.git] / src / BufferView.cpp
index 7af5c404751d15ceb1abe616bf3f53c82fdc3fea..d5e4a016e40884907883ff5063c5d5f4d1f24d91 100644 (file)
@@ -220,7 +220,8 @@ struct BufferView::Private
        Private(BufferView & bv): wh_(0), cursor_(bv),
                anchor_pit_(0), anchor_ypos_(0),
                inlineCompletionUniqueChars_(0),
-               last_inset_(0), bookmark_edit_position_(0), gui_(0)
+               last_inset_(0), mouse_position_cache_(),
+               bookmark_edit_position_(0), gui_(0)
        {}
 
        ///
@@ -263,6 +264,11 @@ struct BufferView::Private
          */
        Inset * last_inset_;
 
+       /// position of the mouse at the time of the last mouse move
+       /// This is used to update the hovering status of inset in
+       /// cases where the buffer is scrolled, but the mouse didn't move.
+       Point mouse_position_cache_;
+
        // cache for id of the paragraph which was edited the last time
        int bookmark_edit_position_;
 
@@ -397,10 +403,6 @@ 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)
@@ -465,6 +467,8 @@ void BufferView::processUpdateFlags(Update::flags flags)
                // refresh it:
                showCursor();
        }
+
+       updateHoveredInset();
 }
 
 
@@ -573,6 +577,7 @@ void BufferView::scrollDocView(int value)
        if (abs(offset) <= 2 * height_) {
                d->anchor_ypos_ -= offset;
                buffer_.changed(true);
+               updateHoveredInset();
                return;
        }
 
@@ -810,14 +815,19 @@ void BufferView::showCursor()
 
 void BufferView::showCursor(DocIterator const & dit, bool recenter)
 {
-       if (scrollToCursor(dit, recenter))
-               buffer_.changed(false);
+       if (scrollToCursor(dit, recenter)) {
+               buffer_.changed(true);
+               updateHoveredInset();
+       }
 }
 
 
 void BufferView::scrollToCursor()
 {
-       scrollToCursor(d->cursor_, false);
+       if (scrollToCursor(d->cursor_, false)) {
+               buffer_.changed(true);
+               updateHoveredInset();
+       }
 }
 
 
@@ -865,11 +875,7 @@ bool BufferView::scrollToCursor(DocIterator const & dit, bool recenter)
                        scrolled = scrollDown(ypos - height_ + defaultRowHeight() ); 
 
                // else, nothing to do, the cursor is already visible so we just return.
-               if (scrolled != 0) {
-                       updateMetrics();
-                       return true;
-               }
-               return false;
+               return scrolled != 0;
        }
 
        // fix inline completion position
@@ -896,7 +902,6 @@ bool BufferView::scrollToCursor(DocIterator const & dit, bool recenter)
        else
                d->anchor_ypos_ = defaultRowHeight() * 2;
 
-       updateMetrics();
        return true;
 }
 
@@ -965,8 +970,8 @@ bool BufferView::getStatus(FuncRequest const & cmd, FuncStatus & flag)
 
        switch (cmd.action) {
 
-       // 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*
@@ -1015,7 +1020,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:
@@ -1634,6 +1638,8 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                bool const in_texted = cur.inTexted();
                cur.reset();
                buffer_.changed(true);
+               updateHoveredInset();
+
                d->text_metrics_[&buffer_.text()].editXY(cur, p.x_, p.y_,
                        true, cmd.action == LFUN_SCREEN_UP); 
                //FIXME: what to do with cur.x_target()?
@@ -1707,7 +1713,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;
                                }
@@ -1732,29 +1738,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())
@@ -1935,6 +1918,42 @@ Inset const * BufferView::getCoveringInset(Text const & text,
 }
 
 
+void BufferView::updateHoveredInset() const
+{
+       // Get inset under mouse, if there is one.
+       Inset const * covering_inset = getCoveringInset(buffer_.text(),
+                       d->mouse_position_cache_.x_, d->mouse_position_cache_.y_);
+       if (covering_inset == d->last_inset_)
+               // Same inset, no need to do anything...
+               return;
+
+       bool need_redraw = false;
+       if (d->last_inset_)
+               // Remove the hint on the last hovered inset (if any).
+               need_redraw |= d->last_inset_->setMouseHover(false);
+       
+       // const_cast because of setMouseHover().
+       Inset * inset = const_cast<Inset *>(covering_inset);
+       if (inset)
+               // Highlight the newly hovered inset (if any).
+               need_redraw |= inset->setMouseHover(true);
+
+       d->last_inset_ = inset;
+       
+       if (need_redraw) {
+               LYXERR(Debug::PAINTING, "Mouse hover detected at: ("
+                               << d->mouse_position_cache_.x_ << ", " 
+                               << d->mouse_position_cache_.y_ << ")");
+       
+               d->update_strategy_ = DecorationUpdate;
+
+               // This event (moving without mouse click) is not passed further.
+               // This should be changed if it is further utilized.
+               buffer_.changed(false);
+       }
+}
+
+
 void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
 {
        //lyxerr << "[ cmd0 " << cmd0 << "]" << endl;
@@ -1954,36 +1973,11 @@ void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
        // make sure we stay within the screen...
        cmd.y = min(max(cmd.y, -1), height_);
 
-       if (cmd.action == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
+       d->mouse_position_cache_.x_ = cmd.x;
+       d->mouse_position_cache_.y_ = cmd.y;
 
-               // Get inset under mouse, if there is one.
-               Inset const * covering_inset =
-                       getCoveringInset(buffer_.text(), cmd.x, cmd.y);
-               if (covering_inset == d->last_inset_)
-                       // Same inset, no need to do anything...
-                       return;
-
-               bool need_redraw = false;
-               // const_cast because of setMouseHover().
-               Inset * inset = const_cast<Inset *>(covering_inset);
-               if (d->last_inset_)
-                       // Remove the hint on the last hovered inset (if any).
-                       need_redraw |= d->last_inset_->setMouseHover(false);
-               if (inset)
-                       // Highlighted the newly hovered inset (if any).
-                       need_redraw |= inset->setMouseHover(true);
-               d->last_inset_ = inset;
-               if (!need_redraw)
-                       return;
-
-               LYXERR(Debug::PAINTING, "Mouse hover detected at: ("
-                       << cmd.x << ", " << cmd.y << ")");
-
-               d->update_strategy_ = DecorationUpdate;
-
-               // This event (moving without mouse click) is not passed further.
-               // This should be changed if it is further utilized.
-               buffer_.changed(false);
+       if (cmd.action == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
+               updateHoveredInset();
                return;
        }
 
@@ -2029,10 +2023,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")
@@ -2045,6 +2041,7 @@ void BufferView::lfunScroll(FuncRequest const & cmd)
                        scroll(scroll_step * scroll_value);
        }
        buffer_.changed(true);
+       updateHoveredInset();
 }