]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.C
a3c784e1649f0b71292601c85c6aead6d4dd6bf4
[lyx.git] / src / insets / insettext.C
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 1998-2000 The LyX Team.
8  *
9  * ======================================================
10  */
11
12 #include <config.h>
13
14 #include <fstream>
15 #include <algorithm>
16
17 #include <cstdlib>
18
19 #ifdef __GNUG__
20 #pragma implementation
21 #endif
22
23 #include "insettext.h"
24 #include "lyxparagraph.h"
25 #include "lyxlex.h"
26 #include "debug.h"
27 #include "lyxfont.h"
28 #include "commandtags.h"
29 #include "buffer.h"
30 #include "LyXView.h"
31 #include "BufferView.h"
32 #include "layout.h"
33 #include "LaTeXFeatures.h"
34 #include "Painter.h"
35 #include "lyx_gui_misc.h"
36 #include "lyxtext.h"
37 #include "lyxcursor.h"
38 #include "CutAndPaste.h"
39 #include "font.h"
40 #include "minibuffer.h"
41 #include "LColor.h"
42 #include "support/textutils.h"
43 #include "support/LAssert.h"
44 #include "lyxrow.h"
45 #include "lyxrc.h"
46 #include "intl.h"
47 #include "trans_mgr.h"
48 #include "lyxscreen.h"
49 #include "WorkArea.h"
50
51 using std::ostream;
52 using std::ifstream;
53 using std::endl;
54 using std::min;
55 using std::max;
56
57 extern unsigned char getCurrentTextClass(Buffer *);
58
59 InsetText::InsetText()
60 {
61     par = new LyXParagraph();
62     init();
63 }
64
65
66 InsetText::InsetText(InsetText const & ins)
67         : UpdatableInset()
68 {
69     par = 0;
70     init(&ins);
71     autoBreakRows = ins.autoBreakRows;
72 }
73
74
75 InsetText & InsetText::operator=(InsetText const & it)
76 {
77     init(&it);
78     autoBreakRows = it.autoBreakRows;
79     return * this;
80 }
81
82
83 void InsetText::init(InsetText const * ins)
84 {
85     top_y = 0;
86     last_width = 0;
87     last_height = 0;
88     insetAscent = 0;
89     insetDescent = 0;
90     insetWidth = 0;
91     the_locking_inset = 0;
92     cursor_visible = false;
93     interline_space = 1;
94     no_selection = false;
95     need_update = INIT;
96     drawTextXOffset = 0;
97     drawTextYOffset = 0;
98     autoBreakRows = false;
99     drawFrame = NEVER;
100     xpos = 0.0;
101     if (ins) {
102         SetParagraphData(ins->par);
103         autoBreakRows = ins->autoBreakRows;
104         drawFrame = ins->drawFrame;
105     }
106     par->SetInsetOwner(this);
107     frame_color = LColor::insetframe;
108     locked = false;
109     old_par = 0;
110 }
111
112
113 InsetText::~InsetText()
114 {
115     // delete all instances of LyXText before deleting the paragraps used
116     // by it.
117     for(Cache::const_iterator cit = cache.begin(); cit != cache.end(); ++cit)
118         delete (*cit).second;
119     LyXParagraph * p = par->next;
120     delete par;
121     while(p) {
122         par = p;
123         p = p->next;
124         delete par;
125     }
126 }
127
128
129 void InsetText::clear()
130 {
131     // delete all instances of LyXText before deleting the paragraps used
132     // by it.
133     for(Cache::const_iterator cit = cache.begin(); cit != cache.end(); ++cit)
134         delete (*cit).second;
135     LyXParagraph * p = par->next;
136     delete par;
137     while(p) {
138         par = p;
139         p = p->next;
140         delete par;
141     }
142     par = new LyXParagraph();
143 }
144
145
146 Inset * InsetText::Clone(Buffer const &) const
147 {
148     InsetText * t = new InsetText(*this);
149     return t;
150 }
151
152
153 void InsetText::Write(Buffer const * buf, ostream & os) const
154 {
155     os << "Text\n";
156     WriteParagraphData(buf, os);
157 }
158
159
160 void InsetText::WriteParagraphData(Buffer const * buf, ostream & os) const
161 {
162     par->writeFile(buf, os, buf->params, 0, 0);
163 }
164
165
166 void InsetText::Read(Buffer const * buf, LyXLex & lex)
167 {
168     string token;
169     int pos = 0;
170     LyXParagraph * return_par = 0;
171     char depth = 0; // signed or unsigned?
172 #ifndef NEW_INSETS
173     LyXParagraph::footnote_flag footnoteflag = LyXParagraph::NO_FOOTNOTE;
174     LyXParagraph::footnote_kind footnotekind = LyXParagraph::FOOTNOTE;
175 #endif
176     LyXFont font(LyXFont::ALL_INHERIT);
177
178     // delete all instances of LyXText before deleting the paragraps used
179     // by it.
180     for(Cache::const_iterator cit = cache.begin(); cit != cache.end(); ++cit)
181         delete (*cit).second;
182
183     LyXParagraph * p = par->next;
184     delete par;
185     while(p) {
186         par = p;
187         p = p->next;
188         delete par;
189     }
190     par = new LyXParagraph;
191     while (lex.IsOK()) {
192         lex.nextToken();
193         token = lex.GetString();
194         if (token.empty())
195             continue;
196         if (token == "\\end_inset")
197             break;
198         if (const_cast<Buffer*>(buf)->
199             parseSingleLyXformat2Token(lex, par, return_par,token, pos, depth,
200                                        font
201 #ifndef NEW_INSETS
202                                        , footnoteflag, footnotekind
203 #endif
204                                        ))
205         {
206             // the_end read this should NEVER happen
207             lex.printError("\\the_end read in inset! Error in document!");
208             return;
209         }
210     }
211     if (!return_par)
212             return_par = par;
213     par = return_par;
214     while(return_par) {
215         return_par->SetInsetOwner(this);
216         return_par = return_par->next;
217     }
218     
219     if (token != "\\end_inset") {
220         lex.printError("Missing \\end_inset at this point. "
221                        "Read: `$$Token'");
222     }
223     need_update = INIT;
224 }
225
226
227 int InsetText::ascent(BufferView * bv, LyXFont const &) const
228 {
229     int y_temp = 0;
230     Row * row = TEXT(bv)->GetRowNearY(y_temp);
231     insetAscent = row->ascent_of_text() + TEXT_TO_INSET_OFFSET;
232     return insetAscent;
233 }
234
235
236 int InsetText::descent(BufferView * bv, LyXFont const &) const
237 {
238     int y_temp = 0;
239     Row * row = TEXT(bv)->GetRowNearY(y_temp);
240     insetDescent = TEXT(bv)->height - row->ascent_of_text() +
241         TEXT_TO_INSET_OFFSET;
242     return insetDescent;
243 }
244
245
246 int InsetText::width(BufferView * bv, LyXFont const &) const
247 {
248     insetWidth = TEXT(bv)->width + (2 * TEXT_TO_INSET_OFFSET);
249     return insetWidth;
250 }
251
252
253 int InsetText::textWidth(Painter & pain) const
254 {
255     int w = getMaxWidth(pain, this);
256     return w;
257 }
258
259
260 void InsetText::draw(BufferView * bv, LyXFont const & f,
261                      int baseline, float & x, bool cleared) const
262 {
263     Painter & pain = bv->painter();
264
265     // no draw is necessary !!!
266     if ((drawFrame == LOCKED) && !locked && !par->size()) {
267         if (!cleared && (need_update == CLEAR_FRAME)) {
268             pain.rectangle(top_x + 1, baseline - insetAscent + 1,
269                            width(bv, f) - 1,
270                            insetAscent + insetDescent - 1,
271                            LColor::background);
272         }
273         top_x = int(x);
274         top_baseline = baseline;
275         x += width(bv, f);
276         need_update = NONE;
277         return;
278     }
279
280     xpos = x;
281     UpdatableInset::draw(bv, f, baseline, x, cleared);
282
283     if (!cleared && ((need_update==FULL) || (top_x!=int(x)) ||
284                      (top_baseline!=baseline))) {
285         int w =  insetWidth;
286         int h = insetAscent + insetDescent;
287         int ty = baseline - insetAscent;
288         
289         if (ty < 0) {
290             h += ty;
291             ty = 0;
292         }
293         if ((ty + h) > pain.paperHeight())
294             h = pain.paperHeight();
295         if ((top_x + drawTextXOffset + w) > pain.paperWidth())
296             w = pain.paperWidth();
297         pain.fillRectangle(top_x+drawTextXOffset, ty, w, h);
298         cleared = true;
299         need_update = FULL;
300     }
301     if (!cleared && (need_update == NONE))
302         return;
303
304     if (top_x != int(x)) {
305         need_update = INIT;
306         top_x = int(x);
307         bv->text->status = LyXText::CHANGED_IN_DRAW;
308         return;
309     }
310
311     top_baseline = baseline;
312     top_y = baseline - ascent(bv, f);
313     last_width = width(bv, f);
314     last_height = ascent(bv, f) + descent(bv, f);
315
316     if (the_locking_inset && (cpar(bv) == inset_par) && (cpos(bv) == inset_pos)) {
317         inset_x = cx(bv) - top_x + drawTextXOffset;
318         inset_y = cy(bv) + drawTextYOffset;
319     }
320     if (!cleared && (need_update == CURSOR) && !TEXT(bv)->selection) {
321         x += width(bv, f);
322         need_update = NONE;
323         return;
324     }
325     x += TEXT_TO_INSET_OFFSET;
326     {
327         int y = 0;
328         Row * row = TEXT(bv)->GetRowNearY(y);
329         int y_offset = baseline - row->ascent_of_text();
330         int ph = pain.paperHeight();
331         int first = 0;
332         y = y_offset;
333         while ((row != 0) && ((y+row->height()) <= 0)) {
334             y += row->height();
335             first += row->height();
336             row = row->next();
337         }
338         if (y_offset < 0)
339             y_offset = y;
340         TEXT(bv)->first = first;
341         if (cleared || !locked || (need_update == FULL)) {
342             int yf = y_offset;
343             y = 0;
344             while ((row != 0) && (yf < ph)) {
345                     TEXT(bv)->GetVisibleRow(bv, y+y_offset, int(x), row,
346                                             y+first, cleared);
347                 y += row->height();
348                 yf += row->height();
349                 row = row->next();
350             }
351         } else if (need_update == SELECTION) {
352             bv->screen()->ToggleToggle(TEXT(bv), y_offset, int(x));
353         } else {
354             locked = false;
355             if (need_update == CURSOR) {
356                 bv->screen()->ToggleSelection(TEXT(bv), true, y_offset,int(x));
357                 TEXT(bv)->ClearSelection();
358                 TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
359             }
360             bv->screen()->Update(TEXT(bv), y_offset, int(x));
361             locked = true;
362         }
363     }
364     TEXT(bv)->refresh_y = 0;
365     TEXT(bv)->status = LyXText::UNCHANGED;
366     if ((need_update != CURSOR_PAR) &&
367         ((drawFrame == ALWAYS) || ((drawFrame == LOCKED) && locked)))
368     {
369             pain.rectangle(top_x + 1, baseline - insetAscent + 1,
370                            width(bv, f) - 1, insetAscent + insetDescent - 1,
371                            frame_color);
372     } else if (need_update == CLEAR_FRAME) {
373             pain.rectangle(top_x + 1, baseline - insetAscent + 1,
374                            width(bv, f) - 1, insetAscent + insetDescent - 1,
375                            LColor::background);
376     }
377     x += width(bv, f) - TEXT_TO_INSET_OFFSET;
378     if (bv->text->status==LyXText::CHANGED_IN_DRAW)
379         need_update = INIT;
380     else if (need_update != INIT)
381         need_update = NONE;
382 }
383
384
385 void InsetText::update(BufferView * bv, LyXFont const & font, bool reinit)
386 {
387     if (reinit) {  // && (need_update != CURSOR)) {
388         need_update = INIT;
389         resizeLyXText(bv);
390         if (owner())
391             owner()->update(bv, font, true);
392         return;
393     }
394     if (the_locking_inset) {
395         inset_x = cx(bv) - top_x + drawTextXOffset;
396         inset_y = cy(bv) + drawTextYOffset;
397         the_locking_inset->update(bv, font, reinit);
398     }
399     if (need_update == INIT) {
400         resizeLyXText(bv);
401         need_update = FULL;
402 //      if (!owner() && bv->text)
403 //          bv->text->UpdateInset(bv, this);
404     }
405     int oldw = insetWidth;
406 #if 1
407     insetWidth = TEXT(bv)->width + (2 * TEXT_TO_INSET_OFFSET);
408     // max(textWidth(bv->painter()),
409     // static_cast<int>(TEXT(bv)->width) + drawTextXOffset) +
410     // (2 * TEXT_TO_INSET_OFFSET);
411 #else
412     insetWidth = textWidth(bv->painter());
413     if (insetWidth < 0)
414             insetWidth = static_cast<int>(TEXT(bv)->width);
415 #endif
416     if (oldw != insetWidth) {
417 //          printf("TW(%p): %d-%d-%d-%d\n",this,insetWidth, oldw,
418 //                 textWidth(bv->painter()),static_cast<int>(TEXT(bv)->width));
419         resizeLyXText(bv);
420         need_update = FULL;
421 #if 0
422         if (owner()) {
423             owner()->update(bv, font, reinit);
424             return;
425         } else {
426             update(bv, font, reinit);
427         }
428 #else
429 #if 1
430         update(bv, font, reinit);
431 #else
432         UpdateLocal(bv, INIT, false);
433 #endif
434 #endif
435         return;
436     }
437     if ((need_update==CURSOR_PAR) && (TEXT(bv)->status==LyXText::UNCHANGED) &&
438         the_locking_inset)
439     {
440         TEXT(bv)->UpdateInset(bv, the_locking_inset);
441     }
442
443     if (TEXT(bv)->status == LyXText::NEED_MORE_REFRESH)
444         need_update = FULL;
445
446     int y_temp = 0;
447     Row * row = TEXT(bv)->GetRowNearY(y_temp);
448     insetAscent = row->ascent_of_text() + TEXT_TO_INSET_OFFSET;
449     insetDescent = TEXT(bv)->height - row->ascent_of_text() +
450         TEXT_TO_INSET_OFFSET;
451 }
452
453
454 void InsetText::UpdateLocal(BufferView * bv, UpdateCodes what, bool mark_dirty)
455 {
456     TEXT(bv)->FullRebreak(bv);
457     if (need_update != INIT) {
458         if (TEXT(bv)->status == LyXText::NEED_MORE_REFRESH)
459             need_update = FULL;
460         else if (!the_locking_inset || (what != CURSOR))
461             need_update = what;
462     }
463     if ((need_update != CURSOR) || (TEXT(bv)->status != LyXText::UNCHANGED) ||
464         TEXT(bv)->selection)
465             bv->updateInset(this, mark_dirty);
466     bv->owner()->showState();
467     if (old_par != cpar(bv)) {
468             bv->owner()->setLayout(cpar(bv)->GetLayout());
469             old_par = cpar(bv);
470     }
471 }
472
473
474 string const InsetText::EditMessage() const
475 {
476     return _("Opened Text Inset");
477 }
478
479
480 void InsetText::Edit(BufferView * bv, int x, int y, unsigned int button)
481 {
482 //    par->SetInsetOwner(this);
483     UpdatableInset::Edit(bv, x, y, button);
484
485     if (!bv->lockInset(this)) {
486         lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
487         return;
488     }
489     locked = true;
490     the_locking_inset = 0;
491     inset_pos = inset_x = inset_y = 0;
492     inset_par = 0;
493     old_par = 0;
494     if (!checkAndActivateInset(bv, x, y, button))
495         TEXT(bv)->SetCursorFromCoordinates(bv, x-drawTextXOffset,
496                                            y+insetAscent);
497     TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
498     bv->text->FinishUndo();
499     ShowInsetCursor(bv);
500     UpdateLocal(bv, FULL, false);
501 }
502
503
504 void InsetText::InsetUnlock(BufferView * bv)
505 {
506     if (the_locking_inset) {
507         the_locking_inset->InsetUnlock(bv);
508         the_locking_inset = 0;
509     }
510     HideInsetCursor(bv);
511     no_selection = false;
512     locked = false;
513     TEXT(bv)->selection = 0;
514     UpdateLocal(bv, CLEAR_FRAME, false);
515     if (owner())
516             bv->owner()->setLayout(owner()->getLyXText(bv)
517                                     ->cursor.par()->GetLayout());
518     else
519             bv->owner()->setLayout(bv->text->cursor.par()->GetLayout());
520 }
521
522
523 bool InsetText::LockInsetInInset(BufferView * bv, UpdatableInset * inset)
524 {
525     lyxerr[Debug::INSETS] << "InsetText::LockInsetInInset(" << inset << "): ";
526     if (!inset)
527         return false;
528     if (inset == cpar(bv)->GetInset(cpos(bv))) {
529         lyxerr[Debug::INSETS] << "OK" << endl;
530         the_locking_inset = inset;
531         inset_x = cx(bv) - top_x + drawTextXOffset;
532         inset_y = cy(bv) + drawTextYOffset;
533         inset_pos = cpos(bv);
534         inset_par = cpar(bv);
535         TEXT(bv)->UpdateInset(bv, the_locking_inset);
536         return true;
537     } else if (the_locking_inset && (the_locking_inset == inset)) {
538         if (cpar(bv) == inset_par && cpos(bv) == inset_pos) {
539             lyxerr[Debug::INSETS] << "OK" << endl;
540             inset_x = cx(bv) - top_x + drawTextXOffset;
541             inset_y = cy(bv) + drawTextYOffset;
542         } else {
543             lyxerr[Debug::INSETS] << "cursor.pos != inset_pos" << endl;
544         }
545     } else if (the_locking_inset) {
546         lyxerr[Debug::INSETS] << "MAYBE" << endl;
547         return the_locking_inset->LockInsetInInset(bv, inset);
548     }
549     lyxerr[Debug::INSETS] << "NOT OK" << endl;
550     return false;
551 }
552
553
554 bool InsetText::UnlockInsetInInset(BufferView * bv, UpdatableInset * inset,
555                                    bool lr)
556 {
557     if (!the_locking_inset)
558         return false;
559     if (the_locking_inset == inset) {
560         the_locking_inset->InsetUnlock(bv);
561         TEXT(bv)->UpdateInset(bv, inset);
562         the_locking_inset = 0;
563         if (lr)
564             moveRight(bv, false);
565         old_par = 0; // force layout setting
566         UpdateLocal(bv, CURSOR_PAR, false);
567         return true;
568     }
569     return the_locking_inset->UnlockInsetInInset(bv, inset, lr);
570 }
571
572
573 bool InsetText::UpdateInsetInInset(BufferView * bv, Inset * inset)
574 {
575     if (!the_locking_inset)
576         return false;
577     if (the_locking_inset != inset) {
578         TEXT(bv)->UpdateInset(bv, the_locking_inset);
579         need_update = CURSOR_PAR;
580         return the_locking_inset->UpdateInsetInInset(bv, inset);
581     }
582 //    UpdateLocal(bv, FULL, false);
583     if (TEXT(bv)->UpdateInset(bv, inset))
584         UpdateLocal(bv, CURSOR_PAR, false);
585     if (cpar(bv) == inset_par && cpos(bv) == inset_pos) {
586         inset_x = cx(bv) - top_x + drawTextXOffset;
587         inset_y = cy(bv) + drawTextYOffset;
588     }
589     return true;
590 }
591
592
593 void InsetText::InsetButtonPress(BufferView * bv, int x, int y, int button)
594 {
595     no_selection = false;
596
597     int tmp_x = x - drawTextXOffset;
598     int tmp_y = y + insetAscent;
599     Inset * inset = bv->checkInsetHit(TEXT(bv), tmp_x, tmp_y, button);
600
601     HideInsetCursor(bv);
602     if (the_locking_inset) {
603         if (the_locking_inset == inset) {
604             the_locking_inset->InsetButtonPress(bv,x-inset_x,y-inset_y,button);
605             return;
606         } else if (inset) {
607             // otherwise unlock the_locking_inset and lock the new inset
608             the_locking_inset->InsetUnlock(bv);
609             inset_x = cx(bv) - top_x + drawTextXOffset;
610             inset_y = cy(bv) + drawTextYOffset;
611             inset->InsetButtonPress(bv, x - inset_x, y - inset_y, button);
612             inset->Edit(bv, x - inset_x, y - inset_y, button);
613             if (the_locking_inset) {
614                 UpdateLocal(bv, CURSOR_PAR, false);
615             }
616             return;
617         }
618         // otherwise only unlock the_locking_inset
619         the_locking_inset->InsetUnlock(bv);
620         the_locking_inset = 0;
621     }
622     if (bv->theLockingInset()) {
623         if (inset && inset->Editable() == Inset::HIGHLY_EDITABLE) {
624             UpdatableInset * uinset = static_cast<UpdatableInset*>(inset);
625             inset_x = cx(bv) - top_x + drawTextXOffset;
626             inset_y = cy(bv) + drawTextYOffset;
627             inset_pos = cpos(bv);
628             inset_par = cpar(bv);
629             uinset->InsetButtonPress(bv, x - inset_x, y - inset_y, button);
630             uinset->Edit(bv, x - inset_x, y - inset_y, 0);
631             TEXT(bv)->ClearSelection();
632             if (the_locking_inset) {
633                 UpdateLocal(bv, CURSOR_PAR, false);
634             }
635             return;
636         }
637     }
638     if (!inset) {
639         bool paste_internally = false;
640         if ((button == 2) && TEXT(bv)->selection) {
641             LocalDispatch(bv, LFUN_COPY, "");
642             paste_internally = true;
643         }
644         TEXT(bv)->SetCursorFromCoordinates(bv, x-drawTextXOffset,
645                                            y+insetAscent);
646         TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
647         UpdateLocal(bv, CURSOR, false);
648         bv->owner()->setLayout(cpar(bv)->GetLayout());
649         old_par = cpar(bv);
650         // Insert primary selection with middle mouse
651         // if there is a local selection in the current buffer,
652         // insert this
653         if (button == 2) {
654             if (paste_internally)
655                 LocalDispatch(bv, LFUN_PASTE, "");
656             else
657                 LocalDispatch(bv, LFUN_PASTESELECTION, "paragraph");
658         }
659     }
660     ShowInsetCursor(bv);
661 }
662
663
664 void InsetText::InsetButtonRelease(BufferView * bv, int x, int y, int button)
665 {
666     UpdatableInset * inset = 0;
667
668     if (the_locking_inset) {
669             the_locking_inset->InsetButtonRelease(bv,
670                                                   x - inset_x, y - inset_y,
671                                                   button);
672     } else {
673         if (cpar(bv)->GetChar(cpos(bv)) == LyXParagraph::META_INSET) {
674             inset = static_cast<UpdatableInset*>(cpar(bv)->GetInset(cpos(bv)));
675             if (inset->Editable() == Inset::HIGHLY_EDITABLE) {
676                 inset->InsetButtonRelease(bv, x - inset_x, y - inset_y,button);
677             } else {
678                 inset_x = cx(bv) - top_x + drawTextXOffset;
679                 inset_y = cy(bv) + drawTextYOffset;
680                 inset->InsetButtonRelease(bv, x - inset_x, y - inset_y,button);
681                 inset->Edit(bv, x - inset_x, y - inset_y, button);
682             }
683             UpdateLocal(bv, CURSOR_PAR, false);
684         }
685     }
686     no_selection = false;
687 }
688
689
690 void InsetText::InsetMotionNotify(BufferView * bv, int x, int y, int state)
691 {
692     if (the_locking_inset) {
693         the_locking_inset->InsetMotionNotify(bv, x - inset_x,
694                                              y - inset_y,state);
695         return;
696     }
697     if (!no_selection) {
698         HideInsetCursor(bv);
699         TEXT(bv)->SetCursorFromCoordinates(bv, x-drawTextXOffset,
700                                            y+insetAscent);
701         TEXT(bv)->SetSelection();
702         if (TEXT(bv)->toggle_cursor.par()!=TEXT(bv)->toggle_end_cursor.par() ||
703             TEXT(bv)->toggle_cursor.pos()!=TEXT(bv)->toggle_end_cursor.pos())
704             UpdateLocal(bv, SELECTION, false);
705         ShowInsetCursor(bv);
706     }
707     no_selection = false;
708 }
709
710
711 void InsetText::InsetKeyPress(XKeyEvent * xke)
712 {
713     if (the_locking_inset) {
714         the_locking_inset->InsetKeyPress(xke);
715         return;
716     }
717 }
718
719
720 UpdatableInset::RESULT
721 InsetText::LocalDispatch(BufferView * bv,
722                          int action, string const & arg)
723 {
724     no_selection = false;
725     UpdatableInset::RESULT
726         result= UpdatableInset::LocalDispatch(bv, action, arg);
727     if (result != UNDISPATCHED) {
728         return DISPATCHED;
729     }
730
731     result=DISPATCHED;
732     if ((action < 0) && arg.empty())
733         return FINISHED;
734
735     if (the_locking_inset) {
736         result = the_locking_inset->LocalDispatch(bv, action, arg);
737         if (result == DISPATCHED_NOUPDATE)
738             return result;
739         else if (result == DISPATCHED) {
740             UpdateLocal(bv, CURSOR_PAR, false);
741             return result;
742         } else if (result == FINISHED) {
743             switch(action) {
744             case -1:
745             case LFUN_RIGHT:
746                 moveRight(bv, false);
747                 break;
748             case LFUN_DOWN:
749                 moveDown(bv);
750                 break;
751             }
752             the_locking_inset = 0;
753             return DISPATCHED;
754         }
755     }
756     HideInsetCursor(bv);
757     switch (action) {
758         // Normal chars
759     case -1:
760         if (bv->buffer()->isReadonly()) {
761             LyXBell();
762 //          setErrorMessage(N_("Document is read only"));
763             break;
764         }
765         if (!arg.empty()) {
766             /* Automatically delete the currently selected
767              * text and replace it with what is being
768              * typed in now. Depends on lyxrc settings
769              * "auto_region_delete", which defaults to
770              * true (on). */
771
772             bv->text->SetUndo(bv->buffer(), Undo::INSERT,
773 #ifndef NEW_INSETS
774                               bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
775                               bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
776 #else
777                               bv->text->cursor.par()->previous,
778                               bv->text->cursor.par()->next
779 #endif
780                     );
781             // if an empty paragraph set the language to the surronding
782             // paragraph language on insertion of the first character!
783             if (!par->Last() && !par->next) {
784                 LyXText * text = 0;
785                 if (owner()) {
786                     Inset * inset = owner();
787                     while(inset && inset->getLyXText(bv) == TEXT(bv))
788                         inset = inset->owner();
789                     if (inset)
790                         text = inset->getLyXText(bv);
791                 }
792                 if (!text)
793                     text = bv->text;
794                 LyXFont font(LyXFont::ALL_IGNORE);
795                 font.setLanguage(text->cursor.par()->getParLanguage(bv->buffer()->params));
796                 SetFont(bv, font, false);
797             }
798             if (lyxrc.auto_region_delete) {
799                 if (TEXT(bv)->selection){
800                     TEXT(bv)->CutSelection(bv, false);
801                 }
802             }
803             TEXT(bv)->ClearSelection();
804             for (string::size_type i = 0; i < arg.length(); ++i) {
805                 bv->owner()->getIntl()->getTrans()->TranslateAndInsert(arg[i], TEXT(bv));
806             }
807         }
808         UpdateLocal(bv, CURSOR_PAR, true);
809         break;
810         // --- Cursor Movements ---------------------------------------------
811     case LFUN_RIGHTSEL:
812         bv->text->FinishUndo();
813         moveRight(bv, false, true);
814         TEXT(bv)->SetSelection();
815         UpdateLocal(bv, SELECTION, false);
816         break;
817     case LFUN_RIGHT:
818         result = moveRight(bv);
819         bv->text->FinishUndo();
820         TEXT(bv)->ClearSelection();
821         UpdateLocal(bv, CURSOR, false);
822         break;
823     case LFUN_LEFTSEL:
824         bv->text->FinishUndo();
825         moveLeft(bv, false, true);
826         TEXT(bv)->SetSelection();
827         UpdateLocal(bv, SELECTION, false);
828         break;
829     case LFUN_LEFT:
830         bv->text->FinishUndo();
831         result= moveLeft(bv);
832         TEXT(bv)->ClearSelection();
833         TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
834         UpdateLocal(bv, CURSOR, false);
835         break;
836     case LFUN_DOWNSEL:
837         bv->text->FinishUndo();
838         moveDown(bv);
839         TEXT(bv)->SetSelection();
840         UpdateLocal(bv, SELECTION, false);
841         break;
842     case LFUN_DOWN:
843         bv->text->FinishUndo();
844         result = moveDown(bv);
845         TEXT(bv)->ClearSelection();
846         TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
847         UpdateLocal(bv, CURSOR, false);
848         break;
849     case LFUN_UPSEL:
850         bv->text->FinishUndo();
851         moveUp(bv);
852         TEXT(bv)->SetSelection();
853         UpdateLocal(bv, SELECTION, false);
854         break;
855     case LFUN_UP:
856         bv->text->FinishUndo();
857         result = moveUp(bv);
858         TEXT(bv)->ClearSelection();
859         TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
860         UpdateLocal(bv, CURSOR, false);
861         break;
862     case LFUN_HOME:
863         bv->text->FinishUndo();
864         TEXT(bv)->CursorHome(bv);
865         TEXT(bv)->ClearSelection();
866         TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
867         UpdateLocal(bv, CURSOR, false);
868         break;
869     case LFUN_END:
870         TEXT(bv)->CursorEnd(bv);
871         TEXT(bv)->ClearSelection();
872         TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
873         UpdateLocal(bv, CURSOR, false);
874         break;
875     case LFUN_BACKSPACE:
876         bv->text->SetUndo(bv->buffer(), Undo::DELETE,
877 #ifndef NEW_INSETS
878           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
879           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
880 #else
881           bv->text->cursor.par()->previous,
882           bv->text->cursor.par()->next
883 #endif
884                 );
885         if (TEXT(bv)->selection)
886             TEXT(bv)->CutSelection(bv);
887         else
888             TEXT(bv)->Backspace(bv);
889         UpdateLocal(bv, CURSOR_PAR, true);
890         break;
891     case LFUN_DELETE:
892         bv->text->SetUndo(bv->buffer(), Undo::DELETE,
893 #ifndef NEW_INSETS
894           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
895           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
896 #else
897           bv->text->cursor.par()->previous,
898           bv->text->cursor.par()->next
899 #endif
900                 );
901         if (TEXT(bv)->selection)
902             TEXT(bv)->CutSelection(bv);
903         else
904             TEXT(bv)->Delete(bv);
905         UpdateLocal(bv, CURSOR_PAR, true);
906         break;
907     case LFUN_CUT:
908         bv->text->SetUndo(bv->buffer(), Undo::DELETE,
909 #ifndef NEW_INSETS
910           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
911           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
912 #else
913           bv->text->cursor.par()->previous,
914           bv->text->cursor.par()->next
915 #endif
916                 );
917         TEXT(bv)->CutSelection(bv);
918         UpdateLocal(bv, CURSOR_PAR, true);
919         break;
920     case LFUN_COPY:
921         bv->text->FinishUndo();
922         TEXT(bv)->CopySelection(bv);
923         UpdateLocal(bv, CURSOR_PAR, false);
924         break;
925     case LFUN_PASTESELECTION:
926     {
927         string clip(bv->workarea()->getClipboard());
928         
929         if (clip.empty())
930             break;
931         if (arg == "paragraph") {
932                 TEXT(bv)->InsertStringB(bv, clip);
933         } else {
934                 TEXT(bv)->InsertStringA(bv, clip);
935         }
936         UpdateLocal(bv, CURSOR_PAR, true);
937         break;
938     }
939     case LFUN_PASTE:
940         if (!autoBreakRows) {
941             CutAndPaste cap;
942
943             if (cap.nrOfParagraphs() > 1) {
944                 WriteAlert(_("Impossible operation"),
945                            _("Cannot include more than one paragraph!"),
946                            _("Sorry."));
947                 break;
948             }
949         }
950         bv->text->SetUndo(bv->buffer(), Undo::INSERT,
951 #ifndef NEW_INSETS
952           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
953           bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
954 #else
955           bv->text->cursor.par()->previous,
956           bv->text->cursor.par()->next
957 #endif
958                 );
959         TEXT(bv)->PasteSelection(bv);
960         UpdateLocal(bv, CURSOR_PAR, true);
961         break;
962     case LFUN_BREAKPARAGRAPH:
963         if (!autoBreakRows)
964             return DISPATCHED;
965         TEXT(bv)->BreakParagraph(bv, 0);
966         UpdateLocal(bv, FULL, true);
967         break;
968     case LFUN_BREAKLINE:
969         if (!autoBreakRows)
970             return DISPATCHED;
971         bv->text->SetUndo(bv->buffer(), Undo::INSERT,
972 #ifndef NEW_INSETS
973             bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
974             bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
975 #else
976             bv->text->cursor.par()->previous,
977             bv->text->cursor.par()->next
978 #endif
979                 );
980         TEXT(bv)->InsertChar(bv, LyXParagraph::META_NEWLINE);
981         UpdateLocal(bv, CURSOR_PAR, true);
982         break;
983     case LFUN_LAYOUT:
984         // do not set layouts on non breakable textinsets
985         if (autoBreakRows) {
986             LyXTextClass::size_type cur_layout = cpar(bv)->layout;
987       
988             // Derive layout number from given argument (string)
989             // and current buffer's textclass (number). */    
990             LyXTextClassList::ClassList::size_type tclass =
991                 bv->buffer()->params.textclass;
992             std::pair <bool, LyXTextClass::size_type> layout = 
993                 textclasslist.NumberOfLayout(tclass, arg);
994
995             // If the entry is obsolete, use the new one instead.
996             if (layout.first) {
997                 string obs = textclasslist.Style(tclass,layout.second).
998                     obsoleted_by();
999                 if (!obs.empty()) 
1000                     layout = textclasslist.NumberOfLayout(tclass, obs);
1001             }
1002
1003             // see if we found the layout number:
1004             if (!layout.first) {
1005                 string msg = string(N_("Layout ")) + arg + N_(" not known");
1006
1007                 bv->owner()->getMiniBuffer()->Set(msg);
1008                 break;
1009             }
1010
1011             if (cur_layout != layout.second) {
1012                 cur_layout = layout.second;
1013                 TEXT(bv)->SetLayout(bv, layout.second);
1014                 bv->owner()->setLayout(cpar(bv)->GetLayout());
1015                 UpdateLocal(bv, CURSOR_PAR, true);
1016             }
1017         } else {
1018             // reset the layout box
1019             bv->owner()->setLayout(cpar(bv)->GetLayout());
1020         }
1021         break;
1022     case LFUN_PARAGRAPH_SPACING:
1023             // This one is absolutely not working. When fiddling with this
1024             // it also seems to me that the paragraphs inside the insettext
1025             // inherit bufferparams/paragraphparams in a strange way. (Lgb)
1026     {
1027             LyXParagraph * par = TEXT(bv)->cursor.par();
1028             Spacing::Space cur_spacing = par->spacing.getSpace();
1029             float cur_value = 1.0;
1030             if (cur_spacing == Spacing::Other) {
1031                     cur_value = par->spacing.getValue();
1032             }
1033                         
1034             std::istringstream istr(arg.c_str());
1035             string tmp;
1036             istr >> tmp;
1037             Spacing::Space new_spacing = cur_spacing;
1038             float new_value = cur_value;
1039             if (tmp.empty()) {
1040                     lyxerr << "Missing argument to `paragraph-spacing'"
1041                            << endl;
1042             } else if (tmp == "single") {
1043                     new_spacing = Spacing::Single;
1044             } else if (tmp == "onehalf") {
1045                     new_spacing = Spacing::Onehalf;
1046             } else if (tmp == "double") {
1047                     new_spacing = Spacing::Double;
1048             } else if (tmp == "other") {
1049                     new_spacing = Spacing::Other;
1050                     float tmpval = 0.0;
1051                     istr >> tmpval;
1052                     lyxerr << "new_value = " << tmpval << endl;
1053                     if (tmpval != 0.0)
1054                             new_value = tmpval;
1055             } else if (tmp == "default") {
1056                     new_spacing = Spacing::Default;
1057             } else {
1058                     lyxerr << _("Unknown spacing argument: ")
1059                            << arg << endl;
1060             }
1061             if (cur_spacing != new_spacing || cur_value != new_value) {
1062                     par->spacing.set(new_spacing, new_value);
1063                     //TEXT(bv)->RedoParagraph(owner->view());
1064                     UpdateLocal(bv, CURSOR_PAR, true);
1065                     //bv->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
1066             }
1067     }
1068     break;
1069         
1070     default:
1071         result = UNDISPATCHED;
1072         break;
1073     }
1074     if (result != FINISHED) {
1075         ShowInsetCursor(bv);
1076     } else
1077         bv->unlockInset(this);
1078     return result;
1079 }
1080
1081
1082 int InsetText::Latex(Buffer const * buf, ostream & os, bool, bool) const
1083 {
1084     TexRow texrow;
1085     buf->latexParagraphs(os, par, 0, texrow);
1086     return texrow.rows();
1087 }
1088
1089
1090 int InsetText::Ascii(Buffer const * buf, ostream & os, int linelen) const
1091 {
1092     LyXParagraph * p = par;
1093     unsigned int lines = 0;
1094     
1095     string tmp;
1096     while (p) {
1097         tmp = buf->asciiParagraph(p, linelen);
1098         lines += countChar(tmp, '\n');
1099         os << tmp;
1100         p = p->next;
1101     }
1102     return lines;
1103 }
1104
1105
1106 int InsetText::DocBook(Buffer const * buf, ostream & os) const
1107 {
1108     LyXParagraph * p = par;
1109     unsigned int lines = 0;
1110     int desc=0;
1111     
1112     string tmp;
1113     while (p) {
1114         buf->SimpleDocBookOnePar(os,tmp,p,desc,0);
1115         p = p->next;
1116     }
1117     
1118     return lines;
1119 }
1120
1121
1122 void InsetText::Validate(LaTeXFeatures & features) const
1123 {
1124     LyXParagraph * p = par;
1125     while(p) {
1126         p->validate(features);
1127         p = p->next;
1128     }
1129 }
1130
1131
1132 int InsetText::BeginningOfMainBody(Buffer const * buf, LyXParagraph * p) const
1133 {
1134     if (textclasslist.Style(buf->params.textclass,
1135                             p->GetLayout()).labeltype != LABEL_MANUAL)
1136         return 0;
1137     else
1138         return p->BeginningOfMainBody();
1139 }
1140
1141
1142 void InsetText::GetCursorPos(BufferView * bv,
1143                              int & x, int & y) const
1144 {
1145     x = cx(bv);
1146     y = cy(bv);
1147 }
1148
1149
1150 unsigned int InsetText::InsetInInsetY()
1151 {
1152     if (!the_locking_inset)
1153         return 0;
1154
1155     return (inset_y + the_locking_inset->InsetInInsetY());
1156 }
1157
1158
1159 void InsetText::ToggleInsetCursor(BufferView * bv)
1160 {
1161     if (the_locking_inset) {
1162         the_locking_inset->ToggleInsetCursor(bv);
1163         return;
1164     }
1165
1166     LyXFont font = TEXT(bv)->GetFont(bv->buffer(), cpar(bv), cpos(bv));
1167
1168     int asc = lyxfont::maxAscent(font);
1169     int desc = lyxfont::maxDescent(font);
1170   
1171     if (cursor_visible)
1172         bv->hideLockedInsetCursor();
1173     else
1174         bv->showLockedInsetCursor(cx(bv), cy(bv), asc, desc);
1175     cursor_visible = !cursor_visible;
1176 }
1177
1178
1179 void InsetText::ShowInsetCursor(BufferView * bv, bool show)
1180 {
1181     if (the_locking_inset) {
1182         the_locking_inset->ShowInsetCursor(bv);
1183         return;
1184     }
1185     if (!cursor_visible) {
1186         LyXFont font = TEXT(bv)->GetFont(bv->buffer(), cpar(bv), cpos(bv));
1187         
1188         int asc = lyxfont::maxAscent(font);
1189         int desc = lyxfont::maxDescent(font);
1190
1191         bv->fitLockedInsetCursor(cx(bv), cy(bv), asc, desc);
1192         if (show)
1193             bv->showLockedInsetCursor(cx(bv), cy(bv), asc, desc);
1194         cursor_visible = true;
1195     }
1196 }
1197
1198
1199 void InsetText::HideInsetCursor(BufferView * bv)
1200 {
1201     if (cursor_visible) {
1202         bv->hideLockedInsetCursor();
1203         cursor_visible = false;
1204     }
1205     if (the_locking_inset)
1206         the_locking_inset->HideInsetCursor(bv);
1207 }
1208
1209
1210 UpdatableInset::RESULT
1211 InsetText::moveRight(BufferView * bv, bool activate_inset, bool selecting)
1212 {
1213     if (!cpar(bv)->next && (cpos(bv) >= cpar(bv)->Last()))
1214         return FINISHED;
1215     if (activate_inset && checkAndActivateInset(bv, false))
1216         return DISPATCHED;
1217     TEXT(bv)->CursorRight(bv, selecting);
1218     return DISPATCHED_NOUPDATE;
1219 }
1220
1221
1222 UpdatableInset::RESULT
1223 InsetText::moveLeft(BufferView * bv, bool activate_inset, bool selecting)
1224 {
1225     if (!cpar(bv)->previous && (cpos(bv) <= 0))
1226         return FINISHED;
1227     TEXT(bv)->CursorLeft(bv, selecting);
1228     if (activate_inset && checkAndActivateInset(bv, true))
1229         return DISPATCHED;
1230     return DISPATCHED_NOUPDATE;
1231 }
1232
1233
1234 UpdatableInset::RESULT
1235 InsetText::moveUp(BufferView * bv)
1236 {
1237     if (!crow(bv)->previous())
1238         return FINISHED;
1239     TEXT(bv)->CursorUp(bv);
1240     return DISPATCHED_NOUPDATE;
1241 }
1242
1243
1244 UpdatableInset::RESULT
1245 InsetText::moveDown(BufferView * bv)
1246 {
1247     if (!crow(bv)->next())
1248         return FINISHED;
1249     TEXT(bv)->CursorDown(bv);
1250     return DISPATCHED_NOUPDATE;
1251 }
1252
1253
1254 bool InsetText::InsertInset(BufferView * bv, Inset * inset)
1255 {
1256     if (the_locking_inset) {
1257         if (the_locking_inset->InsertInsetAllowed(inset))
1258             return the_locking_inset->InsertInset(bv, inset);
1259         return false;
1260     }
1261     bv->text->SetUndo(bv->buffer(), Undo::INSERT,
1262 #ifndef NEW_INSETS
1263               bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
1264               bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
1265 #else
1266               bv->text->cursor.par()->previous,
1267               bv->text->cursor.par()->next
1268 #endif
1269             );
1270     inset->setOwner(this);
1271     HideInsetCursor(bv);
1272     TEXT(bv)->InsertInset(bv, inset);
1273     if ((cpar(bv)->GetChar(cpos(bv)) != LyXParagraph::META_INSET) ||
1274         (cpar(bv)->GetInset(cpos(bv)) != inset))
1275         TEXT(bv)->CursorLeft(bv);
1276     TEXT(bv)->selection = 0;
1277     bv->fitCursor(TEXT(bv));
1278     UpdateLocal(bv, CURSOR_PAR, true);
1279     ShowInsetCursor(bv);
1280     return true;
1281 }
1282
1283
1284 UpdatableInset * InsetText::GetLockingInset()
1285 {
1286     return the_locking_inset ? the_locking_inset->GetLockingInset() : this;
1287 }
1288
1289
1290 UpdatableInset * InsetText::GetFirstLockingInsetOfType(Inset::Code c)
1291 {
1292     if (c == LyxCode())
1293         return this;
1294     if (the_locking_inset)
1295         return the_locking_inset->GetFirstLockingInsetOfType(c);
1296     return 0;
1297 }
1298
1299
1300 void InsetText::SetFont(BufferView * bv, LyXFont const & font, bool toggleall)
1301 {
1302     bv->text->SetUndo(bv->buffer(), Undo::EDIT,
1303 #ifndef NEW_INSETS
1304               bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
1305               bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next
1306 #else
1307               bv->text->cursor.par()->previous,
1308               bv->text->cursor.par()->next
1309 #endif
1310             );
1311     TEXT(bv)->SetFont(bv, font, toggleall);
1312     bv->fitCursor(TEXT(bv));
1313     UpdateLocal(bv, CURSOR_PAR, true);
1314 }
1315
1316
1317 bool InsetText::checkAndActivateInset(BufferView * bv, bool behind)
1318 {
1319     if (cpar(bv)->GetChar(cpos(bv)) == LyXParagraph::META_INSET) {
1320         unsigned int x;
1321         unsigned int y;
1322         Inset * inset =
1323             static_cast<UpdatableInset*>(cpar(bv)->GetInset(cpos(bv)));
1324         if (!inset || inset->Editable() != Inset::HIGHLY_EDITABLE)
1325             return false;
1326         LyXFont const font =
1327                 TEXT(bv)->GetFont(bv->buffer(), cpar(bv), cpos(bv));
1328         if (behind) {
1329             x = inset->width(bv, font);
1330             y = inset->descent(bv, font);
1331         } else {
1332             x = y = 0;
1333         }
1334         inset_x = cx(bv) - top_x + drawTextXOffset;
1335         inset_y = cy(bv) + drawTextYOffset;
1336         inset->Edit(bv, x - inset_x, y - inset_y, 0);
1337         if (!the_locking_inset)
1338             return false;
1339         UpdateLocal(bv, CURSOR_PAR, false);
1340         return true;
1341     }
1342     return false;
1343 }
1344
1345
1346 bool InsetText::checkAndActivateInset(BufferView * bv, int x, int y,
1347                                       int button)
1348 {
1349     x = x - drawTextXOffset;
1350     y = y + insetAscent;
1351     Inset * inset = bv->checkInsetHit(TEXT(bv), x, y, button);
1352
1353     if (inset) {
1354         if (x < 0)
1355             x = insetWidth;
1356         if (y < 0)
1357             y = insetDescent;
1358         inset_x = cx(bv) - top_x + drawTextXOffset;
1359         inset_y = cy(bv) + drawTextYOffset;
1360         inset->Edit(bv, x - inset_x, y - inset_y, button);
1361         if (!the_locking_inset)
1362             return false;
1363         UpdateLocal(bv, CURSOR_PAR, false);
1364         return true;
1365     }
1366     return false;
1367 }
1368
1369
1370 int InsetText::getMaxWidth(Painter & pain, UpdatableInset const * inset) const
1371 {
1372     int w = UpdatableInset::getMaxWidth(pain, inset);
1373     if (w < 0) {
1374         return w;
1375     }
1376     if (owner()) {
1377         w = w - top_x + owner()->x();
1378         return w;
1379     }
1380     w -= (2 * TEXT_TO_INSET_OFFSET);
1381     return w - top_x;
1382 //    return  w - (2*TEXT_TO_INSET_OFFSET);
1383 }
1384
1385
1386 void InsetText::SetParagraphData(LyXParagraph *p)
1387 {
1388     // delete all instances of LyXText before deleting the paragraps used
1389     // by it.
1390     for(Cache::const_iterator cit = cache.begin(); cit != cache.end(); ++cit)
1391         delete (*cit).second;
1392
1393     LyXParagraph * np;
1394     if (par) {
1395         np = par->next;
1396         delete par;
1397         while(np) {
1398             par = np;
1399             np = np->next;
1400             delete par;
1401         }
1402     }
1403     par = p->Clone();
1404     par->SetInsetOwner(this);
1405     np = par;
1406     while(p->next) {
1407         p = p->next;
1408         np->next = p->Clone();
1409         np->next->previous = np;
1410         np = np->next;
1411         np->SetInsetOwner(this);
1412     }
1413     need_update = INIT;
1414 }
1415
1416
1417 void InsetText::SetAutoBreakRows(bool flag)
1418 {
1419     if (flag != autoBreakRows) {
1420         autoBreakRows = flag;
1421         need_update = FULL;
1422         if (!flag)
1423             removeNewlines();
1424     }
1425 }
1426
1427
1428 void InsetText::SetDrawFrame(BufferView * bv, DrawFrame how)
1429 {
1430     if (how != drawFrame) {
1431         drawFrame = how;
1432         if (bv)
1433             UpdateLocal(bv, DRAW_FRAME, false);
1434     }
1435 }
1436
1437
1438 void InsetText::SetFrameColor(BufferView * bv, LColor::color col)
1439 {
1440     if (frame_color != col) {
1441         frame_color = col;
1442         if (bv)
1443             UpdateLocal(bv, DRAW_FRAME, false);
1444     }
1445 }
1446
1447 #if 0
1448 LyXFont InsetText::GetDrawFont(BufferView * bv, LyXParagraph * p, int pos) const
1449 {
1450     return TEXT(bv)->GetFont(bv->buffer(), p, pos);
1451 }
1452 #endif
1453
1454
1455 int InsetText::cx(BufferView * bv) const
1456 {
1457     return TEXT(bv)->cursor.x() + top_x + TEXT_TO_INSET_OFFSET;
1458 }
1459
1460
1461 int InsetText::cy(BufferView * bv) const
1462 {
1463     LyXFont font;
1464     return TEXT(bv)->cursor.y() - ascent(bv, font) + TEXT_TO_INSET_OFFSET;
1465 }
1466
1467
1468 LyXParagraph::size_type InsetText::cpos(BufferView * bv) const
1469 {
1470     return TEXT(bv)->cursor.pos();
1471 }
1472
1473
1474 LyXParagraph * InsetText::cpar(BufferView * bv) const
1475 {
1476     return TEXT(bv)->cursor.par();
1477 }
1478
1479
1480 Row * InsetText::crow(BufferView * bv) const
1481 {
1482     return TEXT(bv)->cursor.row();
1483 }
1484
1485
1486 LyXText * InsetText::getLyXText(BufferView * bv) const
1487 {
1488     if (cache.find(bv) != cache.end())
1489         return cache[bv];
1490     LyXText * lt = new LyXText(const_cast<InsetText *>(this));
1491     lt->init(bv);
1492     cache[bv] = lt;
1493     if (the_locking_inset) {
1494         lt->SetCursor(bv, inset_par, inset_pos);
1495     }
1496     return lt;
1497 }
1498
1499
1500 void InsetText::deleteLyXText(BufferView * bv, bool recursive) const
1501 {
1502     if (cache.find(bv) == cache.end())
1503         return;
1504     delete cache[bv];
1505     cache.erase(bv);
1506     if (recursive) {
1507         /// then remove all LyXText in text-insets
1508         LyXParagraph * p = par;
1509         for(;p;p = p->next) {
1510             p->deleteInsetsLyXText(bv);
1511         }
1512     }
1513 }
1514
1515
1516 void InsetText::resizeLyXText(BufferView * bv) const
1517 {
1518     if (!par->next && !par->size()) // resize not neccessary!
1519         return;
1520     if (cache.find(bv) == cache.end())
1521         return;
1522
1523     LyXParagraph * lpar = 0;
1524     LyXParagraph * selstartpar = 0;
1525     LyXParagraph * selendpar = 0;
1526     LyXParagraph::size_type pos = 0;
1527     LyXParagraph::size_type selstartpos = 0;
1528     LyXParagraph::size_type selendpos = 0;
1529     int selection = 0;
1530     int mark_set = 0;
1531
1532 //    ProhibitInput(bv);
1533
1534     if (locked) {
1535         lpar = TEXT(bv)->cursor.par();
1536         pos = TEXT(bv)->cursor.pos();
1537         selstartpar = TEXT(bv)->sel_start_cursor.par();
1538         selstartpos = TEXT(bv)->sel_start_cursor.pos();
1539         selendpar = TEXT(bv)->sel_end_cursor.par();
1540         selendpos = TEXT(bv)->sel_end_cursor.pos();
1541         selection = TEXT(bv)->selection;
1542         mark_set = TEXT(bv)->mark_set;
1543     }
1544     deleteLyXText(bv, (the_locking_inset == 0));
1545
1546     if (lpar) {
1547         TEXT(bv)->selection = true;
1548         /* at this point just to avoid the Delete-Empty-Paragraph
1549          * Mechanism when setting the cursor */
1550         TEXT(bv)->mark_set = mark_set;
1551         if (selection) {
1552             TEXT(bv)->SetCursor(bv, selstartpar, selstartpos);
1553             TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
1554             TEXT(bv)->SetCursor(bv, selendpar, selendpos);
1555             TEXT(bv)->SetSelection();
1556             TEXT(bv)->SetCursor(bv, lpar, pos);
1557         } else {
1558             TEXT(bv)->SetCursor(bv, lpar, pos);
1559             TEXT(bv)->sel_cursor = TEXT(bv)->cursor;
1560             TEXT(bv)->selection = false;
1561         }
1562     }
1563     if (bv->screen())
1564             TEXT(bv)->first = bv->screen()->TopCursorVisible(TEXT(bv));
1565     // this will scroll the screen such that the cursor becomes visible 
1566     bv->updateScrollbar();
1567 //    AllowInput(bv);
1568     if (the_locking_inset) {
1569         /// then resize all LyXText in text-insets
1570         inset_x = cx(bv) - top_x + drawTextXOffset;
1571         inset_y = cy(bv) + drawTextYOffset;
1572         for(LyXParagraph * p = par; p; p = p->next) {
1573             p->resizeInsetsLyXText(bv);
1574         }
1575     }
1576     need_update = FULL;
1577 }
1578
1579
1580 void InsetText::removeNewlines()
1581 {
1582     for(LyXParagraph * p = par; p; p = p->next) {
1583         for(int i = 0; i < p->Last(); ++i) {
1584             if (p->GetChar(i) == LyXParagraph::META_NEWLINE)
1585                 p->Erase(i);
1586         }
1587     }
1588 }