]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettext.C
small cleanup
[lyx.git] / src / insets / insettext.C
index f8c9bcdcd5106720de512c776b7a1b419363e4d0..3b50c482b64f73a0d359e3fb39c802d5da0d6209 100644 (file)
 
 #include <config.h>
 
-
 #include "insettext.h"
 
 #include "buffer.h"
 #include "BufferView.h"
+#include "bufferview_funcs.h"
 #include "CutAndPaste.h"
 #include "debug.h"
+#include "dimension.h"
 #include "funcrequest.h"
 #include "gettext.h"
+#include "errorlist.h"
 #include "intl.h"
 #include "LaTeXFeatures.h"
 #include "LColor.h"
+#include "Lsstream.h"
 #include "lyxfont.h"
 #include "lyxcursor.h"
 #include "lyxfind.h"
@@ -38,6 +41,7 @@
 #include "sgml.h"
 #include "rowpainter.h"
 #include "insetnewline.h"
+#include "metricsinfo.h"
 
 #include "frontends/Alert.h"
 #include "frontends/Dialogs.h"
@@ -56,7 +60,6 @@
 #include <fstream>
 #include <algorithm>
 #include <cstdlib>
-//#include <csignal>
 
 using std::ostream;
 using std::ifstream;
@@ -67,149 +70,116 @@ using std::make_pair;
 using std::vector;
 using std::pair;
 using std::for_each;
+using std::auto_ptr;
+
+using namespace lyx::support;
+using namespace lyx::graphics;
+using namespace bv_funcs;
 
 using lyx::pos_type;
 using lyx::textclass_type;
 
-extern unsigned char getCurrentTextClass(Buffer *);
-extern bool math_insert_greek(BufferView *, char);
-extern int greek_kb_flag;
-
-
 // These functions should probably go into bufferview_funcs somehow (Jug)
 
-void InsetText::saveLyXTextState(LyXText * t) const
+void InsetText::saveLyXTextState() const
 {
        // check if my paragraphs are still valid
-       ParagraphList::iterator it = paragraphs.begin();
-       ParagraphList::iterator end = paragraphs.end();
+       ParagraphList::iterator it = const_cast<ParagraphList&>(paragraphs).begin();
+       ParagraphList::iterator end = const_cast<ParagraphList&>(paragraphs).end();
        for (; it != end; ++it) {
-               if (&*it == t->cursor.par())
+               if (it == text_.cursor.par())
                        break;
        }
 
-       if (it != end && t->cursor.pos() <= it->size()) {
-               sstate.lpar = t->cursor.par();
-               sstate.pos = t->cursor.pos();
-               sstate.boundary = t->cursor.boundary();
-               sstate.selstartpar = t->selection.start.par();
-               sstate.selstartpos = t->selection.start.pos();
-               sstate.selstartboundary = t->selection.start.boundary();
-               sstate.selendpar = t->selection.end.par();
-               sstate.selendpos = t->selection.end.pos();
-               sstate.selendboundary = t->selection.end.boundary();
-               sstate.selection = t->selection.set();
-               sstate.mark_set = t->selection.mark();
-               sstate.refresh = t->refresh_row != 0;
-       } else {
-               sstate.lpar = 0;
-       }
+       if (it != end && text_.cursor.pos() <= it->size())
+               sstate = text_; // slicing intended
+       else
+               sstate.cursor.par(end);
 }
 
 
-void InsetText::restoreLyXTextState(BufferView * bv, LyXText * t) const
+void InsetText::restoreLyXTextState() const
 {
-       if (sstate.lpar) {
-               t->selection.set(true);
-               /* at this point just to avoid the Delete-Empty-Paragraph
-                * Mechanism when setting the cursor */
-               t->selection.mark(sstate.mark_set);
-               if (sstate.selection) {
-                       t->setCursor(bv, sstate.selstartpar, sstate.selstartpos,
-                                    true, sstate.selstartboundary);
-                       t->selection.cursor = t->cursor;
-                       t->setCursor(bv, sstate.selendpar, sstate.selendpos,
-                                    true, sstate.selendboundary);
-                       t->setSelection(bv);
-                       t->setCursor(bv, sstate.lpar, sstate.pos);
-               } else {
-                       t->setCursor(bv, sstate.lpar, sstate.pos, true, sstate.boundary);
-                       t->selection.cursor = t->cursor;
-                       t->selection.set(false);
-               }
-               if (sstate.refresh) {
-               }
-       }
-}
-
+       if (sstate.cursor.par() == const_cast<ParagraphList&>(paragraphs).end())
+               return;
 
-InsetText::InnerCache::InnerCache(boost::shared_ptr<LyXText> t)
-{
-       text = t;
-       remove = false;
+       text_.selection.set(true);
+       // at this point just to avoid the DEPM when setting the cursor
+       text_.selection.mark(sstate.selection.mark());
+       if (sstate.selection.set()) {
+               text_.setCursor(sstate.selection.start.par(),
+                       sstate.selection.start.pos(),
+                       true, sstate.selection.start.boundary());
+               text_.selection.cursor = text_.cursor;
+               text_.setCursor(sstate.selection.end.par(), sstate.selection.end.pos(),
+                       true, sstate.selection.end.boundary());
+               text_.setSelection();
+               text_.setCursor(sstate.cursor.par(), sstate.cursor.pos());
+       } else {
+               text_.setCursor(sstate.cursor.par(), sstate.cursor.pos(),
+                       true, sstate.cursor.boundary());
+               text_.selection.cursor = text_.cursor;
+               text_.selection.set(false);
+       }
 }
 
 
 InsetText::InsetText(BufferParams const & bp)
-       : UpdatableInset(), lt(0), in_update(false), do_resize(0),
-         do_reinit(false)
+       : UpdatableInset(), text_(0, this)
 {
-       paragraphs.set(new Paragraph);
+       paragraphs.push_back(Paragraph());
        paragraphs.begin()->layout(bp.getLyXTextClass().defaultLayout());
        if (bp.tracking_changes)
                paragraphs.begin()->trackChanges();
-       init();
+       init(0);
 }
 
 
-InsetText::InsetText(InsetText const & in, bool same_id)
-       : UpdatableInset(in, same_id), lt(0), in_update(false), do_resize(0),
-         do_reinit(false)
+InsetText::InsetText(InsetText const & in)
+       : UpdatableInset(in), text_(0, this)
 {
-       init(&in, same_id);
+       init(&in);
 }
 
 
 InsetText & InsetText::operator=(InsetText const & it)
 {
        init(&it);
-       return * this;
+       return *this;
 }
 
 
-void InsetText::init(InsetText const * ins, bool same_id)
+void InsetText::init(InsetText const * ins)
 {
        if (ins) {
-               setParagraphData(&*(ins->paragraphs.begin()), same_id);
+               textwidth_ = ins->textwidth_;
+               text_.bv_owner = ins->text_.bv_owner;
+               setParagraphData(ins->paragraphs);
                autoBreakRows = ins->autoBreakRows;
                drawFrame_ = ins->drawFrame_;
                frame_color = ins->frame_color;
-               if (same_id)
-                       id_ = ins->id_;
        } else {
-               for_each(paragraphs.begin(), paragraphs.end(),
-                        boost::bind(&Paragraph::setInsetOwner, _1, this));
-
-               the_locking_inset = 0;
+               textwidth_ = 0; // unbounded
                drawFrame_ = NEVER;
                frame_color = LColor::insetframe;
                autoBreakRows = false;
        }
+       the_locking_inset = 0;
+       for_each(paragraphs.begin(), paragraphs.end(),
+                boost::bind(&Paragraph::setInsetOwner, _1, this));
        top_y = 0;
-       insetAscent = 0;
-       insetDescent = 0;
-       insetWidth = 0;
-       old_max_width = 0;
        no_selection = true;
        need_update = FULL;
        drawTextXOffset = 0;
        drawTextYOffset = 0;
        locked = false;
-       old_par = 0;
+       old_par = paragraphs.end();
        last_drawn_width = -1;
-       frame_is_visible = false;
-       cached_bview = 0;
-       sstate.lpar = 0;
+       sstate.cursor.par(paragraphs.end());
        in_insetAllowed = false;
 }
 
 
-InsetText::~InsetText()
-{
-       paragraphs.clear();
-}
-
-
 void InsetText::clear(bool just_mark_erased)
 {
        if (just_mark_erased) {
@@ -226,7 +196,7 @@ void InsetText::clear(bool just_mark_erased)
        LyXLayout_ptr old_layout = paragraphs.begin()->layout();
 
        paragraphs.clear();
-       paragraphs.set(new Paragraph);
+       paragraphs.push_back(Paragraph());
        paragraphs.begin()->setInsetOwner(this);
        paragraphs.begin()->layout(old_layout);
 
@@ -235,9 +205,9 @@ void InsetText::clear(bool just_mark_erased)
 }
 
 
-Inset * InsetText::clone(Buffer const &, bool same_id) const
+auto_ptr<InsetBase> InsetText::clone() const
 {
-       return new InsetText(*this, same_id);
+       return auto_ptr<InsetBase>(new InsetText(*this));
 }
 
 
@@ -250,8 +220,8 @@ void InsetText::write(Buffer const * buf, ostream & os) const
 
 void InsetText::writeParagraphData(Buffer const * buf, ostream & os) const
 {
-       ParagraphList::iterator it = paragraphs.begin();
-       ParagraphList::iterator end = paragraphs.end();
+       ParagraphList::const_iterator it = paragraphs.begin();
+       ParagraphList::const_iterator end = paragraphs.end();
        Paragraph::depth_type dth = 0;
        for (; it != end; ++it) {
                it->write(buf, os, buf->params, dth);
@@ -304,372 +274,176 @@ void InsetText::read(Buffer const * buf, LyXLex & lex)
 }
 
 
-int InsetText::ascent(BufferView * bv, LyXFont const &) const
+void InsetText::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       insetAscent = getLyXText(bv)->firstRow()->ascent_of_text() +
-               TEXT_TO_INSET_OFFSET;
-       return insetAscent;
-}
-
+       //lyxerr << "InsetText::metrics: width: " << mi.base.textwidth << "\n";
 
-int InsetText::descent(BufferView * bv, LyXFont const &) const
-{
-       LyXText * llt = getLyXText(bv);
-       insetDescent = llt->height - llt->firstRow()->ascent_of_text() +
-               TEXT_TO_INSET_OFFSET;
-       return insetDescent;
+       textwidth_ = mi.base.textwidth;
+       BufferView * bv = mi.base.bv;
+       setViewCache(bv);
+       text_.metrics(mi, dim);
+       dim.asc += TEXT_TO_INSET_OFFSET;
+       dim.des += TEXT_TO_INSET_OFFSET;
+       dim.wid += 2 * TEXT_TO_INSET_OFFSET;
+       dim.wid = max(dim.wid, 10);
+       dim_ = dim;
 }
 
 
-int InsetText::width(BufferView * bv, LyXFont const &) const
+int InsetText::textWidth() const
 {
-       insetWidth = max(textWidth(bv), (int)getLyXText(bv)->width) +
-               (2 * TEXT_TO_INSET_OFFSET);
-       insetWidth = max(insetWidth, 10);
-       return insetWidth;
+       return textwidth_;
 }
 
 
-int InsetText::textWidth(BufferView * bv, bool fordraw) const
-{
-       int w;
-       if (!autoBreakRows) {
-               w = -1;
-       } else {
-               w = getMaxWidth(bv, this);
-       }
-       if (fordraw) {
-               return max(w - (2 * TEXT_TO_INSET_OFFSET),
-                          (int)getLyXText(bv)->width);
-       } else if (w < 0) {
-           return -1;
-       }
-       return w - (2 * TEXT_TO_INSET_OFFSET);
-}
-
-
-void InsetText::draw(BufferView * bv, LyXFont const & f,
-                    int baseline, float & x, bool cleared) const
+void InsetText::draw(PainterInfo & pi, int x, int baseline) const
 {
        if (nodraw())
                return;
 
-       Painter & pain = bv->painter();
+       // update our idea of where we are. Clearly, we should
+       // not have to know this information.
+       top_x = x;
 
-       // this is the first thing we have to ask because if the x pos
-       // changed we have to do a complete rebreak of the text as we
-       // may have few space to draw in. Well we should check on this too
-       int old_x = top_x;
-       if (top_x != int(x)) {
-               top_x = int(x);
-               topx_set = true;
-               int nw = getMaxWidth(bv, this);
-               if (nw > 0 && old_max_width != nw) {
-                       need_update = INIT;
-                       old_max_width = nw;
-                       bv->text->status(bv, LyXText::CHANGED_IN_DRAW);
-                       return;
-               }
-       }
+       int const start_x = x;
 
-       // call these methods so that insetWidth, insetAscent and
-       // insetDescent have the right values.
-       width(bv, f);
-       ascent(bv, f);
-       descent(bv, f);
+       BufferView * bv = pi.base.bv;
+       Painter & pain = pi.pain;
 
        // repaint the background if needed
-       if (cleared && backgroundColor() != LColor::background) {
-               clearInset(bv, baseline, cleared);
-       }
+       if (backgroundColor() != LColor::background)
+               clearInset(bv, start_x + TEXT_TO_INSET_OFFSET, baseline);
 
        // no draw is necessary !!!
-       if ((drawFrame_ == LOCKED) && !locked && paragraphs.begin()->empty()) {
+       if (drawFrame_ == LOCKED && !locked && paragraphs.begin()->empty()) {
                top_baseline = baseline;
-               x += width(bv, f);
-               if (need_update & CLEAR_FRAME)
-                       clearFrame(pain, cleared);
                need_update = NONE;
                return;
        }
 
        if (!owner())
-               x += static_cast<float>(scroll());
-
-       // if top_x differs we did it already
-       if (!cleared && (old_x == int(x))
-           && ((need_update&(INIT|FULL)) || (top_baseline != baseline)
-               ||(last_drawn_width != insetWidth)))
-       {
-               // Condition necessary to eliminate bug 59 attachment 37
-               if (baseline > 0)
-                       clearInset(bv, baseline, cleared);
-       }
-
-       if (cleared)
-               frame_is_visible = false;
-
-       if (!cleared && (need_update == NONE)) {
-               if (locked)
-                       drawFrame(pain, cleared);
-               return;
-       }
+               x += scroll();
 
        top_baseline = baseline;
-       top_y = baseline - insetAscent;
+       top_y = baseline - dim_.asc;
 
-       if (last_drawn_width != insetWidth) {
-               if (!cleared)
-                       clearInset(bv, baseline, cleared);
+       if (last_drawn_width != dim_.wid) {
                need_update |= FULL;
-               last_drawn_width = insetWidth;
+               last_drawn_width = dim_.wid;
        }
 
-       if (the_locking_inset && (cpar(bv) == inset_par)
-               && (cpos(bv) == inset_pos)) {
-               inset_x = cix(bv) - top_x + drawTextXOffset;
-               inset_y = ciy(bv) + drawTextYOffset;
-       }
-       if (!cleared && (need_update == CURSOR)
-           && !getLyXText(bv)->selection.set()) {
-               drawFrame(pain, cleared);
-               x += insetWidth;
-               need_update = NONE;
-               return;
-       }
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
+       if (the_locking_inset && cpar() == inset_par && cpos() == inset_pos) {
+               inset_x = cix(bv) - x + drawTextXOffset;
+               inset_y = ciy() + drawTextYOffset;
        }
+
        x += TEXT_TO_INSET_OFFSET;
 
-       Row * row = lt->firstRow();
-       int y_offset = baseline - row->ascent_of_text();
+       RowList::iterator rowit = text_.rows().begin();
+       RowList::iterator end = text_.rows().end();
+
+       int y_offset = baseline - rowit->ascent_of_text();
        int ph = pain.paperHeight();
        int first = 0;
        int y = y_offset;
-       while ((row != 0) && ((y+row->height()) <= 0)) {
-               y += row->height();
-               first += row->height();
-               row = row->next();
+       while (rowit != end && y + rowit->height() <= 0) {
+               y += rowit->height();
+               first += rowit->height();
+               ++rowit;
        }
        if (y_offset < 0) {
-               lt->top_y(-y_offset);
+               text_.top_y(-y_offset);
                first = y;
                y_offset = 0;
        } else {
-               lt->top_y(first);
+               text_.top_y(first);
                first = 0;
        }
-       if (cleared || (need_update&(INIT|FULL))) {
-               int yf = y_offset + first;
-               y = 0;
-               while ((row != 0) && (yf < ph)) {
-                       Row * prev = row->previous();
-                       RowPainter rp(*bv, *lt, *row);
-                       if (rp.paint(y + y_offset + first, int(x), y + lt->top_y(), cleared))
-                               lt->markChangeInDraw(bv, row, prev);
-                       if (bv->text->status() == LyXText::CHANGED_IN_DRAW) {
-                               lt->need_break_row = row;
-                               lt->fullRebreak(bv);
-                               lt->setCursor(bv, lt->cursor.par(),
-                                             lt->cursor.pos());
-                               if (lt->selection.set()) {
-                                       lt->setCursor(bv, lt->selection.start,
-                                                     lt->selection.start.par(),
-                                                     lt->selection.start.pos());
-                                       lt->setCursor(bv, lt->selection.end,
-                                                     lt->selection.end.par(),
-                                                     lt->selection.end.pos());
-                               }
-                               break;
-                       }
-                       y += row->height();
-                       yf += row->height();
-                       row = row->next();
-               }
-       } else if (!locked) {
-               if (need_update & CURSOR) {
-                       bv->screen().toggleSelection(lt, bv, true, y_offset,int(x));
-                       lt->clearSelection();
-                       lt->selection.cursor = lt->cursor;
-               }
-               bv->screen().update(lt, bv, y_offset, int(x));
-       } else {
-               locked = false;
-               if (need_update & SELECTION) {
-                       bv->screen().toggleToggle(lt, bv, y_offset, int(x));
-               } else if (need_update & CURSOR) {
-                       bv->screen().toggleSelection(lt, bv, true, y_offset,int(x));
-                       lt->clearSelection();
-                       lt->selection.cursor = lt->cursor;
-               }
-               bv->screen().update(lt, bv, y_offset, int(x));
-               locked = true;
-       }
 
-       lt->refresh_y = 0;
-       lt->status(bv, LyXText::UNCHANGED);
-       if ((drawFrame_ == ALWAYS) ||
-               ((cleared || (need_update != CURSOR_PAR)) &&
-                (drawFrame_ == LOCKED) && locked))
-       {
-               drawFrame(pain, cleared);
-       } else if (need_update & CLEAR_FRAME) {
-               clearFrame(pain, cleared);
-       }
+       int yf = y_offset + first;
+       y = 0;
 
-       x += insetWidth - TEXT_TO_INSET_OFFSET;
+       bv->hideCursor();
 
-       if (bv->text->status() == LyXText::CHANGED_IN_DRAW) {
-               need_update |= FULL;
-       } else if (need_update != INIT) {
-               need_update = NONE;
+       while (rowit != end && yf < ph) {
+               paintRows(*bv, text_, rowit,
+                       y + y_offset + first, int(x), y + text_.top_y());
+               y += rowit->height();
+               yf += rowit->height();
+               ++rowit;
        }
-       if (clear)
-               lt = 0;
-}
 
+       text_.clearPaint();
 
-void InsetText::drawFrame(Painter & pain, bool cleared) const
-{
-       static int const ttoD2 = TEXT_TO_INSET_OFFSET / 2;
-       if (!frame_is_visible || cleared) {
-               frame_x = top_x + ttoD2;
-               frame_y = top_baseline - insetAscent + ttoD2;
-               frame_w = insetWidth - TEXT_TO_INSET_OFFSET;
-               frame_h = insetAscent + insetDescent - TEXT_TO_INSET_OFFSET;
-               pain.rectangle(frame_x, frame_y, frame_w, frame_h,
-                              frame_color);
-               frame_is_visible = true;
+       if (drawFrame_ == ALWAYS || (drawFrame_ == LOCKED && locked)) {
+               drawFrame(pain, int(start_x));
        }
-}
-
 
-void InsetText::clearFrame(Painter & pain, bool cleared) const
-{
-       if (frame_is_visible) {
-               if (!cleared) {
-                       pain.rectangle(frame_x, frame_y, frame_w, frame_h,
-                                      backgroundColor());
-               }
-               frame_is_visible = false;
+       if (need_update != INIT) {
+               need_update = NONE;
        }
 }
 
 
-void InsetText::update(BufferView * bv, LyXFont const & font, bool reinit)
+void InsetText::drawFrame(Painter & pain, int x) const
 {
-       if (in_update) {
-               if (reinit && owner()) {
-                       reinitLyXText();
-                       owner()->update(bv, font, true);
-               }
-               return;
-       }
-       in_update = true;
-       if (reinit || need_update == INIT) {
-               need_update = FULL;
-               // we should put this call where we set need_update to INIT!
-               reinitLyXText();
-               if (owner())
-                       owner()->update(bv, font, true);
-               in_update = false;
-               return;
-       }
-
-       if (!autoBreakRows && paragraphs.begin()->next())
-               collapseParagraphs(bv);
-
-       if (the_locking_inset) {
-               inset_x = cix(bv) - top_x + drawTextXOffset;
-               inset_y = ciy(bv) + drawTextYOffset;
-               the_locking_inset->update(bv, font, reinit);
-       }
-
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       if ((need_update & CURSOR_PAR) && (lt->status() == LyXText::UNCHANGED) &&
-               the_locking_inset)
-       {
-               lt->updateInset(bv, the_locking_inset);
-       }
-       if (lt->status() == LyXText::NEED_MORE_REFRESH)
-               need_update |= FULL;
-       if (clear)
-               lt = 0;
-       in_update = false;
+       static int const ttoD2 = TEXT_TO_INSET_OFFSET / 2;
+       frame_x = x + ttoD2;
+       frame_y = top_baseline - dim_.asc + ttoD2;
+       frame_w = dim_.wid - TEXT_TO_INSET_OFFSET;
+       frame_h = dim_.asc + dim_.des - TEXT_TO_INSET_OFFSET;
+       pain.rectangle(frame_x, frame_y, frame_w, frame_h,
+                      frame_color);
 }
 
 
-void InsetText::setUpdateStatus(BufferView * bv, int what) const
+void InsetText::setUpdateStatus(int what) const
 {
-       // this does nothing dangerous so use only a localized buffer
-       LyXText * llt = getLyXText(bv);
-
        need_update |= what;
-       // we have to redraw us full if our LyXText NEEDS_MORE_REFRES or
-       // if we don't break row so that we only have one row to update!
-       if ((llt->status() == LyXText::NEED_MORE_REFRESH) ||
-           (!autoBreakRows &&
-            (llt->status() == LyXText::NEED_VERY_LITTLE_REFRESH)))
-       {
+       // we will to redraw us full if our LyXText wants it
+       if (text_.needRefresh())
                need_update |= FULL;
-       } else if (llt->status() == LyXText::NEED_VERY_LITTLE_REFRESH) {
-               need_update |= CURSOR_PAR;
-       }
 
        // this to not draw a selection when we redraw all of it!
        if (need_update & CURSOR && !(need_update & SELECTION)) {
-               if (llt->selection.set())
+               if (text_.selection.set())
                        need_update = FULL;
-               llt->clearSelection();
+               text_.clearSelection();
        }
 }
 
 
 void InsetText::updateLocal(BufferView * bv, int what, bool mark_dirty)
 {
-       if (!autoBreakRows && paragraphs.begin()->next())
+       if (!bv)
+               return;
+
+       if (!autoBreakRows && paragraphs.size() > 1)
                collapseParagraphs(bv);
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       lt->fullRebreak(bv);
-       setUpdateStatus(bv, what);
+
+       text_.partialRebreak();
+       setUpdateStatus(what);
        bool flag = mark_dirty ||
-               (((need_update != CURSOR) && (need_update != NONE)) ||
-                (lt->status() != LyXText::UNCHANGED) || lt->selection.set());
-       if (!lt->selection.set())
-               lt->selection.cursor = lt->cursor;
-       if (clear)
-               lt = 0;
-#if 0
-       // IMO this is not anymore needed as we do this in fitInsetCursor!
-       // and we always get "true" as returnvalue of this function in the
-       // case of a locking inset (Jug 20020412)
-       if (locked && (need_update & CURSOR) && bv->fitCursor())
-               need_update |= FULL;
-#else
+               ((need_update != CURSOR && need_update != NONE) ||
+                text_.needRefresh() || text_.selection.set());
+       if (!text_.selection.set())
+               text_.selection.cursor = text_.cursor;
+
        bv->fitCursor();
-#endif
-       if (flag)
-               bv->updateInset(const_cast<InsetText *>(this), mark_dirty);
+
+       if (flag) {
+               text_.postPaint();
+               bv->updateInset(const_cast<InsetText *>(this));
+       }
 
        if (need_update == CURSOR)
                need_update = NONE;
        bv->owner()->view_state_changed();
        bv->owner()->updateMenubar();
        bv->owner()->updateToolbar();
-       if (old_par != cpar(bv)) {
-               bv->owner()->setLayout(cpar(bv)->layout()->name());
-               old_par = cpar(bv);
+       if (old_par != cpar()) {
+               bv->owner()->setLayout(cpar()->layout()->name());
+               old_par = cpar();
        }
 }
 
@@ -680,109 +454,6 @@ string const InsetText::editMessage() const
 }
 
 
-void InsetText::edit(BufferView * bv, int x, int y, mouse_button::state button)
-{
-       UpdatableInset::edit(bv, x, y, button);
-
-       if (!bv->lockInset(this)) {
-               lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
-               return;
-       }
-       locked = true;
-       the_locking_inset = 0;
-       inset_pos = inset_x = inset_y = 0;
-       inset_boundary = false;
-       inset_par = 0;
-       old_par = 0;
-       int tmp_y = (y < 0) ? 0 : y;
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       // we put here -1 and not button as now the button in the
-       // edit call should not be needed we will fix this in 1.3.x
-       // cycle hopefully (Jug 20020509)
-       // FIXME: GUII I've changed this to none: probably WRONG
-       if (!checkAndActivateInset(bv, x, tmp_y, mouse_button::none)) {
-               lt->setCursorFromCoordinates(bv, x - drawTextXOffset,
-                                           y + insetAscent);
-               lt->cursor.x_fix(lt->cursor.x());
-       }
-       lt->clearSelection();
-       finishUndo();
-       // If the inset is empty set the language of the current font to the
-       // language to the surronding text (if different).
-       if (paragraphs.begin()->empty() && !paragraphs.begin()->next() &&
-               bv->getParentLanguage(this) != lt->current_font.language())
-       {
-               LyXFont font(LyXFont::ALL_IGNORE);
-               font.setLanguage(bv->getParentLanguage(this));
-               setFont(bv, font, false);
-       }
-       if (clear)
-               lt = 0;
-
-       int code = CURSOR;
-       if (drawFrame_ == LOCKED)
-               code = CURSOR|DRAW_FRAME;
-       updateLocal(bv, code, false);
-       showInsetCursor(bv);
-
-       // Tell the paragraph dialog that we've entered an insettext.
-       bv->owner()->getDialogs().updateParagraph();
-}
-
-
-void InsetText::edit(BufferView * bv, bool front)
-{
-       UpdatableInset::edit(bv, front);
-
-       if (!bv->lockInset(this)) {
-               lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
-               return;
-       }
-       locked = true;
-       the_locking_inset = 0;
-       inset_pos = inset_x = inset_y = 0;
-       inset_boundary = false;
-       inset_par = 0;
-       old_par = 0;
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       if (front)
-               lt->setCursor(bv, &*(paragraphs.begin()), 0);
-       else {
-               ParagraphList::iterator it = paragraphs.begin();
-               ParagraphList::iterator end = paragraphs.end();
-               while (boost::next(it) != end)
-                       ++it;
-//             int const pos = (p->size() ? p->size()-1 : p->size());
-               lt->setCursor(bv, &*it, it->size());
-       }
-       lt->clearSelection();
-       finishUndo();
-       // If the inset is empty set the language of the current font to the
-       // language to the surronding text (if different).
-       if (paragraphs.begin()->empty() && !paragraphs.begin()->next() &&
-               bv->getParentLanguage(this) != lt->current_font.language()) {
-               LyXFont font(LyXFont::ALL_IGNORE);
-               font.setLanguage(bv->getParentLanguage(this));
-               setFont(bv, font, false);
-       }
-       if (clear)
-               lt = 0;
-       int code = CURSOR;
-       if (drawFrame_ == LOCKED)
-               code = CURSOR|DRAW_FRAME;
-       updateLocal(bv, code, false);
-       showInsetCursor(bv);
-}
-
-
 void InsetText::insetUnlock(BufferView * bv)
 {
        if (the_locking_inset) {
@@ -790,26 +461,12 @@ void InsetText::insetUnlock(BufferView * bv)
                the_locking_inset = 0;
                updateLocal(bv, CURSOR_PAR, false);
        }
-       hideInsetCursor(bv);
        no_selection = true;
        locked = false;
        int code = NONE;
-#if 0
-       if (drawFrame_ == LOCKED)
-               code = CURSOR|CLEAR_FRAME;
-       else
-               code = CURSOR;
-#else
-       if (drawFrame_ == LOCKED)
-               code = CLEAR_FRAME;
-#endif
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       if (lt->selection.set()) {
-               lt->clearSelection();
+
+       if (text_.selection.set()) {
+               text_.clearSelection();
                code = FULL;
        } else if (owner()) {
                bv->owner()->setLayout(owner()->getLyXText(bv)
@@ -817,18 +474,17 @@ void InsetText::insetUnlock(BufferView * bv)
        } else
                bv->owner()->setLayout(bv->text->cursor.par()->layout()->name());
        // hack for deleteEmptyParMech
-       if (!paragraphs.begin()->empty()) {
-               lt->setCursor(bv, &*(paragraphs.begin()), 0);
-       } else if (paragraphs.begin()->next()) {
-               lt->setCursor(bv, paragraphs.begin()->next(), 0);
+       ParagraphList::iterator first_par = paragraphs.begin();
+       if (!first_par->empty()) {
+               text_.setCursor(first_par, 0);
+       } else if (paragraphs.size() > 1) {
+               text_.setCursor(boost::next(first_par), 0);
        }
-       if (clear)
-               lt = 0;
 #if 0
        updateLocal(bv, code, false);
 #else
        if (code != NONE)
-               setUpdateStatus(bv, code);
+               setUpdateStatus(code);
 #endif
 }
 
@@ -839,30 +495,23 @@ void InsetText::lockInset(BufferView * bv)
        the_locking_inset = 0;
        inset_pos = inset_x = inset_y = 0;
        inset_boundary = false;
-       inset_par = 0;
-       old_par = 0;
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       lt->setCursor(bv, &*(paragraphs.begin()), 0);
-       lt->clearSelection();
+       inset_par = paragraphs.end();
+       old_par = paragraphs.end();
+       text_.setCursorIntern(paragraphs.begin(), 0);
+       text_.clearSelection();
        finishUndo();
        // If the inset is empty set the language of the current font to the
        // language to the surronding text (if different).
-       if (paragraphs.begin()->empty() && !paragraphs.begin()->next() &&
-               bv->getParentLanguage(this) != lt->current_font.language()) {
+       if (paragraphs.begin()->empty() && paragraphs.size() == 1 &&
+               bv->getParentLanguage(this) != text_.current_font.language()) {
                LyXFont font(LyXFont::ALL_IGNORE);
                font.setLanguage(bv->getParentLanguage(this));
                setFont(bv, font, false);
        }
-       if (clear)
-               lt = 0;
        int code = CURSOR;
        if (drawFrame_ == LOCKED)
                code = CURSOR|DRAW_FRAME;
-       setUpdateStatus(bv, code);
+       setUpdateStatus(code);
 }
 
 
@@ -870,11 +519,11 @@ void InsetText::lockInset(BufferView * bv, UpdatableInset * inset)
 {
        the_locking_inset = inset;
        inset_x = cix(bv) - top_x + drawTextXOffset;
-       inset_y = ciy(bv) + drawTextYOffset;
-       inset_pos = cpos(bv);
-       inset_par = cpar(bv);
-       inset_boundary = cboundary(bv);
-       updateLocal(bv, CURSOR, false);
+       inset_y = ciy() + drawTextYOffset;
+       inset_pos = cpos();
+       inset_par = cpar();
+       inset_boundary = cboundary();
+       //updateLocal(bv, CURSOR, false);
 }
 
 
@@ -885,38 +534,45 @@ bool InsetText::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
        if (!inset)
                return false;
        if (!the_locking_inset) {
-               Paragraph * p = &*(paragraphs.begin());
+               ParagraphList::iterator pit = paragraphs.begin();
+               ParagraphList::iterator pend = paragraphs.end();
+
                int const id = inset->id();
-               while(p) {
-                       InsetList::iterator it =
-                               p->insetlist.begin();
-                       InsetList::iterator const end =
-                               p->insetlist.end();
+               for (; pit != pend; ++pit) {
+                       InsetList::iterator it = pit->insetlist.begin();
+                       InsetList::iterator const end = pit->insetlist.end();
                        for (; it != end; ++it) {
-                               if (it.getInset() == inset) {
-                                       getLyXText(bv)->setCursorIntern(bv, p, it.getPos());
+                               if (it->inset == inset) {
+                                       lyxerr << "InsetText::lockInsetInInset: 1 a\n";
+                                       text_.setCursorIntern(pit, it->pos);
+                                       lyxerr << "InsetText::lockInsetInInset: 1 b\n";
+                                       lyxerr << "bv: " << bv << " inset: " << inset << "\n";
                                        lockInset(bv, inset);
+                                       lyxerr << "InsetText::lockInsetInInset: 1 c" << endl;
                                        return true;
                                }
-                               if (it.getInset()->getInsetFromID(id)) {
-                                       getLyXText(bv)->setCursorIntern(bv, p, it.getPos());
-                                       it.getInset()->edit(bv);
+                               if (it->inset->getInsetFromID(id)) {
+                                       lyxerr << "InsetText::lockInsetInInset: 2\n";
+                                       text_.setCursorIntern(pit, it->pos);
+                                       it->inset->localDispatch(FuncRequest(bv, LFUN_INSET_EDIT));
                                        return the_locking_inset->lockInsetInInset(bv, inset);
                                }
                        }
-                       p = p->next();
                }
+               lyxerr << "InsetText::lockInsetInInset: 3\n";
                return false;
        }
-       if (inset == cpar(bv)->getInset(cpos(bv))) {
+       if (inset == cpar()->getInset(cpos())) {
                lyxerr[Debug::INSETS] << "OK" << endl;
                lockInset(bv, inset);
                return true;
-       } else if (the_locking_inset && (the_locking_inset == inset)) {
-               if (cpar(bv) == inset_par && cpos(bv) == inset_pos) {
+       }
+
+       if (the_locking_inset && the_locking_inset == inset) {
+               if (cpar() == inset_par && cpos() == inset_pos) {
                        lyxerr[Debug::INSETS] << "OK" << endl;
                        inset_x = cix(bv) - top_x + drawTextXOffset;
-                       inset_y = ciy(bv) + drawTextYOffset;
+                       inset_y = ciy() + drawTextYOffset;
                } else {
                        lyxerr[Debug::INSETS] << "cursor.pos != inset_pos" << endl;
                }
@@ -936,11 +592,11 @@ bool InsetText::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
                return false;
        if (the_locking_inset == inset) {
                the_locking_inset->insetUnlock(bv);
-               getLyXText(bv)->updateInset(bv, inset);
+               getLyXText(bv)->updateInset(inset);
                the_locking_inset = 0;
                if (lr)
                        moveRightIntern(bv, true, false);
-               old_par = 0; // force layout setting
+               old_par = paragraphs.end(); // force layout setting
                if (scroll())
                        scroll(bv, 0.0F);
                else
@@ -951,17 +607,14 @@ bool InsetText::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
 }
 
 
-bool InsetText::updateInsetInInset(BufferView * bv, Inset * inset)
+bool InsetText::updateInsetInInset(BufferView * bv, InsetOld * inset)
 {
-       if (!autoBreakRows && paragraphs.begin()->next())
+       if (!autoBreakRows && paragraphs.size() > 1)
                collapseParagraphs(bv);
+
        if (inset == this)
                return true;
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
+
        if (inset->owner() != this) {
                int ustat = CURSOR_PAR;
                bool found = false;
@@ -976,25 +629,20 @@ bool InsetText::updateInsetInInset(BufferView * bv, Inset * inset)
                                return false;
                        found = tl_inset->updateInsetInInset(bv, inset);
                        ustat = FULL;
+               } else { 
+                       text_.updateInset(tl_inset);
+                       setUpdateStatus(ustat);
                }
-               if (found)
-                       lt->updateInset(bv, tl_inset);
-               if (clear)
-                       lt = 0;
-               if (found)
-                       setUpdateStatus(bv, ustat);
                return found;
        }
-       bool found = lt->updateInset(bv, inset);
-       if (clear)
-               lt = 0;
+       bool found = text_.updateInset(inset);
        if (found) {
-               setUpdateStatus(bv, CURSOR_PAR);
+               setUpdateStatus(CURSOR_PAR);
                if (the_locking_inset &&
-                   cpar(bv) == inset_par && cpos(bv) == inset_pos)
+                   cpar() == inset_par && cpos() == inset_pos)
                {
                        inset_x = cix(bv) - top_x + drawTextXOffset;
-                       inset_y = ciy(bv) + drawTextYOffset;
+                       inset_y = ciy() + drawTextYOffset;
                }
        }
        return found;
@@ -1017,29 +665,14 @@ void InsetText::lfunMousePress(FuncRequest const & cmd)
                lockInset(bv);
 
        int tmp_x = cmd.x - drawTextXOffset;
-       int tmp_y = cmd.y + insetAscent - getLyXText(bv)->top_y();
-       Inset * inset = getLyXText(bv)->checkInsetHit(bv, tmp_x, tmp_y);
+       int tmp_y = cmd.y + dim_.asc - getLyXText(bv)->top_y();
+       InsetOld * inset = getLyXText(bv)->checkInsetHit(tmp_x, tmp_y);
 
-       hideInsetCursor(bv);
        if (the_locking_inset) {
                if (the_locking_inset == inset) {
                        the_locking_inset->localDispatch(cmd1);
                        return;
                }
-#if 0
-               else if (inset) {
-                       // otherwise unlock the_locking_inset and lock the new inset
-                       the_locking_inset->insetUnlock(bv);
-                       inset_x = cix(bv) - top_x + drawTextXOffset;
-                       inset_y = ciy(bv) + drawTextYOffset;
-                       the_locking_inset = 0;
-                       inset->localDispatch(cmd1);
-//                     inset->edit(bv, x - inset_x, y - inset_y, button);
-                       if (the_locking_inset)
-                               updateLocal(bv, CURSOR, false);
-                       return;
-               }
-#endif
                // otherwise only unlock the_locking_inset
                the_locking_inset->insetUnlock(bv);
                the_locking_inset = 0;
@@ -1061,43 +694,34 @@ void InsetText::lfunMousePress(FuncRequest const & cmd)
                        return;
                }
        }
-       if (!inset) { // && (button == mouse_button::button2)) {
+       if (!inset) {
                bool paste_internally = false;
                if (cmd.button() == mouse_button::button2 && getLyXText(bv)->selection.set()) {
                        localDispatch(FuncRequest(bv, LFUN_COPY));
                        paste_internally = true;
                }
-               bool clear = false;
-               if (!lt) {
-                       lt = getLyXText(bv);
-                       clear = true;
-               }
-               int old_top_y = lt->top_y();
+               int old_top_y = text_.top_y();
 
-               lt->setCursorFromCoordinates(bv, cmd.x - drawTextXOffset,
-                                            cmd.y + insetAscent);
+               text_.setCursorFromCoordinates(cmd.x - drawTextXOffset,
+                                            cmd.y + dim_.asc);
                // set the selection cursor!
-               lt->selection.cursor = lt->cursor;
-               lt->cursor.x_fix(lt->cursor.x());
+               text_.selection.cursor = text_.cursor;
+               text_.cursor.x_fix(text_.cursor.x());
 
-               if (lt->selection.set()) {
-                       lt->clearSelection();
-                       if (clear)
-                               lt = 0;
+               if (text_.selection.set()) {
+                       text_.clearSelection();
                        updateLocal(bv, FULL, false);
                } else {
-                       lt->clearSelection();
-                       if (clear)
-                               lt = 0;
+                       text_.clearSelection();
                        updateLocal(bv, CURSOR, false);
                }
 
-               bv->owner()->setLayout(cpar(bv)->layout()->name());
+               bv->owner()->setLayout(cpar()->layout()->name());
 
                // we moved the view we cannot do mouse selection in this case!
                if (getLyXText(bv)->top_y() != old_top_y)
                        no_selection = true;
-               old_par = cpar(bv);
+               old_par = cpar();
                // Insert primary selection with middle mouse
                // if there is a local selection in the current buffer,
                // insert this
@@ -1110,7 +734,6 @@ void InsetText::lfunMousePress(FuncRequest const & cmd)
        } else {
                getLyXText(bv)->clearSelection();
        }
-       showInsetCursor(bv);
 }
 
 
@@ -1126,23 +749,30 @@ bool InsetText::lfunMouseRelease(FuncRequest const & cmd)
                return the_locking_inset->localDispatch(cmd1);
 
        int tmp_x = cmd.x - drawTextXOffset;
-       int tmp_y = cmd.y + insetAscent - getLyXText(bv)->top_y();
-       Inset * inset = getLyXText(bv)->checkInsetHit(bv, tmp_x, tmp_y);
+       int tmp_y = cmd.y + dim_.asc - getLyXText(bv)->top_y();
+       InsetOld * inset = getLyXText(bv)->checkInsetHit(tmp_x, tmp_y);
        bool ret = false;
        if (inset) {
+// This code should probably be removed now. Simple insets
+// (!highlyEditable) can actually take the localDispatch,
+// and turn it into edit() if necessary. But we still
+// need to deal properly with the whole relative vs.
+// absolute mouse co-ords thing in a realiable, sensible way
+#if 0
                if (isHighlyEditableInset(inset))
                        ret = inset->localDispatch(cmd1);
                else {
                        inset_x = cix(bv) - top_x + drawTextXOffset;
-                       inset_y = ciy(bv) + drawTextYOffset;
+                       inset_y = ciy() + drawTextYOffset;
                        cmd1.x = cmd.x - inset_x;
                        cmd1.y = cmd.x - inset_y;
-// note that we should do ret = inset->localDispatch(cmd1)
-// and fix this instead (Alfredo);
-                       ret = true;
                        inset->edit(bv, cmd1.x, cmd1.y, cmd.button());
+                       ret = true;
                }
+#endif
+               ret = inset->localDispatch(cmd1);
                updateLocal(bv, CURSOR_PAR, false);
+
        }
        return ret;
 }
@@ -1163,61 +793,118 @@ void InsetText::lfunMouseMotion(FuncRequest const & cmd)
                return;
 
        BufferView * bv = cmd.view();
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       hideInsetCursor(bv);
-       LyXCursor cur = lt->cursor;
-       lt->setCursorFromCoordinates
-               (bv, cmd.x - drawTextXOffset, cmd.y + insetAscent);
-       lt->cursor.x_fix(lt->cursor.x());
-       if (cur == lt->cursor) {
-               if (clear)
-                       lt = 0;
+       LyXCursor cur = text_.cursor;
+       text_.setCursorFromCoordinates
+               (cmd.x - drawTextXOffset, cmd.y + dim_.asc);
+       text_.cursor.x_fix(text_.cursor.x());
+       if (cur == text_.cursor)
                return;
-       }
-       lt->setSelection(bv);
-       bool flag = (lt->toggle_cursor.par() != lt->toggle_end_cursor.par() ||
-                                lt->toggle_cursor.pos() != lt->toggle_end_cursor.pos());
-       if (clear)
-               lt = 0;
+       text_.setSelection();
+       bool flag = (text_.toggle_cursor.par() != text_.toggle_end_cursor.par() ||
+                                text_.toggle_cursor.pos() != text_.toggle_end_cursor.pos());
        if (flag) {
                updateLocal(bv, SELECTION, false);
        }
-       showInsetCursor(bv);
 }
 
 
-Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
+InsetOld::RESULT InsetText::localDispatch(FuncRequest const & cmd)
 {
-       BufferView * bv = ev.view();
-       switch (ev.action) {
-               case LFUN_MOUSE_PRESS:
-                       lfunMousePress(ev);
-                       return DISPATCHED;
-               case LFUN_MOUSE_MOTION:
-                       lfunMouseMotion(ev);
+       BufferView * bv = cmd.view();
+       setViewCache(bv);
+
+       switch (cmd.action) {
+       case LFUN_INSET_EDIT: {
+               UpdatableInset::localDispatch(cmd);
+
+               if (!bv->lockInset(this)) {
+                       lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
                        return DISPATCHED;
-               case LFUN_MOUSE_RELEASE:
-                       return lfunMouseRelease(ev) ? DISPATCHED : UNDISPATCHED;
-               default:
-                       break;
+               }
+
+               locked = true;
+               the_locking_inset = 0;
+               inset_pos = 0;
+               inset_x = 0;
+               inset_y = 0;
+               inset_boundary = false;
+               inset_par = paragraphs.end();
+               old_par = paragraphs.end();
+
+
+               if (cmd.argument.size()) {
+                       if (cmd.argument == "left")
+                               text_.setCursorIntern(paragraphs.begin(), 0);
+                       else {
+                               ParagraphList::iterator it = boost::prior(paragraphs.end());
+                               text_.setCursor(it, it->size());
+                       }
+               } else {
+                       int tmp_y = (cmd.y < 0) ? 0 : cmd.y;
+                       // we put here -1 and not button as now the button in the
+                       // edit call should not be needed we will fix this in 1.3.x
+                       // cycle hopefully (Jug 20020509)
+                       // FIXME: GUII I've changed this to none: probably WRONG
+                       if (!checkAndActivateInset(bv, cmd.x, tmp_y, mouse_button::none)) {
+                               text_.setCursorFromCoordinates(cmd.x - drawTextXOffset,
+                                                                       cmd.y + dim_.asc);
+                               text_.cursor.x_fix(text_.cursor.x());
+                       }
+               }
+
+               text_.clearSelection();
+               finishUndo();
+
+               // If the inset is empty set the language of the current font to the
+               // language to the surronding text (if different).
+               if (paragraphs.begin()->empty() &&
+                   paragraphs.size() == 1 &&
+                   bv->getParentLanguage(this) != text_.current_font.language())
+               {
+                       LyXFont font(LyXFont::ALL_IGNORE);
+                       font.setLanguage(bv->getParentLanguage(this));
+                       setFont(bv, font, false);
+               }
+
+               int code = CURSOR;
+               if (drawFrame_ == LOCKED)
+                       code = CURSOR | DRAW_FRAME;
+
+               updateLocal(bv, code, false);
+               // Tell the paragraph dialog that we've entered an insettext.
+               bv->dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
+               return DISPATCHED;
+       }
+
+       case LFUN_MOUSE_PRESS:
+               lfunMousePress(cmd);
+               return DISPATCHED;
+
+       case LFUN_MOUSE_MOTION:
+               lfunMouseMotion(cmd);
+               return DISPATCHED;
+
+       case LFUN_MOUSE_RELEASE:
+               return lfunMouseRelease(cmd) ? DISPATCHED : UNDISPATCHED;
+
+       default:
+               break;
        }
 
-       bool was_empty = (paragraphs.begin()->empty() && !paragraphs.begin()->next());
+       bool was_empty = (paragraphs.begin()->empty() &&
+                         paragraphs.size() == 1);
+
        no_selection = false;
-       RESULT result = UpdatableInset::localDispatch(ev);
+       RESULT result = UpdatableInset::localDispatch(cmd);
        if (result != UNDISPATCHED)
                return DISPATCHED;
 
        result = DISPATCHED;
-       if (ev.action < 0 && ev.argument.empty())
+       if (cmd.action < 0 && cmd.argument.empty())
                return FINISHED;
 
        if (the_locking_inset) {
-               result = the_locking_inset->localDispatch(ev);
+               result = the_locking_inset->localDispatch(cmd);
                if (result == DISPATCHED_NOUPDATE)
                        return result;
                else if (result == DISPATCHED) {
@@ -1247,18 +934,21 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
                        }
                        the_locking_inset = 0;
                        updateLocal(bv, CURSOR, false);
+                       // make sure status gets reset immediately
+                       bv->owner()->clearMessage();
                        return result;
                }
        }
-       hideInsetCursor(bv);
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
        int updwhat = 0;
        int updflag = false;
-       switch (ev.action) {
+
+       // what type of update to do on a cursor movement
+       int cursor_update = CURSOR;
+
+       if (text_.selection.set())
+               cursor_update = SELECTION;
+
+       switch (cmd.action) {
 
        // Normal chars
        case LFUN_SELFINSERT:
@@ -1266,7 +956,7 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
 //         setErrorMessage(N_("Document is read only"));
                        break;
                }
-               if (!ev.argument.empty()) {
+               if (!cmd.argument.empty()) {
                        /* Automatically delete the currently selected
                         * text and replace it with what is being
                         * typed in now. Depends on lyxrc settings
@@ -1274,187 +964,169 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
                         * true (on). */
 #if 0
                        // This should not be needed here and is also WRONG!
-                       setUndo(bv, Undo::INSERT,
-                               lt->cursor.par(), lt->cursor.par()->next());
+                       recordUndo(bv, Undo::INSERT, text_.cursor.par());
 #endif
                        bv->switchKeyMap();
                        if (lyxrc.auto_region_delete) {
-                               if (lt->selection.set()) {
-                                       lt->cutSelection(bv, false, false);
+                               if (text_.selection.set()) {
+                                       text_.cutSelection(false, false);
                                }
                        }
-                       lt->clearSelection();
-                       for (string::size_type i = 0; i < ev.argument.length(); ++i) {
+                       text_.clearSelection();
+                       for (string::size_type i = 0; i < cmd.argument.length(); ++i) {
                                bv->owner()->getIntl().getTransManager().
-                                       TranslateAndInsert(ev.argument[i], lt);
+                                       TranslateAndInsert(cmd.argument[i], &text_);
                        }
                }
-               lt->selection.cursor = lt->cursor;
+               text_.selection.cursor = text_.cursor;
                updwhat = CURSOR | CURSOR_PAR;
                updflag = true;
                result = DISPATCHED_NOUPDATE;
                break;
-               // --- Cursor Movements -----------------------------------
-       case LFUN_RIGHTSEL:
-               finishUndo();
-               moveRight(bv, false, true);
-               lt->setSelection(bv);
-               updwhat = SELECTION;
-               break;
+
+       // cursor movements that need special handling
+
        case LFUN_RIGHT:
                result = moveRight(bv);
                finishUndo();
-               updwhat = CURSOR;
-               break;
-       case LFUN_LEFTSEL:
-               finishUndo();
-               moveLeft(bv, false, true);
-               lt->setSelection(bv);
-               updwhat = SELECTION;
+               updwhat = cursor_update;
                break;
        case LFUN_LEFT:
                finishUndo();
                result = moveLeft(bv);
-               updwhat = CURSOR;
-               break;
-       case LFUN_DOWNSEL:
-               finishUndo();
-               moveDown(bv);
-               lt->setSelection(bv);
-               updwhat = SELECTION;
+               updwhat = cursor_update;
                break;
        case LFUN_DOWN:
                finishUndo();
                result = moveDown(bv);
-               updwhat = CURSOR;
-               break;
-       case LFUN_UPSEL:
-               finishUndo();
-               moveUp(bv);
-               lt->setSelection(bv);
-               updwhat = SELECTION;
+               updwhat = cursor_update;
                break;
        case LFUN_UP:
                finishUndo();
                result = moveUp(bv);
-               updwhat = CURSOR;
-               break;
-       case LFUN_HOME:
-               finishUndo();
-               lt->cursorHome(bv);
-               updwhat = CURSOR;
-               break;
-       case LFUN_END:
-               lt->cursorEnd(bv);
-               updwhat = CURSOR;
+               updwhat = cursor_update;
                break;
+
        case LFUN_PRIOR:
-               if (!crow(bv)->previous())
+               if (crow() == text_.rows().begin())
                        result = FINISHED_UP;
                else {
-                       lt->cursorPrevious(bv);
+                       text_.cursorPrevious();
+                       text_.clearSelection();
                        result = DISPATCHED_NOUPDATE;
                }
-               updwhat = CURSOR;
+               updwhat = cursor_update;
                break;
+
        case LFUN_NEXT:
-               if (!crow(bv)->next())
+               if (boost::next(crow()) == text_.rows().end())
                        result = FINISHED_DOWN;
                else {
-                       lt->cursorNext(bv);
+                       text_.cursorNext();
+                       text_.clearSelection();
                        result = DISPATCHED_NOUPDATE;
                }
-               updwhat = CURSOR;
+               updwhat = cursor_update;
                break;
+
        case LFUN_BACKSPACE: {
-               if (lt->selection.set())
-                       lt->cutSelection(bv, true, false);
+               if (text_.selection.set())
+                       text_.cutSelection(true, false);
                else
-                       lt->backspace(bv);
+                       text_.backspace();
                updwhat = CURSOR_PAR;
                updflag = true;
+               break;
        }
-       break;
 
        case LFUN_DELETE: {
-               if (lt->selection.set()) {
-                       lt->cutSelection(bv, true, false);
+               if (text_.selection.set()) {
+                       text_.cutSelection(true, false);
                } else {
-                       lt->Delete(bv);
+                       text_.Delete();
                }
                updwhat = CURSOR_PAR;
                updflag = true;
+               break;
        }
-       break;
 
        case LFUN_CUT: {
-               lt->cutSelection(bv);
+               text_.cutSelection(true, true);
                updwhat = CURSOR_PAR;
                updflag = true;
+               break;
        }
-       break;
 
        case LFUN_COPY:
                finishUndo();
-               lt->copySelection(bv);
+               text_.copySelection();
                updwhat = CURSOR_PAR;
                break;
+
        case LFUN_PASTESELECTION:
        {
                string const clip(bv->getClipboard());
 
                if (clip.empty())
                        break;
-               if (ev.argument == "paragraph") {
-                       lt->insertStringAsParagraphs(bv, clip);
+               if (cmd.argument == "paragraph") {
+                       text_.insertStringAsParagraphs(clip);
                } else {
-                       lt->insertStringAsLines(bv, clip);
+                       text_.insertStringAsLines(clip);
                }
                // bug 393
-               lt->clearSelection();
+               text_.clearSelection();
 
                updwhat = CURSOR_PAR;
                updflag = true;
                break;
        }
+
        case LFUN_PASTE: {
                if (!autoBreakRows) {
-
                        if (CutAndPaste::nrOfParagraphs() > 1) {
-                               Alert::alert(_("Impossible operation!"),
-                                                  _("Cannot include more than one paragraph!"),
-                                                  _("Sorry."));
+#ifdef WITH_WARNINGS
+#warning FIXME horrendously bad UI
+#endif
+                               Alert::error(_("Paste failed"), _("Cannot include more than one paragraph."));
                                break;
                        }
                }
-#if 0
-               // This should not be needed here and is also WRONG!
-               setUndo(bv, Undo::INSERT,
-                       lt->cursor.par(), lt->cursor.par()->next());
-#endif
-               lt->pasteSelection(bv);
+
+               replaceSelection(bv->getLyXText());
+               size_t sel_index = 0;
+               string const & arg = cmd.argument;
+               if (isStrUnsignedInt(arg)) {
+                       size_t const paste_arg = strToUnsignedInt(arg);
+#warning FIXME Check if the arg is in the domain of available selections.
+                       sel_index = paste_arg;
+               }
+               text_.pasteSelection(sel_index);
                // bug 393
-               lt->clearSelection();
+               text_.clearSelection();
                updwhat = CURSOR_PAR;
                updflag = true;
+               break;
        }
-       break;
 
        case LFUN_BREAKPARAGRAPH:
                if (!autoBreakRows) {
                        result = DISPATCHED;
                        break;
                }
-               lt->breakParagraph(bv, paragraphs, 0);
+               replaceSelection(bv->getLyXText());
+               text_.breakParagraph(paragraphs, 0);
                updwhat = CURSOR | FULL;
                updflag = true;
                break;
+
        case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
                if (!autoBreakRows) {
                        result = DISPATCHED;
                        break;
                }
-               lt->breakParagraph(bv, paragraphs, 1);
+               replaceSelection(bv->getLyXText());
+               text_.breakParagraph(paragraphs, 1);
                updwhat = CURSOR | FULL;
                updflag = true;
                break;
@@ -1464,27 +1136,24 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
                        result = DISPATCHED;
                        break;
                }
-#if 0
-               // This should not be needed here and is also WRONG!
-               setUndo(bv, Undo::INSERT,
-                       lt->cursor.par(), lt->cursor.par()->next());
-#endif
-               lt->insertInset(bv, new InsetNewline);
+
+               replaceSelection(bv->getLyXText());
+               text_.insertInset(new InsetNewline);
                updwhat = CURSOR | CURSOR_PAR;
                updflag = true;
+               break;
        }
-       break;
 
        case LFUN_LAYOUT:
                // do not set layouts on non breakable textinsets
                if (autoBreakRows) {
-                       string cur_layout = cpar(bv)->layout()->name();
+                       string cur_layout = cpar()->layout()->name();
 
                        // Derive layout number from given argument (string)
                        // and current buffer's textclass (number). */
                        LyXTextClass const & tclass =
                                bv->buffer()->params.getLyXTextClass();
-                       string layout = ev.argument;
+                       string layout = cmd.argument;
                        bool hasLayout = tclass.hasLayout(layout);
 
                        // If the entry is obsolete, use the new one instead.
@@ -1497,36 +1166,37 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
 
                        // see if we found the layout number:
                        if (!hasLayout) {
-                               FuncRequest lf(LFUN_MESSAGE, N_("Layout ") + ev.argument + N_(" not known"));
+                               FuncRequest lf(LFUN_MESSAGE, N_("Layout ") + cmd.argument + N_(" not known"));
                                bv->owner()->dispatch(lf);
                                break;
                        }
 
                        if (cur_layout != layout) {
                                cur_layout = layout;
-                               lt->setLayout(bv, layout);
-                               bv->owner()->setLayout(cpar(bv)->layout()->name());
+                               text_.setLayout(layout);
+                               bv->owner()->setLayout(cpar()->layout()->name());
                                updwhat = CURSOR_PAR;
                                updflag = true;
                        }
                } else {
                        // reset the layout box
-                       bv->owner()->setLayout(cpar(bv)->layout()->name());
+                       bv->owner()->setLayout(cpar()->layout()->name());
                }
                break;
        case LFUN_PARAGRAPH_SPACING:
                // This one is absolutely not working. When fiddling with this
                // it also seems to me that the paragraphs inside the insettext
                // inherit bufferparams/paragraphparams in a strange way. (Lgb)
+               // FIXME: how old is this comment ? ...
        {
-               Paragraph * par = lt->cursor.par();
-               Spacing::Space cur_spacing = par->params().spacing().getSpace();
+               ParagraphList::iterator pit = text_.cursor.par();
+               Spacing::Space cur_spacing = pit->params().spacing().getSpace();
                float cur_value = 1.0;
                if (cur_spacing == Spacing::Other) {
-                       cur_value = par->params().spacing().getValue();
+                       cur_value = pit->params().spacing().getValue();
                }
 
-               istringstream istr(ev.argument.c_str());
+               istringstream istr(STRCONV(cmd.argument));
                string tmp;
                istr >> tmp;
                Spacing::Space new_spacing = cur_spacing;
@@ -1551,29 +1221,56 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
                        new_spacing = Spacing::Default;
                } else {
                        lyxerr << _("Unknown spacing argument: ")
-                                  << ev.argument << endl;
+                                  << cmd.argument << endl;
                }
                if (cur_spacing != new_spacing || cur_value != new_value) {
-                       par->params().spacing(Spacing(new_spacing, new_value));
+                       pit->params().spacing(Spacing(new_spacing, new_value));
                        updwhat = CURSOR_PAR;
                        updflag = true;
                }
        }
        break;
 
+       // These need to do repaints but don't require
+       // special handling otherwise. A *lot* of the
+       // above could probably be done similarly ...
+
+       case LFUN_HOME:
+       case LFUN_END:
+       case LFUN_WORDLEFT:
+       case LFUN_WORDRIGHT:
+       // these two are really unhandled ...
+       case LFUN_ENDBUF:
+       case LFUN_BEGINNINGBUF:
+               updwhat = cursor_update;
+               if (!bv->dispatch(cmd))
+                       result = UNDISPATCHED;
+               break;
+
+       case LFUN_RIGHTSEL:
+       case LFUN_UPSEL:
+       case LFUN_DOWNSEL:
+       case LFUN_LEFTSEL:
+       case LFUN_HOMESEL:
+       case LFUN_ENDSEL:
+       case LFUN_WORDLEFTSEL:
+       case LFUN_WORDRIGHTSEL:
+               updwhat = SELECTION;
+
+               // fallthrough
+
        default:
-               if (!bv->dispatch(ev))
+               if (!bv->dispatch(cmd))
                        result = UNDISPATCHED;
                break;
        }
 
-       if (clear)
-               lt = 0;
        if (updwhat > 0)
                updateLocal(bv, updwhat, updflag);
        /// If the action has deleted all text in the inset, we need to change the
        // language to the language of the surronding text.
-       if (!was_empty && paragraphs.begin()->empty() && !paragraphs.begin()->next()) {
+       if (!was_empty && paragraphs.begin()->empty() &&
+           paragraphs.size() == 1) {
                LyXFont font(LyXFont::ALL_IGNORE);
                font.setLanguage(bv->getParentLanguage(this));
                setFont(bv, font, false);
@@ -1589,12 +1286,10 @@ Inset::RESULT InsetText::localDispatch(FuncRequest const & ev)
 
 
 int InsetText::latex(Buffer const * buf, ostream & os,
-                    bool moving_arg, bool) const
+                    LatexRunParams const & runparams) const
 {
        TexRow texrow;
-       latexParagraphs(buf, paragraphs,
-                       paragraphs.begin(), paragraphs.end(),
-                       os, texrow, moving_arg);
+       latexParagraphs(buf, paragraphs, os, texrow, runparams);
        return texrow.rows();
 }
 
@@ -1603,9 +1298,9 @@ int InsetText::ascii(Buffer const * buf, ostream & os, int linelen) const
 {
        unsigned int lines = 0;
 
-       ParagraphList::iterator beg = paragraphs.begin();
-       ParagraphList::iterator end = paragraphs.end();
-       ParagraphList::iterator it = beg;
+       ParagraphList::const_iterator beg = paragraphs.begin();
+       ParagraphList::const_iterator end = paragraphs.end();
+       ParagraphList::const_iterator it = beg;
        for (; it != end; ++it) {
                string const tmp = buf->asciiParagraph(*it, linelen, it == beg);
                lines += lyx::count(tmp.begin(), tmp.end(), '\n');
@@ -1615,9 +1310,29 @@ int InsetText::ascii(Buffer const * buf, ostream & os, int linelen) const
 }
 
 
+int InsetText::linuxdoc(Buffer const * buf, ostream & os) const
+{
+       ParagraphList::iterator pit = const_cast<ParagraphList&>(paragraphs).begin();
+       ParagraphList::iterator pend = const_cast<ParagraphList&>(paragraphs).end();
+
+       // There is a confusion between the empty paragraph and the default paragraph
+       // The default paragraph is <p></p>, the empty paragraph is *empty*
+       // Since none of the floats of linuxdoc accepts standard paragraphs
+       // I disable them. I don't expect problems. (jamatos 2003/07/27)
+       for (; pit != pend; ++pit) {
+               const string name = pit->layout()->latexname();
+               if (name != "p")
+                       sgml::openTag(os, 1, 0, name);
+               buf->simpleLinuxDocOnePar(os, pit, 0);
+               if (name != "p")
+                       sgml::closeTag(os, 1, 0, name);
+       }
+       return 0;
+}
+
+
 int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const
 {
-       Paragraph * p = &*(paragraphs.begin());
        unsigned int lines = 0;
 
        vector<string> environment_stack(10);
@@ -1628,14 +1343,17 @@ int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const
 
        Paragraph::depth_type depth = 0; // paragraph depth
 
-       while (p) {
+       ParagraphList::iterator pit = const_cast<ParagraphList&>(paragraphs).begin();
+       ParagraphList::iterator pend = const_cast<ParagraphList&>(paragraphs).end();
+
+       for (; pit != pend; ++pit) {
                string sgmlparam;
                int desc_on = 0; // description mode
 
-               LyXLayout_ptr const & style = p->layout();
+               LyXLayout_ptr const & style = pit->layout();
 
                // environment tag closing
-               for (; depth > p->params().depth(); --depth) {
+               for (; depth > pit->params().depth(); --depth) {
                        if (environment_inner[depth] != "!-- --") {
                                item_name = "listitem";
                                lines += sgml::closeTag(os, command_depth + depth, mixcont, item_name);
@@ -1647,7 +1365,7 @@ int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const
                        environment_inner[depth].erase();
                }
 
-               if (depth == p->params().depth()
+               if (depth == pit->params().depth()
                   && environment_stack[depth] != style->latexname()
                   && !environment_stack[depth].empty()) {
                        if (environment_inner[depth] != "!-- --") {
@@ -1670,14 +1388,14 @@ int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const
                        break;
 
                case LATEX_COMMAND:
-                       buf->sgmlError(p, 0,  _("Error: LatexType Command not allowed here.\n"));
+                       buf->error(ErrorItem(_("Error"), _("LatexType Command not allowed here.\n"), pit->id(), 0, pit->size()));
                        return -1;
                        break;
 
                case LATEX_ENVIRONMENT:
                case LATEX_ITEM_ENVIRONMENT:
-                       if (depth < p->params().depth()) {
-                               depth = p->params().depth();
+                       if (depth < pit->params().depth()) {
+                               depth = pit->params().depth();
                                environment_stack[depth].erase();
                        }
 
@@ -1722,8 +1440,7 @@ int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const
                        break;
                }
 
-               buf->simpleDocBookOnePar(os, p, desc_on, depth + 1 + command_depth);
-               p = p->next();
+               buf->simpleDocBookOnePar(os, pit, desc_on, depth + 1 + command_depth);
 
                string end_tag;
                // write closing SGML tags
@@ -1775,75 +1492,34 @@ void InsetText::validate(LaTeXFeatures & features) const
 }
 
 
-void InsetText::getCursorPos(BufferView * bv, int & x, int & y) const
+void InsetText::getCursor(BufferView & bv, int & x, int & y) const
 {
        if (the_locking_inset) {
-               the_locking_inset->getCursorPos(bv, x, y);
+               the_locking_inset->getCursor(bv, x, y);
                return;
        }
-       x = cx(bv) - top_x - TEXT_TO_INSET_OFFSET;
-       y = cy(bv) - TEXT_TO_INSET_OFFSET;
-}
-
-
-int InsetText::insetInInsetY() const
-{
-       if (!the_locking_inset)
-               return 0;
-
-       return (inset_y + the_locking_inset->insetInInsetY());
+       x = cx(&bv);
+       y = cy() + InsetText::y();
 }
 
 
-void InsetText::toggleInsetCursor(BufferView * bv)
+void InsetText::getCursorPos(BufferView * bv, int & x, int & y) const
 {
        if (the_locking_inset) {
-               the_locking_inset->toggleInsetCursor(bv);
+               the_locking_inset->getCursorPos(bv, x, y);
                return;
        }
-
-       LyXFont const font(getLyXText(bv)->getFont(bv->buffer(), cpar(bv), cpos(bv)));
-
-       int const asc = font_metrics::maxAscent(font);
-       int const desc = font_metrics::maxDescent(font);
-
-       if (isCursorVisible())
-               bv->hideLockedInsetCursor();
-       else
-               bv->showLockedInsetCursor(cx(bv), cy(bv), asc, desc);
-       toggleCursorVisible();
+       x = cx(bv) - top_x - TEXT_TO_INSET_OFFSET;
+       y = cy() - TEXT_TO_INSET_OFFSET;
 }
 
 
-void InsetText::showInsetCursor(BufferView * bv, bool show)
+int InsetText::insetInInsetY() const
 {
-       if (the_locking_inset) {
-               the_locking_inset->showInsetCursor(bv, show);
-               return;
-       }
-       if (!isCursorVisible()) {
-               LyXFont const font =
-                       getLyXText(bv)->getFont(bv->buffer(), cpar(bv), cpos(bv));
-
-               int const asc = font_metrics::maxAscent(font);
-               int const desc = font_metrics::maxDescent(font);
-
-               bv->fitLockedInsetCursor(cx(bv), cy(bv), asc, desc);
-               if (show)
-                       bv->showLockedInsetCursor(cx(bv), cy(bv), asc, desc);
-               setCursorVisible(true);
-       }
-}
-
+       if (!the_locking_inset)
+               return 0;
 
-void InsetText::hideInsetCursor(BufferView * bv)
-{
-       if (isCursorVisible()) {
-               bv->hideLockedInsetCursor();
-               setCursorVisible(false);
-       }
-       if (the_locking_inset)
-               the_locking_inset->hideInsetCursor(bv);
+       return inset_y + the_locking_inset->insetInInsetY();
 }
 
 
@@ -1853,86 +1529,89 @@ void InsetText::fitInsetCursor(BufferView * bv) const
                the_locking_inset->fitInsetCursor(bv);
                return;
        }
-       LyXFont const font =
-               getLyXText(bv)->getFont(bv->buffer(), cpar(bv), cpos(bv));
+       LyXFont const font = text_.getFont(bv->buffer(), cpar(), cpos());
 
        int const asc = font_metrics::maxAscent(font);
        int const desc = font_metrics::maxDescent(font);
 
-       if (bv->fitLockedInsetCursor(cx(bv), cy(bv), asc, desc))
+       if (bv->fitLockedInsetCursor(cx(bv), cy(), asc, desc))
                need_update |= FULL;
 }
 
 
-Inset::RESULT
+InsetOld::RESULT
 InsetText::moveRight(BufferView * bv, bool activate_inset, bool selecting)
 {
-       if (getLyXText(bv)->cursor.par()->isRightToLeftPar(bv->buffer()->params))
+       if (text_.cursor.par()->isRightToLeftPar(bv->buffer()->params))
                return moveLeftIntern(bv, false, activate_inset, selecting);
        else
                return moveRightIntern(bv, true, activate_inset, selecting);
 }
 
 
-Inset::RESULT
+InsetOld::RESULT
 InsetText::moveLeft(BufferView * bv, bool activate_inset, bool selecting)
 {
-       if (getLyXText(bv)->cursor.par()->isRightToLeftPar(bv->buffer()->params))
+       if (text_.cursor.par()->isRightToLeftPar(bv->buffer()->params))
                return moveRightIntern(bv, true, activate_inset, selecting);
        else
                return moveLeftIntern(bv, false, activate_inset, selecting);
 }
 
 
-Inset::RESULT
+InsetOld::RESULT
 InsetText::moveRightIntern(BufferView * bv, bool front,
                           bool activate_inset, bool selecting)
 {
-       if (!cpar(bv)->next() && (cpos(bv) >= cpar(bv)->size()))
+       ParagraphList::iterator c_par = cpar();
+
+       if (boost::next(c_par) == paragraphs.end() && cpos() >= c_par->size())
                return FINISHED_RIGHT;
        if (activate_inset && checkAndActivateInset(bv, front))
                return DISPATCHED;
-       getLyXText(bv)->cursorRight(bv);
+       text_.cursorRight(bv);
        if (!selecting)
-               getLyXText(bv)->selection.cursor = getLyXText(bv)->cursor;
+               text_.clearSelection();
        return DISPATCHED_NOUPDATE;
 }
 
 
-Inset::RESULT
+InsetOld::RESULT
 InsetText::moveLeftIntern(BufferView * bv, bool front,
                          bool activate_inset, bool selecting)
 {
-       if (!cpar(bv)->previous() && (cpos(bv) <= 0))
+       if (cpar() == paragraphs.begin() && cpos() <= 0)
                return FINISHED;
-       getLyXText(bv)->cursorLeft(bv);
+       text_.cursorLeft(bv);
        if (!selecting)
-               getLyXText(bv)->selection.cursor = getLyXText(bv)->cursor;
+               text_.clearSelection();
        if (activate_inset && checkAndActivateInset(bv, front))
                return DISPATCHED;
        return DISPATCHED_NOUPDATE;
 }
 
 
-Inset::RESULT InsetText::moveUp(BufferView * bv)
+InsetOld::RESULT InsetText::moveUp(BufferView * bv)
 {
-       if (!crow(bv)->previous())
+       if (crow() == text_.rows().begin())
                return FINISHED_UP;
-       getLyXText(bv)->cursorUp(bv);
+       text_.cursorUp(bv);
+       text_.clearSelection();
        return DISPATCHED_NOUPDATE;
 }
 
 
-Inset::RESULT InsetText::moveDown(BufferView * bv)
+InsetOld::RESULT InsetText::moveDown(BufferView * bv)
 {
-       if (!crow(bv)->next())
+       if (boost::next(crow()) == text_.rows().end())
                return FINISHED_DOWN;
-       getLyXText(bv)->cursorDown(bv);
+       text_.cursorDown(bv);
+       text_.clearSelection();
        return DISPATCHED_NOUPDATE;
 }
 
 
-bool InsetText::insertInset(BufferView * bv, Inset * inset)
+bool InsetText::insertInset(BufferView * bv, InsetOld * inset)
 {
        if (the_locking_inset) {
                if (the_locking_inset->insetAllowed(inset))
@@ -1940,15 +1619,14 @@ bool InsetText::insertInset(BufferView * bv, Inset * inset)
                return false;
        }
        inset->setOwner(this);
-       hideInsetCursor(bv);
-       getLyXText(bv)->insertInset(bv, inset);
+       text_.insertInset(inset);
        bv->fitCursor();
        updateLocal(bv, CURSOR_PAR|CURSOR, true);
        return true;
 }
 
 
-bool InsetText::insetAllowed(Inset::Code code) const
+bool InsetText::insetAllowed(InsetOld::Code code) const
 {
        // in_insetAllowed is a really gross hack,
        // to allow us to call the owner's insetAllowed
@@ -1974,7 +1652,7 @@ UpdatableInset * InsetText::getLockingInset() const
 }
 
 
-UpdatableInset * InsetText::getFirstLockingInsetOfType(Inset::Code c)
+UpdatableInset * InsetText::getFirstLockingInsetOfType(InsetOld::Code c)
 {
        if (c == lyxCode())
                return this;
@@ -1992,21 +1670,16 @@ bool InsetText::showInsetDialog(BufferView * bv) const
 }
 
 
-vector<string> const InsetText::getLabelList() const
+void InsetText::getLabelList(std::vector<string> & list) const
 {
-       vector<string> label_list;
-
-       ParagraphList::iterator pit = paragraphs.begin();
-       ParagraphList::iterator pend = paragraphs.end();
+       ParagraphList::const_iterator pit = paragraphs.begin();
+       ParagraphList::const_iterator pend = paragraphs.end();
        for (; pit != pend; ++pit) {
-               InsetList::iterator beg = pit->insetlist.begin();
-               InsetList::iterator end = pit->insetlist.end();
-               for (; beg != end; ++beg) {
-                       vector<string> const l = beg.getInset()->getLabelList();
-                       label_list.insert(label_list.end(), l.begin(), l.end());
-               }
+               InsetList::const_iterator beg = pit->insetlist.begin();
+               InsetList::const_iterator end = pit->insetlist.end();
+               for (; beg != end; ++beg)
+                       beg->inset->getLabelList(list);
        }
-       return label_list;
 }
 
 
@@ -2017,27 +1690,33 @@ void InsetText::setFont(BufferView * bv, LyXFont const & font, bool toggleall,
                the_locking_inset->setFont(bv, font, toggleall, selectall);
                return;
        }
-       if ((!paragraphs.begin()->next() && paragraphs.begin()->empty()) || cpar(bv)->empty()) {
-               getLyXText(bv)->setFont(bv, font, toggleall);
+
+       if ((paragraphs.size() == 1 && paragraphs.begin()->empty())
+           || cpar()->empty()) {
+               text_.setFont(font, toggleall);
                return;
        }
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
-       if (lt->selection.set()) {
-               setUndo(bv, Undo::EDIT, lt->cursor.par(), lt->cursor.par()->next());
+
+
+       if (text_.selection.set())
+               recordUndo(bv, Undo::ATOMIC, text_.cursor.par());
+
+       if (selectall) {
+               text_.cursorTop();
+               text_.selection.cursor = text_.cursor;
+               text_.cursorBottom();
+               text_.setSelection();
        }
+
+       text_.toggleFree(font, toggleall);
+
        if (selectall)
-               selectAll(bv);
-       lt->toggleFree(bv, font, toggleall);
-       if (selectall)
-               lt->clearSelection();
+               text_.clearSelection();
+
        bv->fitCursor();
-       bool flag = (selectall || lt->selection.set());
-       if (clear)
-               lt = 0;
+
+       bool flag = (selectall || text_.selection.set());
+
        if (flag)
                updateLocal(bv, FULL, true);
        else
@@ -2047,18 +1726,15 @@ void InsetText::setFont(BufferView * bv, LyXFont const & font, bool toggleall,
 
 bool InsetText::checkAndActivateInset(BufferView * bv, bool front)
 {
-       if (cpar(bv)->isInset(cpos(bv))) {
-               Inset * inset =
-                       static_cast<UpdatableInset*>(cpar(bv)->getInset(cpos(bv)));
-               if (!isHighlyEditableInset(inset))
-                       return false;
-               inset->edit(bv, front);
-               if (!the_locking_inset)
-                       return false;
-               updateLocal(bv, CURSOR, false);
-               return true;
-       }
-       return false;
+       InsetOld * inset = cpar()->getInset(cpos());
+       if (!isHighlyEditableInset(inset))
+               return false;
+       FuncRequest cmd(bv, LFUN_INSET_EDIT, front ? "left" : "right");
+       inset->localDispatch(cmd);
+       if (!the_locking_inset)
+               return false;
+       updateLocal(bv, CURSOR, false);
+       return true;
 }
 
 
@@ -2067,8 +1743,8 @@ bool InsetText::checkAndActivateInset(BufferView * bv, int x, int y,
 {
        x -= drawTextXOffset;
        int dummyx = x;
-       int dummyy = y + insetAscent;
-       Inset * inset = getLyXText(bv)->checkInsetHit(bv, dummyx, dummyy);
+       int dummyy = y + dim_.asc;
+       InsetOld * inset = getLyXText(bv)->checkInsetHit(dummyx, dummyy);
        // we only do the edit() call if the inset was hit by the mouse
        // or if it is a highly editable inset. So we should call this
        // function from our own edit with button < 0.
@@ -2077,58 +1753,40 @@ bool InsetText::checkAndActivateInset(BufferView * bv, int x, int y,
        if (button == mouse_button::none && !isHighlyEditableInset(inset))
                return false;
 
-       if (inset) {
-               if (x < 0)
-                       x = insetWidth;
-               if (y < 0)
-                       y = insetDescent;
-               inset_x = cix(bv) - top_x + drawTextXOffset;
-               inset_y = ciy(bv) + drawTextYOffset;
-               inset->edit(bv, x - inset_x, y - inset_y, button);
-               if (!the_locking_inset)
-                       return false;
-               updateLocal(bv, CURSOR, false);
-               return true;
-       }
-       return false;
-}
-
-
-int InsetText::getMaxWidth(BufferView * bv, UpdatableInset const * inset) const
-{
-#if 0
-       int w = UpdatableInset::getMaxWidth(bv, inset);
-       if (w < 0) {
-               return -1;
-       }
-       if (owner()) {
-               w = w - top_x + owner()->x();
-               return w;
-       }
-       w -= (2 * TEXT_TO_INSET_OFFSET);
-       return w - top_x;
-#else
-       return UpdatableInset::getMaxWidth(bv, inset);
-#endif
+       if (!inset)
+               return false;
+       if (x < 0)
+               x = dim_.wid;
+       if (y < 0)
+               y = dim_.des;
+       inset_x = cix(bv) - top_x + drawTextXOffset;
+       inset_y = ciy() + drawTextYOffset;
+       FuncRequest cmd(bv, LFUN_INSET_EDIT, x - inset_x, y - inset_y, button);
+       inset->localDispatch(cmd);
+       if (!the_locking_inset)
+               return false;
+       updateLocal(bv, CURSOR, false);
+       return true;
 }
 
 
-void InsetText::setParagraphData(Paragraph * p, bool same_id)
+void InsetText::setParagraphData(ParagraphList const & plist)
 {
        // we have to unlock any locked inset otherwise we're in troubles
        the_locking_inset = 0;
 
+       // But it it makes no difference that is a lot better.
+#warning FIXME.
+       // See if this can be simplified when std::list is in effect.
        paragraphs.clear();
-       paragraphs.set(new Paragraph(*p, same_id));
-       paragraphs.begin()->setInsetOwner(this);
-       Paragraph * np = &*(paragraphs.begin());
-       while (p->next()) {
-               p = p->next();
-               np->next(new Paragraph(*p, same_id));
-               np->next()->previous(np);
-               np = np->next();
-               np->setInsetOwner(this);
+
+       ParagraphList::const_iterator it = plist.begin();
+       ParagraphList::const_iterator end = plist.end();
+       for (; it != end; ++it) {
+               paragraphs.push_back(*it);
+               paragraphs.back().setInsetOwner(this);
        }
+
        reinitLyXText();
        need_update = INIT;
 }
@@ -2191,14 +1849,12 @@ void InsetText::setFrameColor(BufferView * bv, LColor::color col)
 
 int InsetText::cx(BufferView * bv) const
 {
-       // we do nothing dangerous so we use a local cache
-       LyXText * llt = getLyXText(bv);
-       int x = llt->cursor.x() + top_x + TEXT_TO_INSET_OFFSET;
+       int x = text_.cursor.x() + top_x + TEXT_TO_INSET_OFFSET;
        if (the_locking_inset) {
-               LyXFont font = llt->getFont(bv->buffer(), llt->cursor.par(),
-                                           llt->cursor.pos());
+               LyXFont font = text_.getFont(bv->buffer(), text_.cursor.par(),
+                                           text_.cursor.pos());
                if (font.isVisibleRightToLeft())
-                       x -= the_locking_inset->width(bv, font);
+                       x -= the_locking_inset->width();
        }
        return x;
 }
@@ -2206,185 +1862,115 @@ int InsetText::cx(BufferView * bv) const
 
 int InsetText::cix(BufferView * bv) const
 {
-       // we do nothing dangerous so we use a local cache
-       LyXText * llt = getLyXText(bv);
-       int x = llt->cursor.ix() + top_x + TEXT_TO_INSET_OFFSET;
+       int x = text_.cursor.ix() + top_x + TEXT_TO_INSET_OFFSET;
        if (the_locking_inset) {
-               LyXFont font = llt->getFont(bv->buffer(), llt->cursor.par(),
-                                           llt->cursor.pos());
+               LyXFont font = text_.getFont(bv->buffer(), text_.cursor.par(),
+                                           text_.cursor.pos());
                if (font.isVisibleRightToLeft())
-                       x -= the_locking_inset->width(bv, font);
+                       x -= the_locking_inset->width();
        }
        return x;
 }
 
 
-int InsetText::cy(BufferView * bv) const
+int InsetText::cy() const
 {
-       LyXFont font;
-       return getLyXText(bv)->cursor.y() - ascent(bv, font) + TEXT_TO_INSET_OFFSET;
+       return text_.cursor.y() - dim_.asc + TEXT_TO_INSET_OFFSET;
 }
 
 
-int InsetText::ciy(BufferView * bv) const
+int InsetText::ciy() const
 {
-       LyXFont font;
-       return getLyXText(bv)->cursor.iy() - ascent(bv, font) + TEXT_TO_INSET_OFFSET;
+       return text_.cursor.iy() - dim_.asc + TEXT_TO_INSET_OFFSET;
 }
 
 
-pos_type InsetText::cpos(BufferView * bv) const
+pos_type InsetText::cpos() const
 {
-       return getLyXText(bv)->cursor.pos();
+       return text_.cursor.pos();
 }
 
 
-Paragraph * InsetText::cpar(BufferView * bv) const
+ParagraphList::iterator InsetText::cpar() const
 {
-       return getLyXText(bv)->cursor.par();
+       return text_.cursor.par();
 }
 
 
-bool InsetText::cboundary(BufferView * bv) const
+bool InsetText::cboundary() const
 {
-       return getLyXText(bv)->cursor.boundary();
+       return text_.cursor.boundary();
 }
 
 
-Row * InsetText::crow(BufferView * bv) const
+RowList::iterator InsetText::crow() const
 {
-       return getLyXText(bv)->cursor.row();
+       return text_.cursorRow();
 }
 
 
-LyXText * InsetText::getLyXText(BufferView const * lbv,
+LyXText * InsetText::getLyXText(BufferView const * bv,
                                bool const recursive) const
 {
-       if (cached_bview == lbv) {
-               if (recursive && the_locking_inset)
-                       return the_locking_inset->getLyXText(lbv, true);
-               LyXText * lt = cached_text.get();
-               lyx::Assert(lt && lt->firstRow()->par() == &*(paragraphs.begin()));
-               return lt;
-       }
-       // Super UGLY! (Lgb)
-       BufferView * bv = const_cast<BufferView *>(lbv);
-
-       cached_bview = bv;
-       Cache::iterator it = cache.find(bv);
-
-       if (it != cache.end()) {
-               if (do_reinit) {
-                       reinitLyXText();
-               } else if (do_resize) {
-                       resizeLyXText(do_resize);
-               } else {
-                       if (lt || !it->second.remove) {
-                               lyx::Assert(it->second.text.get());
-                               cached_text = it->second.text;
-                               if (recursive && the_locking_inset) {
-                                       return the_locking_inset->getLyXText(bv, true);
-                               }
-                               return cached_text.get();
-                       } else if (it->second.remove) {
-                               if (locked) {
-                                       saveLyXTextState(it->second.text.get());
-                               } else {
-                                       sstate.lpar = 0;
-                               }
-                       }
-                       //
-                       // when we have to reinit the existing LyXText!
-                       //
-                       it->second.text->init(bv);
-                       restoreLyXTextState(bv, it->second.text.get());
-                       it->second.remove = false;
-               }
-               cached_text = it->second.text;
-               if (the_locking_inset && recursive) {
-                       return the_locking_inset->getLyXText(bv);
-               }
-               return cached_text.get();
-       }
-       ///
-       // we are here only if we don't have a BufferView * in the cache!!!
-       ///
-       cached_text.reset(new LyXText(const_cast<InsetText *>(this)));
-       cached_text->init(bv);
-       restoreLyXTextState(bv, cached_text.get());
+       setViewCache(bv);
+       if (recursive && the_locking_inset)
+               return the_locking_inset->getLyXText(bv, true);
+       return &text_;
+}
 
-       cache.insert(make_pair(bv, cached_text));
 
-       if (the_locking_inset && recursive) {
-               return the_locking_inset->getLyXText(bv);
-       }
-       return cached_text.get();
+void InsetText::setViewCache(BufferView const * bv) const
+{
+       if (bv)
+               text_.bv_owner = const_cast<BufferView *>(bv);
 }
 
 
 void InsetText::deleteLyXText(BufferView * bv, bool recursive) const
 {
-       cached_bview = 0;
-
-       Cache::iterator it = cache.find(bv);
-
-       if (it == cache.end()) {
-               return;
-       }
-
-       lyx::Assert(it->second.text.get());
-
-       it->second.remove = true;
        if (recursive) {
                /// then remove all LyXText in text-insets
-               for_each(paragraphs.begin(), paragraphs.end(),
+               for_each(const_cast<ParagraphList&>(paragraphs).begin(),
+                        const_cast<ParagraphList&>(paragraphs).end(),
                         boost::bind(&Paragraph::deleteInsetsLyXText, _1, bv));
        }
 }
 
 
-void InsetText::resizeLyXText(BufferView * bv, bool force) const
+void InsetText::resizeLyXText(BufferView * bv, bool /*force*/) const
 {
-       if (lt) {
-               // we cannot resize this because we are in use!
-               // so do this on the next possible getLyXText()
-               do_resize = bv;
-               return;
-       }
-       do_resize = 0;
-//     lyxerr << "InsetText::resizeLyXText\n";
-       if (!paragraphs.begin()->next() && paragraphs.begin()->empty()) { // no data, resize not neccessary!
+       if (paragraphs.size() == 1 && paragraphs.begin()->empty()) {
+               // no data, resize not neccessary!
                // we have to do this as a fixed width may have changed!
-               LyXText * t = getLyXText(bv);
-               saveLyXTextState(t);
-               t->init(bv, true);
-               restoreLyXTextState(bv, t);
+               saveLyXTextState();
+               text_.init(bv);
+               restoreLyXTextState();
                return;
        }
-       // one endless line, resize normally not necessary
-       if (!force && getMaxWidth(bv, this) < 0)
-               return;
 
-       Cache::iterator it = cache.find(bv);
-       if (it == cache.end()) {
+       if (!bv)
                return;
-       }
-       lyx::Assert(it->second.text.get());
 
-       LyXText * t = it->second.text.get();
-       saveLyXTextState(t);
+       Assert(bv);
+       setViewCache(bv);
 
-       for_each(paragraphs.begin(), paragraphs.end(),
+       saveLyXTextState();
+
+       for_each(const_cast<ParagraphList&>(paragraphs).begin(),
+                const_cast<ParagraphList&>(paragraphs).end(),
                 boost::bind(&Paragraph::resizeInsetsLyXText, _1, bv));
 
-       t->init(bv, true);
-       restoreLyXTextState(bv, t);
+       text_.init(bv);
+       restoreLyXTextState();
+
+       // seems to be unneeded
+#if 1
        if (the_locking_inset) {
                inset_x = cix(bv) - top_x + drawTextXOffset;
-               inset_y = ciy(bv) + drawTextYOffset;
+               inset_y = ciy() + drawTextYOffset;
        }
 
-       t->top_y(bv->screen().topCursorVisible(t->cursor, t->top_y()));
+       text_.top_y(bv->screen().topCursorVisible(&text_));
        if (!owner()) {
                const_cast<InsetText*>(this)->updateLocal(bv, FULL, false);
                // this will scroll the screen such that the cursor becomes visible
@@ -2392,45 +1978,35 @@ void InsetText::resizeLyXText(BufferView * bv, bool force) const
        } else {
                need_update |= FULL;
        }
+#endif
 }
 
 
 void InsetText::reinitLyXText() const
 {
-       if (lt) {
-               // we cannot resize this because we are in use!
-               // so do this on the next possible getLyXText()
-               do_reinit = true;
-               return;
-       }
-       do_reinit = false;
-       do_resize = 0;
-//     lyxerr << "InsetText::reinitLyXText\n";
-       for (Cache::iterator it = cache.begin(); it != cache.end(); ++it) {
-               lyx::Assert(it->second.text.get());
+       BufferView * bv = text_.bv_owner;
 
-               LyXText * t = it->second.text.get();
-               BufferView * bv = it->first;
+       if (!bv)
+               return;
 
-               saveLyXTextState(t);
+       saveLyXTextState();
 
-               for_each(paragraphs.begin(), paragraphs.end(),
-                        boost::bind(&Paragraph::resizeInsetsLyXText, _1, bv));
+       for_each(const_cast<ParagraphList&>(paragraphs).begin(),
+                const_cast<ParagraphList&>(paragraphs).end(),
+                boost::bind(&Paragraph::resizeInsetsLyXText, _1, bv));
 
-               t->init(bv, true);
-               restoreLyXTextState(bv, t);
-               if (the_locking_inset) {
-                       inset_x = cix(bv) - top_x + drawTextXOffset;
-                       inset_y = ciy(bv) + drawTextYOffset;
-               }
-               t->top_y(bv->screen().topCursorVisible(t->cursor, t->top_y()));
-               if (!owner()) {
-                       const_cast<InsetText*>(this)->updateLocal(bv, FULL, false);
-                       // this will scroll the screen such that the cursor becomes visible
-                       bv->updateScrollbar();
-               } else {
-                       need_update = FULL;
-               }
+       text_.init(bv);
+       restoreLyXTextState();
+       if (the_locking_inset) {
+               inset_x = cix(bv) - top_x + drawTextXOffset;
+               inset_y = ciy() + drawTextYOffset;
+       }
+       text_.top_y(bv->screen().topCursorVisible(&text_));
+       if (!owner()) {
+               // this will scroll the screen such that the cursor becomes visible
+               bv->updateScrollbar();
+       } else {
+               need_update = FULL;
        }
 }
 
@@ -2473,33 +2049,18 @@ int InsetText::scroll(bool recursive) const
 }
 
 
-bool InsetText::doClearArea() const
-{
-       return !locked || (need_update & (FULL|INIT));
-}
-
-
-void InsetText::selectAll(BufferView * bv)
-{
-       getLyXText(bv)->cursorTop(bv);
-       getLyXText(bv)->selection.cursor = getLyXText(bv)->cursor;
-       getLyXText(bv)->cursorBottom(bv);
-       getLyXText(bv)->setSelection(bv);
-}
-
-
 void InsetText::clearSelection(BufferView * bv)
 {
        getLyXText(bv)->clearSelection();
 }
 
 
-void InsetText::clearInset(BufferView * bv, int baseline, bool & cleared) const
+void InsetText::clearInset(BufferView * bv, int start_x, int baseline) const
 {
        Painter & pain = bv->painter();
-       int w = insetWidth;
-       int h = insetAscent + insetDescent;
-       int ty = baseline - insetAscent;
+       int w = dim_.wid;
+       int h = dim_.asc + dim_.des;
+       int ty = baseline - dim_.asc;
 
        if (ty < 0) {
                h += ty;
@@ -2509,27 +2070,14 @@ void InsetText::clearInset(BufferView * bv, int baseline, bool & cleared) const
                h = pain.paperHeight();
        if ((top_x + drawTextXOffset + w) > pain.paperWidth())
                w = pain.paperWidth();
-//     w -= TEXT_TO_INSET_OFFSET;
-       pain.fillRectangle(top_x + 1, ty + 1, w - 1, h - 1, backgroundColor());
-       cleared = true;
+       pain.fillRectangle(start_x + 1, ty + 1, w - 3, h - 1, backgroundColor());
        need_update = FULL;
-       frame_is_visible = false;
 }
 
 
-Paragraph * InsetText::firstParagraph() const
+ParagraphList * InsetText::getParagraphs(int i) const
 {
-       Paragraph * result;
-       if (the_locking_inset)
-               if ((result = the_locking_inset->firstParagraph()))
-                       return result;
-       return &*(paragraphs.begin());
-}
-
-
-Paragraph * InsetText::getFirstParagraph(int i) const
-{
-       return (i == 0) ? &*(paragraphs.begin()) : 0;
+       return (i == 0) ? const_cast<ParagraphList*>(&paragraphs) : 0;
 }
 
 
@@ -2541,44 +2089,20 @@ LyXCursor const & InsetText::cursor(BufferView * bv) const
 }
 
 
-Paragraph * InsetText::paragraph() const
-{
-       return &*(paragraphs.begin());
-}
-
-
-void InsetText::paragraph(Paragraph * p)
-{
-       // GENERAL COMMENT: We don't have to free the old paragraphs as the
-       // caller of this function has to take care of it. This IS important
-       // as we could have to insert a paragraph before this one and just
-       // link the actual to a new ones next and set it with this function
-       // and are done!
-       paragraphs.set(p);
-       // set ourself as owner for all the paragraphs inserted!
-       for_each(paragraphs.begin(), paragraphs.end(),
-                boost::bind(&Paragraph::setInsetOwner, _1, this));
-
-       reinitLyXText();
-       // redraw myself when asked for
-       need_update = INIT;
-}
-
-
-Inset * InsetText::getInsetFromID(int id_arg) const
+InsetOld * InsetText::getInsetFromID(int id_arg) const
 {
        if (id_arg == id())
                return const_cast<InsetText *>(this);
 
-       ParagraphList::iterator pit = paragraphs.begin();
-       ParagraphList::iterator pend = paragraphs.end();
+       ParagraphList::const_iterator pit = paragraphs.begin();
+       ParagraphList::const_iterator pend = paragraphs.end();
        for (; pit != pend; ++pit) {
-               InsetList::iterator it = pit->insetlist.begin();
-               InsetList::iterator end = pit->insetlist.end();
+               InsetList::const_iterator it = pit->insetlist.begin();
+               InsetList::const_iterator end = pit->insetlist.end();
                for (; it != end; ++it) {
-                       if (it.getInset()->id() == id_arg)
-                               return it.getInset();
-                       Inset * in = it.getInset()->getInsetFromID(id_arg);
+                       if (it->inset->id() == id_arg)
+                               return it->inset;
+                       InsetOld * in = it->inset->getInsetFromID(id_arg);
                        if (in)
                                return in;
                }
@@ -2588,34 +2112,23 @@ Inset * InsetText::getInsetFromID(int id_arg) const
 
 
 WordLangTuple const
-InsetText::selectNextWordToSpellcheck(BufferView * bv,
-                                     float & value) const
+InsetText::selectNextWordToSpellcheck(BufferView * bv, float & value) const
 {
-       bool clear = false;
        WordLangTuple word;
-
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
        if (the_locking_inset) {
                word = the_locking_inset->selectNextWordToSpellcheck(bv, value);
                if (!word.word().empty()) {
-                       value += cy(bv);
-                       if (clear)
-                               lt = 0;
+                       value += cy();
                        return word;
                }
                // we have to go on checking so move cursor to the next char
-               lt->cursor.pos(lt->cursor.pos() + 1);
+               text_.cursor.pos(text_.cursor.pos() + 1);
        }
-       word = lt->selectNextWordToSpellcheck(bv, value);
+       word = text_.selectNextWordToSpellcheck(value);
        if (word.word().empty())
                bv->unlockInset(const_cast<InsetText *>(this));
        else
-               value = cy(bv);
-       if (clear)
-               lt = 0;
+               value = cy();
        return word;
 }
 
@@ -2626,7 +2139,7 @@ void InsetText::selectSelectedWord(BufferView * bv)
                the_locking_inset->selectSelectedWord(bv);
                return;
        }
-       getLyXText(bv)->selectSelectedWord(bv);
+       getLyXText(bv)->selectSelectedWord();
        updateLocal(bv, SELECTION, false);
 }
 
@@ -2636,90 +2149,70 @@ void InsetText::toggleSelection(BufferView * bv, bool kill_selection)
        if (the_locking_inset) {
                the_locking_inset->toggleSelection(bv, kill_selection);
        }
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
 
        int x = top_x + TEXT_TO_INSET_OFFSET;
 
-       Row * row = lt->firstRow();
-       int y_offset = top_baseline - row->ascent_of_text();
+       RowList::iterator rowit = text_.rows().begin();
+       RowList::iterator end = text_.rows().end();
+       int y_offset = top_baseline - rowit->ascent_of_text();
        int y = y_offset;
-       while ((row != 0) && ((y+row->height()) <= 0)) {
-               y += row->height();
-               row = row->next();
+       while ((rowit != end) && ((y + rowit->height()) <= 0)) {
+               y += rowit->height();
+               ++rowit;
        }
        if (y_offset < 0)
                y_offset = y;
 
        if (need_update & SELECTION)
                need_update = NONE;
-       bv->screen().toggleSelection(lt, bv, kill_selection, y_offset, x);
-       if (clear)
-               lt = 0;
+       bv->screen().toggleSelection(&text_, bv, kill_selection, y_offset, x);
 }
 
 
 bool InsetText::nextChange(BufferView * bv, lyx::pos_type & length)
 {
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
        if (the_locking_inset) {
                if (the_locking_inset->nextChange(bv, length))
                        return true;
-               lt->cursorRight(bv, true);
+               text_.cursorRight(true);
        }
-       lyxfind::SearchResult result =
-               lyxfind::findNextChange(bv, lt, length);
+       lyx::find::SearchResult result =
+               lyx::find::findNextChange(bv, &text_, length);
 
-       if (result == lyxfind::SR_FOUND) {
-               LyXCursor cur = lt->cursor;
+       if (result == lyx::find::SR_FOUND) {
+               LyXCursor cur = text_.cursor;
                bv->unlockInset(bv->theLockingInset());
                if (bv->lockInset(this))
                        locked = true;
-               lt->cursor = cur;
-               lt->setSelectionRange(bv, length);
+               text_.cursor = cur;
+               text_.setSelectionRange(length);
                updateLocal(bv, SELECTION, false);
        }
-       if (clear)
-               lt = 0;
-       return result != lyxfind::SR_NOT_FOUND;
+       return result != lyx::find::SR_NOT_FOUND;
 }
 
 
 bool InsetText::searchForward(BufferView * bv, string const & str,
                              bool cs, bool mw)
 {
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
        if (the_locking_inset) {
                if (the_locking_inset->searchForward(bv, str, cs, mw))
                        return true;
-               lt->cursorRight(bv, true);
+               text_.cursorRight(true);
        }
-       lyxfind::SearchResult result =
-               lyxfind::LyXFind(bv, lt, str, true, cs, mw);
+       lyx::find::SearchResult result =
+               lyx::find::find(bv, &text_, str, true, cs, mw);
 
-       if (result == lyxfind::SR_FOUND) {
-               LyXCursor cur = lt->cursor;
+       if (result == lyx::find::SR_FOUND) {
+               LyXCursor cur = text_.cursor;
                bv->unlockInset(bv->theLockingInset());
                if (bv->lockInset(this))
                        locked = true;
-               lt->cursor = cur;
-               lt->setSelectionRange(bv, str.length());
+               text_.cursor = cur;
+               text_.setSelectionRange(str.length());
                updateLocal(bv, SELECTION, false);
        }
-       if (clear)
-               lt = 0;
-       return (result != lyxfind::SR_NOT_FOUND);
+       return (result != lyx::find::SR_NOT_FOUND);
 }
 
 bool InsetText::searchBackward(BufferView * bv, string const & str,
@@ -2729,32 +2222,28 @@ bool InsetText::searchBackward(BufferView * bv, string const & str,
                if (the_locking_inset->searchBackward(bv, str, cs, mw))
                        return true;
        }
-       bool clear = false;
-       if (!lt) {
-               lt = getLyXText(bv);
-               clear = true;
-       }
        if (!locked) {
-               Paragraph * p = &*(paragraphs.begin());
-               while (p->next())
-                       p = p->next();
-               lt->setCursor(bv, p, p->size());
+               ParagraphList::iterator pit = paragraphs.begin();
+               ParagraphList::iterator pend = paragraphs.end();
+
+               while (boost::next(pit) != pend)
+                       ++pit;
+
+               text_.setCursor(pit, pit->size());
        }
-       lyxfind::SearchResult result =
-               lyxfind::LyXFind(bv, lt, str, false, cs, mw);
+       lyx::find::SearchResult result =
+               lyx::find::find(bv, &text_, str, false, cs, mw);
 
-       if (result == lyxfind::SR_FOUND) {
-               LyXCursor cur = lt->cursor;
+       if (result == lyx::find::SR_FOUND) {
+               LyXCursor cur = text_.cursor;
                bv->unlockInset(bv->theLockingInset());
                if (bv->lockInset(this))
                        locked = true;
-               lt->cursor = cur;
-               lt->setSelectionRange(bv, str.length());
+               text_.cursor = cur;
+               text_.setSelectionRange(str.length());
                updateLocal(bv, SELECTION, false);
        }
-       if (clear)
-               lt = 0;
-       return (result != lyxfind::SR_NOT_FOUND);
+       return (result != lyx::find::SR_NOT_FOUND);
 }
 
 
@@ -2768,27 +2257,31 @@ bool InsetText::checkInsertChar(LyXFont & font)
 
 void InsetText::collapseParagraphs(BufferView * bv)
 {
-       LyXText * llt = getLyXText(bv);
+       while (paragraphs.size() > 1) {
+               ParagraphList::iterator first_par = paragraphs.begin();
+               ParagraphList::iterator next_par = boost::next(first_par);
+               size_t const first_par_size = first_par->size();
 
-       while (paragraphs.begin()->next()) {
-               if (!paragraphs.begin()->empty() && !paragraphs.begin()->next()->empty() &&
-                       !paragraphs.begin()->isSeparator(paragraphs.begin()->size() - 1))
-               {
-                       paragraphs.begin()->insertChar(paragraphs.begin()->size(), ' ');
+               if (!first_par->empty() &&
+                   !next_par->empty() &&
+                   !first_par->isSeparator(first_par_size - 1)) {
+                       first_par->insertChar(first_par_size, ' ');
                }
-               if (llt->selection.set()) {
-                       if (llt->selection.start.par() == paragraphs.begin()->next()) {
-                               llt->selection.start.par(&*(paragraphs.begin()));
-                               llt->selection.start.pos(
-                                       llt->selection.start.pos() + paragraphs.begin()->size());
+
+               if (text_.selection.set()) {
+                       if (text_.selection.start.par() == next_par) {
+                               text_.selection.start.par(first_par);
+                               text_.selection.start.pos(
+                                       text_.selection.start.pos() + first_par_size);
                        }
-                       if (llt->selection.end.par() == paragraphs.begin()->next()) {
-                               llt->selection.end.par(&*(paragraphs.begin()));
-                               llt->selection.end.pos(
-                                       llt->selection.end.pos() + paragraphs.begin()->size());
+                       if (text_.selection.end.par() == next_par) {
+                               text_.selection.end.par(first_par);
+                               text_.selection.end.pos(
+                                       text_.selection.end.pos() + first_par_size);
                        }
                }
-               mergeParagraph(bv->buffer()->params, paragraphs, paragraphs.begin());
+
+               mergeParagraph(bv->buffer()->params, paragraphs, first_par);
        }
        reinitLyXText();
 }
@@ -2802,55 +2295,35 @@ void InsetText::getDrawFont(LyXFont & font) const
 }
 
 
-void InsetText::appendParagraphs(Buffer * buffer,
-                                Paragraph * newpar)
+void InsetText::appendParagraphs(Buffer * buffer, ParagraphList & plist)
 {
-       BufferParams const & bparams = buffer->params;
-       Paragraph * buf;
-       Paragraph * tmpbuf = newpar;
-       Paragraph * lastbuffer = buf = new Paragraph(*tmpbuf, false);
-       if (bparams.tracking_changes)
-               buf->cleanChanges();
+#warning FIXME Check if Changes stuff needs changing here. (Lgb)
+// And it probably does. You have to take a look at this John. (Lgb)
+#warning John, have a look here. (Lgb)
+       ParagraphList::iterator pit = plist.begin();
+       ParagraphList::iterator ins = paragraphs.insert(paragraphs.end(), *pit);
+       ++pit;
+       mergeParagraph(buffer->params, paragraphs, boost::prior(ins));
 
-       while (tmpbuf->next()) {
-               tmpbuf = tmpbuf->next();
-               lastbuffer->next(new Paragraph(*tmpbuf, false));
-               lastbuffer->next()->previous(lastbuffer);
-               lastbuffer = lastbuffer->next();
-               if (bparams.tracking_changes)
-                       lastbuffer->cleanChanges();
-       }
-       lastbuffer = &*(paragraphs.begin());
-       while (lastbuffer->next())
-               lastbuffer = lastbuffer->next();
-       if (!newpar->empty() && !lastbuffer->empty() &&
-               !lastbuffer->isSeparator(lastbuffer->size() - 1))
-       {
-               lastbuffer->insertChar(lastbuffer->size(), ' ');
+       ParagraphList::iterator pend = plist.end();
+       for (; pit != pend; ++pit) {
+               paragraphs.push_back(*pit);
        }
 
-       // make the buf exactly the same layout than our last paragraph
-       buf->makeSameLayout(lastbuffer);
-
-       // paste it!
-       lastbuffer->next(buf);
-       buf->previous(lastbuffer);
-       mergeParagraph(buffer->params, paragraphs, lastbuffer);
-
        reinitLyXText();
 }
 
 
-void InsetText::addPreview(grfx::PreviewLoader & loader) const
+void InsetText::addPreview(PreviewLoader & loader) const
 {
-       Paragraph * par = getFirstParagraph(0);
-       while (par) {
-               InsetList::iterator it  = par->insetlist.begin();
-               InsetList::iterator end = par->insetlist.end();
+       ParagraphList::const_iterator pit = paragraphs.begin();
+       ParagraphList::const_iterator pend = paragraphs.end();
+
+       for (; pit != pend; ++pit) {
+               InsetList::const_iterator it  = pit->insetlist.begin();
+               InsetList::const_iterator end = pit->insetlist.end();
                for (; it != end; ++it) {
-                       it.getInset()->addPreview(loader);
+                       it->inset->addPreview(loader);
                }
-
-               par = par->next();
        }
 }