]> git.lyx.org Git - lyx.git/blobdiff - src/text.C
More 'standard conformant blurb' nonsense.
[lyx.git] / src / text.C
index ea9d391948a174b3c6ef70f22c66c4d1f076ba9b..aac263891554fdde9793cfdf40a301d491e3d0ac 100644 (file)
@@ -11,7 +11,6 @@
 #include <config.h>
 
 #include "lyxtext.h"
-#include "lyxrow.h"
 #include "paragraph.h"
 #include "gettext.h"
 #include "bufferparams.h"
@@ -83,61 +82,29 @@ BufferView * LyXText::bv() const
 
 void LyXText::updateRowPositions()
 {
-       RowList::iterator rit = rows().begin();
-       RowList::iterator rend = rows().end();
-       for (int y = 0; rit != rend ; ++rit) {
-               rit->y(y);
-               y += rit->height();
+       ParagraphList::iterator pit = ownerParagraphs().begin();
+       ParagraphList::iterator end = ownerParagraphs().end();
+       for (int y = 0; pit != end; ++pit) {
+               RowList::iterator rit = pit->rows.begin();
+               RowList::iterator rend = pit->rows.end();
+               for ( ; rit != rend ; rit = ++rit) {
+                       rit->y(y);
+                       y += rit->height();
+               }
        }
 }
 
 
 int LyXText::top_y() const
 {
-       if (anchor_row_ == rowlist_.end())
-               return 0;
-
-       return anchor_row_->y() + anchor_row_offset_;
+       return anchor_y_;
 }
 
 
 void LyXText::top_y(int newy)
 {
-       if (rows().empty())
-               return;
-
-       if (isInInset()) {
-               anchor_row_ = rows().begin();
-               anchor_row_offset_ = newy;
-               return;
-       }
-
-       lyxerr[Debug::GUI] << "setting top y = " << newy << endl;
-
-       int y = newy;
-       RowList::iterator rit = getRowNearY(y);
-
-       if (rit == anchor_row_ && anchor_row_offset_ == newy - y) {
-               lyxerr[Debug::GUI] << "top_y to same value, skipping update" << endl;
-               return;
-       }
-
-       anchor_row_ = rit;
-       anchor_row_offset_ = newy - y;
-       lyxerr[Debug::GUI] << "changing reference to row: " << &*anchor_row_
-              << " offset: " << anchor_row_offset_ << endl;
-}
-
-
-void LyXText::anchor_row(RowList::iterator rit)
-{
-       int old_y = top_y();
-       anchor_row_offset_ = 0;
-       anchor_row_ = rit;
-       anchor_row_offset_ = old_y - top_y();
-       lyxerr[Debug::GUI] << "anchor_row(): changing reference to row: "
-                          << &*anchor_row_ << " offset: "
-                          << anchor_row_offset_ << endl;
+       anchor_y_ = newy;
+       lyxerr[Debug::GUI] << "changing reference to offset: " << anchor_y_ << endl;
 }
 
 
@@ -256,26 +223,12 @@ int LyXText::singleWidth(ParagraphList::iterator pit,
 
        if (c == Paragraph::META_INSET) {
                InsetOld * tmpinset = pit->getInset(pos);
-               if (tmpinset) {
-                       if (tmpinset->lyxCode() == InsetOld::HFILL_CODE) {
-                               // Because of the representation as vertical lines
-                               return 3;
-                       }
-#if 0
-#warning enabling this fixes the 'insets of width 0 on load' problem
-                       // this IS needed otherwise on initialitation we don't get the fill
-                       // of the row right (ONLY on initialization if we read a file!)
-                       // should be changed! (Jug 20011204)
-                       //tmpinset->update(bv());
-                       Dimension dim;
-                       MetricsInfo mi(bv(), font, workWidth());
-                       tmpinset->metrics(mi, dim);
-                       return dim.wid;
-#else
-                       return tmpinset->width();
-#endif
+               Assert(tmpinset);
+               if (tmpinset->lyxCode() == InsetOld::HFILL_CODE) {
+                       // Because of the representation as vertical lines
+                       return 3;
                }
-               return 0;
+               return tmpinset->width();
        }
 
        if (IsSeparatorChar(c))
@@ -318,8 +271,8 @@ bool LyXText::bidi_InRange(lyx::pos_type pos) const
 }
 
 
-void LyXText::computeBidiTables(Buffer const * buf,
-                               RowList::iterator row) const
+void LyXText::computeBidiTables(ParagraphList::iterator pit,
+   Buffer const * buf, RowList::iterator row) const
 {
        bidi_same_direction = true;
        if (!lyxrc.rtl_support) {
@@ -327,9 +280,7 @@ void LyXText::computeBidiTables(Buffer const * buf,
                return;
        }
 
-       ParagraphList::iterator row_par = row->par();
-
-       InsetOld * inset = row_par->inInset();
+       InsetOld * inset = pit->inInset();
        if (inset && inset->owner() &&
            inset->owner()->lyxCode() == InsetOld::ERT_CODE) {
                bidi_start = -1;
@@ -337,7 +288,7 @@ void LyXText::computeBidiTables(Buffer const * buf,
        }
 
        bidi_start = row->pos();
-       bidi_end = lastPrintablePos(*this, row);
+       bidi_end = lastPrintablePos(*pit, row);
 
        if (bidi_start > bidi_end) {
                bidi_start = -1;
@@ -359,25 +310,25 @@ void LyXText::computeBidiTables(Buffer const * buf,
 
        pos_type stack[2];
        bool const rtl_par =
-               row_par->isRightToLeftPar(buf->params);
+               pit->isRightToLeftPar(buf->params);
        int level = 0;
        bool rtl = false;
        bool rtl0 = false;
-       pos_type const body_pos = row_par->beginningOfBody();
+       pos_type const body_pos = pit->beginningOfBody();
 
        for (pos_type lpos = bidi_start; lpos <= bidi_end; ++lpos) {
-               bool is_space = row_par->isLineSeparator(lpos);
+               bool is_space = pit->isLineSeparator(lpos);
                pos_type const pos =
                        (is_space && lpos + 1 <= bidi_end &&
-                        !row_par->isLineSeparator(lpos + 1) &&
-                        !row_par->isNewline(lpos + 1))
+                        !pit->isLineSeparator(lpos + 1) &&
+                        !pit->isNewline(lpos + 1))
                        ? lpos + 1 : lpos;
-               LyXFont font = row_par->getFontSettings(buf->params, pos);
+               LyXFont font = pit->getFontSettings(buf->params, pos);
                if (pos != lpos && 0 < lpos && rtl0 && font.isRightToLeft() &&
                    font.number() == LyXFont::ON &&
-                   row_par->getFontSettings(buf->params, lpos - 1).number()
+                   pit->getFontSettings(buf->params, lpos - 1).number()
                    == LyXFont::ON) {
-                       font = row_par->getFontSettings(buf->params, lpos);
+                       font = pit->getFontSettings(buf->params, lpos);
                        is_space = false;
                }
 
@@ -482,19 +433,19 @@ bool LyXText::isBoundary(Buffer const * buf, Paragraph const & par,
 }
 
 
-int LyXText::leftMargin(Row const & row) const
-{
+int LyXText::leftMargin(ParagraphList::iterator pit, Row const & row) const
+{      
        InsetOld * ins;
 
-       if (row.pos() < row.par()->size())
-               if ((row.par()->getChar(row.pos()) == Paragraph::META_INSET) &&
-                   (ins = row.par()->getInset(row.pos())) &&
+       if (row.pos() < pit->size())
+               if (pit->getChar(row.pos()) == Paragraph::META_INSET &&
+                   (ins = pit->getInset(row.pos())) &&
                    (ins->needFullRow() || ins->display()))
                        return LEFT_MARGIN;
 
        LyXTextClass const & tclass =
                bv()->buffer()->params.getLyXTextClass();
-       LyXLayout_ptr const & layout = row.par()->layout();
+       LyXLayout_ptr const & layout = pit->layout();
 
        string parindent = layout->parindent;
 
@@ -505,14 +456,14 @@ int LyXText::leftMargin(Row const & row) const
        // this is the way, LyX handles the LaTeX-Environments.
        // I have had this idea very late, so it seems to be a
        // later added hack and this is true
-       if (!row.par()->getDepth()) {
-               if (row.par()->layout() == tclass.defaultLayout()) {
+       if (!pit->getDepth()) {
+               if (pit->layout() == tclass.defaultLayout()) {
                        // find the previous same level paragraph
-                       if (row.par() != ownerParagraphs().begin()) {
+                       if (pit != ownerParagraphs().begin()) {
                                ParagraphList::iterator newpit =
-                                       depthHook(row.par(), ownerParagraphs(),
-                                                 row.par()->getDepth());
-                               if (newpit == row.par() &&
+                                       depthHook(pit, ownerParagraphs(),
+                                                 pit->getDepth());
+                               if (newpit == pit &&
                                    newpit->layout()->nextnoindent)
                                        parindent.erase();
                        }
@@ -520,7 +471,7 @@ int LyXText::leftMargin(Row const & row) const
        } else {
                // find the next level paragraph
 
-               ParagraphList::iterator newpar = outerHook(row.par(),
+               ParagraphList::iterator newpar = outerHook(pit,
                                                           ownerParagraphs());
 
                // make a corresponding row. Needed to call leftMargin()
@@ -528,14 +479,11 @@ int LyXText::leftMargin(Row const & row) const
                // check wether it is a sufficent paragraph
                if (newpar != ownerParagraphs().end() &&
                    newpar->layout()->isEnvironment()) {
-                       Row dummyrow;
-                       dummyrow.par(newpar);
-                       dummyrow.pos(newpar->size());
-                       x = leftMargin(dummyrow);
+                       x = leftMargin(newpar, Row(newpar->size()));
                }
 
                if (newpar != ownerParagraphs().end() &&
-                   row.par()->layout() == tclass.defaultLayout()) {
+                   pit->layout() == tclass.defaultLayout()) {
                        if (newpar->params().noindent())
                                parindent.erase();
                        else {
@@ -545,17 +493,17 @@ int LyXText::leftMargin(Row const & row) const
                }
        }
 
-       LyXFont const labelfont = getLabelFont(row.par());
+       LyXFont const labelfont = getLabelFont(pit);
        switch (layout->margintype) {
        case MARGIN_DYNAMIC:
                if (!layout->leftmargin.empty()) {
                        x += font_metrics::signedWidth(layout->leftmargin,
                                                  tclass.defaultfont());
                }
-               if (!row.par()->getLabelstring().empty()) {
+               if (!pit->getLabelstring().empty()) {
                        x += font_metrics::signedWidth(layout->labelindent,
                                                  labelfont);
-                       x += font_metrics::width(row.par()->getLabelstring(),
+                       x += font_metrics::width(pit->getLabelstring(),
                                            labelfont);
                        x += font_metrics::width(layout->labelsep, labelfont);
                }
@@ -563,9 +511,9 @@ int LyXText::leftMargin(Row const & row) const
        case MARGIN_MANUAL:
                x += font_metrics::signedWidth(layout->labelindent, labelfont);
                // The width of an empty par, even with manual label, should be 0
-               if (!row.par()->empty() && row.pos() >= row.par()->beginningOfBody()) {
-                       if (!row.par()->getLabelWidthString().empty()) {
-                               x += font_metrics::width(row.par()->getLabelWidthString(),
+               if (!pit->empty() && row.pos() >= pit->beginningOfBody()) {
+                       if (!pit->getLabelWidthString().empty()) {
+                               x += font_metrics::width(pit->getLabelWidthString(),
                                               labelfont);
                                x += font_metrics::width(layout->labelsep, labelfont);
                        }
@@ -573,11 +521,11 @@ int LyXText::leftMargin(Row const & row) const
                break;
        case MARGIN_STATIC:
                x += font_metrics::signedWidth(layout->leftmargin, tclass.defaultfont()) * 4
-                       / (row.par()->getDepth() + 4);
+                       / (pit->getDepth() + 4);
                break;
        case MARGIN_FIRST_DYNAMIC:
                if (layout->labeltype == LABEL_MANUAL) {
-                       if (row.pos() >= row.par()->beginningOfBody()) {
+                       if (row.pos() >= pit->beginningOfBody()) {
                                x += font_metrics::signedWidth(layout->leftmargin,
                                                          labelfont);
                        } else {
@@ -589,7 +537,7 @@ int LyXText::leftMargin(Row const & row) const
                           // theorems (JMarc)
                           || (layout->labeltype == LABEL_STATIC
                               && layout->latextype == LATEX_ENVIRONMENT
-                              && !isFirstInSequence(row.par(), ownerParagraphs()))) {
+                              && !isFirstInSequence(pit, ownerParagraphs()))) {
                        x += font_metrics::signedWidth(layout->leftmargin,
                                                  labelfont);
                } else if (layout->labeltype != LABEL_TOP_ENVIRONMENT
@@ -599,7 +547,7 @@ int LyXText::leftMargin(Row const & row) const
                        x += font_metrics::signedWidth(layout->labelindent,
                                                  labelfont);
                        x += font_metrics::width(layout->labelsep, labelfont);
-                       x += font_metrics::width(row.par()->getLabelstring(),
+                       x += font_metrics::width(pit->getLabelstring(),
                                            labelfont);
                }
                break;
@@ -611,18 +559,12 @@ int LyXText::leftMargin(Row const & row) const
                // are *NOT* allowed in the LaTeX realisation of this layout.
 
                // find the first row of this paragraph
-               RowList::iterator tmprit = rowlist_.begin();
-               while (tmprit != rowlist_.end()
-                      && tmprit->par() != row.par())
-                       ++tmprit;
-
-               int minfill = tmprit->fill();
-               while (boost::next(tmprit) != rowlist_.end() &&
-                      boost::next(tmprit)->par() == row.par()) {
-                       ++tmprit;
-                       if (tmprit->fill() < minfill)
-                               minfill = tmprit->fill();
-               }
+               RowList::iterator rit = pit->rows.begin();
+               RowList::iterator end = pit->rows.end();
+               int minfill = rit->fill();
+               for ( ; rit != end; ++rit)
+                       if (rit->fill() < minfill)
+                               minfill = rit->fill();
 
                x += font_metrics::signedWidth(layout->leftmargin,
                        tclass.defaultfont());
@@ -631,10 +573,8 @@ int LyXText::leftMargin(Row const & row) const
        break;
        }
 
-       if ((workWidth() > 0) &&
-               !row.par()->params().leftIndent().zero())
-       {
-               LyXLength const len = row.par()->params().leftIndent();
+       if (workWidth() > 0 && !pit->params().leftIndent().zero()) {
+               LyXLength const len = pit->params().leftIndent();
                int const tw = inset_owner ?
                        inset_owner->latexTextWidth(bv()) : workWidth();
                x += len.inPixels(tw);
@@ -642,10 +582,10 @@ int LyXText::leftMargin(Row const & row) const
 
        LyXAlignment align;
 
-       if (row.par()->params().align() == LYX_ALIGN_LAYOUT)
+       if (pit->params().align() == LYX_ALIGN_LAYOUT)
                align = layout->align;
        else
-               align = row.par()->params().align();
+               align = pit->params().align();
 
        // set the correct parindent
        if (row.pos() == 0) {
@@ -654,14 +594,14 @@ int LyXText::leftMargin(Row const & row) const
                     || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
                     || (layout->labeltype == LABEL_STATIC
                         && layout->latextype == LATEX_ENVIRONMENT
-                        && !isFirstInSequence(row.par(), ownerParagraphs())))
+                        && !isFirstInSequence(pit, ownerParagraphs())))
                    && align == LYX_ALIGN_BLOCK
-                   && !row.par()->params().noindent()
+                   && !pit->params().noindent()
                        // in tabulars and ert paragraphs are never indented!
-                       && (!row.par()->inInset() || !row.par()->inInset()->owner() ||
-                               (row.par()->inInset()->owner()->lyxCode() != InsetOld::TABULAR_CODE &&
-                                row.par()->inInset()->owner()->lyxCode() != InsetOld::ERT_CODE))
-                   && (row.par()->layout() != tclass.defaultLayout() ||
+                       && (!pit->inInset() || !pit->inInset()->owner() ||
+                               (pit->inInset()->owner()->lyxCode() != InsetOld::TABULAR_CODE &&
+                                pit->inInset()->owner()->lyxCode() != InsetOld::ERT_CODE))
+                   && (pit->layout() != tclass.defaultLayout() ||
                        bv()->buffer()->params.paragraph_separation ==
                        BufferParams::PARSEP_INDENT)) {
                        x += font_metrics::signedWidth(parindent,
@@ -676,35 +616,36 @@ int LyXText::leftMargin(Row const & row) const
 }
 
 
-int LyXText::rightMargin(Buffer const & buf, Row const & row) const
+int LyXText::rightMargin(ParagraphList::iterator pit,
+       Buffer const & buf, Row const & row) const
 {
        InsetOld * ins;
 
-       if (row.pos() < row.par()->size())
-               if ((row.par()->getChar(row.pos()) == Paragraph::META_INSET) &&
-                   (ins = row.par()->getInset(row.pos())) &&
+       if (row.pos() < pit->size())
+               if ((pit->getChar(row.pos()) == Paragraph::META_INSET) &&
+                   (ins = pit->getInset(row.pos())) &&
                    (ins->needFullRow() || ins->display()))
                        return PAPER_MARGIN;
 
        LyXTextClass const & tclass = buf.params.getLyXTextClass();
-       LyXLayout_ptr const & layout = row.par()->layout();
+       LyXLayout_ptr const & layout = pit->layout();
 
        return PAPER_MARGIN
                + font_metrics::signedWidth(tclass.rightmargin(),
                                       tclass.defaultfont());
                + font_metrics::signedWidth(layout->rightmargin,
                                       tclass.defaultfont())
-               * 4 / (row.par()->getDepth() + 4);
+               * 4 / (pit->getDepth() + 4);
 }
 
 
-int LyXText::labelEnd(Row const & row) const
+int LyXText::labelEnd(ParagraphList::iterator pit, Row const & row) const
 {
-       if (row.par()->layout()->margintype == MARGIN_MANUAL) {
+       if (pit->layout()->margintype == MARGIN_MANUAL) {
                Row tmprow = row;
-               tmprow.pos(row.par()->size());
+               tmprow.pos(pit->size());
                // return the beginning of the body
-               return leftMargin(tmprow);
+               return leftMargin(pit, tmprow);
        }
 
        // LabelEnd is only needed if the layout
@@ -729,12 +670,11 @@ pos_type addressBreakPoint(pos_type i, Paragraph const & par)
 };
 
 
-pos_type LyXText::rowBreakPoint(Row const & row) const
+pos_type LyXText::rowBreakPoint(ParagraphList::iterator pit,
+       Row const & row) const
 {
-       ParagraphList::iterator pit = row.par();
-
        // maximum pixel width of a row.
-       int width = workWidth() - rightMargin(*bv()->buffer(), row);
+       int width = workWidth() - rightMargin(pit, *bv()->buffer(), row);
 
        // inset->textWidth() returns -1 via workWidth(),
        // but why ?
@@ -758,7 +698,7 @@ pos_type LyXText::rowBreakPoint(Row const & row) const
        // or the end of the par, then choose the possible break
        // nearest that.
 
-       int const left = leftMargin(row);
+       int const left = leftMargin(pit, row);
        int x = left;
 
        // pixel width since last breakpoint
@@ -786,7 +726,7 @@ pos_type LyXText::rowBreakPoint(Row const & row) const
                        thiswidth = font_metrics::width(layout->labelsep, getLabelFont(pit));
                        if (pit->isLineSeparator(i - 1))
                                thiswidth -= singleWidth(pit, i - 1);
-                       int left_margin = labelEnd(row);
+                       int left_margin = labelEnd(pit, row);
                        if (thiswidth + x < left_margin)
                                thiswidth = left_margin - x;
                        thiswidth += singleWidth(pit, i, c);
@@ -883,26 +823,26 @@ pos_type LyXText::rowBreakPoint(Row const & row) const
 
 
 // returns the minimum space a row needs on the screen in pixel
-int LyXText::fill(RowList::iterator row, int paper_width) const
+int LyXText::fill(ParagraphList::iterator pit,
+       RowList::iterator row, int paper_width) const
 {
        if (paper_width < 0)
                return 0;
 
        int w;
        // get the pure distance
-       pos_type const last = lastPrintablePos(*this, row);
+       pos_type const last = lastPrintablePos(*pit, row);
 
-       ParagraphList::iterator pit = row->par();
        LyXLayout_ptr const & layout = pit->layout();
 
        // special handling of the right address boxes
        if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX) {
                int const tmpfill = row->fill();
                row->fill(0); // the minfill in MarginLeft()
-               w = leftMargin(*row);
+               w = leftMargin(pit, *row);
                row->fill(tmpfill);
        } else
-               w = leftMargin(*row);
+               w = leftMargin(pit, *row);
 
        pos_type const body_pos = pit->beginningOfBody();
        pos_type i = row->pos();
@@ -916,7 +856,7 @@ int LyXText::fill(RowList::iterator row, int paper_width) const
                                w += font_metrics::width(layout->labelsep, getLabelFont(pit));
                                if (pit->isLineSeparator(i - 1))
                                        w -= singleWidth(pit, i - 1);
-                               int left_margin = labelEnd(*row);
+                               int left_margin = labelEnd(pit, *row);
                                if (w < left_margin)
                                        w = left_margin;
                        }
@@ -951,12 +891,12 @@ int LyXText::fill(RowList::iterator row, int paper_width) const
                w += font_metrics::width(layout->labelsep, getLabelFont(pit));
                if (last >= 0 && pit->isLineSeparator(last))
                        w -= singleWidth(pit, last);
-               int const left_margin = labelEnd(*row);
+               int const left_margin = labelEnd(pit, *row);
                if (w < left_margin)
                        w = left_margin;
        }
 
-       int const fill = paper_width - w - rightMargin(*bv()->buffer(), *row);
+       int const fill = paper_width - w - rightMargin(pit, *bv()->buffer(), *row);
 
        // If this case happens, it means that our calculation
        // of the widths of the chars when we do rowBreakPoint()
@@ -968,17 +908,15 @@ int LyXText::fill(RowList::iterator row, int paper_width) const
        if (lyxerr.debugging() && fill < 0) {
                lyxerr[Debug::GUI] << "Eek, fill() was < 0: " << fill
                        << " w " << w << " paper_width " << paper_width
-                       << " right margin " << rightMargin(*bv()->buffer(), *row) << endl;
+                       << " right margin " << rightMargin(pit, *bv()->buffer(), *row) << endl;
        }
        return fill;
 }
 
 
 // returns the minimum space a manual label needs on the screen in pixel
-int LyXText::labelFill(Row const & row) const
+int LyXText::labelFill(ParagraphList::iterator pit, Row const & row) const
 {
-       ParagraphList::iterator pit = row.par();
-
        pos_type last = pit->beginningOfBody();
 
        Assert(last > 0);
@@ -1019,10 +957,8 @@ LColor::color LyXText::backgroundColor() const
 }
 
 
-void LyXText::setHeightOfRow(RowList::iterator rit)
+void LyXText::setHeightOfRow(ParagraphList::iterator pit, RowList::iterator rit)
 {
-       Assert(rit != rows().end());
-
        // get the maximum ascent and the maximum descent
        double layoutasc = 0;
        double layoutdesc = 0;
@@ -1031,8 +967,6 @@ void LyXText::setHeightOfRow(RowList::iterator rit)
        // ok, let us initialize the maxasc and maxdesc value.
        // Only the fontsize count. The other properties
        // are taken from the layoutfont. Nicer on the screen :)
-       ParagraphList::iterator pit = rit->par();
-
        LyXLayout_ptr const & layout = pit->layout();
 
        // as max get the first character of this row then it can increase but not
@@ -1058,7 +992,7 @@ void LyXText::setHeightOfRow(RowList::iterator rit)
        int maxdesc = int(font_metrics::maxDescent(font) *
                          layout->spacing.getValue() * spacing_val);
 
-       pos_type const pos_end = lastPos(*this, rit);
+       pos_type const pos_end = lastPos(*pit, rit);
        int labeladdon = 0;
        int maxwidth = 0;
 
@@ -1213,12 +1147,10 @@ void LyXText::setHeightOfRow(RowList::iterator rit)
                        }
 
                        labeladdon = int(
-                               (font_metrics::maxAscent(labelfont) *
-                                layout->spacing.getValue() *
-                                spacing_val)
-                               +(font_metrics::maxDescent(labelfont) *
+                               (font_metrics::maxAscent(labelfont) +
+                                font_metrics::maxDescent(labelfont)) *
                                  layout->spacing.getValue() *
-                                 spacing_val)
+                                 spacing_val
                                + layout->topsep * defaultRowHeight()
                                + layout->labelbottomsep * defaultRowHeight());
                }
@@ -1236,11 +1168,11 @@ void LyXText::setHeightOfRow(RowList::iterator rit)
                                prev->getLabelWidthString() == pit->getLabelWidthString())
                        {
                                layoutasc = (layout->itemsep * defaultRowHeight());
-                       } else if (rit != rows().begin()) {
+                       } else if (rit != firstRow()) {
                                tmptop = layout->topsep;
 
-                               if (boost::prior(pit)->getDepth() >= pit->getDepth())
-                                       tmptop -= boost::prior(rit)->par()->layout()->bottomsep;
+                               //if (boost::prior(pit)->getDepth() >= pit->getDepth())
+                               //      tmptop -= getPar(previousRow(rit))->layout()->bottomsep;
 
                                if (tmptop > 0)
                                        layoutasc = (tmptop * defaultRowHeight());
@@ -1265,12 +1197,10 @@ void LyXText::setHeightOfRow(RowList::iterator rit)
        }
 
        // is it a bottom line?
-       RowList::iterator next_rit = boost::next(rit);
-       if (next_rit == rows().end() || next_rit->par() != pit) {
+       if (boost::next(rit) == pit->rows.end()) {
                // the bottom margin
                ParagraphList::iterator nextpit = boost::next(pit);
-               if (nextpit == ownerParagraphs().end() &&
-                   !isInInset())
+               if (nextpit == ownerParagraphs().end() && !isInInset())
                        maxdesc += PAPER_MARGIN;
 
                // add the vertical spaces, that the user added
@@ -1337,101 +1267,20 @@ void LyXText::setHeightOfRow(RowList::iterator rit)
                // this IS needed
                rit->width(maxwidth);
                double dummy;
-               prepareToPrint(rit, x, dummy, dummy, dummy, false);
+               prepareToPrint(pit, rit, x, dummy, dummy, dummy, false);
        }
        rit->width(int(maxwidth + x));
        if (inset_owner) {
                width = max(0, workWidth());
-               RowList::iterator it = rows().begin();
-               RowList::iterator end = rows().end();
-               for (; it != end; ++it)
-                       if (it->width() > width)
-                               width = it->width();
-       }
-}
-
-
-// Appends the implicit specified paragraph before the specified row,
-// start at the implicit given position
-void LyXText::appendParagraph(RowList::iterator rowit)
-{
-       Assert(rowit != rowlist_.end());
-
-       pos_type const last = rowit->par()->size();
-       bool done = false;
-
-       do {
-               pos_type z = rowBreakPoint(*rowit);
-
-               RowList::iterator tmprow = rowit;
-
-               if (z < last) {
-                       ++z;
-                       Row newrow(rowit->par(), z);
-                       rowit = rowlist_.insert(boost::next(rowit), newrow);
-               } else {
-                       done = true;
+               RowList::iterator rit = firstRow();
+               RowList::iterator end = endRow();
+               ParagraphList::iterator it = ownerParagraphs().begin();
+               while (rit != end) {
+                       if (rit->width() > width)
+                               width = rit->width();
+                       nextRow(it, rit);
                }
-
-               // Set the dimensions of the row
-               // fixed fill setting now by calling inset->update() in
-               // SingleWidth when needed!
-               tmprow->fill(fill(tmprow, workWidth()));
-               setHeightOfRow(tmprow);
-
-       } while (!done);
-}
-
-
-void LyXText::breakAgain(RowList::iterator rit)
-{
-       Assert(rit != rows().end());
-
-       bool not_ready = true;
-
-       do {
-               pos_type z = rowBreakPoint(*rit);
-               RowList::iterator tmprit = rit;
-               RowList::iterator end = rows().end();
-
-               if (z < rit->par()->size()) {
-                       RowList::iterator next_rit = boost::next(rit);
-
-                       if (next_rit == end ||
-                           (next_rit != end &&
-                            next_rit->par() != rit->par())) {
-                               // insert a new row
-                               ++z;
-                               Row newrow(rit->par(), z);
-                               rit = rowlist_.insert(next_rit, newrow);
-                       } else  {
-                               ++rit;
-                               ++z;
-                               if (rit->pos() == z)
-                                       not_ready = false; // the rest will not change
-                               else {
-                                       rit->pos(z);
-                               }
-                       }
-               } else {
-                       // if there are some rows too much, delete them
-                       // only if you broke the whole paragraph!
-                       RowList::iterator tmprit2 = rit;
-                       while (boost::next(tmprit2) != end
-                              && boost::next(tmprit2)->par() == rit->par()) {
-                               ++tmprit2;
-                       }
-                       while (tmprit2 != rit) {
-                               --tmprit2;
-                               removeRow(boost::next(tmprit2));
-                       }
-                       not_ready = false;
-               }
-
-               // set the dimensions of the row
-               tmprit->fill(fill(tmprit, workWidth()));
-               setHeightOfRow(tmprit);
-       } while (not_ready);
+       }
 }
 
 
@@ -1475,6 +1324,12 @@ void LyXText::breakParagraph(ParagraphList & paragraphs, char keep_layout)
        ::breakParagraph(bv()->buffer()->params, paragraphs, cursor.par(),
                         cursor.pos(), keep_layout);
 
+#warning Trouble Point! (Lgb)
+       // When ::breakParagraph is called from within an inset we must
+       // ensure that the correct ParagraphList is used. Today that is not
+       // the case and the Buffer::paragraphs is used. Not good. (Lgb)
+       ParagraphList::iterator next_par = boost::next(cursor.par());
+
        // well this is the caption hack since one caption is really enough
        if (layout->labeltype == LABEL_SENSITIVE) {
                if (!cursor.pos())
@@ -1482,7 +1337,7 @@ void LyXText::breakParagraph(ParagraphList & paragraphs, char keep_layout)
                        cursor.par()->applyLayout(tclass.defaultLayout());
                else
                        // set to standard-layout
-                       boost::next(cursor.par())->applyLayout(tclass.defaultLayout());
+                       next_par->applyLayout(tclass.defaultLayout());
        }
 
        // if the cursor is at the beginning of a row without prior newline,
@@ -1490,29 +1345,17 @@ void LyXText::breakParagraph(ParagraphList & paragraphs, char keep_layout)
        // This touches only the screen-update. Otherwise we would may have
        // an empty row on the screen
        if (cursor.pos() && cursorRow()->pos() == cursor.pos()
-           && !cursorRow()->par()->isNewline(cursor.pos() - 1))
+           && !cursor.par()->isNewline(cursor.pos() - 1))
        {
                cursorLeft(bv());
        }
 
-       removeParagraph(cursorRow());
-
-       // set the dimensions of the cursor row
-       cursorRow()->fill(fill(cursorRow(), workWidth()));
-
-       setHeightOfRow(cursorRow());
-
-#warning Trouble Point! (Lgb)
-       // When ::breakParagraph is called from within an inset we must
-       // ensure that the correct ParagraphList is used. Today that is not
-       // the case and the Buffer::paragraphs is used. Not good. (Lgb)
-       ParagraphList::iterator next_par = boost::next(cursor.par());
-
        while (!next_par->empty() && next_par->isNewline(0))
                next_par->erase(0);
 
-       insertParagraph(next_par, boost::next(cursorRow()));
        updateCounters();
+       redoParagraph(cursor.par());
+       redoParagraph(next_par);
 
        // This check is necessary. Otherwise the new empty paragraph will
        // be deleted automatically. And it is more friendly for the user!
@@ -1520,13 +1363,10 @@ void LyXText::breakParagraph(ParagraphList & paragraphs, char keep_layout)
                setCursor(next_par, 0);
        else
                setCursor(cursor.par(), 0);
-
-       if (boost::next(cursorRow()) != rows().end())
-               breakAgain(boost::next(cursorRow()));
 }
 
 
-// Just a macro to make some thing easier.
+// convenience function
 void LyXText::redoParagraph()
 {
        clearSelection();
@@ -1544,8 +1384,8 @@ void LyXText::insertChar(char c)
        // When the free-spacing option is set for the current layout,
        // disable the double-space checking
 
-       bool const freeSpacing = cursorRow()->par()->layout()->free_spacing ||
-               cursorRow()->par()->isFreeSpacing();
+       bool const freeSpacing = cursor.par()->layout()->free_spacing ||
+               cursor.par()->isFreeSpacing();
 
        if (lyxrc.auto_number) {
                static string const number_operators = "+-/*";
@@ -1602,16 +1442,10 @@ void LyXText::insertChar(char c)
        // and it should (along with realtmpfont) when we type the space.
        // CHECK There is a bug here! (Asger)
 
-       LyXFont realtmpfont = real_current_font;
-       LyXFont rawtmpfont = current_font;
        // store the current font.  This is because of the use of cursor
        // movements. The moving cursor would refresh the current font
-
-       // Get the font that is used to calculate the baselineskip
-       pos_type const lastpos = cursor.par()->size();
-       LyXFont rawparfont =
-               cursor.par()->getFontSettings(bv()->buffer()->params,
-                                             lastpos - 1);
+       LyXFont realtmpfont = real_current_font;
+       LyXFont rawtmpfont = current_font;
 
        if (!freeSpacing && IsLineSeparatorChar(c)) {
                if ((cursor.pos() > 0
@@ -1661,7 +1495,8 @@ void LyXText::charInserted()
 }
 
 
-void LyXText::prepareToPrint(RowList::iterator rit, double & x,
+void LyXText::prepareToPrint(ParagraphList::iterator pit,
+           RowList::iterator rit, double & x,
                             double & fill_separator,
                             double & fill_hfill,
                             double & fill_label_hfill,
@@ -1673,14 +1508,12 @@ void LyXText::prepareToPrint(RowList::iterator rit, double & x,
        fill_separator = 0;
        fill_label_hfill = 0;
 
-       ParagraphList::iterator pit = rit->par();
-
        bool const is_rtl =
                pit->isRightToLeftPar(bv()->buffer()->params);
        if (is_rtl)
-               x = workWidth() > 0 ? rightMargin(*bv()->buffer(), *rit) : 0;
+               x = workWidth() > 0 ? rightMargin(pit, *bv()->buffer(), *rit) : 0;
        else
-               x = workWidth() > 0 ? leftMargin(*rit) : 0;
+               x = workWidth() > 0 ? leftMargin(pit, *rit) : 0;
 
        // is there a manual margin with a manual label
        LyXLayout_ptr const & layout = pit->layout();
@@ -1688,7 +1521,7 @@ void LyXText::prepareToPrint(RowList::iterator rit, double & x,
        if (layout->margintype == MARGIN_MANUAL
            && layout->labeltype == LABEL_MANUAL) {
                /// We might have real hfills in the label part
-               int nlh = numberOfLabelHfills(*this, rit);
+               int nlh = numberOfLabelHfills(*pit, rit);
 
                // A manual label par (e.g. List) has an auto-hfill
                // between the label text and the body of the
@@ -1699,12 +1532,12 @@ void LyXText::prepareToPrint(RowList::iterator rit, double & x,
                        ++nlh;
 
                if (nlh && !pit->getLabelWidthString().empty()) {
-                       fill_label_hfill = labelFill(*rit) / double(nlh);
+                       fill_label_hfill = labelFill(pit, *rit) / double(nlh);
                }
        }
 
        // are there any hfills in the row?
-       int const nh = numberOfHfills(*this, rit);
+       int const nh = numberOfHfills(*pit, rit);
 
        if (nh) {
                if (w > 0)
@@ -1741,16 +1574,14 @@ void LyXText::prepareToPrint(RowList::iterator rit, double & x,
                switch (align) {
            case LYX_ALIGN_BLOCK:
            {
-                       int const ns = numberOfSeparators(*this, rit);
+                       int const ns = numberOfSeparators(*pit, rit);
                        RowList::iterator next_row = boost::next(rit);
-                       ParagraphList::iterator next_pit = next_row->par();
-
-                       if (ns && next_row != rowlist_.end() &&
-                           next_pit == pit &&
-                           !(next_pit->isNewline(next_row->pos() - 1))
-                           && !(next_pit->isInset(next_row->pos()) &&
-                                next_pit->getInset(next_row->pos()) &&
-                                next_pit->getInset(next_row->pos())->display())
+                       if (ns
+                               && next_row != pit->rows.end()
+                               && !pit->isNewline(next_row->pos() - 1)
+                         && !(pit->isInset(next_row->pos())
+                                    && pit->getInset(next_row->pos())
+                                    && pit->getInset(next_row->pos())->display())
                                ) {
                                fill_separator = w / ns;
                        } else if (is_rtl) {
@@ -1769,10 +1600,10 @@ void LyXText::prepareToPrint(RowList::iterator rit, double & x,
        if (!bidi)
                return;
 
-       computeBidiTables(bv()->buffer(), rit);
+       computeBidiTables(pit, bv()->buffer(), rit);
        if (is_rtl) {
                pos_type body_pos = pit->beginningOfBody();
-               pos_type last = lastPos(*this, rit);
+               pos_type last = lastPos(*pit, rit);
 
                if (body_pos > 0 &&
                    (body_pos - 1 > last ||
@@ -1986,7 +1817,7 @@ void LyXText::selectSelectedWord()
 
        // now find the end of the word
        while (cursor.pos() < cursor.par()->size()
-              && (cursor.par()->isLetter(cursor.pos())))
+              && cursor.par()->isLetter(cursor.pos()))
                cursor.pos(cursor.pos() + 1);
 
        setCursor(cursor.par(), cursor.pos());
@@ -2168,8 +1999,7 @@ void LyXText::backspace()
                        // This is an empty paragraph and we delete it just
                        // by moving the cursor one step
                        // left and let the DeleteEmptyParagraphMechanism
-                       // handle the actual deletion
-                       // of the paragraph.
+                       // handle the actual deletion of the paragraph.
 
                        if (cursor.par() != ownerParagraphs().begin()) {
                                ParagraphList::iterator tmppit = boost::prior(cursor.par());
@@ -2185,7 +2015,7 @@ void LyXText::backspace()
                                cursorLeft(bv());
 
                                // the layout things can change the height of a row !
-                               setHeightOfRow(cursorRow());
+                               setHeightOfRow(cursor.par(), cursorRow());
                                return;
                        }
                }
@@ -2197,8 +2027,6 @@ void LyXText::backspace()
                }
 
                ParagraphList::iterator tmppit = cursor.par();
-               RowList::iterator tmprow = cursorRow();
-
                // We used to do cursorLeftIntern() here, but it is
                // not a good idea since it triggers the auto-delete
                // mechanism. So we do a cursorLeftIntern()-lite,
@@ -2213,12 +2041,7 @@ void LyXText::backspace()
                // Pasting is not allowed, if the paragraphs have different
                // layout. I think it is a real bug of all other
                // word processors to allow it. It confuses the user.
-               // Even so with a footnote paragraph and a non-footnote
-               // paragraph. I will not allow pasting in this case,
-               // because the user would be confused if the footnote behaves
-               // different wether it is open or closed.
-
-               //      Correction: Pasting is always allowed with standard-layout
+               //Correction: Pasting is always allowed with standard-layout
                LyXTextClass const & tclass =
                        bv()->buffer()->params.getLyXTextClass();
 
@@ -2226,32 +2049,14 @@ void LyXText::backspace()
                    && (cursor.par()->layout() == tmppit->layout()
                        || tmppit->layout() == tclass.defaultLayout())
                    && cursor.par()->getAlign() == tmppit->getAlign()) {
-                       removeParagraph(tmprow);
-                       removeRow(tmprow);
-                       mergeParagraph(bv()->buffer()->params, bv()->buffer()->paragraphs, cursor.par());
-
-                       if (!cursor.pos() || !cursor.par()->isSeparator(cursor.pos() - 1))
-                               ; //cursor.par()->insertChar(cursor.pos(), ' ');
-                       // strangely enough it seems that commenting out the line above removes
-                       // most or all of the segfaults. I will however also try to move the
-                       // two Remove... lines in front of the PasteParagraph too.
-                       else
-                               if (cursor.pos())
-                                       cursor.pos(cursor.pos() - 1);
-
-                       // remove the lost paragraph
-                       // This one is not safe, since the paragraph that the tmprow and the
-                       // following rows belong to has been deleted by the PasteParagraph
-                       // above. The question is... could this be moved in front of the
-                       // PasteParagraph?
-                       //RemoveParagraph(tmprow);
-                       //RemoveRow(tmprow);
-
-                       // This rebuilds the rows.
-                       appendParagraph(cursorRow());
-                       updateCounters();
+                       mergeParagraph(bv()->buffer()->params,
+                               bv()->buffer()->paragraphs, cursor.par());
+
+                       if (cursor.pos() && cursor.par()->isSeparator(cursor.pos() - 1))
+                               cursor.pos(cursor.pos() - 1);
 
                        // the row may have changed, block, hfills etc.
+                       updateCounters();
                        setCursor(cursor.par(), cursor.pos(), false);
                }
        } else {
@@ -2291,23 +2096,15 @@ RowList::iterator LyXText::getRow(LyXCursor const & cur) const
 RowList::iterator
 LyXText::getRow(ParagraphList::iterator pit, pos_type pos) const
 {
-       if (rows().empty())
-               return rowlist_.end();
-
-       // find the first row of the specified paragraph
-       RowList::iterator rit = rowlist_.begin();
-       RowList::iterator end = rowlist_.end();
-       while (boost::next(rit) != end && rit->par() != pit) {
-               ++rit;
-       }
-
-       // now find the wanted row
-       while (rit->pos() < pos
-              && boost::next(rit) != end
-              && boost::next(rit)->par() == pit
-              && boost::next(rit)->pos() <= pos) {
+       RowList::iterator rit = pit->rows.begin();
+       RowList::iterator end = pit->rows.end();
+
+#warning Why is this next thing needed? (Andre)
+       while (rit != end
+                    && rit->pos() < pos
+                    && boost::next(rit) != end
+                    && boost::next(rit)->pos() <= pos)
                ++rit;
-       }
 
        return rit;
 }
@@ -2319,21 +2116,22 @@ LyXText::getRow(ParagraphList::iterator pit, pos_type pos, int & y) const
 {
        y = 0;
 
-       if (rows().empty())
-               return rowlist_.end();
+       if (noRows())
+               return firstRow();
 
-       // find the first row of the specified paragraph
-       RowList::iterator rit = rowlist_.begin();
-       RowList::iterator end = rowlist_.end();
-       while (boost::next(rit) != end && rit->par() != pit) {
-               y += rit->height();
-               ++rit;
+       ParagraphList::iterator it = ownerParagraphs().begin();
+       for ( ; it != pit; ++it) {
+               RowList::iterator beg = it->rows.begin();
+               RowList::iterator end = it->rows.end();
+               for (RowList::iterator rit = beg; rit != end; ++rit)
+                       y += rit->height();
        }
 
-       // now find the wanted row
-       while (rit->pos() < pos
+       RowList::iterator rit = pit->rows.begin();
+       RowList::iterator end = pit->rows.end();
+       while (rit != end
+              && rit->pos() < pos
               && boost::next(rit) != end
-              && boost::next(rit)->par() == pit
               && boost::next(rit)->pos() <= pos) {
                y += rit->height();
                ++rit;
@@ -2351,49 +2149,76 @@ RowList::iterator LyXText::cursorIRow() const
 }
 
 
-RowList::iterator LyXText::getRowNearY(int & y) const
+RowList::iterator LyXText::getRowNearY(int & y,
+       ParagraphList::iterator & pit) const
 {
-       RowList::iterator rit = anchor_row_;
-       RowList::iterator const beg = rows().begin();
-       RowList::iterator const end = rows().end();
+       //lyxerr << "getRowNearY: y " << y << endl;
+       pit = ownerParagraphs().begin();
+       RowList::iterator rit = firstRow();
+       RowList::iterator rend = endRow();
 
-       if (rows().empty()) {
-               y = 0;
-               return end;
-       }
-       if (rit == end)
-               rit = beg;
+       for (; rit != rend; nextRow(pit, rit))
+               if (rit->y() > y)
+                       break;
+
+       previousRow(pit, rit);
+       y = rit->y();
+       return rit;
+}
 
-       int tmpy = rit->y();
 
-       if (tmpy <= y) {
-               while (rit != end && tmpy <= y) {
-                       tmpy += rit->height();
-                       ++rit;
-               }
-               if (rit != beg) {
-                       --rit;
-                       tmpy -= rit->height();
-               }
-       } else {
-               while (rit != beg && tmpy > y) {
-                       --rit;
-                       tmpy -= rit->height();
-               }
-       }
-       if (tmpy < 0 || rit == end) {
-               tmpy = 0;
-               rit = beg;
+int LyXText::getDepth() const
+{
+       return cursor.par()->getDepth();
+}
+
+
+RowList::iterator LyXText::firstRow() const
+{
+       return ownerParagraphs().front().rows.begin();
+}
+
+
+RowList::iterator LyXText::lastRow() const
+{
+       return boost::prior(endRow());
+}
+
+
+RowList::iterator LyXText::endRow() const
+{
+       return ownerParagraphs().back().rows.end();
+}
+
+
+void LyXText::nextRow(ParagraphList::iterator & pit,
+       RowList::iterator & rit) const
+{
+       ++rit;
+       if (rit == pit->rows.end()) {
+               ++pit;
+               if (pit == ownerParagraphs().end())
+                       --pit;
+               else
+                       rit = pit->rows.begin();
        }
+}
 
-       // return the rel y
-       y = tmpy;
 
-       return rit;
+void LyXText::previousRow(ParagraphList::iterator & pit,
+       RowList::iterator & rit) const
+{
+       if (rit != pit->rows.begin())
+               --rit;
+       else {
+               Assert(pit != ownerParagraphs().begin());
+               --pit;
+               rit = boost::prior(pit->rows.end());
+       }
 }
 
 
-int LyXText::getDepth() const
+bool LyXText::noRows() const
 {
-       return cursor.par()->getDepth();
+       return ownerParagraphs().begin()->rows.empty();
 }