]> git.lyx.org Git - features.git/commitdiff
Take inset dimension into account in row signature
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 3 Jun 2016 09:21:09 +0000 (11:21 +0200)
committerRichard Heck <rgheck@lyx.org>
Wed, 15 Jun 2016 21:32:53 +0000 (22:32 +0100)
In some cases, the insets may change height or width without changing
the other apsects of the row.

Fixes bug #6991 and #10182.

(cherry picked from commit 508518ad95a7fd7581bd4affd389dbe7bd6d09f1)

src/ParagraphMetrics.cpp
src/ParagraphMetrics.h
src/TextMetrics.cpp
status.22x

index 56660919a2ce0fe1ad818d4991f8ebc7a5400eee..1fd248f66396c00dac5e19acaaf9c8cdf8a20a71 100644 (file)
@@ -86,13 +86,20 @@ void ParagraphMetrics::reset(Paragraph const & par)
 
 
 size_t ParagraphMetrics::computeRowSignature(Row const & row,
-               BufferParams const & bparams) const
+               BufferView const & bv) const
 {
        boost::crc_32_type crc;
        for (pos_type i = row.pos(); i < row.endpos(); ++i) {
-               char_type const b[] = { par_->getChar(i) };
-               crc.process_bytes(b, sizeof(char_type));
-               if (bparams.track_changes) {
+               if (par_->isInset(i)) {
+                       Inset const * in = par_->getInset(i);
+                       Dimension const d = in->dimension(bv);
+                       int const b[] = { d.wid, d.asc, d.des };
+                       crc.process_bytes(b, sizeof(b));
+               } else {
+                       char_type const b[] = { par_->getChar(i) };
+                       crc.process_bytes(b, sizeof(char_type));
+               }
+               if (bv.buffer().params().track_changes) {
                        Change change = par_->lookupChange(i);
                        char_type const b[] = { static_cast<char_type>(change.type) };
                        // 1 byte is enough to encode Change::Type
index d8935cc75343119b5ee21182693ed45e95704f98..7244e2a2d34b1a48b8e43463a1145f22ed3c0840 100644 (file)
@@ -85,8 +85,8 @@ public:
        ///
        bool hfillExpansion(Row const & row, pos_type pos) const;
 
-       /// 
-       size_t computeRowSignature(Row const &, BufferParams const & bparams) const;
+       ///
+       size_t computeRowSignature(Row const &, BufferView const & bv) const;
 
        ///
        int position() const { return position_; }
index fdf0da692672c78798b2feb956187108df06c0b8..dd970e21dd070799ae880625a1d2cd4f89edb78e 100644 (file)
@@ -1874,7 +1874,6 @@ void TextMetrics::draw(PainterInfo & pi, int x, int y) const
 
 void TextMetrics::drawParagraph(PainterInfo & pi, pit_type const pit, int const x, int y) const
 {
-       BufferParams const & bparams = bv_->buffer().params();
        ParagraphMetrics const & pm = par_metrics_[pit];
        if (pm.rows().empty())
                return;
@@ -1948,7 +1947,7 @@ void TextMetrics::drawParagraph(PainterInfo & pi, pit_type const pit, int const
 
                // Row signature; has row changed since last paint?
                if (pi.pain.isDrawingEnabled())
-                       row.setCrc(pm.computeRowSignature(row, bparams));
+                       row.setCrc(pm.computeRowSignature(row, *bv_));
                bool row_has_changed = row.changed()
                        || rowSlice == bv_->lastRowSlice();
 
index 842d2f91da51c13256183430b5f94c1b69460747..6da8c02876b2a8ed316bba5f72de32ab664cdd40 100644 (file)
@@ -104,6 +104,9 @@ What's new
 - Fix display of collapsable insets when the same document is shown in
   two views with different width (bug 9756).
 
+- fix display glitches when editing changes the dimension of insets
+  (bug 6691).
+
 - Raise GuiView on buffer switch to bring it topmost in multi-window mode.
 
 - Fix cursor position after Redo of a document settings change (bug