]> git.lyx.org Git - lyx.git/blob - src/text.C
remove stuff from LyXText::checkParagraph() I don't understand
[lyx.git] / src / text.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #include "lyxtext.h"
14 #include "lyxrow.h"
15 #include "paragraph.h"
16 #include "gettext.h"
17 #include "bufferparams.h"
18 #include "buffer.h"
19 #include "debug.h"
20 #include "intl.h"
21 #include "lyxrc.h"
22 #include "encoding.h"
23 #include "frontends/LyXView.h"
24 #include "frontends/Painter.h"
25 #include "frontends/font_metrics.h"
26 #include "frontends/screen.h"
27 #include "frontends/WorkArea.h"
28 #include "bufferview_funcs.h"
29 #include "BufferView.h"
30 #include "language.h"
31 #include "ParagraphParameters.h"
32 #include "undo_funcs.h"
33 #include "text_funcs.h"
34 #include "WordLangTuple.h"
35 #include "paragraph_funcs.h"
36 #include "rowpainter.h"
37 #include "lyxrow_funcs.h"
38 #include "metricsinfo.h"
39
40 #include "insets/insettext.h"
41
42 #include "support/textutils.h"
43 #include "support/LAssert.h"
44 #include "support/lstrings.h"
45
46 #include <algorithm>
47
48 using namespace lyx::support;
49
50 using std::max;
51 using std::min;
52 using std::endl;
53 using std::pair;
54
55 using lyx::pos_type;
56 using lyx::word_location;
57
58 using namespace bv_funcs;
59
60 /// top, right, bottom pixel margin
61 extern int const PAPER_MARGIN = 20;
62 /// margin for changebar
63 extern int const CHANGEBAR_MARGIN = 10;
64 /// left margin
65 extern int const LEFT_MARGIN = PAPER_MARGIN + CHANGEBAR_MARGIN;
66
67 extern int bibitemMaxWidth(BufferView *, LyXFont const &);
68
69
70 BufferView * LyXText::bv()
71 {
72         Assert(bv_owner != 0);
73         return bv_owner;
74 }
75
76
77 BufferView * LyXText::bv() const
78 {
79         Assert(bv_owner != 0);
80         return bv_owner;
81 }
82
83
84 void LyXText::updateRowPositions()
85 {
86         RowList::iterator rit = rows().begin();
87         RowList::iterator rend = rows().end();
88         for (int y = 0; rit != rend ; ++rit) {
89                 rit->y(y);
90                 y += rit->height();
91         }
92 }
93
94
95 int LyXText::top_y() const
96 {
97         if (anchor_row_ == rowlist_.end())
98                 return 0;
99
100         return anchor_row_->y() + anchor_row_offset_;
101 }
102
103
104 void LyXText::top_y(int newy)
105 {
106         if (rows().empty())
107                 return;
108
109         if (isInInset()) {
110                 anchor_row_ = rows().begin();
111                 anchor_row_offset_ = newy;
112                 return;
113         }
114
115         lyxerr[Debug::GUI] << "setting top y = " << newy << endl;
116
117         int y = newy;
118         RowList::iterator rit = getRowNearY(y);
119
120         if (rit == anchor_row_ && anchor_row_offset_ == newy - y) {
121                 lyxerr[Debug::GUI] << "top_y to same value, skipping update" << endl;
122                 return;
123         }
124
125         anchor_row_ = rit;
126         anchor_row_offset_ = newy - y;
127         lyxerr[Debug::GUI] << "changing reference to row: " << &*anchor_row_
128                << " offset: " << anchor_row_offset_ << endl;
129         postPaint();
130 }
131
132
133 void LyXText::anchor_row(RowList::iterator rit)
134 {
135         int old_y = top_y();
136         anchor_row_offset_ = 0;
137         anchor_row_ = rit;
138         anchor_row_offset_ = old_y - top_y();
139         lyxerr[Debug::GUI] << "anchor_row(): changing reference to row: "
140                            << &*anchor_row_ << " offset: "
141                            << anchor_row_offset_ << endl;
142 }
143
144
145 int LyXText::workWidth() const
146 {
147         return inset_owner ? inset_owner->textWidth() : bv()->workWidth();
148 }
149
150
151 int LyXText::workWidth(InsetOld const * inset) const
152 {
153         ParagraphList::iterator par = std::find(ownerParagraphs().begin(),
154                                                 ownerParagraphs().end(),
155                                                 *inset->parOwner());
156         if (par == ownerParagraphs().end()) {
157                 lyxerr[Debug::GUI] << "LyXText::workWidth: unexpected\n";
158                 return -1;
159         }
160
161         pos_type pos = par->getPositionOfInset(inset);
162         Assert(pos != -1);
163
164         LyXLayout_ptr const & layout = par->layout();
165
166         if (layout->margintype != MARGIN_RIGHT_ADDRESS_BOX) {
167                 // Optimization here: in most cases, the real row is
168                 // not needed, but only the par/pos values. So we just
169                 // construct a dummy row for leftMargin. (JMarc)
170                 Row dummyrow;
171                 dummyrow.par(par);
172                 dummyrow.pos(pos);
173                 return workWidth() - leftMargin(dummyrow);
174         } else {
175                 int dummy_y;
176                 RowList::iterator row = getRow(par, pos, dummy_y);
177                 RowList::iterator frow = row;
178                 RowList::iterator beg = rowlist_.begin();
179
180                 while (frow != beg && frow->par() == boost::prior(frow)->par())
181                         --frow;
182
183                 // FIXME: I don't understand this code - jbl
184
185                 unsigned int maxw = 0;
186                 while (!isParEnd(*this, frow)) {
187                         if ((frow != row) && (maxw < frow->width()))
188                                 maxw = frow->width();
189                         ++frow;
190                 }
191                 if (maxw)
192                         return maxw;
193
194         }
195         return workWidth();
196 }
197
198
199 int LyXText::getRealCursorX() const
200 {
201         int x = cursor.x();
202         if (the_locking_inset && (the_locking_inset->getLyXText(bv())!= this))
203                 x = the_locking_inset->getLyXText(bv())->getRealCursorX();
204         return x;
205 }
206
207
208 #warning FIXME  This function seems to belong outside of LyxText.
209 unsigned char LyXText::transformChar(unsigned char c, Paragraph const & par,
210                                      pos_type pos) const
211 {
212         if (!Encodings::is_arabic(c))
213                 if (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 && IsDigit(c))
214                         return c + (0xb0 - '0');
215                 else
216                         return c;
217
218         unsigned char const prev_char = pos > 0 ? par.getChar(pos - 1) : ' ';
219         unsigned char next_char = ' ';
220
221         pos_type const par_size = par.size();
222
223         for (pos_type i = pos + 1; i < par_size; ++i) {
224                 unsigned char const par_char = par.getChar(i);
225                 if (!Encodings::IsComposeChar_arabic(par_char)) {
226                         next_char = par_char;
227                         break;
228                 }
229         }
230
231         if (Encodings::is_arabic(next_char)) {
232                 if (Encodings::is_arabic(prev_char) &&
233                         !Encodings::is_arabic_special(prev_char))
234                         return Encodings::TransformChar(c, Encodings::FORM_MEDIAL);
235                 else
236                         return Encodings::TransformChar(c, Encodings::FORM_INITIAL);
237         } else {
238                 if (Encodings::is_arabic(prev_char) &&
239                         !Encodings::is_arabic_special(prev_char))
240                         return Encodings::TransformChar(c, Encodings::FORM_FINAL);
241                 else
242                         return Encodings::TransformChar(c, Encodings::FORM_ISOLATED);
243         }
244 }
245
246 // This is the comments that some of the warnings below refers to.
247 // There are some issues in this file and I don't think they are
248 // really related to the FIX_DOUBLE_SPACE patch. I'd rather think that
249 // this is a problem that has been here almost from day one and that a
250 // larger userbase with differenct access patters triggers the bad
251 // behaviour. (segfaults.) What I think happen is: In several places
252 // we store the paragraph in the current cursor and then moves the
253 // cursor. This movement of the cursor will delete paragraph at the
254 // old position if it is now empty. This will make the temporary
255 // pointer to the old cursor paragraph invalid and dangerous to use.
256 // And is some cases this will trigger a segfault. I have marked some
257 // of the cases where this happens with a warning, but I am sure there
258 // are others in this file and in text2.C. There is also a note in
259 // Delete() that you should read. In Delete I store the paragraph->id
260 // instead of a pointer to the paragraph. I am pretty sure this faulty
261 // use of temporary pointers to paragraphs that might have gotten
262 // invalidated (through a cursor movement) before they are used, are
263 // the cause of the strange crashes we get reported often.
264 //
265 // It is very tiresom to change this code, especially when it is as
266 // hard to read as it is. Help to fix all the cases where this is done
267 // would be greately appreciated.
268 //
269 // Lgb
270
271 int LyXText::singleWidth(ParagraphList::iterator pit, pos_type pos) const
272 {
273         if (pos >= pit->size())
274                 return 0;
275
276         char const c = pit->getChar(pos);
277         return singleWidth(pit, pos, c);
278 }
279
280
281 int LyXText::singleWidth(ParagraphList::iterator pit,
282                          pos_type pos, char c) const
283 {
284         if (pos >= pit->size())
285                 return 0;
286
287         LyXFont const & font = getFont(bv()->buffer(), pit, pos);
288
289         // The most common case is handled first (Asger)
290         if (IsPrintable(c)) {
291                 if (font.language()->RightToLeft()) {
292                         if ((lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
293                              lyxrc.font_norm_type == LyXRC::ISO_10646_1)
294                             && font.language()->lang() == "arabic") {
295                                 if (Encodings::IsComposeChar_arabic(c))
296                                         return 0;
297                                 else
298                                         c = transformChar(c, *pit, pos);
299                         } else if (font.language()->lang() == "hebrew" &&
300                                  Encodings::IsComposeChar_hebrew(c))
301                                 return 0;
302                 }
303                 return font_metrics::width(c, font);
304         }
305
306         if (c == Paragraph::META_INSET) {
307                 InsetOld * tmpinset = pit->getInset(pos);
308                 if (tmpinset) {
309                         if (tmpinset->lyxCode() == InsetOld::HFILL_CODE) {
310                                 // Because of the representation as vertical lines
311                                 return 3;
312                         }
313 #if 0
314 #warning inset->update FIXME
315                         // this IS needed otherwise on initialitation we don't get the fill
316                         // of the row right (ONLY on initialization if we read a file!)
317                         // should be changed! (Jug 20011204)
318                         //tmpinset->update(bv());
319                         Dimension dim;
320                         MetricsInfo mi(bv(), font, workWidth());
321                         tmpinset->metrics(mi, dim);
322                         return dim.wid;
323 #else
324                         return tmpinset->width();
325 #endif
326                 }
327                 return 0;
328         }
329
330         if (IsSeparatorChar(c))
331                 c = ' ';
332         return font_metrics::width(c, font);
333 }
334
335
336 lyx::pos_type LyXText::log2vis(lyx::pos_type pos) const
337 {
338         if (bidi_start == -1)
339                 return pos;
340         else
341                 return log2vis_list[pos - bidi_start];
342 }
343
344
345 lyx::pos_type LyXText::vis2log(lyx::pos_type pos) const
346 {
347         if (bidi_start == -1)
348                 return pos;
349         else
350                 return vis2log_list[pos - bidi_start];
351 }
352
353
354 lyx::pos_type LyXText::bidi_level(lyx::pos_type pos) const
355 {
356         if (bidi_start == -1)
357                 return 0;
358         else
359                 return bidi_levels[pos - bidi_start];
360 }
361
362
363 bool LyXText::bidi_InRange(lyx::pos_type pos) const
364 {
365         return bidi_start == -1 ||
366                 (bidi_start <= pos && pos <= bidi_end);
367 }
368
369
370 void LyXText::computeBidiTables(Buffer const * buf,
371                                 RowList::iterator row) const
372 {
373         bidi_same_direction = true;
374         if (!lyxrc.rtl_support) {
375                 bidi_start = -1;
376                 return;
377         }
378
379         ParagraphList::iterator row_par = row->par();
380
381         InsetOld * inset = row_par->inInset();
382         if (inset && inset->owner() &&
383             inset->owner()->lyxCode() == InsetOld::ERT_CODE) {
384                 bidi_start = -1;
385                 return;
386         }
387
388         bidi_start = row->pos();
389         bidi_end = lastPrintablePos(*this, row);
390
391         if (bidi_start > bidi_end) {
392                 bidi_start = -1;
393                 return;
394         }
395
396         if (bidi_end + 2 - bidi_start >
397             static_cast<pos_type>(log2vis_list.size())) {
398                 pos_type new_size =
399                         (bidi_end + 2 - bidi_start < 500) ?
400                         500 : 2 * (bidi_end + 2 - bidi_start);
401                 log2vis_list.resize(new_size);
402                 vis2log_list.resize(new_size);
403                 bidi_levels.resize(new_size);
404         }
405
406         vis2log_list[bidi_end + 1 - bidi_start] = -1;
407         log2vis_list[bidi_end + 1 - bidi_start] = -1;
408
409         pos_type stack[2];
410         bool const rtl_par =
411                 row_par->isRightToLeftPar(buf->params);
412         int level = 0;
413         bool rtl = false;
414         bool rtl0 = false;
415         pos_type const body_pos = row_par->beginningOfBody();
416
417         for (pos_type lpos = bidi_start; lpos <= bidi_end; ++lpos) {
418                 bool is_space = row_par->isLineSeparator(lpos);
419                 pos_type const pos =
420                         (is_space && lpos + 1 <= bidi_end &&
421                          !row_par->isLineSeparator(lpos + 1) &&
422                          !row_par->isNewline(lpos + 1))
423                         ? lpos + 1 : lpos;
424                 LyXFont font = row_par->getFontSettings(buf->params, pos);
425                 if (pos != lpos && 0 < lpos && rtl0 && font.isRightToLeft() &&
426                     font.number() == LyXFont::ON &&
427                     row_par->getFontSettings(buf->params, lpos - 1).number()
428                     == LyXFont::ON) {
429                         font = row_par->getFontSettings(buf->params, lpos);
430                         is_space = false;
431                 }
432
433
434                 bool new_rtl = font.isVisibleRightToLeft();
435                 bool new_rtl0 = font.isRightToLeft();
436                 int new_level;
437
438                 if (lpos == body_pos - 1
439                     && row->pos() < body_pos - 1
440                     && is_space) {
441                         new_level = (rtl_par) ? 1 : 0;
442                         new_rtl = new_rtl0 = rtl_par;
443                 } else if (new_rtl0)
444                         new_level = (new_rtl) ? 1 : 2;
445                 else
446                         new_level = (rtl_par) ? 2 : 0;
447
448                 if (is_space && new_level >= level) {
449                         new_level = level;
450                         new_rtl = rtl;
451                         new_rtl0 = rtl0;
452                 }
453
454                 int new_level2 = new_level;
455
456                 if (level == new_level && rtl0 != new_rtl0) {
457                         --new_level2;
458                         log2vis_list[lpos - bidi_start] = (rtl) ? 1 : -1;
459                 } else if (level < new_level) {
460                         log2vis_list[lpos - bidi_start] =  (rtl) ? -1 : 1;
461                         if (new_level > rtl_par)
462                                 bidi_same_direction = false;
463                 } else
464                         log2vis_list[lpos - bidi_start] = (new_rtl) ? -1 : 1;
465                 rtl = new_rtl;
466                 rtl0 = new_rtl0;
467                 bidi_levels[lpos - bidi_start] = new_level;
468
469                 while (level > new_level2) {
470                         pos_type old_lpos = stack[--level];
471                         int delta = lpos - old_lpos - 1;
472                         if (level % 2)
473                                 delta = -delta;
474                         log2vis_list[lpos - bidi_start] += delta;
475                         log2vis_list[old_lpos - bidi_start] += delta;
476                 }
477                 while (level < new_level)
478                         stack[level++] = lpos;
479         }
480
481         while (level > 0) {
482                 pos_type const old_lpos = stack[--level];
483                 int delta = bidi_end - old_lpos;
484                 if (level % 2)
485                         delta = -delta;
486                 log2vis_list[old_lpos - bidi_start] += delta;
487         }
488
489         pos_type vpos = bidi_start - 1;
490         for (pos_type lpos = bidi_start;
491              lpos <= bidi_end; ++lpos) {
492                 vpos += log2vis_list[lpos - bidi_start];
493                 vis2log_list[vpos - bidi_start] = lpos;
494                 log2vis_list[lpos - bidi_start] = vpos;
495         }
496 }
497
498
499 // This method requires a previous call to ComputeBidiTables()
500 bool LyXText::isBoundary(Buffer const * buf, Paragraph const & par,
501                          pos_type pos) const
502 {
503         if (!lyxrc.rtl_support || pos == 0)
504                 return false;
505
506         if (!bidi_InRange(pos - 1)) {
507                 /// This can happen if pos is the first char of a row.
508                 /// Returning false in this case is incorrect!
509                 return false;
510         }
511
512         bool const rtl = bidi_level(pos - 1) % 2;
513         bool const rtl2 = bidi_InRange(pos)
514                 ? bidi_level(pos) % 2
515                 : par.isRightToLeftPar(buf->params);
516         return rtl != rtl2;
517 }
518
519
520 bool LyXText::isBoundary(Buffer const * buf, Paragraph const & par,
521                          pos_type pos, LyXFont const & font) const
522 {
523         if (!lyxrc.rtl_support)
524                 return false;    // This is just for speedup
525
526         bool const rtl = font.isVisibleRightToLeft();
527         bool const rtl2 = bidi_InRange(pos)
528                 ? bidi_level(pos) % 2
529                 : par.isRightToLeftPar(buf->params);
530         return rtl != rtl2;
531 }
532
533
534 int LyXText::leftMargin(Row const & row) const
535 {
536         InsetOld * ins;
537
538         if (row.pos() < row.par()->size())
539                 if ((row.par()->getChar(row.pos()) == Paragraph::META_INSET) &&
540                     (ins = row.par()->getInset(row.pos())) &&
541                     (ins->needFullRow() || ins->display()))
542                         return LEFT_MARGIN;
543
544         LyXTextClass const & tclass =
545                 bv()->buffer()->params.getLyXTextClass();
546         LyXLayout_ptr const & layout = row.par()->layout();
547
548         string parindent = layout->parindent;
549
550         int x = LEFT_MARGIN;
551
552         x += font_metrics::signedWidth(tclass.leftmargin(), tclass.defaultfont());
553
554         // this is the way, LyX handles the LaTeX-Environments.
555         // I have had this idea very late, so it seems to be a
556         // later added hack and this is true
557         if (!row.par()->getDepth()) {
558                 if (row.par()->layout() == tclass.defaultLayout()) {
559                         // find the previous same level paragraph
560                         if (row.par() != ownerParagraphs().begin()) {
561                                 ParagraphList::iterator newpit =
562                                         depthHook(row.par(), ownerParagraphs(),
563                                                   row.par()->getDepth());
564                                 if (newpit == row.par() &&
565                                     newpit->layout()->nextnoindent)
566                                         parindent.erase();
567                         }
568                 }
569         } else {
570                 // find the next level paragraph
571
572                 ParagraphList::iterator newpar = outerHook(row.par(),
573                                                            ownerParagraphs());
574
575                 // make a corresponding row. Needed to call leftMargin()
576
577                 // check wether it is a sufficent paragraph
578                 if (newpar != ownerParagraphs().end() &&
579                     newpar->layout()->isEnvironment()) {
580                         Row dummyrow;
581                         dummyrow.par(newpar);
582                         dummyrow.pos(newpar->size());
583                         x = leftMargin(dummyrow);
584                 }
585
586                 if (newpar != ownerParagraphs().end() &&
587                     row.par()->layout() == tclass.defaultLayout()) {
588                         if (newpar->params().noindent())
589                                 parindent.erase();
590                         else {
591                                 parindent = newpar->layout()->parindent;
592                         }
593
594                 }
595         }
596
597         LyXFont const labelfont = getLabelFont(bv()->buffer(), row.par());
598         switch (layout->margintype) {
599         case MARGIN_DYNAMIC:
600                 if (!layout->leftmargin.empty()) {
601                         x += font_metrics::signedWidth(layout->leftmargin,
602                                                   tclass.defaultfont());
603                 }
604                 if (!row.par()->getLabelstring().empty()) {
605                         x += font_metrics::signedWidth(layout->labelindent,
606                                                   labelfont);
607                         x += font_metrics::width(row.par()->getLabelstring(),
608                                             labelfont);
609                         x += font_metrics::width(layout->labelsep, labelfont);
610                 }
611                 break;
612         case MARGIN_MANUAL:
613                 x += font_metrics::signedWidth(layout->labelindent, labelfont);
614                 // The width of an empty par, even with manual label, should be 0
615                 if (!row.par()->empty() && row.pos() >= row.par()->beginningOfBody()) {
616                         if (!row.par()->getLabelWidthString().empty()) {
617                                 x += font_metrics::width(row.par()->getLabelWidthString(),
618                                                labelfont);
619                                 x += font_metrics::width(layout->labelsep, labelfont);
620                         }
621                 }
622                 break;
623         case MARGIN_STATIC:
624                 x += font_metrics::signedWidth(layout->leftmargin, tclass.defaultfont()) * 4
625                         / (row.par()->getDepth() + 4);
626                 break;
627         case MARGIN_FIRST_DYNAMIC:
628                 if (layout->labeltype == LABEL_MANUAL) {
629                         if (row.pos() >= row.par()->beginningOfBody()) {
630                                 x += font_metrics::signedWidth(layout->leftmargin,
631                                                           labelfont);
632                         } else {
633                                 x += font_metrics::signedWidth(layout->labelindent,
634                                                           labelfont);
635                         }
636                 } else if (row.pos()
637                            // Special case to fix problems with
638                            // theorems (JMarc)
639                            || (layout->labeltype == LABEL_STATIC
640                                && layout->latextype == LATEX_ENVIRONMENT
641                                && !isFirstInSequence(row.par(), ownerParagraphs()))) {
642                         x += font_metrics::signedWidth(layout->leftmargin,
643                                                   labelfont);
644                 } else if (layout->labeltype != LABEL_TOP_ENVIRONMENT
645                            && layout->labeltype != LABEL_BIBLIO
646                            && layout->labeltype !=
647                            LABEL_CENTERED_TOP_ENVIRONMENT) {
648                         x += font_metrics::signedWidth(layout->labelindent,
649                                                   labelfont);
650                         x += font_metrics::width(layout->labelsep, labelfont);
651                         x += font_metrics::width(row.par()->getLabelstring(),
652                                             labelfont);
653                 }
654                 break;
655
656         case MARGIN_RIGHT_ADDRESS_BOX:
657         {
658                 // ok, a terrible hack. The left margin depends on the widest
659                 // row in this paragraph. Do not care about footnotes, they
660                 // are *NOT* allowed in the LaTeX realisation of this layout.
661
662                 // find the first row of this paragraph
663                 RowList::iterator tmprit = rowlist_.begin();
664                 while (tmprit != rowlist_.end()
665                        && tmprit->par() != row.par())
666                         ++tmprit;
667
668                 int minfill = tmprit->fill();
669                 while (boost::next(tmprit) != rowlist_.end() &&
670                        boost::next(tmprit)->par() == row.par()) {
671                         ++tmprit;
672                         if (tmprit->fill() < minfill)
673                                 minfill = tmprit->fill();
674                 }
675
676                 x += font_metrics::signedWidth(layout->leftmargin,
677                         tclass.defaultfont());
678                 x += minfill;
679         }
680         break;
681         }
682
683         if ((workWidth() > 0) &&
684                 !row.par()->params().leftIndent().zero())
685         {
686                 LyXLength const len = row.par()->params().leftIndent();
687                 int const tw = inset_owner ?
688                         inset_owner->latexTextWidth(bv()) : workWidth();
689                 x += len.inPixels(tw);
690         }
691
692         LyXAlignment align;
693
694         if (row.par()->params().align() == LYX_ALIGN_LAYOUT)
695                 align = layout->align;
696         else
697                 align = row.par()->params().align();
698
699         // set the correct parindent
700         if (row.pos() == 0) {
701                 if ((layout->labeltype == LABEL_NO_LABEL
702                      || layout->labeltype == LABEL_TOP_ENVIRONMENT
703                      || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
704                      || (layout->labeltype == LABEL_STATIC
705                          && layout->latextype == LATEX_ENVIRONMENT
706                          && !isFirstInSequence(row.par(), ownerParagraphs())))
707                     && align == LYX_ALIGN_BLOCK
708                     && !row.par()->params().noindent()
709                         // in tabulars and ert paragraphs are never indented!
710                         && (!row.par()->inInset() || !row.par()->inInset()->owner() ||
711                                 (row.par()->inInset()->owner()->lyxCode() != InsetOld::TABULAR_CODE &&
712                                  row.par()->inInset()->owner()->lyxCode() != InsetOld::ERT_CODE))
713                     && (row.par()->layout() != tclass.defaultLayout() ||
714                         bv()->buffer()->params.paragraph_separation ==
715                         BufferParams::PARSEP_INDENT)) {
716                         x += font_metrics::signedWidth(parindent,
717                                                   tclass.defaultfont());
718                 } else if (layout->labeltype == LABEL_BIBLIO) {
719                         // ale970405 Right width for bibitems
720                         x += bibitemMaxWidth(bv(), tclass.defaultfont());
721                 }
722         }
723
724         return x;
725 }
726
727
728 int LyXText::rightMargin(Buffer const & buf, Row const & row) const
729 {
730         InsetOld * ins;
731
732         if (row.pos() < row.par()->size())
733                 if ((row.par()->getChar(row.pos()) == Paragraph::META_INSET) &&
734                     (ins = row.par()->getInset(row.pos())) &&
735                     (ins->needFullRow() || ins->display()))
736                         return PAPER_MARGIN;
737
738         LyXTextClass const & tclass = buf.params.getLyXTextClass();
739         LyXLayout_ptr const & layout = row.par()->layout();
740
741         int x = PAPER_MARGIN
742                 + font_metrics::signedWidth(tclass.rightmargin(),
743                                        tclass.defaultfont());
744
745         x += font_metrics::signedWidth(layout->rightmargin,
746                                        tclass.defaultfont())
747                 * 4 / (row.par()->getDepth() + 4);
748         return x;
749 }
750
751
752 int LyXText::labelEnd(Row const & row) const
753 {
754         if (row.par()->layout()->margintype == MARGIN_MANUAL) {
755                 Row tmprow = row;
756                 tmprow.pos(row.par()->size());
757                 // return the beginning of the body
758                 return leftMargin(tmprow);
759         }
760
761         // LabelEnd is only needed if the layout
762         // fills a flushleft label.
763         return 0;
764 }
765
766
767 namespace {
768
769 // this needs special handling - only newlines count as a break point
770 pos_type addressBreakPoint(pos_type i, Paragraph const & par)
771 {
772         for (; i < par.size(); ++i) {
773                 if (par.isNewline(i))
774                         return i;
775         }
776
777         return par.size();
778 }
779
780 };
781
782
783 pos_type LyXText::rowBreakPoint(Row const & row) const
784 {
785         ParagraphList::iterator pit = row.par();
786
787         // maximum pixel width of a row.
788         int width = workWidth() - rightMargin(*bv()->buffer(), row);
789
790         // inset->textWidth() returns -1 via workWidth(),
791         // but why ?
792         if (width < 0)
793                 return pit->size();
794
795         LyXLayout_ptr const & layout = pit->layout();
796
797         if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX)
798                 return addressBreakPoint(row.pos(), *pit);
799
800         pos_type const pos = row.pos();
801         pos_type const body_pos = pit->beginningOfBody();
802         pos_type const last = pit->size();
803         pos_type point = last;
804
805         if (pos == last)
806                 return last;
807
808         // Now we iterate through until we reach the right margin
809         // or the end of the par, then choose the possible break
810         // nearest that.
811
812         int const left = leftMargin(row);
813         int x = left;
814
815         // pixel width since last breakpoint
816         int chunkwidth = 0;
817         bool fullrow = false;
818
819         pos_type i = pos;
820
821         // We re-use the font resolution for the entire font span when possible
822         LyXFont font = getFont(bv()->buffer(), pit, i);
823         lyx::pos_type endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
824
825         for (; i < last; ++i) {
826                 if (pit->isNewline(i)) {
827                         point = i;
828                         break;
829                 }
830
831                 char const c = pit->getChar(i);
832
833                 int thiswidth;
834
835                 // add the auto-hfill from label end to the body
836                 if (body_pos && i == body_pos) {
837                         thiswidth = font_metrics::width(layout->labelsep,
838                                 getLabelFont(bv()->buffer(), pit));
839                         if (pit->isLineSeparator(i - 1))
840                                 thiswidth -= singleWidth(pit, i - 1);
841                         int left_margin = labelEnd(row);
842                         if (thiswidth + x < left_margin)
843                                 thiswidth = left_margin - x;
844                         thiswidth += singleWidth(pit, i, c);
845                 } else {
846                         // Manual inlined optimised version of common case of "thiswidth = singleWidth(pit, i, c);"
847                         if (IsPrintable(c)) {
848                                 if (pos > endPosOfFontSpan) {
849                                         // We need to get the next font
850                                         font = getFont(bv()->buffer(), pit, i);
851                                         endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
852                                 }
853                                 if (! font.language()->RightToLeft()) {
854                                         thiswidth = font_metrics::width(c, font);
855                                 } else {
856                                         // Fall-back to normal case
857                                         thiswidth = singleWidth(pit, i, c);
858                                         // And flush font cache
859                                         endPosOfFontSpan = 0;
860                                 }
861                         } else {
862                                 // Fall-back to normal case
863                                 thiswidth = singleWidth(pit, i, c);
864                                 // And flush font cache
865                                 endPosOfFontSpan = 0;
866                         }
867                 }
868
869                 x += thiswidth;
870                 chunkwidth += thiswidth;
871
872                 InsetOld * in = pit->isInset(i) ? pit->getInset(i) : 0;
873                 fullrow = (in && (in->display() || in->needFullRow()));
874
875                 // break before a character that will fall off
876                 // the right of the row
877                 if (x >= width) {
878                         // if no break before or we are at an inset
879                         // that will take up a row, break here
880                         if (point == last || fullrow || chunkwidth >= (width - left)) {
881                                 if (pos < i)
882                                         point = i - 1;
883                                 else
884                                         point = i;
885                         }
886                         break;
887                 }
888
889                 if (!in || in->isChar()) {
890                         // some insets are line separators too
891                         if (pit->isLineSeparator(i)) {
892                                 point = i;
893                                 chunkwidth = 0;
894                         }
895                         continue;
896                 }
897
898                 if (!fullrow)
899                         continue;
900
901                 // full row insets start at a new row
902                 if (i == pos) {
903                         if (pos < last - 1) {
904                                 point = i;
905                                 if (pit->isLineSeparator(i + 1))
906                                         ++point;
907                         } else {
908                                 // to avoid extra rows
909                                 point = last;
910                         }
911                 } else {
912                         point = i - 1;
913                 }
914
915                 return point;
916         }
917
918         if (point == last && x >= width) {
919                 // didn't find one, break at the point we reached the edge
920                 point = i;
921         } else if (i == last && x < width) {
922                 // found one, but we fell off the end of the par, so prefer
923                 // that.
924                 point = last;
925         }
926
927         // manual labels cannot be broken in LaTeX. But we
928         // want to make our on-screen rendering of footnotes
929         // etc. still break
930         if (!fullrow && body_pos && point < body_pos)
931                 point = body_pos - 1;
932
933         return point;
934 }
935
936
937 // returns the minimum space a row needs on the screen in pixel
938 int LyXText::fill(RowList::iterator row, int paper_width) const
939 {
940         if (paper_width < 0)
941                 return 0;
942
943         int w;
944         // get the pure distance
945         pos_type const last = lastPrintablePos(*this, row);
946
947         ParagraphList::iterator pit = row->par();
948         LyXLayout_ptr const & layout = pit->layout();
949
950         // special handling of the right address boxes
951         if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX) {
952                 int const tmpfill = row->fill();
953                 row->fill(0); // the minfill in MarginLeft()
954                 w = leftMargin(*row);
955                 row->fill(tmpfill);
956         } else
957                 w = leftMargin(*row);
958
959         pos_type const body_pos = pit->beginningOfBody();
960         pos_type i = row->pos();
961
962         if (! pit->empty() && i <= last) {
963                 // We re-use the font resolution for the entire span when possible
964                 LyXFont font = getFont(bv()->buffer(), pit, i);
965                 lyx::pos_type endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
966                 while (i <= last) {
967                         if (body_pos > 0 && i == body_pos) {
968                                 w += font_metrics::width(layout->labelsep, getLabelFont(bv()->buffer(), pit));
969                                 if (pit->isLineSeparator(i - 1))
970                                         w -= singleWidth(pit, i - 1);
971                                 int left_margin = labelEnd(*row);
972                                 if (w < left_margin)
973                                         w = left_margin;
974                         }
975                         { // Manual inlined an optimised version of the common case of "w += singleWidth(pit, i);"
976                                 char const c = pit->getChar(i);
977
978                                 if (IsPrintable(c)) {
979                                         if (i > endPosOfFontSpan) {
980                                                 // We need to get the next font
981                                                 font = getFont(bv()->buffer(), pit, i);
982                                                 endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
983                                         }
984                                         if (! font.language()->RightToLeft()) {
985                                                 w += font_metrics::width(c, font);
986                                         } else {
987                                                 // Fall-back to the normal case
988                                                 w += singleWidth(pit, i, c);
989                                                 // And flush font cache
990                                                 endPosOfFontSpan = 0;
991                                         }
992                                 } else {
993                                         // Fall-back to the normal case
994                                         w += singleWidth(pit, i, c);
995                                         // And flush font cache
996                                         endPosOfFontSpan = 0;
997                                 }
998                         }
999                         ++i;
1000                 }
1001         }
1002         if (body_pos > 0 && body_pos > last) {
1003                 w += font_metrics::width(layout->labelsep, getLabelFont(bv()->buffer(), pit));
1004                 if (last >= 0 && pit->isLineSeparator(last))
1005                         w -= singleWidth(pit, last);
1006                 int const left_margin = labelEnd(*row);
1007                 if (w < left_margin)
1008                         w = left_margin;
1009         }
1010
1011         int const fill = paper_width - w - rightMargin(*bv()->buffer(), *row);
1012
1013         // If this case happens, it means that our calculation
1014         // of the widths of the chars when we do rowBreakPoint()
1015         // went wrong for some reason. Typically in list bodies.
1016         // Things just about hobble on anyway, though you'll end
1017         // up with a "fill_separator" less than zero, which corresponds
1018         // to inter-word spacing being too small. Hopefully this problem
1019         // will die when the label hacks die.
1020         if (lyxerr.debugging() && fill < 0) {
1021                 lyxerr[Debug::GUI] << "Eek, fill() was < 0: " << fill
1022                         << " w " << w << " paper_width " << paper_width
1023                         << " right margin " << rightMargin(*bv()->buffer(), *row) << endl;
1024         }
1025
1026         return fill;
1027 }
1028
1029
1030 // returns the minimum space a manual label needs on the screen in pixel
1031 int LyXText::labelFill(Row const & row) const
1032 {
1033         ParagraphList::iterator pit = row.par();
1034
1035         pos_type last = pit->beginningOfBody();
1036
1037         Assert(last > 0);
1038
1039         // -1 because a label ends either with a space that is in the label,
1040         // or with the beginning of a footnote that is outside the label.
1041         --last;
1042
1043         // a separator at this end does not count
1044         if (pit->isLineSeparator(last))
1045                 --last;
1046
1047         int w = 0;
1048         pos_type i = row.pos();
1049         while (i <= last) {
1050                 w += singleWidth(pit, i);
1051                 ++i;
1052         }
1053
1054         int fill = 0;
1055         string const & labwidstr = pit->params().labelWidthString();
1056         if (!labwidstr.empty()) {
1057                 LyXFont const labfont = getLabelFont(bv()->buffer(), pit);
1058                 int const labwidth = font_metrics::width(labwidstr, labfont);
1059                 fill = max(labwidth - w, 0);
1060         }
1061
1062         return fill;
1063 }
1064
1065
1066 LColor::color LyXText::backgroundColor() const
1067 {
1068         if (inset_owner)
1069                 return inset_owner->backgroundColor();
1070         else
1071                 return LColor::background;
1072 }
1073
1074
1075 void LyXText::setHeightOfRow(RowList::iterator rit)
1076 {
1077         Assert(rit != rows().end());
1078
1079         // get the maximum ascent and the maximum descent
1080         float layoutasc = 0;
1081         float layoutdesc = 0;
1082         float tmptop = 0;
1083
1084         // ok, let us initialize the maxasc and maxdesc value.
1085         // This depends in LaTeX of the font of the last character
1086         // in the paragraph. The hack below is necessary because
1087         // of the possibility of open footnotes
1088
1089         // Correction: only the fontsize count. The other properties
1090         //  are taken from the layoutfont. Nicer on the screen :)
1091         ParagraphList::iterator pit = rit->par();
1092
1093         LyXLayout_ptr const & layout = pit->layout();
1094
1095         // as max get the first character of this row then it can increase but not
1096         // decrease the height. Just some point to start with so we don't have to
1097         // do the assignment below too often.
1098         LyXFont font = getFont(bv()->buffer(), pit, rit->pos());
1099         LyXFont::FONT_SIZE const tmpsize = font.size();
1100         font = getLayoutFont(bv()->buffer(), pit);
1101         LyXFont::FONT_SIZE const size = font.size();
1102         font.setSize(tmpsize);
1103
1104         LyXFont labelfont = getLabelFont(bv()->buffer(), pit);
1105
1106         float spacing_val = 1.0;
1107         if (!pit->params().spacing().isDefault()) {
1108                 spacing_val = pit->params().spacing().getValue();
1109         } else {
1110                 spacing_val = bv()->buffer()->params.spacing.getValue();
1111         }
1112         //lyxerr << "spacing_val = " << spacing_val << endl;
1113
1114         int maxasc = int(font_metrics::maxAscent(font) *
1115                          layout->spacing.getValue() *
1116                          spacing_val);
1117         int maxdesc = int(font_metrics::maxDescent(font) *
1118                           layout->spacing.getValue() *
1119                           spacing_val);
1120
1121         pos_type const pos_end = lastPos(*this, rit);
1122         int labeladdon = 0;
1123         int maxwidth = 0;
1124
1125         if (!pit->empty()) {
1126                 // We re-use the font resolution for the entire font span when possible
1127                 LyXFont font = getFont(bv()->buffer(), pit, rit->pos());
1128                 lyx::pos_type endPosOfFontSpan = pit->getEndPosOfFontSpan(rit->pos());
1129
1130                 // Optimisation
1131                 Paragraph const & par = *pit;
1132
1133                 // Check if any insets are larger
1134                 for (pos_type pos = rit->pos(); pos <= pos_end; ++pos) {
1135                         // Manual inlined optimised version of common case of "maxwidth += singleWidth(pit, pos);"
1136                         char const c = par.getChar(pos);
1137
1138                         if (IsPrintable(c)) {
1139                                 if (pos > endPosOfFontSpan) {
1140                                         // We need to get the next font
1141                                         font = getFont(bv()->buffer(), pit, pos);
1142                                         endPosOfFontSpan = par.getEndPosOfFontSpan(pos);
1143                                 }
1144                                 if (! font.language()->RightToLeft()) {
1145                                         maxwidth += font_metrics::width(c, font);
1146                                 } else {
1147                                         // Fall-back to normal case
1148                                         maxwidth += singleWidth(pit, pos, c);
1149                                         // And flush font cache
1150                                         endPosOfFontSpan = 0;
1151                                 }
1152                         } else {
1153                                 // Special handling of insets - are any larger?
1154                                 if (par.isInset(pos)) {
1155                                         LyXFont const tmpfont = getFont(bv()->buffer(), pit, pos);
1156                                         InsetOld const * tmpinset = par.getInset(pos);
1157                                         if (tmpinset) {
1158 #if 1 // this is needed for deep update on initialitation
1159 #warning inset->update FIXME
1160                                                 //tmpinset->update(bv());
1161                                                 Dimension dim;
1162                                                 MetricsInfo mi(bv(), tmpfont, workWidth());
1163                                                 tmpinset->metrics(mi, dim);
1164                                                 maxwidth += dim.wid;
1165                                                 maxasc = max(maxasc, dim.asc);
1166                                                 maxdesc = max(maxdesc, dim.des);
1167 #else
1168                                                 maxwidth += tmpinset->width();
1169                                                 maxasc = max(maxasc, tmpinset->ascent());
1170                                                 maxdesc = max(maxdesc, tmpinset->descent());
1171 #endif
1172                                         } 
1173                                 } else {
1174                                         // Fall-back to normal case
1175                                         maxwidth += singleWidth(pit, pos, c);
1176                                         // And flush font cache
1177                                         endPosOfFontSpan = 0;
1178                                 }
1179                         }
1180                 }
1181         }
1182
1183         // Check if any custom fonts are larger (Asger)
1184         // This is not completely correct, but we can live with the small,
1185         // cosmetic error for now.
1186         LyXFont::FONT_SIZE maxsize =
1187                 pit->highestFontInRange(rit->pos(), pos_end, size);
1188         if (maxsize > font.size()) {
1189                 font.setSize(maxsize);
1190                 maxasc = max(maxasc, font_metrics::maxAscent(font));
1191                 maxdesc = max(maxdesc, font_metrics::maxDescent(font));
1192         }
1193
1194         // This is nicer with box insets:
1195         ++maxasc;
1196         ++maxdesc;
1197
1198         rit->ascent_of_text(maxasc);
1199
1200         // is it a top line?
1201         if (!rit->pos()) {
1202
1203                 // some parksips VERY EASY IMPLEMENTATION
1204                 if (bv()->buffer()->params.paragraph_separation ==
1205                         BufferParams::PARSEP_SKIP)
1206                 {
1207                         if (layout->isParagraph()
1208                                 && pit->getDepth() == 0
1209                                 && pit != ownerParagraphs().begin())
1210                         {
1211                                 maxasc += bv()->buffer()->params.getDefSkip().inPixels(*bv());
1212                         } else if (pit != ownerParagraphs().begin() &&
1213                                    boost::prior(pit)->layout()->isParagraph() &&
1214                                    boost::prior(pit)->getDepth() == 0)
1215                         {
1216                                 // is it right to use defskip here too? (AS)
1217                                 maxasc += bv()->buffer()->params.getDefSkip().inPixels(*bv());
1218                         }
1219                 }
1220
1221                 // the top margin
1222                 if (pit == ownerParagraphs().begin() && !isInInset())
1223                         maxasc += PAPER_MARGIN;
1224
1225                 // add the vertical spaces, that the user added
1226                 maxasc += getLengthMarkerHeight(*bv(), pit->params().spaceTop());
1227
1228                 // do not forget the DTP-lines!
1229                 // there height depends on the font of the nearest character
1230                 if (pit->params().lineTop())
1231
1232                         maxasc += 2 * font_metrics::ascent('x', getFont(bv()->buffer(),
1233                                         pit, 0));
1234                 // and now the pagebreaks
1235                 if (pit->params().pagebreakTop())
1236                         maxasc += 3 * defaultRowHeight();
1237
1238                 if (pit->params().startOfAppendix())
1239                         maxasc += 3 * defaultRowHeight();
1240
1241                 // This is special code for the chapter, since the label of this
1242                 // layout is printed in an extra row
1243                 if (layout->labeltype == LABEL_COUNTER_CHAPTER
1244                         && bv()->buffer()->params.secnumdepth >= 0)
1245                 {
1246                         float spacing_val = 1.0;
1247                         if (!pit->params().spacing().isDefault()) {
1248                                 spacing_val = pit->params().spacing().getValue();
1249                         } else {
1250                                 spacing_val = bv()->buffer()->params.spacing.getValue();
1251                         }
1252
1253                         labeladdon = int(font_metrics::maxDescent(labelfont) *
1254                                          layout->spacing.getValue() *
1255                                          spacing_val)
1256                                 + int(font_metrics::maxAscent(labelfont) *
1257                                       layout->spacing.getValue() *
1258                                       spacing_val);
1259                 }
1260
1261                 // special code for the top label
1262                 if ((layout->labeltype == LABEL_TOP_ENVIRONMENT
1263                      || layout->labeltype == LABEL_BIBLIO
1264                      || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
1265                     && isFirstInSequence(pit, ownerParagraphs())
1266                     && !pit->getLabelstring().empty())
1267                 {
1268                         float spacing_val = 1.0;
1269                         if (!pit->params().spacing().isDefault()) {
1270                                 spacing_val = pit->params().spacing().getValue();
1271                         } else {
1272                                 spacing_val = bv()->buffer()->params.spacing.getValue();
1273                         }
1274
1275                         labeladdon = int(
1276                                 (font_metrics::maxAscent(labelfont) *
1277                                  layout->spacing.getValue() *
1278                                  spacing_val)
1279                                 +(font_metrics::maxDescent(labelfont) *
1280                                   layout->spacing.getValue() *
1281                                   spacing_val)
1282                                 + layout->topsep * defaultRowHeight()
1283                                 + layout->labelbottomsep * defaultRowHeight());
1284                 }
1285
1286                 // And now the layout spaces, for example before and after
1287                 // a section, or between the items of a itemize or enumerate
1288                 // environment.
1289
1290                 if (!pit->params().pagebreakTop()) {
1291                         ParagraphList::iterator prev =
1292                                 depthHook(pit, ownerParagraphs(),
1293                                           pit->getDepth());
1294                         if (prev != pit && prev->layout() == layout &&
1295                                 prev->getDepth() == pit->getDepth() &&
1296                                 prev->getLabelWidthString() == pit->getLabelWidthString())
1297                         {
1298                                 layoutasc = (layout->itemsep * defaultRowHeight());
1299                         } else if (rit != rows().begin()) {
1300                                 tmptop = layout->topsep;
1301
1302                                 if (boost::prior(pit)->getDepth() >= pit->getDepth())
1303                                         tmptop -= boost::prior(rit)->par()->layout()->bottomsep;
1304
1305                                 if (tmptop > 0)
1306                                         layoutasc = (tmptop * defaultRowHeight());
1307                         } else if (pit->params().lineTop()) {
1308                                 tmptop = layout->topsep;
1309
1310                                 if (tmptop > 0)
1311                                         layoutasc = (tmptop * defaultRowHeight());
1312                         }
1313
1314                         prev = outerHook(pit, ownerParagraphs());
1315                         if (prev != ownerParagraphs().end())  {
1316                                 maxasc += int(prev->layout()->parsep * defaultRowHeight());
1317                         } else if (pit != ownerParagraphs().begin()) {
1318                                 ParagraphList::iterator prior_pit = boost::prior(pit);
1319                                 if (prior_pit->getDepth() != 0 ||
1320                                     prior_pit->layout() == layout) {
1321                                         maxasc += int(layout->parsep * defaultRowHeight());
1322                                 }
1323                         }
1324                 }
1325         }
1326
1327         // is it a bottom line?
1328         RowList::iterator next_rit = boost::next(rit);
1329         if (next_rit == rows().end() || next_rit->par() != pit) {
1330                 // the bottom margin
1331                 ParagraphList::iterator nextpit = boost::next(pit);
1332                 if (nextpit == ownerParagraphs().end() &&
1333                     !isInInset())
1334                         maxdesc += PAPER_MARGIN;
1335
1336                 // add the vertical spaces, that the user added
1337                 maxdesc += getLengthMarkerHeight(*bv(), pit->params().spaceBottom());
1338
1339                 // do not forget the DTP-lines!
1340                 // there height depends on the font of the nearest character
1341                 if (pit->params().lineBottom())
1342                         maxdesc += 2 * font_metrics::ascent('x',
1343                                                        getFont(bv()->buffer(),
1344                                                                pit,
1345                                                                max(pos_type(0), pit->size() - 1)));
1346
1347                 // and now the pagebreaks
1348                 if (pit->params().pagebreakBottom())
1349                         maxdesc += 3 * defaultRowHeight();
1350
1351                 // and now the layout spaces, for example before and after
1352                 // a section, or between the items of a itemize or enumerate
1353                 // environment
1354                 if (!pit->params().pagebreakBottom()
1355                     && nextpit != ownerParagraphs().end()) {
1356                         ParagraphList::iterator comparepit = pit;
1357                         float usual = 0;
1358                         float unusual = 0;
1359
1360                         if (comparepit->getDepth() > nextpit->getDepth()) {
1361                                 usual = (comparepit->layout()->bottomsep * defaultRowHeight());
1362                                 comparepit = depthHook(comparepit, ownerParagraphs(), nextpit->getDepth());
1363                                 if (comparepit->layout()!= nextpit->layout()
1364                                         || nextpit->getLabelWidthString() !=
1365                                         comparepit->getLabelWidthString())
1366                                 {
1367                                         unusual = (comparepit->layout()->bottomsep * defaultRowHeight());
1368                                 }
1369                                 if (unusual > usual)
1370                                         layoutdesc = unusual;
1371                                 else
1372                                         layoutdesc = usual;
1373                         } else if (comparepit->getDepth() ==  nextpit->getDepth()) {
1374
1375                                 if (comparepit->layout() != nextpit->layout()
1376                                         || nextpit->getLabelWidthString() !=
1377                                         comparepit->getLabelWidthString())
1378                                         layoutdesc = int(comparepit->layout()->bottomsep * defaultRowHeight());
1379                         }
1380                 }
1381         }
1382
1383         // incalculate the layout spaces
1384         maxasc += int(layoutasc * 2 / (2 + pit->getDepth()));
1385         maxdesc += int(layoutdesc * 2 / (2 + pit->getDepth()));
1386
1387         // calculate the new height of the text
1388         height -= rit->height();
1389
1390         rit->height(maxasc + maxdesc + labeladdon);
1391         rit->baseline(maxasc + labeladdon);
1392
1393         height += rit->height();
1394
1395         rit->top_of_text(rit->baseline() - font_metrics::maxAscent(font));
1396
1397         int x = 0;
1398         if (layout->margintype != MARGIN_RIGHT_ADDRESS_BOX) {
1399                 int dummy;
1400                 // this IS needed
1401                 rit->width(maxwidth);
1402                 prepareToPrint(rit, x, dummy, dummy, dummy, false);
1403         }
1404         rit->width(int(maxwidth + x));
1405         if (inset_owner) {
1406                 width = max(0, workWidth());
1407                 RowList::iterator it = rows().begin();
1408                 RowList::iterator end = rows().end();
1409                 for (; it != end; ++it) {
1410                         if (it->width() > width)
1411                                 width = it->width();
1412                 }
1413         }
1414 }
1415
1416
1417 // Appends the implicit specified paragraph before the specified row,
1418 // start at the implicit given position
1419 void LyXText::appendParagraph(RowList::iterator rowit)
1420 {
1421         Assert(rowit != rowlist_.end());
1422
1423         pos_type const last = rowit->par()->size();
1424         bool done = false;
1425
1426         do {
1427                 pos_type z = rowBreakPoint(*rowit);
1428
1429                 RowList::iterator tmprow = rowit;
1430
1431                 if (z < last) {
1432                         ++z;
1433                         Row newrow(rowit->par(), z);
1434                         rowit = rowlist_.insert(boost::next(rowit), newrow);
1435                 } else {
1436                         done = true;
1437                 }
1438
1439                 // Set the dimensions of the row
1440                 // fixed fill setting now by calling inset->update() in
1441                 // SingleWidth when needed!
1442                 tmprow->fill(fill(tmprow, workWidth()));
1443                 setHeightOfRow(tmprow);
1444
1445         } while (!done);
1446 }
1447
1448
1449 void LyXText::breakAgain(RowList::iterator rit)
1450 {
1451         Assert(rit != rows().end());
1452
1453         bool not_ready = true;
1454
1455         do  {
1456                 pos_type z = rowBreakPoint(*rit);
1457                 RowList::iterator tmprit = rit;
1458                 RowList::iterator end = rows().end();
1459
1460                 if (z < rit->par()->size()) {
1461                         RowList::iterator next_rit = boost::next(rit);
1462
1463                         if (next_rit == end ||
1464                             (next_rit != end &&
1465                              next_rit->par() != rit->par())) {
1466                                 // insert a new row
1467                                 ++z;
1468                                 Row newrow(rit->par(), z);
1469                                 rit = rowlist_.insert(next_rit, newrow);
1470                         } else  {
1471                                 ++rit;
1472                                 ++z;
1473                                 if (rit->pos() == z)
1474                                         not_ready = false; // the rest will not change
1475                                 else {
1476                                         rit->pos(z);
1477                                 }
1478                         }
1479                 } else {
1480                         // if there are some rows too much, delete them
1481                         // only if you broke the whole paragraph!
1482                         RowList::iterator tmprit2 = rit;
1483                         while (boost::next(tmprit2) != end
1484                                && boost::next(tmprit2)->par() == rit->par()) {
1485                                 ++tmprit2;
1486                         }
1487                         while (tmprit2 != rit) {
1488                                 --tmprit2;
1489                                 removeRow(boost::next(tmprit2));
1490                         }
1491                         not_ready = false;
1492                 }
1493
1494                 // set the dimensions of the row
1495                 tmprit->fill(fill(tmprit, workWidth()));
1496                 setHeightOfRow(tmprit);
1497         } while (not_ready);
1498 }
1499
1500
1501 // this is just a little changed version of break again
1502 void LyXText::breakAgainOneRow(RowList::iterator rit)
1503 {
1504         Assert(rit != rows().end());
1505
1506         pos_type z = rowBreakPoint(*rit);
1507         RowList::iterator tmprit = rit;
1508         RowList::iterator end = rows().end();
1509
1510         if (z < rit->par()->size()) {
1511                 RowList::iterator next_rit = boost::next(rit);
1512
1513                 if (next_rit == end ||
1514                     (next_rit != end &&
1515                      next_rit->par() != rit->par())) {
1516                         // insert a new row
1517                         ++z;
1518                         Row newrow(rit->par(), z);
1519                         rit = rowlist_.insert(next_rit, newrow);
1520                 } else  {
1521                         ++rit;
1522                         ++z;
1523                         if (rit->pos() != z)
1524                                 rit->pos(z);
1525                 }
1526         } else {
1527                 // if there are some rows too much, delete them
1528                 // only if you broke the whole paragraph!
1529                 RowList::iterator tmprit2 = rit;
1530                 while (boost::next(tmprit2) != end
1531                        && boost::next(tmprit2)->par() == rit->par()) {
1532                         ++tmprit2;
1533                 }
1534                 while (tmprit2 != rit) {
1535                         --tmprit2;
1536                         removeRow(boost::next(tmprit2));
1537                 }
1538         }
1539
1540         // set the dimensions of the row
1541         tmprit->fill(fill(tmprit, workWidth()));
1542         setHeightOfRow(tmprit);
1543 }
1544
1545
1546 void LyXText::breakParagraph(ParagraphList & paragraphs, char keep_layout)
1547 {
1548         // allow only if at start or end, or all previous is new text
1549         if (cursor.pos() && cursor.pos() != cursor.par()->size()
1550                 && cursor.par()->isChangeEdited(0, cursor.pos()))
1551                 return;
1552
1553         LyXTextClass const & tclass =
1554                 bv()->buffer()->params.getLyXTextClass();
1555         LyXLayout_ptr const & layout = cursor.par()->layout();
1556
1557         // this is only allowed, if the current paragraph is not empty or caption
1558         // and if it has not the keepempty flag active
1559         if (cursor.par()->empty() && !cursor.par()->allowEmpty()
1560            && layout->labeltype != LABEL_SENSITIVE)
1561                 return;
1562
1563         recordUndo(bv(), Undo::ATOMIC, cursor.par());
1564
1565         // Always break behind a space
1566         //
1567         // It is better to erase the space (Dekel)
1568         if (cursor.pos() < cursor.par()->size()
1569              && cursor.par()->isLineSeparator(cursor.pos()))
1570            cursor.par()->erase(cursor.pos());
1571         // cursor.pos(cursor.pos() + 1);
1572
1573         // break the paragraph
1574         if (keep_layout)
1575                 keep_layout = 2;
1576         else
1577                 keep_layout = layout->isEnvironment();
1578
1579         // we need to set this before we insert the paragraph. IMO the
1580         // breakParagraph call should return a bool if it inserts the
1581         // paragraph before or behind and we should react on that one
1582         // but we can fix this in 1.3.0 (Jug 20020509)
1583         bool const isempty = (cursor.par()->allowEmpty() && cursor.par()->empty());
1584         ::breakParagraph(bv()->buffer()->params, paragraphs, cursor.par(),
1585                          cursor.pos(), keep_layout);
1586
1587         // well this is the caption hack since one caption is really enough
1588         if (layout->labeltype == LABEL_SENSITIVE) {
1589                 if (!cursor.pos())
1590                         // set to standard-layout
1591                         cursor.par()->applyLayout(tclass.defaultLayout());
1592                 else
1593                         // set to standard-layout
1594                         boost::next(cursor.par())->applyLayout(tclass.defaultLayout());
1595         }
1596
1597         // if the cursor is at the beginning of a row without prior newline,
1598         // move one row up!
1599         // This touches only the screen-update. Otherwise we would may have
1600         // an empty row on the screen
1601         if (cursor.pos() && cursorRow()->pos() == cursor.pos()
1602             && !cursorRow()->par()->isNewline(cursor.pos() - 1))
1603         {
1604                 cursorLeft(bv());
1605         }
1606
1607         postPaint();
1608
1609         removeParagraph(cursorRow());
1610
1611         // set the dimensions of the cursor row
1612         cursorRow()->fill(fill(cursorRow(), workWidth()));
1613
1614         setHeightOfRow(cursorRow());
1615
1616 #warning Trouble Point! (Lgb)
1617         // When ::breakParagraph is called from within an inset we must
1618         // ensure that the correct ParagraphList is used. Today that is not
1619         // the case and the Buffer::paragraphs is used. Not good. (Lgb)
1620         ParagraphList::iterator next_par = boost::next(cursor.par());
1621
1622         while (!next_par->empty() && next_par->isNewline(0))
1623                 next_par->erase(0);
1624
1625         insertParagraph(next_par, boost::next(cursorRow()));
1626         updateCounters();
1627
1628         // This check is necessary. Otherwise the new empty paragraph will
1629         // be deleted automatically. And it is more friendly for the user!
1630         if (cursor.pos() || isempty)
1631                 setCursor(next_par, 0);
1632         else
1633                 setCursor(cursor.par(), 0);
1634
1635         if (boost::next(cursorRow()) != rows().end())
1636                 breakAgain(boost::next(cursorRow()));
1637 }
1638
1639
1640 // Just a macro to make some thing easier.
1641 void LyXText::redoParagraph()
1642 {
1643         clearSelection();
1644         redoParagraphs(cursor, boost::next(cursor.par()));
1645         setCursorIntern(cursor.par(), cursor.pos());
1646 }
1647
1648
1649 // insert a character, moves all the following breaks in the
1650 // same Paragraph one to the right and make a rebreak
1651 void LyXText::insertChar(char c)
1652 {
1653         recordUndo(bv(), Undo::INSERT, cursor.par());
1654
1655         // When the free-spacing option is set for the current layout,
1656         // disable the double-space checking
1657
1658         bool const freeSpacing = cursorRow()->par()->layout()->free_spacing ||
1659                 cursorRow()->par()->isFreeSpacing();
1660
1661         if (lyxrc.auto_number) {
1662                 static string const number_operators = "+-/*";
1663                 static string const number_unary_operators = "+-";
1664                 static string const number_seperators = ".,:";
1665
1666                 if (current_font.number() == LyXFont::ON) {
1667                         if (!IsDigit(c) && !contains(number_operators, c) &&
1668                             !(contains(number_seperators, c) &&
1669                               cursor.pos() >= 1 &&
1670                               cursor.pos() < cursor.par()->size() &&
1671                               getFont(bv()->buffer(),
1672                                       cursor.par(),
1673                                       cursor.pos()).number() == LyXFont::ON &&
1674                               getFont(bv()->buffer(),
1675                                       cursor.par(),
1676                                       cursor.pos() - 1).number() == LyXFont::ON)
1677                            )
1678                                 number(bv()); // Set current_font.number to OFF
1679                 } else if (IsDigit(c) &&
1680                            real_current_font.isVisibleRightToLeft()) {
1681                         number(bv()); // Set current_font.number to ON
1682
1683                         if (cursor.pos() > 0) {
1684                                 char const c = cursor.par()->getChar(cursor.pos() - 1);
1685                                 if (contains(number_unary_operators, c) &&
1686                                     (cursor.pos() == 1 ||
1687                                      cursor.par()->isSeparator(cursor.pos() - 2) ||
1688                                      cursor.par()->isNewline(cursor.pos() - 2))
1689                                   ) {
1690                                         setCharFont(bv()->buffer(),
1691                                                     cursor.par(),
1692                                                     cursor.pos() - 1,
1693                                                     current_font);
1694                                 } else if (contains(number_seperators, c) &&
1695                                            cursor.pos() >= 2 &&
1696                                            getFont(bv()->buffer(),
1697                                                    cursor.par(),
1698                                                    cursor.pos() - 2).number() == LyXFont::ON) {
1699                                         setCharFont(bv()->buffer(),
1700                                                     cursor.par(),
1701                                                     cursor.pos() - 1,
1702                                                     current_font);
1703                                 }
1704                         }
1705                 }
1706         }
1707
1708
1709         // First check, if there will be two blanks together or a blank at
1710         // the beginning of a paragraph.
1711         // I decided to handle blanks like normal characters, the main
1712         // difference are the special checks when calculating the row.fill
1713         // (blank does not count at the end of a row) and the check here
1714
1715         // The bug is triggered when we type in a description environment:
1716         // The current_font is not changed when we go from label to main text
1717         // and it should (along with realtmpfont) when we type the space.
1718         // CHECK There is a bug here! (Asger)
1719
1720         LyXFont realtmpfont = real_current_font;
1721         LyXFont rawtmpfont = current_font;
1722         // store the current font.  This is because of the use of cursor
1723         // movements. The moving cursor would refresh the current font
1724
1725         // Get the font that is used to calculate the baselineskip
1726         pos_type const lastpos = cursor.par()->size();
1727         LyXFont rawparfont =
1728                 cursor.par()->getFontSettings(bv()->buffer()->params,
1729                                               lastpos - 1);
1730
1731         bool jumped_over_space = false;
1732
1733         if (!freeSpacing && IsLineSeparatorChar(c)) {
1734                 if ((cursor.pos() > 0
1735                      && cursor.par()->isLineSeparator(cursor.pos() - 1))
1736                     || (cursor.pos() > 0
1737                         && cursor.par()->isNewline(cursor.pos() - 1))
1738                     || (cursor.pos() == 0)) {
1739                         static bool sent_space_message = false;
1740                         if (!sent_space_message) {
1741                                 if (cursor.pos() == 0)
1742                                         bv()->owner()->message(_("You cannot insert a space at the beginning of a paragraph. Please read the Tutorial."));
1743                                 else
1744                                         bv()->owner()->message(_("You cannot type two spaces this way. Please read the Tutorial."));
1745                                 sent_space_message = true;
1746                         }
1747                         charInserted();
1748                         return;
1749                 }
1750         }
1751
1752         // the display inset stuff
1753         if (cursorRow()->pos() < cursorRow()->par()->size()
1754             && cursorRow()->par()->isInset(cursorRow()->pos())) {
1755                 InsetOld * inset = cursorRow()->par()->getInset(cursorRow()->pos());
1756                 if (inset && (inset->display() || inset->needFullRow())) {
1757                         // force a new break
1758                         cursorRow()->fill(-1); // to force a new break
1759                 }
1760         }
1761
1762         // get the cursor row fist
1763         RowList::iterator row = cursorRow();
1764         if (c != Paragraph::META_INSET) {
1765                 // Here case LyXText::InsertInset  already inserted the character
1766                 cursor.par()->insertChar(cursor.pos(), c);
1767         }
1768         setCharFont(bv()->buffer(), cursor.par(), cursor.pos(), rawtmpfont);
1769
1770         if (!jumped_over_space) {
1771                 // refresh the positions
1772                 RowList::iterator tmprow = row;
1773                 while (boost::next(tmprow) != rows().end() &&
1774                        boost::next(tmprow)->par() == row->par()) {
1775                         ++tmprow;
1776                         tmprow->pos(tmprow->pos() + 1);
1777                 }
1778         }
1779
1780         // Is there a break one row above
1781         if (row != rows().begin() &&
1782             boost::prior(row)->par() == row->par()
1783             && (cursor.par()->isLineSeparator(cursor.pos())
1784                 || cursor.par()->isNewline(cursor.pos())
1785                 || ((cursor.pos() + 1 < cursor.par()->size()) &&
1786                     cursor.par()->isInset(cursor.pos() + 1))
1787                 || cursorRow()->fill() == -1))
1788         {
1789                 pos_type z = rowBreakPoint(*boost::prior(row));
1790
1791                 if (z >= row->pos()) {
1792                         row->pos(z + 1);
1793
1794                         // set the dimensions of the row above
1795                         boost::prior(row)->fill(fill(
1796                                                    boost::prior(row),
1797                                                    workWidth()));
1798
1799                         setHeightOfRow(boost::prior(row));
1800
1801                         postPaint();
1802
1803                         breakAgainOneRow(row);
1804
1805                         current_font = rawtmpfont;
1806                         real_current_font = realtmpfont;
1807                         setCursor(cursor.par(), cursor.pos() + 1,
1808                                   false, cursor.boundary());
1809
1810                         // cursor MUST be in row now.
1811                         // check, wether the last characters font has changed.
1812                         if (cursor.pos() && cursor.pos() == cursor.par()->size()
1813                             && rawparfont != rawtmpfont)
1814                                 redoHeightOfParagraph();
1815
1816                         charInserted();
1817                         return;
1818                 }
1819         }
1820
1821         // recalculate the fill of the row
1822         if (row->fill() >= 0) {
1823                 // needed because a newline will set fill to -1. Otherwise
1824                 // we would not get a rebreak!
1825                 row->fill(fill(row, workWidth()));
1826         }
1827
1828         if (c == Paragraph::META_INSET || row->fill() < 0) {
1829                 postPaint();
1830                 breakAgainOneRow(row);
1831
1832                 RowList::iterator next_row = boost::next(row);
1833
1834                 // will the cursor be in another row now?
1835                 if (lastPos(*this, row) <= cursor.pos() + 1 &&
1836                     next_row != rows().end()) {
1837                         if (next_row != rows().end() &&
1838                             next_row->par() == row->par()) {
1839                                 // this should always be true
1840                                 ++row;
1841                         }
1842
1843                         breakAgainOneRow(row);
1844                 }
1845                 current_font = rawtmpfont;
1846                 real_current_font = realtmpfont;
1847
1848                 setCursor(cursor.par(), cursor.pos() + 1, false,
1849                           cursor.boundary());
1850                 if (isBoundary(bv()->buffer(), *cursor.par(), cursor.pos())
1851                     != cursor.boundary())
1852                         setCursor(cursor.par(), cursor.pos(), false,
1853                           !cursor.boundary());
1854         } else {
1855                 // FIXME: similar code is duplicated all over - make resetHeightOfRow
1856                 setHeightOfRow(row);
1857                 postPaint();
1858
1859                 current_font = rawtmpfont;
1860                 real_current_font = realtmpfont;
1861                 setCursor(cursor.par(), cursor.pos() + 1, false,
1862                           cursor.boundary());
1863         }
1864
1865         // check, wether the last characters font has changed.
1866         if (cursor.pos() && cursor.pos() == cursor.par()->size()
1867             && rawparfont != rawtmpfont) {
1868                 redoHeightOfParagraph();
1869         }
1870
1871         charInserted();
1872 }
1873
1874
1875 void LyXText::charInserted()
1876 {
1877         // Here we could call FinishUndo for every 20 characters inserted.
1878         // This is from my experience how emacs does it. (Lgb)
1879         static unsigned int counter;
1880         if (counter < 20) {
1881                 ++counter;
1882         } else {
1883                 finishUndo();
1884                 counter = 0;
1885         }
1886 }
1887
1888
1889 void LyXText::prepareToPrint(RowList::iterator rit, int & x,
1890                              int & fill_separator,
1891                              int & fill_hfill,
1892                              int & fill_label_hfill,
1893                              bool bidi) const
1894 {
1895         int w = rit->fill();
1896         fill_hfill = 0;
1897         fill_label_hfill = 0;
1898         fill_separator = 0;
1899         fill_label_hfill = 0;
1900
1901         ParagraphList::iterator pit = rit->par();
1902
1903         bool const is_rtl =
1904                 pit->isRightToLeftPar(bv()->buffer()->params);
1905         if (is_rtl)
1906                 x = workWidth() > 0 ? rightMargin(*bv()->buffer(), *rit) : 0;
1907         else
1908                 x = workWidth() > 0 ? leftMargin(*rit) : 0;
1909
1910         // is there a manual margin with a manual label
1911         LyXLayout_ptr const & layout = pit->layout();
1912
1913         if (layout->margintype == MARGIN_MANUAL
1914             && layout->labeltype == LABEL_MANUAL) {
1915                 /// We might have real hfills in the label part
1916                 int nlh = numberOfLabelHfills(*this, rit);
1917
1918                 // A manual label par (e.g. List) has an auto-hfill
1919                 // between the label text and the body of the
1920                 // paragraph too.
1921                 // But we don't want to do this auto hfill if the par
1922                 // is empty.
1923                 if (!pit->empty())
1924                         ++nlh;
1925
1926                 if (nlh && !pit->getLabelWidthString().empty()) {
1927                         fill_label_hfill = int(labelFill(*rit) / nlh);
1928                 }
1929         }
1930
1931         // are there any hfills in the row?
1932         int const nh = numberOfHfills(*this, rit);
1933
1934         if (nh) {
1935                 if (w > 0)
1936                         fill_hfill = w / nh;
1937         // we don't have to look at the alignment if it is ALIGN_LEFT and
1938         // if the row is already larger then the permitted width as then
1939         // we force the LEFT_ALIGN'edness!
1940         } else if (int(rit->width()) < workWidth()) {
1941                 // is it block, flushleft or flushright?
1942                 // set x how you need it
1943                 int align;
1944                 if (pit->params().align() == LYX_ALIGN_LAYOUT) {
1945                         align = layout->align;
1946                 } else {
1947                         align = pit->params().align();
1948                 }
1949
1950                 // center displayed insets
1951                 InsetOld * inset = 0;
1952                 if (rit->pos() < pit->size()
1953                     && pit->isInset(rit->pos())
1954                     && (inset = pit->getInset(rit->pos()))
1955                     && (inset->display())) // || (inset->scroll() < 0)))
1956                     align = (inset->lyxCode() == InsetOld::MATHMACRO_CODE)
1957                         ? LYX_ALIGN_BLOCK : LYX_ALIGN_CENTER;
1958                 // ERT insets should always be LEFT ALIGNED on screen
1959                 inset = pit->inInset();
1960                 if (inset && inset->owner() &&
1961                         inset->owner()->lyxCode() == InsetOld::ERT_CODE)
1962                 {
1963                         align = LYX_ALIGN_LEFT;
1964                 }
1965
1966                 switch (align) {
1967             case LYX_ALIGN_BLOCK:
1968             {
1969                         int const ns = numberOfSeparators(*this, rit);
1970                         RowList::iterator next_row = boost::next(rit);
1971                         ParagraphList::iterator next_pit = next_row->par();
1972
1973                         if (ns && next_row != rowlist_.end() &&
1974                             next_pit == pit &&
1975                             !(next_pit->isNewline(next_row->pos() - 1))
1976                             && !(next_pit->isInset(next_row->pos()) &&
1977                                  next_pit->getInset(next_row->pos()) &&
1978                                  next_pit->getInset(next_row->pos())->display())
1979                                 ) {
1980                                 fill_separator = w / ns;
1981                         } else if (is_rtl) {
1982                                 x += w;
1983                         }
1984                         break;
1985             }
1986             case LYX_ALIGN_RIGHT:
1987                         x += w;
1988                         break;
1989             case LYX_ALIGN_CENTER:
1990                         x += w / 2;
1991                         break;
1992                 }
1993         }
1994         if (!bidi)
1995                 return;
1996
1997         computeBidiTables(bv()->buffer(), rit);
1998         if (is_rtl) {
1999                 pos_type body_pos = pit->beginningOfBody();
2000                 pos_type last = lastPos(*this, rit);
2001
2002                 if (body_pos > 0 &&
2003                     (body_pos - 1 > last ||
2004                      !pit->isLineSeparator(body_pos - 1))) {
2005                         x += font_metrics::width(layout->labelsep,
2006                                             getLabelFont(bv()->buffer(),
2007                                                          pit));
2008                         if (body_pos - 1 <= last)
2009                                 x += fill_label_hfill;
2010                 }
2011         }
2012 }
2013
2014
2015 // important for the screen
2016
2017
2018 // the cursor set functions have a special mechanism. When they
2019 // realize, that you left an empty paragraph, they will delete it.
2020 // They also delete the corresponding row
2021
2022 void LyXText::cursorRightOneWord()
2023 {
2024         ::cursorRightOneWord(cursor, ownerParagraphs());
2025         setCursor(cursor.par(), cursor.pos());
2026 }
2027
2028
2029 // Skip initial whitespace at end of word and move cursor to *start*
2030 // of prior word, not to end of next prior word.
2031 void LyXText::cursorLeftOneWord()
2032 {
2033         LyXCursor tmpcursor = cursor;
2034         ::cursorLeftOneWord(tmpcursor, ownerParagraphs());
2035         setCursor(tmpcursor.par(), tmpcursor.pos());
2036 }
2037
2038
2039 void LyXText::selectWord(word_location loc)
2040 {
2041         LyXCursor from = cursor;
2042         LyXCursor to;
2043         ::getWord(from, to, loc, ownerParagraphs());
2044         if (cursor != from)
2045                 setCursor(from.par(), from.pos());
2046         if (to == from)
2047                 return;
2048         selection.cursor = cursor;
2049         setCursor(to.par(), to.pos());
2050         setSelection();
2051 }
2052
2053
2054 // Select the word currently under the cursor when no
2055 // selection is currently set
2056 bool LyXText::selectWordWhenUnderCursor(word_location loc)
2057 {
2058         if (!selection.set()) {
2059                 selectWord(loc);
2060                 return selection.set();
2061         }
2062         return false;
2063 }
2064
2065
2066 void LyXText::acceptChange()
2067 {
2068         if (!selection.set() && cursor.par()->size())
2069                 return;
2070
2071         if (selection.start.par() == selection.end.par()) {
2072                 LyXCursor & startc = selection.start;
2073                 LyXCursor & endc = selection.end;
2074                 recordUndo(bv(), Undo::INSERT, startc.par());
2075                 startc.par()->acceptChange(startc.pos(), endc.pos());
2076                 finishUndo();
2077                 clearSelection();
2078                 redoParagraphs(startc, boost::next(startc.par()));
2079                 setCursorIntern(startc.par(), 0);
2080         }
2081 #warning handle multi par selection
2082 }
2083
2084
2085 void LyXText::rejectChange()
2086 {
2087         if (!selection.set() && cursor.par()->size())
2088                 return;
2089
2090         if (selection.start.par() == selection.end.par()) {
2091                 LyXCursor & startc = selection.start;
2092                 LyXCursor & endc = selection.end;
2093                 recordUndo(bv(), Undo::INSERT, startc.par());
2094                 startc.par()->rejectChange(startc.pos(), endc.pos());
2095                 finishUndo();
2096                 clearSelection();
2097                 redoParagraphs(startc, boost::next(startc.par()));
2098                 setCursorIntern(startc.par(), 0);
2099         }
2100 #warning handle multi par selection
2101 }
2102
2103
2104 // This function is only used by the spellchecker for NextWord().
2105 // It doesn't handle LYX_ACCENTs and probably never will.
2106 WordLangTuple const
2107 LyXText::selectNextWordToSpellcheck(float & value)
2108 {
2109         if (the_locking_inset) {
2110                 WordLangTuple word = the_locking_inset->selectNextWordToSpellcheck(bv(), value);
2111                 if (!word.word().empty()) {
2112                         value += float(cursor.y());
2113                         value /= float(height);
2114                         return word;
2115                 }
2116                 // we have to go on checking so move cursor to the next char
2117                 if (cursor.pos() == cursor.par()->size()) {
2118                         if (boost::next(cursor.par()) == ownerParagraphs().end())
2119                                 return word;
2120                         cursor.par(boost::next(cursor.par()));
2121                         cursor.pos(0);
2122                 } else
2123                         cursor.pos(cursor.pos() + 1);
2124         }
2125         ParagraphList::iterator tmppit = cursor.par();
2126
2127         // If this is not the very first word, skip rest of
2128         // current word because we are probably in the middle
2129         // of a word if there is text here.
2130         if (cursor.pos() || cursor.par() != ownerParagraphs().begin()) {
2131                 while (cursor.pos() < cursor.par()->size()
2132                        && cursor.par()->isLetter(cursor.pos()))
2133                         cursor.pos(cursor.pos() + 1);
2134         }
2135
2136         // Now, skip until we have real text (will jump paragraphs)
2137         while (true) {
2138                 ParagraphList::iterator cpit = cursor.par();
2139                 pos_type const cpos(cursor.pos());
2140
2141                 if (cpos == cpit->size()) {
2142                         if (boost::next(cpit) != ownerParagraphs().end()) {
2143                                 cursor.par(boost::next(cpit));
2144                                 cursor.pos(0);
2145                                 continue;
2146                         }
2147                         break;
2148                 }
2149
2150                 bool const is_good_inset = cpit->isInset(cpos)
2151                         && cpit->getInset(cpos)->allowSpellcheck();
2152
2153                 if (!isDeletedText(*cpit, cpos)
2154                     && (is_good_inset || cpit->isLetter(cpos)))
2155                         break;
2156
2157                 cursor.pos(cpos + 1);
2158         }
2159
2160         // now check if we hit an inset so it has to be a inset containing text!
2161         if (cursor.pos() < cursor.par()->size() &&
2162             cursor.par()->isInset(cursor.pos())) {
2163                 // lock the inset!
2164                 FuncRequest cmd(bv(), LFUN_INSET_EDIT, "left");
2165                 cursor.par()->getInset(cursor.pos())->localDispatch(cmd);
2166                 // now call us again to do the above trick
2167                 // but obviously we have to start from down below ;)
2168                 return bv()->text->selectNextWordToSpellcheck(value);
2169         }
2170
2171         // Update the value if we changed paragraphs
2172         if (cursor.par() != tmppit) {
2173                 setCursor(cursor.par(), cursor.pos());
2174                 value = float(cursor.y())/float(height);
2175         }
2176
2177         // Start the selection from here
2178         selection.cursor = cursor;
2179
2180         string lang_code(
2181                 getFont(bv()->buffer(), cursor.par(), cursor.pos())
2182                         .language()->code());
2183         // and find the end of the word (insets like optional hyphens
2184         // and ligature break are part of a word)
2185         while (cursor.pos() < cursor.par()->size()
2186                && cursor.par()->isLetter(cursor.pos())
2187                && !isDeletedText(*cursor.par(), cursor.pos()))
2188                 cursor.pos(cursor.pos() + 1);
2189
2190         // Finally, we copy the word to a string and return it
2191         string str;
2192         if (selection.cursor.pos() < cursor.pos()) {
2193                 pos_type i;
2194                 for (i = selection.cursor.pos(); i < cursor.pos(); ++i) {
2195                         if (!cursor.par()->isInset(i))
2196                                 str += cursor.par()->getChar(i);
2197                 }
2198         }
2199         return WordLangTuple(str, lang_code);
2200 }
2201
2202
2203 // This one is also only for the spellchecker
2204 void LyXText::selectSelectedWord()
2205 {
2206         if (the_locking_inset) {
2207                 the_locking_inset->selectSelectedWord(bv());
2208                 return;
2209         }
2210         // move cursor to the beginning
2211         setCursor(selection.cursor.par(), selection.cursor.pos());
2212
2213         // set the sel cursor
2214         selection.cursor = cursor;
2215
2216         // now find the end of the word
2217         while (cursor.pos() < cursor.par()->size()
2218                && (cursor.par()->isLetter(cursor.pos())))
2219                 cursor.pos(cursor.pos() + 1);
2220
2221         setCursor(cursor.par(), cursor.pos());
2222
2223         // finally set the selection
2224         setSelection();
2225 }
2226
2227
2228 // Delete from cursor up to the end of the current or next word.
2229 void LyXText::deleteWordForward()
2230 {
2231         if (cursor.par()->empty())
2232                 cursorRight(bv());
2233         else {
2234                 LyXCursor tmpcursor = cursor;
2235                 selection.set(true); // to avoid deletion
2236                 cursorRightOneWord();
2237                 setCursor(tmpcursor, tmpcursor.par(), tmpcursor.pos());
2238                 selection.cursor = cursor;
2239                 cursor = tmpcursor;
2240                 setSelection();
2241
2242                 // Great, CutSelection() gets rid of multiple spaces.
2243                 cutSelection(true, false);
2244         }
2245 }
2246
2247
2248 // Delete from cursor to start of current or prior word.
2249 void LyXText::deleteWordBackward()
2250 {
2251         if (cursor.par()->empty())
2252                 cursorLeft(bv());
2253         else {
2254                 LyXCursor tmpcursor = cursor;
2255                 selection.set(true); // to avoid deletion
2256                 cursorLeftOneWord();
2257                 setCursor(tmpcursor, tmpcursor.par(), tmpcursor.pos());
2258                 selection.cursor = cursor;
2259                 cursor = tmpcursor;
2260                 setSelection();
2261                 cutSelection(true, false);
2262         }
2263 }
2264
2265
2266 // Kill to end of line.
2267 void LyXText::deleteLineForward()
2268 {
2269         if (cursor.par()->empty())
2270                 // Paragraph is empty, so we just go to the right
2271                 cursorRight(bv());
2272         else {
2273                 LyXCursor tmpcursor = cursor;
2274                 // We can't store the row over a regular setCursor
2275                 // so we set it to 0 and reset it afterwards.
2276                 selection.set(true); // to avoid deletion
2277                 cursorEnd();
2278                 setCursor(tmpcursor, tmpcursor.par(), tmpcursor.pos());
2279                 selection.cursor = cursor;
2280                 cursor = tmpcursor;
2281                 setSelection();
2282                 // What is this test for ??? (JMarc)
2283                 if (!selection.set()) {
2284                         deleteWordForward();
2285                 } else {
2286                         cutSelection(true, false);
2287                 }
2288         }
2289 }
2290
2291
2292 void LyXText::changeCase(LyXText::TextCase action)
2293 {
2294         LyXCursor from;
2295         LyXCursor to;
2296
2297         if (selection.set()) {
2298                 from = selection.start;
2299                 to = selection.end;
2300         } else {
2301                 from = cursor;
2302                 ::getWord(from, to, lyx::PARTIAL_WORD, ownerParagraphs());
2303                 setCursor(to.par(), to.pos() + 1);
2304         }
2305
2306         recordUndo(bv(), Undo::ATOMIC, from.par(), to.par());
2307
2308         pos_type pos = from.pos();
2309         ParagraphList::iterator pit = from.par();
2310
2311         while (pit != ownerParagraphs().end() &&
2312                (pos != to.pos() || pit != to.par())) {
2313                 if (pos == pit->size()) {
2314                         ++pit;
2315                         pos = 0;
2316                         continue;
2317                 }
2318                 unsigned char c = pit->getChar(pos);
2319                 if (!IsInsetChar(c)) {
2320                         switch (action) {
2321                         case text_lowercase:
2322                                 c = lowercase(c);
2323                                 break;
2324                         case text_capitalization:
2325                                 c = uppercase(c);
2326                                 action = text_lowercase;
2327                                 break;
2328                         case text_uppercase:
2329                                 c = uppercase(c);
2330                                 break;
2331                         }
2332                 }
2333 #warning changes
2334                 pit->setChar(pos, c);
2335                 checkParagraph(pit, pos);
2336
2337                 ++pos;
2338         }
2339
2340         if (getRow(to) != getRow(from))
2341                 postPaint();
2342 }
2343
2344
2345 void LyXText::Delete()
2346 {
2347         // this is a very easy implementation
2348
2349         LyXCursor old_cursor = cursor;
2350         int const old_cur_par_id = old_cursor.par()->id();
2351         int const old_cur_par_prev_id =
2352                 (old_cursor.par() != ownerParagraphs().begin() ?
2353                  boost::prior(old_cursor.par())->id() : -1);
2354
2355         // just move to the right
2356         cursorRight(bv());
2357
2358         // CHECK Look at the comment here.
2359         // This check is not very good...
2360         // The cursorRightIntern calls DeleteEmptyParagrapgMechanism
2361         // and that can very well delete the par or par->previous in
2362         // old_cursor. Will a solution where we compare paragraph id's
2363         //work better?
2364         if ((cursor.par() != ownerParagraphs().begin() ? boost::prior(cursor.par())->id() : -1)
2365             == old_cur_par_prev_id
2366             && cursor.par()->id() != old_cur_par_id) {
2367                 // delete-empty-paragraph-mechanism has done it
2368                 return;
2369         }
2370
2371         // if you had success make a backspace
2372         if (old_cursor.par() != cursor.par() || old_cursor.pos() != cursor.pos()) {
2373                 LyXCursor tmpcursor = cursor;
2374                 // to make sure undo gets the right cursor position
2375                 cursor = old_cursor;
2376                 recordUndo(bv(), Undo::DELETE, cursor.par());
2377                 cursor = tmpcursor;
2378                 backspace();
2379         }
2380 }
2381
2382
2383 void LyXText::backspace()
2384 {
2385         // Get the font that is used to calculate the baselineskip
2386         pos_type lastpos = cursor.par()->size();
2387         LyXFont rawparfont =
2388                 cursor.par()->getFontSettings(bv()->buffer()->params,
2389                                               lastpos - 1);
2390
2391         if (cursor.pos() == 0) {
2392                 // The cursor is at the beginning of a paragraph,
2393                 // so the the backspace will collapse two paragraphs into one.
2394
2395                 // but it's not allowed unless it's new
2396                 if (cursor.par()->isChangeEdited(0, cursor.par()->size()))
2397                         return;
2398
2399                 // we may paste some paragraphs
2400
2401                 // is it an empty paragraph?
2402
2403                 if ((lastpos == 0
2404                      || (lastpos == 1 && cursor.par()->isSeparator(0)))) {
2405                         // This is an empty paragraph and we delete it just by moving the cursor one step
2406                         // left and let the DeleteEmptyParagraphMechanism handle the actual deletion
2407                         // of the paragraph.
2408
2409                         if (cursor.par() != ownerParagraphs().begin()) {
2410                                 ParagraphList::iterator tmppit = boost::prior(cursor.par());
2411                                 if (cursor.par()->layout() == tmppit->layout()
2412                                     && cursor.par()->getAlign() == tmppit->getAlign()) {
2413                                         // Inherit bottom DTD from the paragraph below.
2414                                         // (the one we are deleting)
2415                                         tmppit->params().lineBottom(cursor.par()->params().lineBottom());
2416                                         tmppit->params().spaceBottom(cursor.par()->params().spaceBottom());
2417                                         tmppit->params().pagebreakBottom(cursor.par()->params().pagebreakBottom());
2418                                 }
2419
2420                                 cursorLeft(bv());
2421
2422                                 // the layout things can change the height of a row !
2423                                 int const tmpheight = cursorRow()->height();
2424                                 setHeightOfRow(cursorRow());
2425                                 if (cursorRow()->height() != tmpheight)
2426                                         postPaint();
2427                                 return;
2428                         }
2429                 }
2430
2431                 if (cursor.par() != ownerParagraphs().begin()) {
2432                         recordUndo(bv(), Undo::DELETE,
2433                                 boost::prior(cursor.par()),
2434                                 cursor.par());
2435                 }
2436
2437                 ParagraphList::iterator tmppit = cursor.par();
2438                 RowList::iterator tmprow = cursorRow();
2439
2440                 // We used to do cursorLeftIntern() here, but it is
2441                 // not a good idea since it triggers the auto-delete
2442                 // mechanism. So we do a cursorLeftIntern()-lite,
2443                 // without the dreaded mechanism. (JMarc)
2444                 if (cursor.par() != ownerParagraphs().begin()) {
2445                         // steps into the above paragraph.
2446                         setCursorIntern(boost::prior(cursor.par()),
2447                                         boost::prior(cursor.par())->size(),
2448                                         false);
2449                 }
2450
2451                 // Pasting is not allowed, if the paragraphs have different
2452                 // layout. I think it is a real bug of all other
2453                 // word processors to allow it. It confuses the user.
2454                 // Even so with a footnote paragraph and a non-footnote
2455                 // paragraph. I will not allow pasting in this case,
2456                 // because the user would be confused if the footnote behaves
2457                 // different wether it is open or closed.
2458
2459                 //      Correction: Pasting is always allowed with standard-layout
2460                 LyXTextClass const & tclass =
2461                         bv()->buffer()->params.getLyXTextClass();
2462
2463                 if (cursor.par() != tmppit
2464                     && (cursor.par()->layout() == tmppit->layout()
2465                         || tmppit->layout() == tclass.defaultLayout())
2466                     && cursor.par()->getAlign() == tmppit->getAlign()) {
2467                         removeParagraph(tmprow);
2468                         removeRow(tmprow);
2469                         mergeParagraph(bv()->buffer()->params, bv()->buffer()->paragraphs, cursor.par());
2470
2471                         if (!cursor.pos() || !cursor.par()->isSeparator(cursor.pos() - 1))
2472                                 ; //cursor.par()->insertChar(cursor.pos(), ' ');
2473                         // strangely enough it seems that commenting out the line above removes
2474                         // most or all of the segfaults. I will however also try to move the
2475                         // two Remove... lines in front of the PasteParagraph too.
2476                         else
2477                                 if (cursor.pos())
2478                                         cursor.pos(cursor.pos() - 1);
2479
2480                         postPaint();
2481
2482                         // remove the lost paragraph
2483                         // This one is not safe, since the paragraph that the tmprow and the
2484                         // following rows belong to has been deleted by the PasteParagraph
2485                         // above. The question is... could this be moved in front of the
2486                         // PasteParagraph?
2487                         //RemoveParagraph(tmprow);
2488                         //RemoveRow(tmprow);
2489
2490                         // This rebuilds the rows.
2491                         appendParagraph(cursorRow());
2492                         updateCounters();
2493
2494                         // the row may have changed, block, hfills etc.
2495                         setCursor(cursor.par(), cursor.pos(), false);
2496                 }
2497         } else {
2498                 // this is the code for a normal backspace, not pasting
2499                 // any paragraphs
2500                 recordUndo(bv(), Undo::DELETE, cursor.par());
2501                 // We used to do cursorLeftIntern() here, but it is
2502                 // not a good idea since it triggers the auto-delete
2503                 // mechanism. So we do a cursorLeftIntern()-lite,
2504                 // without the dreaded mechanism. (JMarc)
2505                 setCursorIntern(cursor.par(), cursor.pos()- 1,
2506                                 false, cursor.boundary());
2507
2508                 if (cursor.par()->isInset(cursor.pos())) {
2509                         // force complete redo when erasing display insets
2510                         // this is a cruel method but safe..... Matthias
2511                         if (cursor.par()->getInset(cursor.pos())->display() ||
2512                             cursor.par()->getInset(cursor.pos())->needFullRow()) {
2513                                 cursor.par()->erase(cursor.pos());
2514                                 redoParagraph();
2515                                 return;
2516                         }
2517                 }
2518
2519                 RowList::iterator row = cursorRow();
2520                 int y = cursor.y() - row->baseline();
2521                 pos_type z;
2522                 // remember that a space at the end of a row doesnt count
2523                 // when calculating the fill
2524                 if (cursor.pos() < lastPos(*this, row) ||
2525                     !cursor.par()->isLineSeparator(cursor.pos())) {
2526                         row->fill(row->fill() + singleWidth(
2527                                                             cursor.par(),
2528                                                             cursor.pos()));
2529                 }
2530
2531                 // some special code when deleting a newline. This is similar
2532                 // to the behavior when pasting paragraphs
2533                 if (cursor.pos() && cursor.par()->isNewline(cursor.pos())) {
2534                         cursor.par()->erase(cursor.pos());
2535                         // refresh the positions
2536                         RowList::iterator tmprow = row;
2537                         while (boost::next(tmprow) != rows().end() &&
2538                                boost::next(tmprow)->par() == row->par()) {
2539                                 ++tmprow;
2540                                 tmprow->pos(tmprow->pos() - 1);
2541                         }
2542                         if (cursor.par()->isLineSeparator(cursor.pos() - 1))
2543                                 cursor.pos(cursor.pos() - 1);
2544
2545                         if (cursor.pos() < cursor.par()->size()
2546                             && !cursor.par()->isSeparator(cursor.pos())) {
2547                                 cursor.par()->insertChar(cursor.pos(), ' ');
2548                                 setCharFont(bv()->buffer(), cursor.par(),
2549                                             cursor.pos(), current_font);
2550                                 // refresh the positions
2551                                 tmprow = row;
2552                                 while (boost::next(tmprow) != rows().end() &&
2553                                        boost::next(tmprow)->par() == row->par()) {
2554                                         ++tmprow;
2555                                         tmprow->pos(tmprow->pos() + 1);
2556                                 }
2557                         }
2558                 } else {
2559                         cursor.par()->erase(cursor.pos());
2560
2561                         // refresh the positions
2562                         RowList::iterator tmprow = row;
2563                         while (boost::next(tmprow) != rows().end() &&
2564                                boost::next(tmprow)->par() == row->par()) {
2565                                 ++tmprow;
2566                                 tmprow->pos(tmprow->pos() - 1);
2567                         }
2568
2569                         // delete newlines at the beginning of paragraphs
2570                         while (!cursor.par()->empty() &&
2571                                cursor.pos() < cursor.par()->size() &&
2572                                cursor.par()->isNewline(cursor.pos()) &&
2573                                cursor.pos() == cursor.par()->beginningOfBody()) {
2574                                 cursor.par()->erase(cursor.pos());
2575                                 // refresh the positions
2576                                 tmprow = row;
2577                                 while (boost::next(tmprow) != rows().end() &&
2578                                        boost::next(tmprow)->par() == row->par()) {
2579                                         ++tmprow;
2580                                         tmprow->pos(tmprow->pos() - 1);
2581                                 }
2582                         }
2583                 }
2584
2585                 // is there a break one row above
2586                 if (row != rows().begin() && boost::prior(row)->par() == row->par()) {
2587                         z = rowBreakPoint(*boost::prior(row));
2588                         if (z >= row->pos()) {
2589                                 row->pos(z + 1);
2590
2591                                 RowList::iterator tmprow = boost::prior(row);
2592
2593                                 // maybe the current row is now empty
2594                                 if (row->pos() >= row->par()->size()) {
2595                                         // remove it
2596                                         removeRow(row);
2597                                 } else {
2598                                         breakAgainOneRow(row);
2599                                 }
2600
2601                                 // set the dimensions of the row above
2602                                 y -= tmprow->height();
2603                                 tmprow->fill(fill(tmprow, workWidth()));
2604                                 setHeightOfRow(tmprow);
2605                                 postPaint();
2606
2607                                 setCursor(cursor.par(), cursor.pos(),
2608                                           false, cursor.boundary());
2609                                 //current_font = rawtmpfont;
2610                                 //real_current_font = realtmpfont;
2611                                 // check, whether the last character's font has changed.
2612                                 if (rawparfont !=
2613                                     cursor.par()->getFontSettings(bv()->buffer()->params,
2614                                                                   cursor.par()->size() - 1))
2615                                         redoHeightOfParagraph();
2616                                 return;
2617                         }
2618                 }
2619
2620                 // break the cursor row again
2621                 if (boost::next(row) != rows().end() &&
2622                     boost::next(row)->par() == row->par() &&
2623                     (lastPos(*this, row) == row->par()->size() - 1 ||
2624                      rowBreakPoint(*row) != lastPos(*this, row))) {
2625
2626                         // it can happen that a paragraph loses one row
2627                         // without a real breakup. This is when a word
2628                         // is to long to be broken. Well, I don t care this
2629                         // hack ;-)
2630                         if (lastPos(*this, row) == row->par()->size() - 1)
2631                                 removeRow(boost::next(row));
2632
2633                         postPaint();
2634
2635                         breakAgainOneRow(row);
2636                         // will the cursor be in another row now?
2637                         if (boost::next(row) != rows().end() &&
2638                             boost::next(row)->par() == row->par() &&
2639                             lastPos(*this, row) <= cursor.pos()) {
2640                                 ++row;
2641                                 breakAgainOneRow(row);
2642                         }
2643
2644                         setCursor(cursor.par(), cursor.pos(), false, cursor.boundary());
2645                 } else  {
2646                         // set the dimensions of the row
2647                         row->fill(fill(row, workWidth()));
2648                         setHeightOfRow(row);
2649                         postPaint();
2650                         setCursor(cursor.par(), cursor.pos(), false, cursor.boundary());
2651                 }
2652         }
2653
2654         // current_font = rawtmpfont;
2655         // real_current_font = realtmpfont;
2656
2657         if (isBoundary(bv()->buffer(), *cursor.par(), cursor.pos())
2658             != cursor.boundary())
2659                 setCursor(cursor.par(), cursor.pos(), false,
2660                           !cursor.boundary());
2661
2662         lastpos = cursor.par()->size();
2663         if (cursor.pos() == lastpos)
2664                 setCurrentFont();
2665
2666         // check, whether the last characters font has changed.
2667         if (rawparfont !=
2668             cursor.par()->getFontSettings(bv()->buffer()->params, lastpos - 1)) {
2669                 redoHeightOfParagraph();
2670         }
2671 }
2672
2673
2674 RowList::iterator LyXText::cursorRow() const
2675 {
2676         return getRow(cursor.par(), cursor.pos());
2677 }
2678
2679
2680 RowList::iterator LyXText::getRow(LyXCursor const & cur) const
2681 {
2682         return getRow(cur.par(), cur.pos());
2683 }
2684
2685
2686 RowList::iterator
2687 LyXText::getRow(ParagraphList::iterator pit, pos_type pos) const
2688 {
2689         if (rows().empty())
2690                 return rowlist_.end();
2691
2692         // find the first row of the specified paragraph
2693         RowList::iterator rit = rowlist_.begin();
2694         RowList::iterator end = rowlist_.end();
2695         while (boost::next(rit) != end && rit->par() != pit) {
2696                 ++rit;
2697         }
2698
2699         // now find the wanted row
2700         while (rit->pos() < pos
2701                && boost::next(rit) != end
2702                && boost::next(rit)->par() == pit
2703                && boost::next(rit)->pos() <= pos) {
2704                 ++rit;
2705         }
2706
2707         return rit;
2708 }
2709
2710
2711 // returns pointer to a specified row
2712 RowList::iterator
2713 LyXText::getRow(ParagraphList::iterator pit, pos_type pos, int & y) const
2714 {
2715         y = 0;
2716
2717         if (rows().empty())
2718                 return rowlist_.end();
2719
2720         // find the first row of the specified paragraph
2721         RowList::iterator rit = rowlist_.begin();
2722         RowList::iterator end = rowlist_.end();
2723         while (boost::next(rit) != end && rit->par() != pit) {
2724                 y += rit->height();
2725                 ++rit;
2726         }
2727
2728         // now find the wanted row
2729         while (rit->pos() < pos
2730                && boost::next(rit) != end
2731                && boost::next(rit)->par() == pit
2732                && boost::next(rit)->pos() <= pos) {
2733                 y += rit->height();
2734                 ++rit;
2735         }
2736
2737         return rit;
2738 }
2739
2740
2741 // returns pointer to some fancy row 'below' specified row
2742 RowList::iterator LyXText::cursorIRow() const
2743 {
2744         int y = 0;
2745         return getRow(cursor.par(), cursor.pos(), y);
2746 }
2747
2748
2749 RowList::iterator LyXText::getRowNearY(int & y) const
2750 {
2751         RowList::iterator rit = anchor_row_;
2752         RowList::iterator const beg = rows().begin();
2753         RowList::iterator const end = rows().end();
2754
2755         if (rows().empty()) {
2756                 y = 0;
2757                 return end;
2758         }
2759         if (rit == end)
2760                 rit = beg;
2761
2762         int tmpy = rit->y();
2763
2764         if (tmpy <= y) {
2765                 while (rit != end && tmpy <= y) {
2766                         tmpy += rit->height();
2767                         ++rit;
2768                 }
2769                 if (rit != beg) {
2770                         --rit;
2771                         tmpy -= rit->height();
2772                 }
2773         } else {
2774                 while (rit != beg && tmpy > y) {
2775                         --rit;
2776                         tmpy -= rit->height();
2777                 }
2778         }
2779         if (tmpy < 0 || rit == end) {
2780                 tmpy = 0;
2781                 rit = beg;
2782         }
2783
2784         // return the rel y
2785         y = tmpy;
2786
2787         return rit;
2788 }
2789
2790
2791 int LyXText::getDepth() const
2792 {
2793         return cursor.par()->getDepth();
2794 }