]> git.lyx.org Git - lyx.git/blobdiff - src/rowpainter.cpp
This is the first of a series of commits that will make InsetLayout a real class.
[lyx.git] / src / rowpainter.cpp
index 9296c49e4693e20e1155e8c3301204f4cbdc2ec7..363481195422a4edb65cced51cd19456ae12f5dd 100644 (file)
@@ -17,7 +17,6 @@
 #include "Buffer.h"
 #include "CoordCache.h"
 #include "Cursor.h"
-#include "support/debug.h"
 #include "BufferParams.h"
 #include "BufferView.h"
 #include "Changes.h"
 
 #include "insets/InsetText.h"
 
+#include "support/debug.h"
 #include "support/textutils.h"
 
 #include <boost/crc.hpp>
 
 #include <ostream>
 
-using std::endl;
-using std::max;
-using std::string;
-
+using namespace std;
 
 namespace lyx {
 
@@ -74,6 +71,17 @@ RowPainter::RowPainter(PainterInfo & pi,
 
        BOOST_ASSERT(pit >= 0);
        BOOST_ASSERT(pit < int(text.paragraphs().size()));
+
+       // check for possible inline completion
+       DocIterator const & inlineCompletionPos = pi_.base.bv->inlineCompletionPos();
+       inlineCompletionVPos_ = -1;
+       if (inlineCompletionPos.inTexted()
+           && inlineCompletionPos.text() == &text_
+           && inlineCompletionPos.pit() == pit_) {
+               // draw visually behind the previous character
+               // FIXME: probably special RTL handling needed here
+               inlineCompletionVPos_ = bidi_.log2vis(inlineCompletionPos.pos() - 1);
+       }
 }
 
 
@@ -89,36 +97,6 @@ int RowPainter::leftMargin() const
                row_.pos());
 }
 
-
-void RowPainter::paintHfill(pos_type const pos, pos_type const body_pos)
-{
-       x_ += 1;
-
-       int const y0 = yo_;
-       int const y1 = y0 - defaultRowHeight() / 2;
-
-       pi_.pain.line(int(x_), y1, int(x_), y0, Color_added_space);
-
-       if (pm_.hfillExpansion(row_, pos)) {
-               int const y2 = (y0 + y1) / 2;
-
-               if (pos >= body_pos) {
-                       pi_.pain.line(int(x_), y2, int(x_ + row_.hfill), y2,
-                               Color_added_space,
-                               Painter::line_onoffdash);
-                       x_ += row_.hfill;
-               } else {
-                       pi_.pain.line(int(x_), y2, int(x_ + row_.label_hfill), y2,
-                               Color_added_space,
-                               Painter::line_onoffdash);
-                       x_ += row_.label_hfill;
-               }
-               pi_.pain.line(int(x_), y1, int(x_), y0, Color_added_space);
-       }
-       x_ += 2;
-}
-
-
 // If you want to debug inset metrics uncomment the following line:
 //#define DEBUG_METRICS
 // This draws green lines around each inset.
@@ -129,6 +107,10 @@ void RowPainter::paintInset(Inset const * inset, pos_type const pos)
        Font const font = text_metrics_.getDisplayFont(pit_, pos);
 
        BOOST_ASSERT(inset);
+       // Backup full_repaint status because some insets (InsetTabular)
+       // requires a full repaint
+       bool pi_full_repaint = pi_.full_repaint;
+
        // FIXME: We should always use font, see documentation of
        // noFontChange() in Inset.h.
        pi_.base.font = inset->noFontChange() ?
@@ -147,6 +129,9 @@ void RowPainter::paintInset(Inset const * inset, pos_type const pos)
 
        x_ += dim.width();
 
+       // Restore full_repaint status.
+       pi_.full_repaint = pi_full_repaint;
+
 #ifdef DEBUG_METRICS
        int const x1 = int(x_ - dim.width());
        Dimension dim2;
@@ -158,15 +143,15 @@ void RowPainter::paintInset(Inset const * inset, pos_type const pos)
        if (dim.wid != dim2.wid)
                lyxerr << "Error: inset " << to_ascii(inset->getInsetName())
                       << " draw width " << dim.width()
-                      << "> metrics width " << dim2.wid << "." << std::endl;
+                      << "> metrics width " << dim2.wid << "." << endl;
        if (dim->asc != dim2.asc)
                lyxerr << "Error: inset " << to_ascii(inset->getInsetName())
                       << " draw ascent " << dim.ascent()
-                      << "> metrics ascent " << dim2.asc << "." << std::endl;
+                      << "> metrics ascent " << dim2.asc << "." << endl;
        if (dim2.descent() != dim.des)
                lyxerr << "Error: inset " << to_ascii(inset->getInsetName())
                       << " draw ascent " << dim.descent()
-                      << "> metrics descent " << dim2.des << "." << std::endl;
+                      << "> metrics descent " << dim2.des << "." << endl;
        BOOST_ASSERT(dim2.wid == dim.wid);
        BOOST_ASSERT(dim2.asc == dim.asc);
        BOOST_ASSERT(dim2.des == dim.des);
@@ -255,7 +240,7 @@ void RowPainter::paintChars(pos_type & vpos, FontInfo const & font,
        Change::Type const prev_change = par_.lookupChange(pos).type;
 
        // first character
-       std::vector<char_type> str;
+       vector<char_type> str;
        str.reserve(100);
        str.push_back(par_.getChar(pos));
 
@@ -362,7 +347,7 @@ void RowPainter::paintFromPos(pos_type & vpos)
        char_type const c = par_.getChar(pos);
 
        // special case languages
-       std::string const & lang = orig_font.language()->lang();
+       string const & lang = orig_font.language()->lang();
        bool const hebrew = lang == "hebrew";
        bool const arabic = lang == "arabic_arabtex" || lang == "arabic_arabi" || 
                                                lang == "farsi";
@@ -520,7 +505,7 @@ void RowPainter::paintFirst()
 
        bool const is_rtl = text_.isRTL(buffer, par_);
        bool const is_seq = isFirstInSequence(pit_, text_.paragraphs());
-       //lyxerr << "paintFirst: " << par_.id() << " is_seq: " << is_seq << std::endl;
+       //lyxerr << "paintFirst: " << par_.id() << " is_seq: " << is_seq << endl;
 
        // should we print a label?
        if (layout->labeltype >= LABEL_STATIC
@@ -636,10 +621,14 @@ void RowPainter::paintLast()
                FontMetrics const & fm = theFontMetrics(font);
                int const size = int(0.75 * fm.maxAscent());
                int const y = yo_ - size;
-               int x = is_rtl ? nestMargin() + changebarMargin() : width_ - size;
+               int const max_row_width = width_ - size - Inset::TEXT_TO_INSET_OFFSET;
+               int x = is_rtl ? nestMargin() + changebarMargin()
+                       : max_row_width - text_metrics_.rightMargin(pm_);
 
-               if (width_ - int(row_.width()) <= size)
-                       x += (size - width_ + row_.width() + 1) * (is_rtl ? -1 : 1);
+               // If needed, move the box a bit to avoid overlapping with text.
+               int const rem = max_row_width - row_.width();
+               if (rem <= 0)
+                       x += is_rtl ? rem : - rem;
 
                if (endlabel == END_LABEL_BOX)
                        pi_.pain.rectangle(x, y, size, size, Color_eolmarker);
@@ -669,15 +658,12 @@ void RowPainter::paintOnlyInsets()
 {
        pos_type const end = row_.endpos();
        for (pos_type pos = row_.pos(); pos != end; ++pos) {
-               if (!par_.isInset(pos))
-                       continue;
-
                // If outer row has changed, nested insets are repaint completely.
                Inset const * inset = par_.getInset(pos);
-
+               if (!inset)
+                       continue;
                if (x_ > pi_.base.bv->workWidth())
                        continue;
-
                x_ = pi_.base.bv->coordCache().getInsets().x(inset);
                paintInset(inset, pos);
        }
@@ -713,7 +699,7 @@ void RowPainter::paintText()
        // it's in the last row of a paragraph; see skipped_sep_vpos declaration
        if (end > 0 && end < par_.size() && par_.isSeparator(end - 1))
                skipped_sep_vpos = bidi_.log2vis(end - 1);
-       
+
        for (pos_type vpos = row_.pos(); vpos < end; ) {
                if (x_ > pi_.base.bv->workWidth())
                        break;
@@ -735,6 +721,11 @@ void RowPainter::paintText()
                if (vpos < font_span.first || vpos > font_span.last) {
                        font_span = par_.fontSpan(vpos);
                        font = text_metrics_.getDisplayFont(pit_, vpos);
+
+                       // split font span if inline completion is inside
+                       if (font_span.first <= inlineCompletionVPos_
+                           && font_span.last > inlineCompletionVPos_)
+                               font_span.last = inlineCompletionVPos_;
                }
 
                const int width_pos = pm_.singleWidth(pos, font);
@@ -752,8 +743,9 @@ void RowPainter::paintText()
                        last_strikeout_x = int(x_);
                }
 
-               bool const highly_editable_inset = par_.isInset(pos)
-                       && par_.getInset(pos)->editable() == Inset::HIGHLY_EDITABLE;
+               Inset const * inset = par_.getInset(pos);
+               bool const highly_editable_inset = inset
+                       && inset->editable() == Inset::HIGHLY_EDITABLE;
 
                // If we reach the end of a struck out range, paint it.
                // We also don't paint across things like tables
@@ -774,13 +766,7 @@ void RowPainter::paintText()
                        x_ += row_.label_hfill + lwidth - width_pos;
                }
 
-               if (par_.isHfill(pos)) {
-                       Inset const * inset = par_.getInset(pos);
-                       pi_.base.bv->coordCache().insets().add(inset, int(x_), yo_);
-                       paintHfill(pos, body_pos);
-                       ++vpos;
-
-               } else if (par_.isSeparator(pos)) {
+               if (par_.isSeparator(pos)) {
                        Font const orig_font = text_metrics_.getDisplayFont(pit_, pos);
                        double const orig_x = x_;
                        x_ += width_pos;
@@ -789,9 +775,8 @@ void RowPainter::paintText()
                        paintForeignMark(orig_x, orig_font.language());
                        ++vpos;
 
-               } else if (par_.isInset(pos)) {
+               } else if (inset) {
                        // If outer row has changed, nested insets are repaint completely.
-                       Inset const * inset = par_.getInset(pos);
                        pi_.base.bv->coordCache().insets().add(inset, int(x_), yo_);
                        paintInset(inset, pos);
                        ++vpos;
@@ -800,6 +785,32 @@ void RowPainter::paintText()
                        // paint as many characters as possible.
                        paintFromPos(vpos);
                }
+
+               // Is the inline completion here?
+               // FIXME: RTL support needed here
+               if (vpos - 1 == inlineCompletionVPos_) {
+                       docstring const & completion = pi_.base.bv->inlineCompletion();
+                       FontInfo f = font.fontInfo();
+
+                       // draw the unique and the non-unique completion part
+                       // Note: this is not time-critical as it is
+                       // only done once per screen.
+                       size_t uniqueTo = pi_.base.bv->inlineCompletionUniqueChars();
+                       docstring s1 = completion.substr(0, uniqueTo);
+                       docstring s2 = completion.substr(uniqueTo);
+
+                       if (s1.size() > 0) {
+                               f.setColor(Color_inlinecompletion);
+                               pi_.pain.text(x_, yo_, s1, f);
+                               x_ += theFontMetrics(font).width(s1);
+                       }
+
+                       if (s2.size() > 0) {
+                               f.setColor(Color_nonunique_inlinecompletion);
+                               pi_.pain.text(x_, yo_, s2, f);
+                               x_ += theFontMetrics(font).width(s2);
+                       }
+               }
        }
 
        // if we reach the end of a struck out range, paint it