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