]> git.lyx.org Git - lyx.git/blobdiff - src/Text.cpp
adjust
[lyx.git] / src / Text.cpp
index 6c810b986907b26e834f50e2a153e1118bef7c21..c6c1d1dc875536ebd27fa47c61feef20ca450f76 100644 (file)
@@ -5,9 +5,11 @@
  *
  * \author Asger Alstrup
  * \author Lars Gullik Bjønnes
+ * \author Dov Feldstern
  * \author Jean-Marc Lasgouttes
  * \author John Levon
  * \author André Pönitz
+ * \author Stefan Schimanski
  * \author Dekel Tsur
  * \author Jürgen Vigna
  *
 #include "buffer_funcs.h"
 #include "BufferParams.h"
 #include "BufferView.h"
-#include "bufferview_funcs.h"
 #include "Cursor.h"
 #include "ParIterator.h"
-#include "CoordCache.h"
 #include "CutAndPaste.h"
 #include "debug.h"
 #include "DispatchResult.h"
 #include "Length.h"
 #include "Lexer.h"
 #include "LyXRC.h"
-#include "Row.h"
-#include "MetricsInfo.h"
 #include "Paragraph.h"
 #include "paragraph_funcs.h"
 #include "ParagraphParameters.h"
-#include "rowpainter.h"
 #include "Undo.h"
+#include "TextMetrics.h"
 #include "VSpace.h"
 #include "WordLangTuple.h"
 
@@ -71,6 +69,7 @@
 #include "support/convert.h"
 
 #include <boost/current_function.hpp>
+#include <boost/next_prior.hpp>
 
 #include <sstream>
 
@@ -116,7 +115,7 @@ void readParToken(Buffer const & buf, Paragraph & par, Lexer & lex,
 #endif
        } else if (token == "\\begin_layout") {
                lex.eatLine();
-               string layoutname = lex.getString();
+               docstring layoutname = lex.getDocString();
 
                font = Font(Font::ALL_INHERIT, bp.language);
                change = Change(Change::UNCHANGED);
@@ -132,14 +131,14 @@ void readParToken(Buffer const & buf, Paragraph & par, Lexer & lex,
                if (!hasLayout) {
                        errorList.push_back(ErrorItem(_("Unknown layout"),
                        bformat(_("Layout '%1$s' does not exist in textclass '%2$s'\nTrying to use the default instead.\n"),
-                       from_utf8(layoutname), from_utf8(tclass.name())), par.id(), 0, par.size()));
+                       layoutname, from_utf8(tclass.name())), par.id(), 0, par.size()));
                        layoutname = tclass.defaultLayoutName();
                }
 
                par.layout(bp.getTextClass()[layoutname]);
 
                // Test whether the layout is obsolete.
-               Layout_ptr const & layout = par.layout();
+               LayoutPtr const & layout = par.layout();
                if (!layout->obsoleted_by().empty())
                        par.layout(bp.getTextClass()[layout->obsoleted_by()]);
 
@@ -342,6 +341,13 @@ void readParagraph(Buffer const & buf, Paragraph & par, Lexer & lex,
 } // namespace anon
 
 
+bool Text::empty() const
+{
+       return pars_.empty() || (pars_.size() == 1 && pars_[0].empty()
+               // FIXME: Should we consider the labeled type as empty too? 
+               && pars_[0].layout()->labeltype == LABEL_NO_LABEL);
+}
+
 
 double Text::spacing(Buffer const & buffer,
                Paragraph const & par) const
@@ -352,234 +358,7 @@ double Text::spacing(Buffer const & buffer,
 }
 
 
-int Text::singleWidth(Buffer const & buffer, Paragraph const & par,
-               pos_type pos) const
-{
-       return singleWidth(par, pos, par.getChar(pos),
-               getFont(buffer, par, pos));
-}
-
-
-int Text::singleWidth(Paragraph const & par,
-                        pos_type pos, char_type c, Font const & font) const
-{
-       // The most common case is handled first (Asger)
-       if (isPrintable(c)) {
-               Language const * language = font.language();
-               if (language->rightToLeft()) {
-                       if (language->lang() == "arabic") {
-                               if (Encodings::isComposeChar_arabic(c))
-                                       return 0;
-                               c = par.transformChar(c, pos);
-                       } else if (language->lang() == "hebrew" &&
-                                  Encodings::isComposeChar_hebrew(c))
-                               return 0;
-               }
-               return theFontMetrics(font).width(c);
-       }
-
-       if (c == Paragraph::META_INSET)
-               return par.getInset(pos)->width();
-
-       return theFontMetrics(font).width(c);
-}
-
-
-int Text::leftMargin(Buffer const & buffer, int max_width, pit_type pit) const
-{
-       BOOST_ASSERT(pit >= 0);
-       BOOST_ASSERT(pit < int(pars_.size()));
-       return leftMargin(buffer, max_width, pit, pars_[pit].size());
-}
-
-
-int Text::leftMargin(Buffer const & buffer, int max_width,
-               pit_type const pit, pos_type const pos) const
-{
-       BOOST_ASSERT(pit >= 0);
-       BOOST_ASSERT(pit < int(pars_.size()));
-       Paragraph const & par = pars_[pit];
-       BOOST_ASSERT(pos >= 0);
-       BOOST_ASSERT(pos <= par.size());
-       //lyxerr << "Text::leftMargin: pit: " << pit << " pos: " << pos << endl;
-       TextClass const & tclass = buffer.params().getTextClass();
-       Layout_ptr const & layout = par.layout();
-
-       string parindent = layout->parindent;
-
-       int l_margin = 0;
-
-       if (isMainText(buffer))
-               l_margin += changebarMargin();
-
-       // FIXME UNICODE
-       docstring leftm = from_utf8(tclass.leftmargin());
-       l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(leftm);
-
-       if (par.getDepth() != 0) {
-               // find the next level paragraph
-               pit_type newpar = outerHook(pit, pars_);
-               if (newpar != pit_type(pars_.size())) {
-                       if (pars_[newpar].layout()->isEnvironment()) {
-                               l_margin = leftMargin(buffer, max_width, newpar);
-                       }
-                       if (par.layout() == tclass.defaultLayout()) {
-                               if (pars_[newpar].params().noindent())
-                                       parindent.erase();
-                               else
-                                       parindent = pars_[newpar].layout()->parindent;
-                       }
-               }
-       }
-
-       // This happens after sections in standard classes. The 1.3.x
-       // code compared depths too, but it does not seem necessary
-       // (JMarc)
-       if (par.layout() == tclass.defaultLayout()
-           && pit > 0 && pars_[pit - 1].layout()->nextnoindent)
-               parindent.erase();
-
-       Font const labelfont = getLabelFont(buffer, par);
-       FontMetrics const & labelfont_metrics = theFontMetrics(labelfont);
-
-       switch (layout->margintype) {
-       case MARGIN_DYNAMIC:
-               if (!layout->leftmargin.empty()) {
-                       // FIXME UNICODE
-                       docstring leftm = from_utf8(layout->leftmargin);
-                       l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(leftm);
-               }
-               if (!par.getLabelstring().empty()) {
-                       // FIXME UNICODE
-                       docstring labin = from_utf8(layout->labelindent);
-                       l_margin += labelfont_metrics.signedWidth(labin);
-                       docstring labstr = par.getLabelstring();
-                       l_margin += labelfont_metrics.width(labstr);
-                       docstring labsep = from_utf8(layout->labelsep);
-                       l_margin += labelfont_metrics.width(labsep);
-               }
-               break;
-
-       case MARGIN_MANUAL: {
-               // FIXME UNICODE
-               docstring labin = from_utf8(layout->labelindent);
-               l_margin += labelfont_metrics.signedWidth(labin);
-               // The width of an empty par, even with manual label, should be 0
-               if (!par.empty() && pos >= par.beginOfBody()) {
-                       if (!par.getLabelWidthString().empty()) {
-                               docstring labstr = par.getLabelWidthString();
-                               l_margin += labelfont_metrics.width(labstr);
-                               docstring labsep = from_utf8(layout->labelsep);
-                               l_margin += labelfont_metrics.width(labsep);
-                       }
-               }
-               break;
-       }
-
-       case MARGIN_STATIC: {
-               // FIXME UNICODE
-               docstring leftm = from_utf8(layout->leftmargin);
-               l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(leftm)
-                       * 4     / (par.getDepth() + 4);
-               break;
-       }
-
-       case MARGIN_FIRST_DYNAMIC:
-               if (layout->labeltype == LABEL_MANUAL) {
-                       if (pos >= par.beginOfBody()) {
-                               // FIXME UNICODE
-                               l_margin += labelfont_metrics.signedWidth(
-                                       from_utf8(layout->leftmargin));
-                       } else {
-                               // FIXME UNICODE
-                               l_margin += labelfont_metrics.signedWidth(
-                                       from_utf8(layout->labelindent));
-                       }
-               } else if (pos != 0
-                          // Special case to fix problems with
-                          // theorems (JMarc)
-                          || (layout->labeltype == LABEL_STATIC
-                              && layout->latextype == LATEX_ENVIRONMENT
-                              && !isFirstInSequence(pit, pars_))) {
-                       // FIXME UNICODE
-                       l_margin += labelfont_metrics.signedWidth(from_utf8(layout->leftmargin));
-               } else if (layout->labeltype != LABEL_TOP_ENVIRONMENT
-                          && layout->labeltype != LABEL_BIBLIO
-                          && layout->labeltype !=
-                          LABEL_CENTERED_TOP_ENVIRONMENT) {
-                       l_margin += labelfont_metrics.signedWidth(from_utf8(layout->labelindent));
-                       l_margin += labelfont_metrics.width(from_utf8(layout->labelsep));
-                       l_margin += labelfont_metrics.width(par.getLabelstring());
-               }
-               break;
-
-       case MARGIN_RIGHT_ADDRESS_BOX: {
-#if 0
-               // ok, a terrible hack. The left margin depends on the widest
-               // row in this paragraph.
-               RowList::iterator rit = par.rows().begin();
-               RowList::iterator end = par.rows().end();
-#ifdef WITH_WARNINGS
-#warning This is wrong.
-#endif
-               int minfill = max_width;
-               for ( ; rit != end; ++rit)
-                       if (rit->fill() < minfill)
-                               minfill = rit->fill();
-               l_margin += theFontMetrics(params.getFont()).signedWidth(layout->leftmargin);
-               l_margin += minfill;
-#endif
-               // also wrong, but much shorter.
-               l_margin += max_width / 2;
-               break;
-       }
-       }
-
-       if (!par.params().leftIndent().zero())
-               l_margin += par.params().leftIndent().inPixels(max_width);
-
-       LyXAlignment align;
-
-       if (par.params().align() == LYX_ALIGN_LAYOUT)
-               align = layout->align;
-       else
-               align = par.params().align();
-
-       // set the correct parindent
-       if (pos == 0
-           && (layout->labeltype == LABEL_NO_LABEL
-              || layout->labeltype == LABEL_TOP_ENVIRONMENT
-              || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
-              || (layout->labeltype == LABEL_STATIC
-                  && layout->latextype == LATEX_ENVIRONMENT
-                  && !isFirstInSequence(pit, pars_)))
-           && align == LYX_ALIGN_BLOCK
-           && !par.params().noindent()
-           // in some insets, paragraphs are never indented
-           && !(par.inInset() && par.inInset()->neverIndent(buffer))
-           // display style insets are always centered, omit indentation
-           && !(!par.empty()
-                   && par.isInset(pos)
-                   && par.getInset(pos)->display())
-           && (par.layout() != tclass.defaultLayout()
-               || buffer.params().paragraph_separation ==
-                  BufferParams::PARSEP_INDENT))
-       {
-               docstring din = from_utf8(parindent);
-               l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(din);
-       }
-
-       return l_margin;
-}
-
-
-Color_color Text::backgroundColor() const
-{
-       return Color_color(Color::color(background_color_));
-}
-
-
-void Text::breakParagraph(Cursor & cur, bool keep_layout)
+void Text::breakParagraph(Cursor & cur, bool inverse_logic)
 {
        BOOST_ASSERT(this == cur.text());
 
@@ -587,7 +366,7 @@ void Text::breakParagraph(Cursor & cur, bool keep_layout)
        pit_type cpit = cur.pit();
 
        TextClass const & tclass = cur.buffer().params().getTextClass();
-       Layout_ptr const & layout = cpar.layout();
+       LayoutPtr const & layout = cpar.layout();
 
        // this is only allowed, if the current paragraph is not empty
        // or caption and if it has not the keepempty flag active
@@ -604,11 +383,9 @@ void Text::breakParagraph(Cursor & cur, bool keep_layout)
                cpar.eraseChar(cur.pos(), cur.buffer().params().trackChanges);
 
        // What should the layout for the new paragraph be?
-       int preserve_layout = 0;
-       if (keep_layout)
-               preserve_layout = 2;
-       else
-               preserve_layout = layout->isEnvironment();
+       bool keep_layout = inverse_logic ? 
+               !layout->isEnvironment() 
+               : layout->isEnvironment();
 
        // We need to remember this before we break the paragraph, because
        // that invalidates the layout variable
@@ -618,7 +395,7 @@ void Text::breakParagraph(Cursor & cur, bool keep_layout)
        bool const isempty = cpar.allowEmpty() && cpar.empty();
 
        lyx::breakParagraph(cur.buffer().params(), paragraphs(), cpit,
-                        cur.pos(), preserve_layout);
+                        cur.pos(), keep_layout);
 
        // After this, neither paragraph contains any rows!
 
@@ -640,12 +417,7 @@ void Text::breakParagraph(Cursor & cur, bool keep_layout)
                        break; // the character couldn't be deleted physically due to change tracking
        }
 
-       ParIterator current_it(cur);
-       ParIterator last_it(cur);
-       ++last_it;
-       ++last_it;
-
-       updateLabels(cur.buffer(), current_it, last_it);
+       updateLabels(cur.buffer());
 
        // A singlePar update is not enough in this case.
        cur.updateFlags(Update::Force);
@@ -668,6 +440,7 @@ void Text::insertChar(Cursor & cur, char_type c)
 
        recordUndo(cur, Undo::INSERT);
 
+       TextMetrics const & tm = cur.bv().textMetrics(this);
        Buffer const & buffer = cur.buffer();
        Paragraph & par = cur.paragraph();
        // try to remove this
@@ -681,17 +454,17 @@ void Text::insertChar(Cursor & cur, char_type c)
                static docstring const number_unary_operators = from_ascii("+-");
                static docstring const number_seperators = from_ascii(".,:");
 
-               if (current_font.number() == Font::ON) {
+               if (cur.current_font.number() == Font::ON) {
                        if (!isDigit(c) && !contains(number_operators, c) &&
                            !(contains(number_seperators, c) &&
                              cur.pos() != 0 &&
                              cur.pos() != cur.lastpos() &&
-                             getFont(buffer, par, cur.pos()).number() == Font::ON &&
-                             getFont(buffer, par, cur.pos() - 1).number() == Font::ON)
+                             tm.getDisplayFont(pit, cur.pos()).number() == Font::ON &&
+                             tm.getDisplayFont(pit, cur.pos() - 1).number() == Font::ON)
                           )
                                number(cur); // Set current_font.number to OFF
                } else if (isDigit(c) &&
-                          real_current_font.isVisibleRightToLeft()) {
+                          cur.real_current_font.isVisibleRightToLeft()) {
                        number(cur); // Set current_font.number to ON
 
                        if (cur.pos() != 0) {
@@ -701,17 +474,63 @@ void Text::insertChar(Cursor & cur, char_type c)
                                     || par.isSeparator(cur.pos() - 2)
                                     || par.isNewline(cur.pos() - 2))
                                  ) {
-                                       setCharFont(buffer, pit, cur.pos() - 1, current_font);
+                                       setCharFont(buffer, pit, cur.pos() - 1, cur.current_font,
+                                               tm.font_);
                                } else if (contains(number_seperators, c)
                                     && cur.pos() >= 2
-                                    && getFont(buffer, par, cur.pos() - 2).number() == Font::ON) {
-                                       setCharFont(buffer, pit, cur.pos() - 1, current_font);
+                                    && tm.getDisplayFont(pit, cur.pos() - 2).number() == Font::ON) {
+                                       setCharFont(buffer, pit, cur.pos() - 1, cur.current_font,
+                                               tm.font_);
                                }
                        }
                }
        }
 
-       // First check, if there will be two blanks together or a blank at
+       // In Bidi text, we want spaces to be treated in a special way: spaces
+       // which are between words in different languages should get the 
+       // paragraph's language; otherwise, spaces should keep the language 
+       // they were originally typed in. This is only in effect while typing;
+       // after the text is already typed in, the user can always go back and
+       // explicitly set the language of a space as desired. But 99.9% of the
+       // time, what we're doing here is what the user actually meant.
+       // 
+       // The following cases are the ones in which the language of the space
+       // should be changed to match that of the containing paragraph. In the
+       // depictions, lowercase is LTR, uppercase is RTL, underscore (_) 
+       // represents a space, pipe (|) represents the cursor position (so the
+       // character before it is the one just typed in). The different cases
+       // are depicted logically (not visually), from left to right:
+       // 
+       // 1. A_a|
+       // 2. a_A|
+       //
+       // Theoretically, there are other situations that we should, perhaps, deal
+       // with (e.g.: a|_A, A|_a). In practice, though, there really isn't any 
+       // point (to understand why, just try to create this situation...).
+
+       if ((cur.pos() >= 2) && (par.isLineSeparator(cur.pos() - 1))) {
+               // get font in front and behind the space in question. But do NOT 
+               // use getFont(cur.pos()) because the character c is not inserted yet
+               Font const & pre_space_font  = tm.getDisplayFont(cur.pit(), cur.pos() - 2);
+               Font const & post_space_font = cur.real_current_font;
+               bool pre_space_rtl  = pre_space_font.isVisibleRightToLeft();
+               bool post_space_rtl = post_space_font.isVisibleRightToLeft();
+               
+               if (pre_space_rtl != post_space_rtl) {
+                       // Set the space's language to match the language of the 
+                       // adjacent character whose direction is the paragraph's
+                       // direction; don't touch other properties of the font
+                       Language const * lang = 
+                               (pre_space_rtl == par.isRTL(buffer.params())) ?
+                               pre_space_font.language() : post_space_font.language();
+
+                       Font space_font = tm.getDisplayFont(cur.pit(), cur.pos() - 1);
+                       space_font.setLanguage(lang);
+                       par.setFont(cur.pos() - 1, space_font);
+               }
+       }
+       
+       // Next check, if there will be two blanks together or a blank at
        // the beginning of a paragraph.
        // I decided to handle blanks like normal characters, the main
        // difference are the special checks when calculating the row.fill
@@ -742,7 +561,7 @@ void Text::insertChar(Cursor & cur, char_type c)
                }
        }
 
-       par.insertChar(cur.pos(), c, current_font, cur.buffer().params().trackChanges);
+       par.insertChar(cur.pos(), c, cur.current_font, cur.buffer().params().trackChanges);
        checkBufferStructure(cur.buffer(), cur);
 
 //             cur.updateFlags(Update::Force);
@@ -823,7 +642,6 @@ void Text::selectWord(Cursor & cur, word_location loc)
        cur.resetAnchor();
        setCursor(cur, to.pit(), to.pos());
        cur.setSelection();
-       cap::saveSelection(cur);
 }
 
 
@@ -858,7 +676,7 @@ void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
        bool endsBeforeEndOfPar = (endPos < pars_[endPit].size());
 
        // first, accept/reject changes within each individual paragraph (do not consider end-of-par)
-       
+
        for (pit_type pit = begPit; pit <= endPit; ++pit) {
                pos_type parSize = pars_[pit].size();
 
@@ -872,7 +690,7 @@ void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
                        continue;
 
                // do not consider last paragraph if the cursor ends at pos 0
-               if (pit == endPit && endPos == 0) 
+               if (pit == endPit && endPos == 0)
                        break; // last iteration anyway
 
                pos_type left  = (pit == begPit ? begPos : 0);
@@ -884,9 +702,9 @@ void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
                        pars_[pit].rejectChanges(cur.buffer().params(), left, right);
                }
        }
-       
+
        // next, accept/reject imaginary end-of-par characters
+
        for (pit_type pit = begPit; pit <= endPit; ++pit) {
                pos_type pos = pars_[pit].size();
 
@@ -933,7 +751,7 @@ void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
 
        deleteEmptyParagraphMechanism(begPit, endPit, cur.buffer().params().trackChanges);
 
-       // 
+       //
 
        finishUndo();
        cur.clearSelection();
@@ -945,36 +763,8 @@ void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
 
 void Text::acceptChanges(BufferParams const & bparams)
 {
-       pit_type pars_size = static_cast<pit_type>(pars_.size());
-
-       // first, accept changes within each individual paragraph
-       // (do not consider end-of-par)
-       for (pit_type pit = 0; pit < pars_size; ++pit) {
-               if (!pars_[pit].empty())   // prevent assertion failure 
-                       pars_[pit].acceptChanges(bparams, 0, pars_[pit].size());
-       }
-
-       // next, accept imaginary end-of-par characters
-       for (pit_type pit = 0; pit < pars_size; ++pit) {
-               pos_type pos = pars_[pit].size();
-
-               if (pars_[pit].isInserted(pos)) {
-                       pars_[pit].setChange(pos, Change(Change::UNCHANGED));
-               } else if (pars_[pit].isDeleted(pos)) {
-                       if (pit == pars_size - 1) {
-                               // we cannot remove a par break at the end of the last
-                               // paragraph; instead, we mark it unchanged
-                               pars_[pit].setChange(pos, Change(Change::UNCHANGED));
-                       } else {
-                               mergeParagraph(bparams, pars_, pit);
-                               --pit;
-                               --pars_size;
-                       }
-               }
-       }
-
-       // finally, invoke the DEPM
-       deleteEmptyParagraphMechanism(0, pars_size - 1, bparams.trackChanges);
+       lyx::acceptChanges(pars_, bparams);
+       deleteEmptyParagraphMechanism(0, pars_.size() - 1, bparams.trackChanges);
 }
 
 
@@ -983,9 +773,9 @@ void Text::rejectChanges(BufferParams const & bparams)
        pit_type pars_size = static_cast<pit_type>(pars_.size());
 
        // first, reject changes within each individual paragraph
-       // (do not consider end-of-par)         
+       // (do not consider end-of-par)
        for (pit_type pit = 0; pit < pars_size; ++pit) {
-               if (!pars_[pit].empty())   // prevent assertion failure 
+               if (!pars_[pit].empty())   // prevent assertion failure
                        pars_[pit].rejectChanges(bparams, 0, pars_[pit].size());
        }
 
@@ -1013,7 +803,6 @@ void Text::rejectChanges(BufferParams const & bparams)
 }
 
 
-// Delete from cursor up to the end of the current or next word.
 void Text::deleteWordForward(Cursor & cur)
 {
        BOOST_ASSERT(this == cur.text());
@@ -1030,7 +819,6 @@ void Text::deleteWordForward(Cursor & cur)
 }
 
 
-// Delete from cursor to start of current or prior word.
 void Text::deleteWordBackward(Cursor & cur)
 {
        BOOST_ASSERT(this == cur.text());
@@ -1048,27 +836,6 @@ void Text::deleteWordBackward(Cursor & cur)
 
 
 // Kill to end of line.
-void Text::deleteLineForward(Cursor & cur)
-{
-       BOOST_ASSERT(this == cur.text());
-       if (cur.lastpos() == 0) {
-               // Paragraph is empty, so we just go to the right
-               cursorRight(cur);
-       } else {
-               cur.resetAnchor();
-               cur.selection() = true; // to avoid deletion
-               cursorEnd(cur);
-               cur.setSelection();
-               // What is this test for ??? (JMarc)
-               if (!cur.selection())
-                       deleteWordForward(cur);
-               else
-                       cutSelection(cur, true, false);
-               checkBufferStructure(cur.buffer(), cur);
-       }
-}
-
-
 void Text::changeCase(Cursor & cur, Text::TextCase action)
 {
        BOOST_ASSERT(this == cur.text());
@@ -1102,7 +869,7 @@ void Text::changeCase(Cursor & cur, Text::TextCase action)
                pos_type pos = (pit == begPit ? begPos : 0);
                right = (pit == endPit ? endPos : parSize);
 
-               // process sequences of modified characters; in change 
+               // process sequences of modified characters; in change
                // tracking mode, this approach results in much better
                // usability than changing case on a char-by-char basis
                docstring changes;
@@ -1214,7 +981,7 @@ bool Text::erase(Cursor & cur)
                recordUndo(cur, Undo::DELETE);
                if(!par.eraseChar(cur.pos(), cur.buffer().params().trackChanges)) {
                        // the character has been logically deleted only => skip it
-                       cur.forwardPosNoDescend();
+                       cur.top().forwardPos();
                }
                checkBufferStructure(cur.buffer(), cur);
                needsUpdate = true;
@@ -1240,7 +1007,7 @@ bool Text::erase(Cursor & cur)
                cur.text()->setCursor(cur.top(), cur.pit(), cur.pos());
                checkBufferStructure(cur.buffer(), cur);
        }
-       
+
        return needsUpdate;
 }
 
@@ -1263,14 +1030,14 @@ bool Text::backspacePos0(Cursor & cur)
        Paragraph const & prevpar = prevcur.paragraph();
 
        // is it an empty paragraph?
-       if (cur.lastpos() == 0 
+       if (cur.lastpos() == 0
            || (cur.lastpos() == 1 && par.isSeparator(0))) {
                recordUndo(cur, Undo::ATOMIC, prevcur.pit(), cur.pit());
                plist.erase(boost::next(plist.begin(), cur.pit()));
                needsUpdate = true;
        }
        // is previous par empty?
-       else if (prevcur.lastpos() == 0 
+       else if (prevcur.lastpos() == 0
                 || (prevcur.lastpos() == 1 && prevpar.isSeparator(0))) {
                recordUndo(cur, Undo::ATOMIC, prevcur.pit(), cur.pit());
                plist.erase(boost::next(plist.begin(), prevcur.pit()));
@@ -1330,7 +1097,7 @@ bool Text::backspace(Cursor & cur)
        }
 
        if (cur.pos() == cur.lastpos())
-               setCurrentFont(cur);
+               cur.setCurrentFont();
 
        needsUpdate |= handleBibitems(cur);
 
@@ -1345,7 +1112,7 @@ bool Text::backspace(Cursor & cur)
 bool Text::dissolveInset(Cursor & cur) {
        BOOST_ASSERT(this == cur.text());
 
-       if (isMainText(*cur.bv().buffer()) || cur.inset().nargs() != 1)
+       if (isMainText(cur.bv().buffer()) || cur.inset().nargs() != 1)
                return false;
 
        recordUndoInset(cur);
@@ -1374,7 +1141,7 @@ bool Text::dissolveInset(Cursor & cur) {
                                        b.getLanguage());
                }
 
-               pasteParagraphList(cur, plist, b.params().textclass,
+               pasteParagraphList(cur, plist, b.params().getTextClassPtr(),
                                   b.errorList("Paste"));
                // restore position
                cur.pit() = std::min(cur.lastpit(), spit);
@@ -1386,129 +1153,6 @@ bool Text::dissolveInset(Cursor & cur) {
 }
 
 
-// only used for inset right now. should also be used for main text
-void Text::draw(PainterInfo & pi, int x, int y) const
-{
-       paintTextInset(*this, pi, x, y);
-}
-
-
-// only used for inset right now. should also be used for main text
-void Text::drawSelection(PainterInfo & pi, int x, int) const
-{
-       Cursor & cur = pi.base.bv->cursor();
-       if (!cur.selection())
-               return;
-       if (!ptr_cmp(cur.text(), this))
-               return;
-
-       LYXERR(Debug::DEBUG)
-               << BOOST_CURRENT_FUNCTION
-               << "draw selection at " << x
-               << endl;
-
-       DocIterator beg = cur.selectionBegin();
-       DocIterator end = cur.selectionEnd();
-
-       BufferView & bv = *pi.base.bv;
-       Buffer const & buffer = *bv.buffer();
-
-       // the selection doesn't touch the visible screen
-       if (bv_funcs::status(&bv, beg) == bv_funcs::CUR_BELOW
-           || bv_funcs::status(&bv, end) == bv_funcs::CUR_ABOVE)
-               return;
-
-       Paragraph const & par1 = pars_[beg.pit()];
-       Paragraph const & par2 = pars_[end.pit()];
-       TextMetrics const & tm = bv.textMetrics(this);
-       ParagraphMetrics const & pm1 = tm.parMetrics(beg.pit());
-       ParagraphMetrics const & pm2 = tm.parMetrics(end.pit());
-
-       bool const above = (bv_funcs::status(&bv, beg)
-                           == bv_funcs::CUR_ABOVE);
-       bool const below = (bv_funcs::status(&bv, end)
-                           == bv_funcs::CUR_BELOW);
-       int y1,y2,x1,x2;
-       if (above) {
-               y1 = 0;
-               y2 = 0;
-               x1 = 0;
-               x2 = tm.width();
-       } else {
-               Row const & row1 = pm1.getRow(beg.pos(), beg.boundary());
-               y1 = bv_funcs::getPos(bv, beg, beg.boundary()).y_ - row1.ascent();
-               y2 = y1 + row1.height();
-               int const startx = cursorX(bv, beg.top(), beg.boundary());
-               if (!isRTL(buffer, par1)) {
-                       x1 = startx;
-                       x2 = 0 + tm.width();
-               }
-               else {
-                       x1 = 0;
-                       x2 = startx;
-               }
-       }
-
-       int Y1,Y2,X1,X2;
-       if (below) {
-               Y1 = bv.workHeight();
-               Y2 = bv.workHeight();
-               X1 = 0;
-               X2 = tm.width();
-       } else {
-               Row const & row2 = pm2.getRow(end.pos(), end.boundary());
-               Y1 = bv_funcs::getPos(bv, end, end.boundary()).y_ - row2.ascent();
-               Y2 = Y1 + row2.height();
-               int const endx = cursorX(bv, end.top(), end.boundary());
-               if (!isRTL(buffer, par2)) {
-                       X1 = 0;
-                       X2 = endx;
-               }
-               else {
-                       X1 = endx;
-                       X2 = 0 + tm.width();
-               }
-       }
-
-       if (!above && !below && &pm1.getRow(beg.pos(), beg.boundary())
-           == &pm2.getRow(end.pos(), end.boundary()))
-       {
-               // paint only one rectangle
-               int const b( !isRTL(*bv.buffer(), par1) ? x + x1 : x + X1 );
-               int const w( !isRTL(*bv.buffer(), par1) ? X2 - x1 : x2 - X1 );
-               pi.pain.fillRectangle(b, y1, w, y2 - y1, Color::selection);
-               return;
-       }
-
-       LYXERR(Debug::DEBUG) << " y1: " << y1 << " y2: " << y2
-               << "X1:" << X1 << " x2: " << X2 << " wid: " << tm.width()
-               << endl;
-
-       // paint upper rectangle
-       pi.pain.fillRectangle(x + x1, y1, x2 - x1, y2 - y1,
-                                     Color::selection);
-       // paint bottom rectangle
-       pi.pain.fillRectangle(x + X1, Y1, X2 - X1, Y2 - Y1,
-                                     Color::selection);
-       // paint center rectangle
-       pi.pain.fillRectangle(x, y2, tm.width(),
-                             Y1 - y2, Color::selection);
-}
-
-
-bool Text::isLastRow(pit_type pit, Row const & row) const
-{
-       return row.endpos() >= pars_[pit].size()
-               && pit + 1 == pit_type(paragraphs().size());
-}
-
-
-bool Text::isFirstRow(pit_type pit, Row const & row) const
-{
-       return row.pos() == 0 && pit == 0;
-}
-
-
 void Text::getWord(CursorSlice & from, CursorSlice & to,
        word_location const loc)
 {
@@ -1556,6 +1200,10 @@ void Text::write(Buffer const & buf, std::ostream & os) const
        depth_type dth = 0;
        for (; pit != end; ++pit)
                pit->write(buf, os, buf.params(), dth);
+
+       // Close begin_deeper
+       for(; dth > 0; --dth)
+               os << "\n\\end_deeper";
 }
 
 
@@ -1610,123 +1258,6 @@ bool Text::read(Buffer const & buf, Lexer & lex, ErrorList & errorList)
        return true;
 }
 
-int Text::cursorX(BufferView const & bv, CursorSlice const & sl,
-               bool boundary) const
-{
-       TextMetrics const & tm = bv.textMetrics(sl.text());
-       pit_type const pit = sl.pit();
-       Paragraph const & par = pars_[pit];
-       ParagraphMetrics const & pm = tm.parMetrics(pit);
-       if (pm.rows().empty())
-               return 0;
-
-       pos_type ppos = sl.pos();
-       // Correct position in front of big insets
-       bool const boundary_correction = ppos != 0 && boundary;
-       if (boundary_correction)
-               --ppos;
-
-       Row const & row = pm.getRow(sl.pos(), boundary);
-
-       pos_type cursor_vpos = 0;
-
-       Buffer const & buffer = *bv.buffer();
-       RowMetrics const m = tm.computeRowMetrics(pit, row);
-       double x = m.x;
-
-       pos_type const row_pos  = row.pos();
-       pos_type const end      = row.endpos();
-
-       if (end <= row_pos)
-               cursor_vpos = row_pos;
-       else if (ppos >= end)
-               cursor_vpos = isRTL(buffer, par) ? row_pos : end;
-       else if (ppos > row_pos && ppos >= end)
-               // Place cursor after char at (logical) position pos - 1
-               cursor_vpos = (bidi.level(ppos - 1) % 2 == 0)
-                       ? bidi.log2vis(ppos - 1) + 1 : bidi.log2vis(ppos - 1);
-       else
-               // Place cursor before char at (logical) position ppos
-               cursor_vpos = (bidi.level(ppos) % 2 == 0)
-                       ? bidi.log2vis(ppos) : bidi.log2vis(ppos) + 1;
-
-       pos_type body_pos = par.beginOfBody();
-       if (body_pos > 0 &&
-           (body_pos > end || !par.isLineSeparator(body_pos - 1)))
-               body_pos = 0;
-
-       // Use font span to speed things up, see below
-       FontSpan font_span;
-       Font font;
-       FontMetrics const & labelfm = theFontMetrics(
-               getLabelFont(buffer, par));
-
-       for (pos_type vpos = row_pos; vpos < cursor_vpos; ++vpos) {
-               pos_type pos = bidi.vis2log(vpos);
-               if (body_pos > 0 && pos == body_pos - 1) {
-                       // FIXME UNICODE
-                       docstring const lsep = from_utf8(par.layout()->labelsep);
-                       x += m.label_hfill + labelfm.width(lsep);
-                       if (par.isLineSeparator(body_pos - 1))
-                               x -= singleWidth(buffer, par, body_pos - 1);
-               }
-
-               // Use font span to speed things up, see above
-               if (pos < font_span.first || pos > font_span.last) {
-                       font_span = par.fontSpan(pos);
-                       font = getFont(buffer, par, pos);
-               }
-
-               x += singleWidth(par, pos, par.getChar(pos), font);
-
-               if (par.hfillExpansion(row, pos))
-                       x += (pos >= body_pos) ? m.hfill : m.label_hfill;
-               else if (par.isSeparator(pos) && pos >= body_pos)
-                       x += m.separator;
-       }
-
-       // see correction above
-       if (boundary_correction)
-               if (getFont(buffer, par, ppos).isVisibleRightToLeft())
-                       x -= singleWidth(buffer, par, ppos);
-               else
-                       x += singleWidth(buffer, par, ppos);
-
-       // Make sure inside an inset we always count from the left
-       // edge (bidi!) -- MV
-       if (sl.pos() < par.size()) {
-               font = getFont(buffer, par, sl.pos());
-               if (!boundary && font.isVisibleRightToLeft()
-                 && par.isInset(sl.pos()))
-                       x -= par.getInset(sl.pos())->width();
-       }
-       return int(x);
-}
-
-
-int Text::cursorY(BufferView const & bv, CursorSlice const & sl, bool boundary) const
-{
-       //lyxerr << "Text::cursorY: boundary: " << boundary << std::endl;
-       ParagraphMetrics const & pm = bv.parMetrics(this, sl.pit());
-       if (pm.rows().empty())
-               return 0;
-
-       int h = 0;
-       h -= bv.parMetrics(this, 0).rows()[0].ascent();
-       for (pit_type pit = 0; pit < sl.pit(); ++pit) {
-               h += bv.parMetrics(this, pit).height();
-       }
-       int pos = sl.pos();
-       if (pos && boundary)
-               --pos;
-       size_t const rend = pm.pos2row(pos);
-       for (size_t rit = 0; rit != rend; ++rit)
-               h += pm.rows()[rit].height();
-       h += pm.rows()[rend].ascent();
-       return h;
-}
-
-
 // Returns the current font and depth as a message.
 docstring Text::currentState(Cursor & cur)
 {
@@ -1753,7 +1284,7 @@ docstring Text::currentState(Cursor & cur)
        // I think we should only show changes from the default
        // font. (Asger)
        // No, from the document font (MV)
-       Font font = real_current_font;
+       Font font = cur.real_current_font;
        font.reduce(buf.params().getFont());
 
        os << bformat(_("Font: %1$s"), font.stateText(&buf.params()));
@@ -1811,7 +1342,7 @@ docstring Text::getPossibleLabel(Cursor & cur) const
 {
        pit_type pit = cur.pit();
 
-       Layout_ptr layout = pars_[pit].layout();
+       LayoutPtr layout = pars_[pit].layout();
 
        docstring text;
        docstring par_text = pars_[pit].asString(cur.buffer(), false);
@@ -1835,7 +1366,7 @@ docstring Text::getPossibleLabel(Cursor & cur) const
 
        // For section, subsection, etc...
        if (layout->latextype == LATEX_PARAGRAPH && pit != 0) {
-               Layout_ptr const & layout2 = pars_[pit - 1].layout();
+               LayoutPtr const & layout2 = pars_[pit - 1].layout();
                if (layout2->latextype != LATEX_PARAGRAPH) {
                        --pit;
                        layout = layout2;
@@ -1845,17 +1376,17 @@ docstring Text::getPossibleLabel(Cursor & cur) const
                name = from_ascii(layout->latexname());
 
        // for captions, we just take the caption type
-       Inset * caption_inset = cur.innerInsetOfType(Inset::CAPTION_CODE);
+       Inset * caption_inset = cur.innerInsetOfType(CAPTION_CODE);
        if (caption_inset)
                name = from_ascii(static_cast<InsetCaption *>(caption_inset)->type());
 
        // If none of the above worked, we'll see if we're inside various
        // types of insets and take our abbreviation from them.
        if (name.empty()) {
-               Inset::Code const codes[] = {
-                       Inset::FLOAT_CODE, 
-                       Inset::WRAP_CODE,
-                       Inset::FOOT_CODE
+               InsetCode const codes[] = {
+                       FLOAT_CODE,
+                       WRAP_CODE,
+                       FOOT_CODE
                };
                for (unsigned int i = 0; i < (sizeof codes / sizeof codes[0]); ++i) {
                        Inset * float_inset = cur.innerInsetOfType(codes[i]);
@@ -1865,7 +1396,7 @@ docstring Text::getPossibleLabel(Cursor & cur) const
                        }
                }
        }
-       
+
        // Create a correct prefix for prettyref
        if (name == "theorem")
                name = from_ascii("thm");
@@ -1873,7 +1404,7 @@ docstring Text::getPossibleLabel(Cursor & cur) const
                name = from_ascii("fn");
        else if (name == "listing")
                name = from_ascii("lst");
-               
+
        if (!name.empty())
                text = name.substr(0, 3) + ':' + text;
 
@@ -1881,56 +1412,6 @@ docstring Text::getPossibleLabel(Cursor & cur) const
 }
 
 
-void Text::setCursorFromCoordinates(Cursor & cur, int const x, int const y)
-{
-       BOOST_ASSERT(this == cur.text());
-       pit_type pit = getPitNearY(cur.bv(), y);
-
-       TextMetrics const & tm = cur.bv().textMetrics(this);
-       ParagraphMetrics const & pm = tm.parMetrics(pit);
-
-       int yy = cur.bv().coordCache().get(this, pit).y_ - pm.ascent();
-       LYXERR(Debug::DEBUG)
-               << BOOST_CURRENT_FUNCTION
-               << ": x: " << x
-               << " y: " << y
-               << " pit: " << pit
-               << " yy: " << yy << endl;
-
-       int r = 0;
-       BOOST_ASSERT(pm.rows().size());
-       for (; r < int(pm.rows().size()) - 1; ++r) {
-               Row const & row = pm.rows()[r];
-               if (int(yy + row.height()) > y)
-                       break;
-               yy += row.height();
-       }
-
-       Row const & row = pm.rows()[r];
-
-       LYXERR(Debug::DEBUG)
-               << BOOST_CURRENT_FUNCTION
-               << ": row " << r
-               << " from pos: " << row.pos()
-               << endl;
-
-       bool bound = false;
-       int xx = x;
-       pos_type const pos = row.pos() 
-               + tm.getColumnNearX(pit, row, xx, bound);
-
-       LYXERR(Debug::DEBUG)
-               << BOOST_CURRENT_FUNCTION
-               << ": setting cursor pit: " << pit
-               << " pos: " << pos
-               << endl;
-
-       setCursor(cur, pit, pos, true, bound);
-       // remember new position.
-       cur.setTargetX();
-}
-
-
 void Text::charsTranspose(Cursor & cur)
 {
        BOOST_ASSERT(this == cur.text());
@@ -1943,7 +1424,7 @@ void Text::charsTranspose(Cursor & cur)
 
        Paragraph & par = cur.paragraph();
 
-       // Get the positions of the characters to be transposed. 
+       // Get the positions of the characters to be transposed.
        pos_type pos1 = pos - 1;
        pos_type pos2 = pos;
 
@@ -1966,7 +1447,7 @@ void Text::charsTranspose(Cursor & cur)
        char_type char1 = par.getChar(pos1);
        Font const font1 =
                par.getFontSettings(cur.buffer().params(), pos1);
-       
+
        char_type char2 = par.getChar(pos2);
        Font const font2 =
                par.getFontSettings(cur.buffer().params(), pos2);