]> git.lyx.org Git - lyx.git/blob - src/text.C
211f2f315cc336c0bcc043800d5a0b82fe8c2b62
[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 #include <cstdlib>
13 #include <cctype>
14 #include <algorithm>
15
16 #include "lyxtext.h"
17 #include "layout.h"
18 #include "paragraph.h"
19 #include "support/textutils.h"
20 #include "support/LAssert.h"
21 #include "support/lstrings.h"
22 #include "insets/insetbib.h"
23 #include "insets/insettext.h"
24 #include "insets/insetspecialchar.h"
25 #include "lyx_gui_misc.h"
26 #include "gettext.h"
27 #include "bufferparams.h"
28 #include "buffer.h"
29 #include "debug.h"
30 #include "lyxrc.h"
31 #include "LyXView.h"
32 #include "Painter.h"
33 #include "tracer.h"
34 #include "font.h"
35 #include "encoding.h"
36 #include "lyxscreen.h"
37 #include "bufferview_funcs.h"
38 #include "BufferView.h"
39 #include "language.h"
40 #include "ParagraphParameters.h"
41 #include "undo_funcs.h"
42 #include "font.h"
43
44 using std::max;
45 using std::min;
46 using std::endl;
47 using std::pair;
48
49 namespace {
50
51 int const LYX_PAPER_MARGIN = 20;
52
53 } // namespace anon
54
55 extern int bibitemMaxWidth(BufferView *, LyXFont const &);
56
57
58 int LyXText::workWidth(BufferView * bview) const
59 {
60         if (inset_owner) {
61                 return inset_owner->textWidth(bview);
62         }
63         return bview->workWidth();
64 }
65
66
67 int LyXText::getRealCursorX(BufferView * bview) const
68 {
69         int x = cursor.x();
70         if (the_locking_inset && (the_locking_inset->getLyXText(bview)!=this))
71                 x = the_locking_inset->getLyXText(bview)->getRealCursorX(bview);
72         return x;
73 }
74
75
76 unsigned char LyXText::transformChar(unsigned char c, Paragraph * par,
77                         Paragraph::size_type pos) const
78 {
79         if (!Encodings::is_arabic(c))
80                 if (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 && isdigit(c))
81                         return c + (0xb0 - '0');
82                 else
83                         return c;
84
85         unsigned char const prev_char = pos > 0 ? par->getChar(pos-1) : ' ';
86         unsigned char next_char = ' ';
87
88         for (Paragraph::size_type i = pos+1; i < par->size(); ++i)
89                 if (!Encodings::IsComposeChar_arabic(par->getChar(i))) {
90                         next_char = par->getChar(i);
91                         break;
92                 }
93
94         if (Encodings::is_arabic(next_char)) {
95                 if (Encodings::is_arabic(prev_char))
96                         return Encodings::TransformChar(c, Encodings::FORM_MEDIAL);
97                 else
98                         return Encodings::TransformChar(c, Encodings::FORM_INITIAL);
99         } else {
100                 if (Encodings::is_arabic(prev_char))
101                         return Encodings::TransformChar(c, Encodings::FORM_FINAL);
102                 else
103                         return Encodings::TransformChar(c, Encodings::FORM_ISOLATED);
104         }
105 }
106
107 // This is the comments that some of the warnings below refers to.
108 // There are some issues in this file and I don't think they are
109 // really related to the FIX_DOUBLE_SPACE patch. I'd rather think that
110 // this is a problem that has been here almost from day one and that a
111 // larger userbase with differenct access patters triggers the bad
112 // behaviour. (segfaults.) What I think happen is: In several places
113 // we store the paragraph in the current cursor and then moves the
114 // cursor. This movement of the cursor will delete paragraph at the
115 // old position if it is now empty. This will make the temporary
116 // pointer to the old cursor paragraph invalid and dangerous to use.
117 // And is some cases this will trigger a segfault. I have marked some
118 // of the cases where this happens with a warning, but I am sure there
119 // are others in this file and in text2.C. There is also a note in
120 // Delete() that you should read. In Delete I store the paragraph->id
121 // instead of a pointer to the paragraph. I am pretty sure this faulty
122 // use of temporary pointers to paragraphs that might have gotten
123 // invalidated (through a cursor movement) before they are used, are
124 // the cause of the strange crashes we get reported often.
125 //
126 // It is very tiresom to change this code, especially when it is as
127 // hard to read as it is. Help to fix all the cases where this is done
128 // would be greately appreciated.
129 //
130 // Lgb
131
132 int LyXText::singleWidth(BufferView * bview, Paragraph * par,
133                          Paragraph::size_type pos) const
134 {
135         char const c = par->getChar(pos);
136         return singleWidth(bview, par, pos, c);
137 }
138
139
140 int LyXText::singleWidth(BufferView * bview, Paragraph * par,
141                          Paragraph::size_type pos, char c) const
142 {
143         LyXFont const font = getFont(bview->buffer(), par, pos);
144
145         // The most common case is handled first (Asger)
146         if (IsPrintable(c)) {
147                 if (font.language()->RightToLeft()) {
148                         if (font.language()->lang() == "arabic" &&
149                             (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
150                              lyxrc.font_norm_type == LyXRC::ISO_10646_1))
151                                 if (Encodings::IsComposeChar_arabic(c))
152                                         return 0;
153                                 else
154                                         c = transformChar(c, par, pos);
155                         else if (font.language()->lang() == "hebrew" &&
156                                  Encodings::IsComposeChar_hebrew(c))
157                                 return 0;
158                 }
159                 return lyxfont::width(c, font);
160
161         } else if (IsHfillChar(c)) {
162                 return 3;       /* Because of the representation
163                                  * as vertical lines */
164         } else if (c == Paragraph::META_INSET) {
165                 Inset * tmpinset = par->getInset(pos);
166                 if (tmpinset) {
167 #if 0 // seems not to be needed, but ...
168                         tmpinset->update(bview, font);
169 #endif
170                         return tmpinset->width(bview, font);
171                 } else
172                         return 0;
173
174         } else if (IsSeparatorChar(c))
175                 c = ' ';
176         else if (IsNewlineChar(c))
177                 c = 'n';
178         return lyxfont::width(c, font);
179 }
180
181
182 // Returns the paragraph position of the last character in the specified row
183 Paragraph::size_type LyXText::rowLast(Row const * row) const
184 {
185         if (row->next() == 0)
186                 return row->par()->size() - 1;
187         else if (row->next()->par() != row->par()) 
188                 return row->par()->size() - 1;
189         else 
190                 return row->next()->pos() - 1;
191 }
192
193
194 Paragraph::size_type LyXText::rowLastPrintable(Row const * row) const
195 {
196         Paragraph::size_type const last = rowLast(row);
197         if (last >= row->pos()
198             && row->next()
199             && row->next()->par() == row->par()
200             && row->par()->isSeparator(last))
201                 return last - 1;
202         else
203                 return last;
204 }
205
206
207 void LyXText::computeBidiTables(Buffer const * buf, Row * row) const
208 {
209         bidi_same_direction = true;
210         if (!lyxrc.rtl_support) {
211                 bidi_start = -1;
212                 return;
213         }
214
215         bidi_start = row->pos();
216         bidi_end = rowLastPrintable(row);
217
218         if (bidi_start > bidi_end) {
219                 bidi_start = -1;
220                 return;
221         }
222
223         if (bidi_end + 2 - bidi_start >
224             static_cast<Paragraph::size_type>(log2vis_list.size())) {
225                 Paragraph::size_type new_size = 
226                         (bidi_end + 2 - bidi_start < 500) ?
227                         500 : 2 * (bidi_end + 2 - bidi_start);
228                 log2vis_list.resize(new_size);
229                 vis2log_list.resize(new_size);
230                 bidi_levels.resize(new_size);
231         }
232
233         vis2log_list[bidi_end + 1 - bidi_start] = -1;
234         log2vis_list[bidi_end + 1 - bidi_start] = -1;
235
236         Paragraph::size_type    stack[2];
237         bool const rtl_par =
238                 row->par()->getParLanguage(buf->params)->RightToLeft();
239         int level = 0;
240         bool rtl = false;
241         bool rtl0 = false;
242         Paragraph::size_type const main_body =
243                 beginningOfMainBody(buf, row->par());
244
245         for (Paragraph::size_type lpos = bidi_start;
246              lpos <= bidi_end; ++lpos) {
247                 bool is_space = row->par()->isLineSeparator(lpos);
248                 Paragraph::size_type const pos =
249                         (is_space && lpos + 1 <= bidi_end &&
250                          !row->par()->isLineSeparator(lpos + 1) &&
251                          !row->par()->isNewline(lpos + 1))
252                         ? lpos + 1 : lpos;
253                 LyXFont font = row->par()->getFontSettings(buf->params, pos);
254                 if (pos != lpos && 0 < lpos && rtl0 && font.isRightToLeft() &&
255                     font.number() == LyXFont::ON &&
256                     row->par()->getFontSettings(buf->params, lpos-1).number()
257                     == LyXFont::ON) {
258                         font = row->par()->getFontSettings(buf->params, lpos);
259                         is_space = false;
260                 }
261
262
263                 bool new_rtl = font.isVisibleRightToLeft();
264                 bool new_rtl0 = font.isRightToLeft();
265                 int new_level;
266
267                 if (lpos == main_body - 1
268                     && row->pos() < main_body - 1
269                     && is_space) {
270                         new_level = (rtl_par) ? 1 : 0;
271                         new_rtl = new_rtl0 = rtl_par;
272                 } else if (new_rtl0)
273                         new_level = (new_rtl) ? 1 : 2;
274                 else
275                         new_level = (rtl_par) ? 2 : 0;
276
277                 if (is_space && new_level >= level) {
278                         new_level = level;
279                         new_rtl = rtl;
280                         new_rtl0 = rtl0;
281                 }
282
283                 int new_level2 = new_level;
284
285                 if (level == new_level && rtl0 != new_rtl0) {
286                         --new_level2;
287                         log2vis_list[lpos - bidi_start] = (rtl) ? 1 : -1;
288                 } else if (level < new_level) {
289                         log2vis_list[lpos - bidi_start] =  (rtl) ? -1 : 1;
290                         if (new_level > rtl_par)
291                                 bidi_same_direction = false;
292                 } else
293                         log2vis_list[lpos - bidi_start] = (new_rtl) ? -1 : 1;
294                 rtl = new_rtl;
295                 rtl0 = new_rtl0;
296                 bidi_levels[lpos - bidi_start] = new_level;
297
298                 while (level > new_level2) {
299                         Paragraph::size_type old_lpos =
300                                 stack[--level];
301                         int delta = lpos - old_lpos - 1;
302                         if (level % 2)
303                                 delta = -delta;
304                         log2vis_list[lpos - bidi_start] += delta;
305                         log2vis_list[old_lpos - bidi_start] += delta;
306                 }
307                 while (level < new_level)
308                         stack[level++] = lpos;
309         }
310
311         while (level > 0) {
312                 Paragraph::size_type const old_lpos = stack[--level];
313                 int delta = bidi_end - old_lpos;
314                 if (level % 2)
315                         delta = -delta;
316                 log2vis_list[old_lpos - bidi_start] += delta;
317         }
318
319         Paragraph::size_type vpos = bidi_start - 1;
320         for (Paragraph::size_type lpos = bidi_start;
321              lpos <= bidi_end; ++lpos) {
322                 vpos += log2vis_list[lpos - bidi_start];
323                 vis2log_list[vpos - bidi_start] = lpos;
324                 log2vis_list[lpos - bidi_start] = vpos;
325         }
326 }
327
328
329 // This method requires a previous call to ComputeBidiTables()
330 bool LyXText::isBoundary(Buffer const * buf, Paragraph * par,
331                          Paragraph::size_type pos) const
332 {
333         if (!lyxrc.rtl_support || pos == 0)
334                 return false;
335
336         if (!bidi_InRange(pos - 1)) {
337                 /// This can happen if pos is the first char of a row.
338                 /// Returning false in this case is incorrect!
339                 return false;
340         }
341
342         bool const rtl = bidi_level(pos - 1) % 2;
343         bool const rtl2 = bidi_InRange(pos)
344                 ? bidi_level(pos) % 2
345                 : par->isRightToLeftPar(buf->params);
346         return rtl != rtl2;
347 }
348
349
350 bool LyXText::isBoundary(Buffer const * buf, Paragraph * par,
351                          Paragraph::size_type pos,
352                          LyXFont const & font) const
353 {
354         if (!lyxrc.rtl_support)
355                 return false;    // This is just for speedup
356
357         bool const rtl = font.isVisibleRightToLeft();
358         bool const rtl2 = bidi_InRange(pos)
359                 ? bidi_level(pos) % 2
360                 : par->isRightToLeftPar(buf->params);
361         return rtl != rtl2;
362 }
363
364
365 void LyXText::draw(BufferView * bview, Row const * row,
366                    Paragraph::size_type & vpos,
367                    int offset, float & x, bool cleared)
368 {
369         Painter & pain = bview->painter();
370         
371         Paragraph::size_type pos = vis2log(vpos);
372         char c = row->par()->getChar(pos);
373         float tmpx = x;
374
375         if (IsNewlineChar(c)) {
376                 ++vpos;
377                 // Draw end-of-line marker
378                 LyXFont const font = getFont(bview->buffer(), row->par(), pos);
379                 int const wid = lyxfont::width('n', font);
380                 int const asc = lyxfont::maxAscent(font);
381                 int const y = offset + row->baseline();
382                 int xp[3];
383                 int yp[3];
384                 
385                 if (bidi_level(pos) % 2 == 0) {
386                         xp[0] = int(x + wid * 0.375);
387                         yp[0] = int(y - 0.875 * asc * 0.75);
388                         
389                         xp[1] = int(x);
390                         yp[1] = int(y - 0.500 * asc * 0.75);
391                         
392                         xp[2] = int(x + wid * 0.375);
393                         yp[2] = int(y - 0.125 * asc * 0.75);
394                         
395                         pain.lines(xp, yp, 3, LColor::eolmarker);
396                         
397                         xp[0] = int(x);
398                         yp[0] = int(y - 0.500 * asc * 0.75);
399                         
400                         xp[1] = int(x + wid);
401                         yp[1] = int(y - 0.500 * asc * 0.75);
402                         
403                         xp[2] = int(x + wid);
404                         yp[2] = int(y - asc * 0.75);
405                         
406                         pain.lines(xp, yp, 3, LColor::eolmarker);
407                 } else {
408                         xp[0] = int(x + wid * 0.625);
409                         yp[0] = int(y - 0.875 * asc * 0.75);
410                         
411                         xp[1] = int(x + wid);
412                         yp[1] = int(y - 0.500 * asc * 0.75);
413                         
414                         xp[2] = int(x + wid * 0.625);
415                         yp[2] = int(y - 0.125 * asc * 0.75);
416                         
417                         pain.lines(xp, yp, 3, LColor::eolmarker);
418                         
419                         xp[0] = int(x + wid);
420                         yp[0] = int(y - 0.500 * asc * 0.75);
421                         
422                         xp[1] = int(x);
423                         yp[1] = int(y - 0.500 * asc * 0.75);
424                         
425                         xp[2] = int(x);
426                         yp[2] = int(y - asc * 0.75);
427                         
428                         pain.lines(xp, yp, 3, LColor::eolmarker);
429                 }
430                 x += wid;
431                 return;
432         }
433
434         LyXFont font = getFont(bview->buffer(), row->par(), pos);
435         LyXFont font2 = font;
436
437         if (c == Paragraph::META_INSET) {
438                 Inset * tmpinset = row->par()->getInset(pos);
439                 if (tmpinset) {
440                         tmpinset->update(bview, font, false);
441                         tmpinset->draw(bview, font, offset+row->baseline(), x,
442                                        cleared);
443 #ifdef SEEMS_TO_BE_NOT_NEEDED
444                         if (status_ == CHANGED_IN_DRAW) {
445                                 UpdateInset(bview, tmpinset);
446                                 status(bview, CHANGED_IN_DRAW);
447                         }
448 #endif
449                 }
450                 ++vpos;
451
452                 if (lyxrc.mark_foreign_language &&
453                         font.language() != ignore_language &&
454                     font.language() != bview->buffer()->params.language) {
455                         int const y = offset + row->height() - 1;
456                         pain.line(int(tmpx), y, int(x), y, LColor::language);
457                 }
458
459                 return;
460         }
461
462         /* usual characters, no insets */
463
464         // Collect character that we can draw in one command
465
466         // This is dirty, but fast. Notice that it will never be too small.
467         // For the record, I'll note that Microsoft Word has a limit
468         // of 768 here. We have none :-) (Asger)
469         // Ok. I am the first to admit that the use of std::string will be
470         // a tiny bit slower than using a POD char array. However, I claim
471         // that this slowdown is so small that it is close to inperceptive.
472         // So IMHO we should go with the easier and clearer implementation.
473         // And even if 1024 is a large number here it might overflow, string
474         // will only overflow if the machine is out of memory...
475         static string textstring;
476         textstring = c;
477         ++vpos;
478
479         Paragraph::size_type const last = rowLastPrintable(row);
480
481         if (font.language()->lang() == "hebrew") {
482                 if (Encodings::IsComposeChar_hebrew(c)) {
483                         int const width = lyxfont::width(c, font2);
484                         int dx = 0;
485                         for (Paragraph::size_type i = pos-1; i >= 0; --i) {
486                                 c = row->par()->getChar(i);
487                                 if (!Encodings::IsComposeChar_hebrew(c)) {
488                                         if (IsPrintableNonspace(c)) {
489                                                 int const width2 =
490                                                         singleWidth(bview,
491                                                                     row->par(),
492                                                                     i, c);
493                                                 dx = (c == 'ø' || c == 'ã') // dalet / resh
494                                                         ? width2 - width : (width2 - width) / 2;
495                                         }
496                                         break;
497                                 }
498                         }
499                         // Draw nikud
500                         pain.text(int(x) + dx, offset + row->baseline(),
501                                   textstring, font);
502                 } else {
503                         while (vpos <= last &&
504                                (pos = vis2log(vpos)) >= 0
505                                && IsPrintableNonspace(c = row->par()->getChar(pos))
506                                && !Encodings::IsComposeChar_hebrew(c)
507                                && font2 == getFont(bview->buffer(), row->par(), pos)) {
508                                 textstring += c;
509                                 ++vpos;
510                         }
511                         // Draw text and set the new x position
512                         pain.text(int(x), offset + row->baseline(),
513                                   textstring, font);
514                         x += lyxfont::width(textstring, font);
515                 }
516         } else if (font.language()->lang() == "arabic" &&
517                    (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
518                     lyxrc.font_norm_type == LyXRC::ISO_10646_1)) {
519                 if (Encodings::IsComposeChar_arabic(c)) {
520                         c = transformChar(c, row->par(), pos);
521                         textstring = c;
522                         int const width = lyxfont::width(c, font2);
523                         int dx = 0;
524                         for (Paragraph::size_type i = pos-1; i >= 0; --i) {
525                                 c = row->par()->getChar(i);
526                                 if (!Encodings::IsComposeChar_arabic(c)) {
527                                         if (IsPrintableNonspace(c)) {
528                                                 int const width2 =
529                                                         singleWidth(bview,
530                                                                     row->par(),
531                                                                     i, c);
532                                                 dx = (width2 - width) / 2;
533                                         }
534                                         break;
535                                 }
536                         }
537                         // Draw nikud
538                         pain.text(int(x) + dx, offset + row->baseline(), 
539                                   textstring, font);
540                 } else {
541                         textstring = transformChar(c, row->par(), pos);
542                         while (vpos <= last &&
543                                (pos = vis2log(vpos)) >= 0
544                                && IsPrintableNonspace(c = row->par()->getChar(pos))
545                                && !Encodings::IsComposeChar_arabic(c)
546                                && font2 == getFont(bview->buffer(), row->par(), pos)) {
547                                 c = transformChar(c, row->par(), pos);
548                                 textstring += c;
549                                 ++vpos;
550                         }
551                         // Draw text and set the new x position
552                         pain.text(int(x), offset + row->baseline(),
553                                   textstring, font);
554                         x += lyxfont::width(textstring, font);
555                 }
556         } else {
557                 while (vpos <= last &&
558                        (pos = vis2log(vpos)) >= 0
559                        && IsPrintableNonspace(c = row->par()->getChar(pos))
560                        && font2 == getFont(bview->buffer(), row->par(), pos)) {
561                         textstring += c;
562                         ++vpos;
563                 }
564                 // Draw text and set the new x position
565                 pain.text(int(x), offset + row->baseline(), textstring, font);
566                 x += lyxfont::width(textstring, font);
567         }
568
569 #ifdef WITH_WARNINGS
570         if ((font.language() == inherit_language) ||
571                 (font.language() == ignore_language))
572                 lyxerr << "No this shouldn't happen!\n";
573 #endif
574         if (lyxrc.mark_foreign_language &&
575             font.language() != bview->buffer()->params.language) {
576                 int const y = offset + row->height() - 1;
577                 pain.line(int(tmpx), y, int(x), y,
578                           LColor::language);
579         }
580
581         // If we want ulem.sty support, drawing
582         // routines should go here. (Asger)
583         // Why shouldn't LyXFont::drawText handle it internally?
584 }
585
586
587 // Returns the left beginning of the text. 
588 // This information cannot be taken from the layouts-objekt, because in 
589 // LaTeX the beginning of the text fits in some cases (for example sections)
590 // exactly the label-width.
591 int LyXText::leftMargin(BufferView * bview, Row const * row) const
592 {
593         LyXLayout const & layout =
594                 textclasslist.Style(bview->buffer()->params.textclass,
595                                     row->par()->getLayout());
596         
597         string parindent = layout.parindent; 
598
599         int x = LYX_PAPER_MARGIN;
600         
601         x += lyxfont::signedWidth(textclasslist
602                                   .TextClass(bview->buffer()->params.textclass)
603                                   .leftmargin(),
604                                   textclasslist
605                                   .TextClass(bview->buffer()->params.textclass)
606                                   .defaultfont());
607
608         // this is the way, LyX handles the LaTeX-Environments.
609         // I have had this idea very late, so it seems to be a
610         // later added hack and this is true
611         if (!row->par()->getDepth()) {
612                 if (!row->par()->getLayout()) {
613                         // find the previous same level paragraph
614                         if (row->par()->previous()) {
615                                 Paragraph * newpar = row->par()
616                                         ->depthHook(row->par()->getDepth());
617                                 if (newpar &&
618                                     textclasslist.Style(bview->buffer()->params.textclass,
619                                                         newpar->getLayout())
620                                     .nextnoindent)
621                                         parindent.erase();
622                         }
623                 }
624         } else {
625                 // find the next level paragraph
626                 
627                 Paragraph * newpar =
628                         row->par()->outerHook();
629                 
630                 // make a corresponding row. Needed to call LeftMargin()
631                 
632                 // check wether it is a sufficent paragraph 
633                 if (newpar
634                     && textclasslist
635                         .Style(bview->buffer()->params.textclass, 
636                                newpar->getLayout()).isEnvironment()) {
637                         Row dummyrow;
638                         dummyrow.par(newpar);
639                         dummyrow.pos(newpar->size());
640                         x = leftMargin(bview, &dummyrow);
641                 } else {
642                         // this is no longer an error, because this function
643                         // is used to clear impossible depths after changing
644                         // a layout. Since there is always a redo,
645                         // LeftMargin() is always called
646                         row->par()->params().depth(0);
647                 }
648                 
649                 if (newpar && !row->par()->getLayout()) {
650                         if (newpar->params().noindent())
651                                 parindent.erase();
652                         else
653                                 parindent = textclasslist
654                                         .Style(bview->buffer()->params.textclass, 
655                                                newpar->getLayout()).parindent;
656                 }
657                 
658         }
659         
660         LyXFont const labelfont = getFont(bview->buffer(), row->par(), -2);
661         switch (layout.margintype) {
662         case MARGIN_DYNAMIC:
663                 if (!layout.leftmargin.empty()) {
664                         x += lyxfont::signedWidth(layout.leftmargin,
665                                                   textclasslist
666                                                   .TextClass(bview->buffer()->params.
667                                                              textclass)
668                                                   .defaultfont());
669                 }
670                 if (!row->par()->getLabelstring().empty()) {
671                         x += lyxfont::signedWidth(layout.labelindent,
672                                                   labelfont);
673                         x += lyxfont::width(row->par()->getLabelstring(),
674                                             labelfont);
675                         x += lyxfont::width(layout.labelsep, labelfont);
676                 }
677                 break;
678         case MARGIN_MANUAL:
679                 x += lyxfont::signedWidth(layout.labelindent, labelfont);
680                 if (row->pos() >= beginningOfMainBody(bview->buffer(), row->par())) {
681                         if (!row->par()->getLabelWidthString().empty()) {
682                                 x += lyxfont::width(row->par()->getLabelWidthString(),
683                                                labelfont);
684                                 x += lyxfont::width(layout.labelsep, labelfont);
685                         }
686                 }
687                 break;
688         case MARGIN_STATIC:
689                 x += lyxfont::signedWidth(layout.leftmargin, textclasslist.TextClass(bview->buffer()->params.textclass).defaultfont()) * 4
690                         / (row->par()->getDepth() + 4);
691                 break;
692         case MARGIN_FIRST_DYNAMIC:
693                 if (layout.labeltype == LABEL_MANUAL) {
694                         if (row->pos() >= beginningOfMainBody(bview->buffer(), row->par())) {
695                                 x += lyxfont::signedWidth(layout.leftmargin,
696                                                           labelfont);
697                         } else {
698                                 x += lyxfont::signedWidth(layout.labelindent,
699                                                           labelfont);
700                         }
701                 } else if (row->pos()
702                            // Special case to fix problems with
703                            // theorems (JMarc)
704                            || (layout.labeltype == LABEL_STATIC
705                                && layout.latextype == LATEX_ENVIRONMENT
706                                && ! row->par()->isFirstInSequence())) {
707                         x += lyxfont::signedWidth(layout.leftmargin,
708                                                   labelfont);
709                 } else if (layout.labeltype != LABEL_TOP_ENVIRONMENT
710                            && layout.labeltype != LABEL_BIBLIO
711                            && layout.labeltype !=
712                            LABEL_CENTERED_TOP_ENVIRONMENT) {
713                         x += lyxfont::signedWidth(layout.labelindent,
714                                                   labelfont);
715                         x += lyxfont::width(layout.labelsep, labelfont);
716                         x += lyxfont::width(row->par()->getLabelstring(),
717                                             labelfont);
718                 } 
719                 break;
720                 
721         case MARGIN_RIGHT_ADDRESS_BOX:
722         {
723                 // ok, a terrible hack. The left margin depends on the widest
724                 // row in this paragraph. Do not care about footnotes, they
725                 // are *NOT* allowed in the LaTeX realisation of this layout.
726                 
727                 // find the first row of this paragraph
728                 Row const * tmprow = row;
729                 while (tmprow->previous()
730                        && tmprow->previous()->par() == row->par())
731                         tmprow = tmprow->previous();
732                 
733                 int minfill = tmprow->fill();
734                 while (tmprow->next() && tmprow->next()->par() == row->par()) {
735                         tmprow = tmprow->next();
736                         if (tmprow->fill() < minfill)
737                                 minfill = tmprow->fill();
738                 }
739                 
740                 x += lyxfont::signedWidth(layout.leftmargin,
741                                           textclasslist
742                                           .TextClass(bview->buffer()->params.textclass)
743                                           .defaultfont());
744                 x += minfill;
745         }
746         break;
747         }
748         
749         int align; // wrong type
750
751         if (row->par()->params().align() == LYX_ALIGN_LAYOUT)
752                 align = layout.align;
753         else
754                 align = row->par()->params().align();
755
756         // set the correct parindent
757         if (row->pos() == 0) {
758                 if ((layout.labeltype == LABEL_NO_LABEL 
759                      || layout.labeltype == LABEL_TOP_ENVIRONMENT 
760                      || layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
761                      || (layout.labeltype == LABEL_STATIC
762                          && layout.latextype == LATEX_ENVIRONMENT
763                          && ! row->par()->isFirstInSequence()))
764                     && align == LYX_ALIGN_BLOCK
765                     && !row->par()->params().noindent()
766                     && (row->par()->layout ||
767                         bview->buffer()->params.paragraph_separation ==
768                         BufferParams::PARSEP_INDENT))
769                         x += lyxfont::signedWidth(parindent,
770                                                   textclasslist
771                                                   .TextClass(bview->buffer()->params
772                                                              .textclass)
773                                                   .defaultfont());
774                 else if (layout.labeltype == LABEL_BIBLIO) {
775                         // ale970405 Right width for bibitems
776                         x += bibitemMaxWidth(bview,textclasslist
777                                              .TextClass(bview->buffer()->params
778                                                         .textclass)
779                                              .defaultfont());
780                 }
781         }
782         return x;
783 }
784
785
786 int LyXText::rightMargin(Buffer const * buf, Row const * row) const
787 {
788         LyXLayout const & layout =
789                 textclasslist.Style(buf->params.textclass,
790                                     row->par()->getLayout());
791         
792         int x = LYX_PAPER_MARGIN
793                 + lyxfont::signedWidth(textclasslist
794                                        .TextClass(buf->params.textclass)
795                                        .rightmargin(),
796                                        textclasslist
797                                        .TextClass(buf->params.textclass)
798                                        .defaultfont());
799
800         // this is the way, LyX handles the LaTeX-Environments.
801         // I have had this idea very late, so it seems to be a
802         // later added hack and this is true
803         if (row->par()->getDepth()) {
804                 // find the next level paragraph
805                 
806                 Paragraph * newpar = row->par();
807                 
808                 do {
809                         newpar = newpar->previous();
810                 } while (newpar
811                          && newpar->getDepth() >= row->par()->getDepth());
812                 
813                 // make a corresponding row. Needed to call LeftMargin()
814                 
815                 // check wether it is a sufficent paragraph
816                 if (newpar
817                     && textclasslist.Style(buf->params.textclass,
818                                            newpar->getLayout())
819                        .isEnvironment()) {
820                         Row dummyrow;
821                         dummyrow.par(newpar);
822                         dummyrow.pos(0);
823                         x = rightMargin(buf, &dummyrow);
824                 } else {
825                         // this is no longer an error, because this function
826                         // is used to clear impossible depths after changing
827                         // a layout. Since there is always a redo,
828                         // LeftMargin() is always called
829                         row->par()->params().depth(0);
830                 }
831         }
832         
833         //lyxerr << "rightmargin: " << layout->rightmargin << endl;
834         x += lyxfont::signedWidth(layout.rightmargin, textclasslist
835                                   .TextClass(buf->params.textclass)
836                                   .defaultfont()) * 4 / (row->par()->getDepth()
837                                                          + 4);
838         return x;
839 }
840
841
842 int LyXText::labelEnd(BufferView * bview, Row const * row) const
843 {
844         if (textclasslist.Style(bview->buffer()->params.textclass,
845                                 row->par()->getLayout()).margintype
846             == MARGIN_MANUAL) {
847                 Row tmprow;
848                 tmprow = *row;
849                 tmprow.pos(row->par()->size());
850                 return leftMargin(bview, &tmprow);  /* just the beginning 
851                                                 of the main body */
852         } else
853                 return 0;  /* LabelEnd is only needed, if the  
854                               layout fills a flushleft
855                               label. */
856 }
857
858
859 // get the next breakpoint in a given paragraph
860 Paragraph::size_type
861 LyXText::nextBreakPoint(BufferView * bview, Row const * row, int width) const
862 {
863         Paragraph * par = row->par();
864
865         if (width < 0)
866                 return par->size();
867
868         Paragraph::size_type const pos = row->pos();
869
870
871         // position of the last possible breakpoint 
872         // -1 isn't a suitable value, but a flag
873         Paragraph::size_type last_separator = -1;
874         width -= rightMargin(bview->buffer(), row);
875         
876         Paragraph::size_type const main_body =
877                 beginningOfMainBody(bview->buffer(), par);
878         LyXLayout const & layout =
879                 textclasslist.Style(bview->buffer()->params.textclass, par->getLayout());
880         Paragraph::size_type i = pos;
881
882         if (layout.margintype == MARGIN_RIGHT_ADDRESS_BOX) {
883                 /* special code for right address boxes, only newlines count */
884                 while (i < par->size()) {
885                         if (par->isNewline(i)) {
886                                 last_separator = i;
887                                 i = par->size() - 1; // this means break
888                                 //x = width;
889                         } else if (par->getChar(i) == Paragraph::META_INSET &&
890                                    par->getInset(i) && par->getInset(i)->display()){
891                                 par->getInset(i)->display(false);
892                         }
893                         ++i;
894                 }
895         } else {
896                 // Last position is an invariant
897                 Paragraph::size_type const last = 
898                         par->size();
899                 // this is the usual handling
900                 int x = leftMargin(bview, row);
901                 bool doitonetime = true;
902                 while (doitonetime || ((x < width) && (i < last))) {
903                         doitonetime = false;
904                         char const c = par->getChar(i);
905                         if (IsNewlineChar(c)) {
906                                 last_separator = i;
907                                 x = width; // this means break
908                         } else if (c == Paragraph::META_INSET &&
909                                    par->getInset(i)) {
910                                 
911                                 // check wether a Display() inset is
912                                 // valid here. if not, change it to
913                                 // non-display
914                                 if (par->getInset(i)->display() &&
915                                     (layout.isCommand() ||
916                                      (layout.labeltype == LABEL_MANUAL
917                                       && i < beginningOfMainBody(bview->buffer(), par)))) {
918                                         // display istn't allowd
919                                         par->getInset(i)->display(false);
920                                         x += singleWidth(bview, par, i, c);
921                                 } else if (par->getInset(i)->display() ||
922                                          par->getInset(i)->needFullRow()) {
923                                         // So break the line here
924                                         if (i == pos) {
925                                                 if (pos < last-1) {
926                                                         last_separator = i;
927                                                         if (IsLineSeparatorChar(par->getChar(i+1)))
928                                                                 ++last_separator;
929                                                 } else
930                                                         last_separator = last; // to avoid extra rows
931                                         } else
932                                                 last_separator = i - 1;
933                                         x = width;  // this means break
934                                 } else {
935                                         x += singleWidth(bview, par, i, c);
936                                 }
937                         } else  {
938                                 if (IsLineSeparatorChar(c))
939                                         last_separator = i;
940                                 x += singleWidth(bview, par, i, c);
941                         }
942                         ++i;
943                         if (i == main_body) {
944                                 x += lyxfont::width(layout.labelsep,
945                                                     getFont(bview->buffer(), par, -2));
946                                 if (par->isLineSeparator(i - 1))
947                                         x-= singleWidth(bview, par, i - 1);
948                                 int left_margin = labelEnd(bview, row);
949                                 if (x < left_margin)
950                                         x = left_margin;
951                         }
952                 }
953                 // end of paragraph is always a suitable separator
954                 if (i == last && x < width)
955                         last_separator = i;
956         }
957         
958         // well, if last_separator is still 0, the line isn't breakable. 
959         // don't care and cut simply at the end
960         if (last_separator < 0) {
961                 last_separator = i;
962         }
963         
964         // manual labels cannot be broken in LaTeX, do not care
965         if (main_body && last_separator < main_body)
966                 last_separator = main_body - 1;
967         
968         return last_separator;
969 }
970
971
972 // returns the minimum space a row needs on the screen in pixel
973 int LyXText::fill(BufferView * bview, Row * row, int paper_width) const
974 {
975         if (paper_width < 0)
976                 return 20;
977
978         int w;
979         // get the pure distance
980         Paragraph::size_type const last = rowLastPrintable(row);
981         
982         // special handling of the right address boxes
983         if (textclasslist.Style(bview->buffer()->params.textclass,
984                                 row->par()->getLayout()).margintype
985             == MARGIN_RIGHT_ADDRESS_BOX) {
986                 int const tmpfill = row->fill();
987                 row->fill(0); // the minfill in MarginLeft()
988                 w = leftMargin(bview, row);
989                 row->fill(tmpfill);
990         } else
991                 w = leftMargin(bview, row);
992         
993         LyXLayout const & layout = textclasslist.Style(bview->buffer()->params.textclass,
994                                                        row->par()->getLayout());
995         Paragraph::size_type const main_body = 
996                 beginningOfMainBody(bview->buffer(), row->par());
997         Paragraph::size_type i = row->pos();
998
999         while (i <= last) {
1000                 if (main_body > 0 && i == main_body) {
1001                         w += lyxfont::width(layout.labelsep, getFont(bview->buffer(), row->par(), -2));
1002                         if (row->par()->isLineSeparator(i - 1))
1003                                 w -= singleWidth(bview, row->par(), i - 1);
1004                         int left_margin = labelEnd(bview, row);
1005                         if (w < left_margin)
1006                                 w = left_margin;
1007                 }
1008                 w += singleWidth(bview, row->par(), i);
1009                 ++i;
1010         }
1011         if (main_body > 0 && main_body > last) {
1012                 w += lyxfont::width(layout.labelsep, getFont(bview->buffer(), row->par(), -2));
1013                 if (last >= 0 && row->par()->isLineSeparator(last))
1014                         w -= singleWidth(bview, row->par(), last);
1015                 int const left_margin = labelEnd(bview, row);
1016                 if (w < left_margin)
1017                         w = left_margin;
1018         }
1019         
1020         int const fill = paper_width - w - rightMargin(bview->buffer(), row);
1021 #ifdef WITH_WARNINGS
1022 #warning Please fix me (Jug!)
1023 #endif
1024 #if 0
1025         if (fill < 0)
1026                 return 0;
1027 #endif
1028         return fill;
1029 }
1030
1031
1032 // returns the minimum space a manual label needs on the screen in pixel
1033 int LyXText::labelFill(BufferView * bview, Row const * row) const
1034 {
1035         Paragraph::size_type last = beginningOfMainBody(bview->buffer(), row->par()) - 1;
1036         // -1 because a label ends either with a space that is in the label, 
1037         // or with the beginning of a footnote that is outside the label.
1038
1039         // I don't understand this code in depth, but sometimes "last" is
1040         // less than 0 and this causes a crash. This fix seems to work
1041         // correctly, but I bet the real error is elsewhere.  The bug is
1042         // triggered when you have an open footnote in a paragraph
1043         // environment with a manual label. (Asger)
1044         if (last < 0) last = 0;
1045         
1046         if (row->par()->isLineSeparator(last)) /* a sepearator at this end 
1047                                                 does not count */
1048                 --last;
1049         
1050         int w = 0;
1051         int i = row->pos();
1052         while (i <= last) {
1053                 w += singleWidth(bview, row->par(), i);
1054                 ++i;
1055         }
1056         
1057         int fill = 0;
1058         if (!row->par()->params().labelWidthString().empty()) {
1059                 fill = max(lyxfont::width(row->par()->params().labelWidthString(),
1060                                           getFont(bview->buffer(), row->par(), -2)) - w,
1061                            0);
1062         }
1063         
1064         return fill;
1065 }
1066
1067
1068 // returns the number of separators in the specified row. The separator 
1069 // on the very last column doesnt count
1070 int LyXText::numberOfSeparators(Buffer const * buf, Row const * row) const
1071 {
1072         Paragraph::size_type const last = rowLast(row);
1073         Paragraph::size_type p =
1074                 max(row->pos(), beginningOfMainBody(buf, row->par()));
1075         int n = 0;
1076         for (; p < last; ++p) {
1077                 if (row->par()->isSeparator(p)) {
1078                         ++n;
1079                 }
1080         }
1081         return n;
1082 }
1083
1084
1085 // returns the number of hfills in the specified row. The LyX-Hfill is
1086 // a LaTeX \hfill so that the hfills at the beginning and at the end were 
1087 // ignored. This is *MUCH* more usefull than not to ignore!
1088 int LyXText::numberOfHfills(Buffer const * buf, Row const * row) const
1089 {
1090         Paragraph::size_type const last = rowLast(row);
1091         Paragraph::size_type first = row->pos();
1092         if (first) { /* hfill *DO* count at the beginning 
1093                       * of paragraphs! */
1094                 while(first <= last && row->par()->isHfill(first))
1095                         ++first;
1096         }
1097
1098         first = max(first, beginningOfMainBody(buf, row->par()));
1099         int n = 0;
1100         for (int p = first; p <= last; ++p) { // last, because the end is ignored!
1101                 if (row->par()->isHfill(p)) {
1102                         ++n;
1103                 }
1104         }
1105         return n;
1106 }
1107
1108
1109 // like NumberOfHfills, but only those in the manual label!
1110 int LyXText::numberOfLabelHfills(Buffer const * buf, Row const * row) const
1111 {
1112         Paragraph::size_type last = rowLast(row);
1113         Paragraph::size_type first = row->pos();
1114         if (first) { /* hfill *DO* count at the beginning 
1115                       * of paragraphs! */
1116                 while(first < last && row->par()->isHfill(first))
1117                         ++first;
1118         }
1119
1120         last = min(last, beginningOfMainBody(buf, row->par()));
1121         int n = 0;
1122         for (Paragraph::size_type p = first;
1123              p < last; ++p) {  // last, because the end is ignored!
1124                 if (row->par()->isHfill(p)) {
1125                         ++n;
1126                 }
1127         }
1128         return n;
1129 }
1130
1131
1132 // returns true, if a expansion is needed.
1133 // Rules are given by LaTeX
1134 bool LyXText::hfillExpansion(Buffer const * buf, Row const * row_ptr,
1135                              Paragraph::size_type pos) const
1136 {
1137         // by the way, is it a hfill?
1138         if (!row_ptr->par()->isHfill(pos))
1139                 return false;
1140         
1141         // at the end of a row it does not count
1142         if (pos >= rowLast(row_ptr))
1143                 return false;
1144         
1145         // at the beginning of a row it does not count, if it is not 
1146         // the first row of a paragaph
1147         if (!row_ptr->pos())
1148                 return true;
1149         
1150         // in some labels  it does not count
1151         if (textclasslist.Style(buf->params.textclass,
1152                                 row_ptr->par()->getLayout()).margintype
1153             != MARGIN_MANUAL
1154             && pos < beginningOfMainBody(buf, row_ptr->par()))
1155                 return false; 
1156         
1157         // if there is anything between the first char of the row and
1158         // the sepcified position that is not a newline and not a hfill,
1159         // the hfill will count, otherwise not
1160         Paragraph::size_type i = row_ptr->pos();
1161         while (i < pos && (row_ptr->par()->isNewline(i)
1162                            || row_ptr->par()->isHfill(i)))
1163                 ++i;
1164         
1165         return i != pos;
1166 }
1167
1168
1169 LColor::color LyXText::backgroundColor()
1170 {
1171         if (inset_owner)
1172                 return inset_owner->backgroundColor();
1173         else
1174                 return LColor::background;
1175 }
1176
1177 void LyXText::setHeightOfRow(BufferView * bview, Row * row_ptr) const
1178 {
1179     /* get the maximum ascent and the maximum descent */
1180    int asc = 0;
1181    int desc = 0;
1182    float layoutasc = 0;
1183    float layoutdesc = 0;
1184    float tmptop = 0;
1185    LyXFont tmpfont;
1186    Inset * tmpinset = 0;
1187
1188    /* this must not happen before the currentrow for clear reasons.
1189       so the trick is just to set the current row onto this row */
1190    int unused_y;
1191    getRow(row_ptr->par(), row_ptr->pos(), unused_y);
1192
1193    /* ok , let us initialize the maxasc and maxdesc value. 
1194     * This depends in LaTeX of the font of the last character
1195     * in the paragraph. The hack below is necessary because
1196     * of the possibility of open footnotes */
1197
1198    /* Correction: only the fontsize count. The other properties
1199       are taken from the layoutfont. Nicer on the screen :) */
1200    Paragraph * par = row_ptr->par();
1201    Paragraph * firstpar = row_ptr->par();
1202    
1203    LyXLayout const & layout = textclasslist.Style(bview->buffer()->params.textclass,
1204                                                   firstpar->getLayout());
1205
1206    LyXFont font = getFont(bview->buffer(), par, par->size() - 1);
1207    LyXFont::FONT_SIZE const size = font.size();
1208    font = getFont(bview->buffer(), par, -1);
1209    font.setSize(size);
1210
1211    LyXFont labelfont = getFont(bview->buffer(), par, -2);
1212
1213    float spacing_val = 1.0;
1214    if (!row_ptr->par()->params().spacing().isDefault()) {
1215            spacing_val = row_ptr->par()->params().spacing().getValue();
1216    } else {
1217            spacing_val = bview->buffer()->params.spacing.getValue();
1218    }
1219    //lyxerr << "spacing_val = " << spacing_val << endl;
1220    
1221    int maxasc = int(lyxfont::maxAscent(font) *
1222                    layout.spacing.getValue() *
1223                    spacing_val);
1224    int maxdesc = int(lyxfont::maxDescent(font) *
1225                     layout.spacing.getValue() *
1226                     spacing_val);
1227    int const pos_end = rowLast(row_ptr);
1228    int labeladdon = 0;
1229    int maxwidth = 0;
1230
1231    // Check if any insets are larger
1232    for (int pos = row_ptr->pos(); pos <= pos_end; ++pos) {
1233            if (row_ptr->par()->getChar(pos) == Paragraph::META_INSET) {
1234                    tmpfont = getFont(bview->buffer(), row_ptr->par(), pos);
1235                    tmpinset = row_ptr->par()->getInset(pos);
1236                    if (tmpinset) {
1237 #if 1 // this is needed for deep update on initialitation
1238                            tmpinset->update(bview, tmpfont);
1239 #endif
1240                            asc = tmpinset->ascent(bview, tmpfont);
1241                            desc = tmpinset->descent(bview, tmpfont);
1242                            maxwidth += tmpinset->width(bview, tmpfont);
1243                            maxasc = max(maxasc, asc);
1244                            maxdesc = max(maxdesc, desc);
1245                    }
1246            } else {
1247                    maxwidth += singleWidth(bview, row_ptr->par(), pos);
1248            }
1249    }
1250
1251    // Check if any custom fonts are larger (Asger)
1252    // This is not completely correct, but we can live with the small,
1253    // cosmetic error for now.
1254    LyXFont::FONT_SIZE const maxsize =
1255            row_ptr->par()->highestFontInRange(row_ptr->pos(),
1256                                               pos_end);
1257    if (maxsize > font.size()) {
1258         font.setSize(maxsize);
1259
1260         asc = lyxfont::maxAscent(font);
1261         desc = lyxfont::maxDescent(font);
1262         if (asc > maxasc) 
1263                 maxasc = asc;
1264         if (desc > maxdesc)
1265                 maxdesc = desc;
1266    }
1267
1268    // This is nicer with box insets:
1269    ++maxasc;
1270    ++maxdesc;
1271
1272    row_ptr->ascent_of_text(maxasc);
1273    
1274    // is it a top line?
1275    if (!row_ptr->pos() && (row_ptr->par() == firstpar)) {
1276       
1277            // some parksips VERY EASY IMPLEMENTATION
1278       if (bview->buffer()->params.paragraph_separation ==
1279           BufferParams::PARSEP_SKIP) {
1280          if (layout.isParagraph()
1281              && firstpar->getDepth() == 0
1282              && firstpar->previous())
1283             maxasc += bview->buffer()->params.getDefSkip().inPixels(bview);
1284          else if (firstpar->previous()
1285                   && textclasslist.Style(bview->buffer()->params.textclass,
1286                            firstpar->previous()->getLayout()).isParagraph()
1287                   && firstpar->previous()->getDepth() == 0)
1288            // is it right to use defskip here too? (AS)
1289            maxasc += bview->buffer()->params.getDefSkip().inPixels(bview);
1290       }
1291       
1292       // the paper margins
1293       if (!row_ptr->par()->previous() && bv_owner)
1294          maxasc += LYX_PAPER_MARGIN;
1295       
1296       // add the vertical spaces, that the user added
1297       if (firstpar->params().spaceTop().kind() != VSpace::NONE)
1298          maxasc += int(firstpar->params().spaceTop().inPixels(bview));
1299       
1300       // do not forget the DTP-lines!
1301       // there height depends on the font of the nearest character
1302       if (firstpar->params().lineTop())
1303          maxasc += 2 * lyxfont::ascent('x', getFont(bview->buffer(),
1304                                                     firstpar, 0));
1305       
1306       // and now the pagebreaks
1307       if (firstpar->params().pagebreakTop())
1308          maxasc += 3 * defaultHeight();
1309       
1310       // This is special code for the chapter, since the label of this
1311       // layout is printed in an extra row
1312       if (layout.labeltype == LABEL_COUNTER_CHAPTER
1313           && bview->buffer()->params.secnumdepth >= 0) {
1314               float spacing_val = 1.0;
1315               if (!row_ptr->par()->params().spacing().isDefault()) {
1316                       spacing_val = row_ptr->par()->params().spacing().getValue();
1317               } else {
1318                       spacing_val = bview->buffer()->params.spacing.getValue();
1319               }
1320               
1321               labeladdon = int(lyxfont::maxDescent(labelfont) *
1322                                layout.spacing.getValue() *
1323                                spacing_val)
1324                       + int(lyxfont::maxAscent(labelfont) *
1325                             layout.spacing.getValue() *
1326                             spacing_val);
1327       }
1328       
1329       // special code for the top label
1330       if ((layout.labeltype == LABEL_TOP_ENVIRONMENT
1331            || layout.labeltype == LABEL_BIBLIO
1332            || layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
1333           && row_ptr->par()->isFirstInSequence()
1334           && !row_ptr->par()->getLabelstring().empty()) {
1335               float spacing_val = 1.0;
1336               if (!row_ptr->par()->params().spacing().isDefault()) {
1337                       spacing_val = row_ptr->par()->params().spacing().getValue();
1338               } else {
1339                       spacing_val = bview->buffer()->params.spacing.getValue();
1340               }
1341               
1342               labeladdon = int(
1343                       (lyxfont::maxAscent(labelfont) *
1344                        layout.spacing.getValue() *
1345                        spacing_val)
1346                       +(lyxfont::maxDescent(labelfont) *
1347                         layout.spacing.getValue() *
1348                         spacing_val)
1349                       + layout.topsep * defaultHeight()
1350                       + layout.labelbottomsep *  defaultHeight());
1351       }
1352    
1353       // and now the layout spaces, for example before and after a section, 
1354       // or between the items of a itemize or enumerate environment
1355       
1356       if (!firstpar->params().pagebreakTop()) {
1357          Paragraph * prev = row_ptr->par()->previous();
1358          if (prev)
1359             prev = row_ptr->par()->depthHook(row_ptr->par()->getDepth());
1360          if (prev && prev->getLayout() == firstpar->getLayout()
1361              && prev->getDepth() == firstpar->getDepth()
1362              && prev->getLabelWidthString() == firstpar->getLabelWidthString())
1363            {
1364               layoutasc = (layout.itemsep * defaultHeight());
1365            }
1366          else if (row_ptr->previous()) {
1367             tmptop = layout.topsep;
1368             
1369             if (row_ptr->previous()->par()->getDepth() >= row_ptr->par()->getDepth())
1370                tmptop -= textclasslist.Style(bview->buffer()->params.textclass,
1371                                              row_ptr->previous()->par()->
1372                                              getLayout()).bottomsep;
1373             
1374             if (tmptop > 0)
1375                layoutasc = (tmptop * defaultHeight());
1376          }
1377          else if (row_ptr->par()->params().lineTop()) {
1378             tmptop = layout.topsep;
1379             
1380             if (tmptop > 0)
1381                layoutasc = (tmptop * defaultHeight());
1382          }
1383          
1384          prev = row_ptr->par()->outerHook();
1385          if (prev)  {
1386             maxasc += int(textclasslist.Style(bview->buffer()->params.textclass,
1387                                          prev->getLayout()).parsep * defaultHeight());
1388          }
1389          else {
1390                 if (firstpar->previous()
1391                     && firstpar->previous()->getDepth() == 0
1392                     && firstpar->previous()->getLayout() != firstpar->getLayout()) {
1393                         // avoid parsep
1394                 }
1395             else if (firstpar->previous()){
1396                maxasc += int(layout.parsep * defaultHeight());
1397             }
1398          }
1399       }
1400    }
1401    
1402    // is it a bottom line?
1403    if (row_ptr->par() == par
1404        && (!row_ptr->next() || row_ptr->next()->par() != row_ptr->par())) {
1405           
1406            // the paper margins
1407           if (!par->next() && bv_owner)
1408             maxdesc += LYX_PAPER_MARGIN;
1409           
1410           // add the vertical spaces, that the user added
1411           if (firstpar->params().spaceBottom().kind() != VSpace::NONE)
1412                   maxdesc += int(firstpar->params().spaceBottom().inPixels(bview));
1413           
1414           // do not forget the DTP-lines!
1415           // there height depends on the font of the nearest character
1416           if (firstpar->params().lineBottom())
1417                   maxdesc += 2 * lyxfont::ascent('x',
1418                                                  getFont(bview->buffer(),
1419                                                          par, par->size() - 1));
1420           
1421           // and now the pagebreaks
1422           if (firstpar->params().pagebreakBottom())
1423             maxdesc += 3 * defaultHeight();
1424           
1425           // and now the layout spaces, for example before and after
1426           // a section, or between the items of a itemize or enumerate
1427           // environment
1428           if (!firstpar->params().pagebreakBottom() && row_ptr->par()->next()) {
1429              Paragraph * nextpar = row_ptr->par()->next();
1430              Paragraph * comparepar = row_ptr->par();
1431              float usual = 0;
1432              float unusual = 0;
1433              
1434              if (comparepar->getDepth() > nextpar->getDepth()) {
1435                 usual = (textclasslist.Style(bview->buffer()->params.textclass, comparepar->getLayout()).bottomsep * defaultHeight());
1436                 comparepar = comparepar->depthHook(nextpar->getDepth());
1437                 if (comparepar->getLayout()!= nextpar->getLayout()
1438                     || nextpar->getLabelWidthString() != 
1439                         comparepar->getLabelWidthString())
1440                   unusual = (textclasslist.Style(bview->buffer()->params.textclass, comparepar->getLayout()).bottomsep * defaultHeight());
1441                 
1442                 if (unusual > usual)
1443                   layoutdesc = unusual;
1444                 else
1445                   layoutdesc = usual;
1446              }
1447              else if (comparepar->getDepth() ==  nextpar->getDepth()) {
1448                 
1449                 if (comparepar->getLayout()!= nextpar->getLayout()
1450                     || nextpar->getLabelWidthString() != 
1451                         comparepar->getLabelWidthString())
1452                   layoutdesc = int(textclasslist.Style(bview->buffer()->params.textclass, comparepar->getLayout()).bottomsep * defaultHeight());
1453              }
1454           }
1455        }
1456    
1457    // incalculate the layout spaces
1458    maxasc += int(layoutasc * 2 / (2 + firstpar->getDepth()));
1459    maxdesc += int(layoutdesc * 2 / (2 + firstpar->getDepth()));
1460
1461    // calculate the new height of the text
1462    height -= row_ptr->height();
1463    
1464    row_ptr->height(maxasc + maxdesc + labeladdon);
1465    row_ptr->baseline(maxasc + labeladdon);
1466    
1467    height += row_ptr->height();
1468    float x;
1469    float dummy;
1470    prepareToPrint(bview, row_ptr, x, dummy, dummy, dummy, false);
1471    row_ptr->width(int(maxwidth + x));
1472    if (inset_owner) {
1473            Row * r = firstrow;
1474            width = max(0,workWidth(bview));
1475            while(r) {
1476                    if (r->width() > width)
1477                            width = r->width();
1478                    r = r->next();
1479            }
1480    }
1481 }
1482
1483
1484 /* Appends the implicit specified paragraph behind the specified row,
1485  * start at the implicit given position */
1486 void LyXText::appendParagraph(BufferView * bview, Row * row) const
1487 {
1488    bool not_ready = true;
1489    
1490    // The last character position of a paragraph is an invariant so we can 
1491    // safely get it here. (Asger)
1492    int const lastposition = row->par()->size();
1493    do {
1494       // Get the next breakpoint
1495       int z = nextBreakPoint(bview, row, workWidth(bview));
1496       
1497       Row * tmprow = row;
1498
1499       // Insert the new row
1500       if (z < lastposition) {
1501          ++z;
1502          insertRow(row, row->par(), z);
1503          row = row->next();
1504
1505          row->height(0);
1506       } else
1507          not_ready = false;
1508       
1509       // Set the dimensions of the row
1510 #ifdef WITH_WARNINGS
1511 #warning Something is rotten here! (Jug)
1512 #endif
1513       tmprow->fill(fill(bview, tmprow, workWidth(bview)));
1514       setHeightOfRow(bview, tmprow);
1515
1516    } while (not_ready);
1517 }
1518
1519
1520 void LyXText::breakAgain(BufferView * bview, Row * row) const
1521 {
1522         bool not_ready = true;
1523    
1524         do  {
1525                 // get the next breakpoint
1526                 Paragraph::size_type z = nextBreakPoint(bview, row, workWidth(bview));
1527                 Row * tmprow = row;
1528
1529                 if (z < row->par()->size()) {
1530                         if (!row->next() || (row->next() && row->next()->par() != row->par())) {
1531                                 // insert a new row
1532                                 ++z;
1533                                 insertRow(row, row->par(), z);
1534                                 row = row->next();
1535                                 row->height(0);
1536                         } else  {
1537                                 row = row->next();
1538                                 ++z;
1539                                 if (row->pos() == z)
1540                                         not_ready = false;     // the rest will not change
1541                                 else {
1542                                         row->pos(z);
1543                                 }
1544                         }
1545                 } else {
1546                         /* if there are some rows too much, delete them */
1547                         /* only if you broke the whole paragraph! */ 
1548                         Row * tmprow2 = row;
1549                         while (tmprow2->next() && tmprow2->next()->par() == row->par()) {
1550                                 tmprow2 = tmprow2->next();
1551                         }
1552                         while (tmprow2 != row) {
1553                                 tmprow2 = tmprow2->previous();
1554                                 removeRow(tmprow2->next());
1555                         }
1556                         not_ready = false;
1557                 }
1558                 
1559                 /* set the dimensions of the row */ 
1560                 tmprow->fill(fill(bview, tmprow, workWidth(bview)));
1561                 setHeightOfRow(bview, tmprow);
1562         } while (not_ready);
1563 }
1564
1565
1566 // this is just a little changed version of break again
1567 void LyXText::breakAgainOneRow(BufferView * bview, Row * row)
1568 {
1569         // get the next breakpoint
1570         Paragraph::size_type z = nextBreakPoint(bview, row, workWidth(bview));
1571         Row * tmprow = row;
1572
1573         if (z < row->par()->size()) {
1574                 if (!row->next()
1575                     || (row->next() && row->next()->par() != row->par())) {
1576                         /* insert a new row */ 
1577                         ++z;
1578                         insertRow(row, row->par(), z);
1579                         row = row->next();
1580                         row->height(0);
1581                 } else  {
1582                         row= row->next();
1583                         ++z;
1584                         if (row->pos() != z)
1585                                 row->pos(z);
1586                 }
1587         } else {
1588                 // if there are some rows too much, delete them
1589                 // only if you broke the whole paragraph!
1590                 Row * tmprow2 = row;
1591                 while (tmprow2->next()
1592                        && tmprow2->next()->par() == row->par()) {
1593                         tmprow2 = tmprow2->next();
1594                 }
1595                 while (tmprow2 != row) {
1596                         tmprow2 = tmprow2->previous();
1597                         removeRow(tmprow2->next());
1598                 }
1599         }
1600         
1601         // set the dimensions of the row
1602         tmprow->fill(fill(bview, tmprow, workWidth(bview)));
1603         setHeightOfRow(bview, tmprow);
1604 }
1605
1606
1607 void LyXText::breakParagraph(BufferView * bview, char keep_layout)
1608 {
1609    LyXLayout const & layout =
1610            textclasslist.Style(bview->buffer()->params.textclass,
1611                                cursor.par()->getLayout());
1612
1613    // this is only allowed, if the current paragraph is not empty or caption
1614    if ((cursor.par()->size() <= 0)
1615        && layout.labeltype!= LABEL_SENSITIVE)
1616            return;
1617    
1618    setUndo(bview, Undo::INSERT,cursor.par(),cursor.par()->next()); 
1619
1620    // Always break behind a space
1621    //
1622    // It is better to erase the space (Dekel)
1623    if (cursor.pos() < cursor.par()->size()
1624        && cursor.par()->isLineSeparator(cursor.pos()))
1625            cursor.par()->erase(cursor.pos());
1626            // cursor.pos(cursor.pos() + 1);
1627
1628    // break the paragraph
1629    if (keep_layout)
1630      keep_layout = 2;
1631    else 
1632      keep_layout = layout.isEnvironment();
1633    cursor.par()->breakParagraph(bview->buffer()->params, cursor.pos(),
1634                                 keep_layout);
1635
1636    // well this is the caption hack since one caption is really enough
1637    if (layout.labeltype == LABEL_SENSITIVE) {
1638      if (!cursor.pos())
1639              // set to standard-layout
1640              cursor.par()->setLayout(0);
1641      else
1642              // set to standard-layout
1643              cursor.par()->next()->setLayout(0);
1644    }
1645    
1646    /* if the cursor is at the beginning of a row without prior newline, 
1647     * move one row up! 
1648     * This touches only the screen-update. Otherwise we would may have
1649     * an empty row on the screen */
1650    if (cursor.pos() && !cursor.row()->par()->isNewline(cursor.row()->pos() - 1)
1651        && cursor.row()->pos() == cursor.pos()) {
1652            cursorLeft(bview);
1653    } 
1654    
1655    status(bview, LyXText::NEED_MORE_REFRESH);
1656    refresh_row = cursor.row();
1657    refresh_y = cursor.y() - cursor.row()->baseline();
1658    
1659    // Do not forget the special right address boxes
1660    if (layout.margintype == MARGIN_RIGHT_ADDRESS_BOX) {
1661       while (refresh_row->previous() &&
1662              refresh_row->previous()->par() == refresh_row->par()) {
1663               refresh_row = refresh_row->previous();
1664               refresh_y -= refresh_row->height();
1665       }
1666    }
1667    removeParagraph(cursor.row());
1668    
1669    // set the dimensions of the cursor row
1670    cursor.row()->fill(fill(bview, cursor.row(), workWidth(bview)));
1671
1672    setHeightOfRow(bview, cursor.row());
1673
1674    while (cursor.par()->next()->size()
1675           && cursor.par()->next()->isNewline(0))
1676            cursor.par()->next()->erase(0);
1677    
1678    insertParagraph(bview, cursor.par()->next(), cursor.row());
1679
1680    updateCounters(bview, cursor.row()->previous());
1681    
1682    /* This check is necessary. Otherwise the new empty paragraph will
1683     * be deleted automatically. And it is more friendly for the user! */ 
1684    if (cursor.pos())
1685            setCursor(bview, cursor.par()->next(), 0);
1686    else
1687            setCursor(bview, cursor.par(), 0);
1688    
1689    if (cursor.row()->next())
1690            breakAgain(bview, cursor.row()->next());
1691
1692    need_break_row = 0;
1693 }
1694
1695
1696 // Just a macro to make some thing easier. 
1697 void LyXText::redoParagraph(BufferView * bview) const
1698 {
1699         clearSelection(bview);
1700         redoParagraphs(bview, cursor, cursor.par()->next());
1701         setCursorIntern(bview, cursor.par(), cursor.pos());
1702 }
1703
1704
1705 /* insert a character, moves all the following breaks in the 
1706  * same Paragraph one to the right and make a rebreak */
1707 void LyXText::insertChar(BufferView * bview, char c)
1708 {
1709         setUndo(bview, Undo::INSERT,
1710                 cursor.par(), cursor.par()->next());
1711
1712         // When the free-spacing option is set for the current layout,
1713         // disable the double-space checking
1714
1715         bool const freeSpacing = 
1716                 textclasslist.Style(bview->buffer()->params.textclass,
1717                                cursor.row()->par()->getLayout()).free_spacing;
1718
1719
1720         if (lyxrc.auto_number) {
1721                 static string const number_operators = "+-/*";
1722                 static string const number_unary_operators = "+-";
1723                 static string const number_seperators = ".,:";
1724
1725                 if (current_font.number() == LyXFont::ON) {
1726                         if (!isdigit(c) && !contains(number_operators, c) &&
1727                             !(contains(number_seperators, c) &&
1728                               cursor.pos() >= 1 &&
1729                               cursor.pos() < cursor.par()->size() &&
1730                               getFont(bview->buffer(),
1731                                       cursor.par(),
1732                                       cursor.pos()).number() == LyXFont::ON &&
1733                               getFont(bview->buffer(),
1734                                       cursor.par(),
1735                                       cursor.pos()-1).number() == LyXFont::ON)
1736                             )
1737                                 Number(bview); // Set current_font.number to OFF
1738                 } else if (isdigit(c) &&
1739                            real_current_font.isVisibleRightToLeft()) {
1740                         Number(bview); // Set current_font.number to ON
1741
1742                         if (cursor.pos() > 0) {
1743                                 char const c = cursor.par()->getChar(cursor.pos() - 1);
1744                                 if (contains(number_unary_operators, c) &&
1745                                     (cursor.pos() == 1 ||
1746                                      cursor.par()->isSeparator(cursor.pos() - 2) ||
1747                                      cursor.par()->isNewline(cursor.pos() - 2) )
1748                                    ) {
1749                                         setCharFont(bview->buffer(),
1750                                                     cursor.par(),
1751                                                     cursor.pos() - 1,
1752                                                     current_font);
1753                                 } else if (contains(number_seperators, c) &&
1754                                            cursor.pos() >= 2 &&
1755                                            getFont(bview->buffer(),
1756                                                    cursor.par(),
1757                                                    cursor.pos()-2).number() == LyXFont::ON) {
1758                                         setCharFont(bview->buffer(),
1759                                                     cursor.par(),
1760                                                     cursor.pos() - 1,
1761                                                     current_font);
1762                                 }
1763                         }
1764                 }
1765         }
1766
1767
1768         /* First check, if there will be two blanks together or a blank at 
1769           the beginning of a paragraph. 
1770           I decided to handle blanks like normal characters, the main 
1771           difference are the special checks when calculating the row.fill
1772           (blank does not count at the end of a row) and the check here */ 
1773
1774         // The bug is triggered when we type in a description environment:
1775         // The current_font is not changed when we go from label to main text
1776         // and it should (along with realtmpfont) when we type the space.
1777         // CHECK There is a bug here! (Asger)
1778         
1779         LyXFont realtmpfont = real_current_font;
1780         LyXFont rawtmpfont = current_font;  /* store the current font.
1781                                      * This is because of the use
1782                                      * of cursor movements. The moving
1783                                      * cursor would refresh the 
1784                                      * current font */
1785
1786         // Get the font that is used to calculate the baselineskip
1787         Paragraph::size_type const lastpos = cursor.par()->size();
1788         LyXFont rawparfont =
1789                 cursor.par()->getFontSettings(bview->buffer()->params,
1790                                               lastpos - 1);
1791
1792         bool jumped_over_space = false;
1793    
1794         if (!freeSpacing && IsLineSeparatorChar(c)) {
1795                 if ((cursor.pos() > 0 
1796                      && cursor.par()->isLineSeparator(cursor.pos() - 1))
1797                     || (cursor.pos() > 0
1798                         && cursor.par()->isNewline(cursor.pos() - 1))
1799                     || (cursor.pos() == 0)) {
1800                         static bool sent_space_message = false;
1801                         if (!sent_space_message) {
1802                                 if (cursor.pos() == 0) 
1803                                         bview->owner()->message(_("You cannot insert a space at the beginning of a paragraph.  Please read the Tutorial."));
1804                                 else
1805                                         bview->owner()->message(_("You cannot type two spaces this way.  Please read the Tutorial."));
1806                                 sent_space_message = true;
1807                         }
1808                         charInserted();
1809                         return;
1810                 }
1811         } else if (IsNewlineChar(c)) {
1812                 if (cursor.par() == cursor.par()
1813                     && cursor.pos() <= beginningOfMainBody(bview->buffer(), cursor.par())) {
1814                         charInserted();
1815                         return;
1816                 }
1817                 /* No newline at first position 
1818                  * of a paragraph or behind labels. 
1819                  * TeX does not allow that. */
1820
1821                 if (cursor.pos() < cursor.par()->size() &&
1822                     cursor.par()->isLineSeparator(cursor.pos()))
1823                         // newline always after a blank!
1824                         cursorRight(bview);
1825                 cursor.row()->fill(-1);        // to force a new break
1826         }
1827    
1828         // the display inset stuff
1829         if (cursor.row()->par()->getChar(cursor.row()->pos()) == Paragraph::META_INSET
1830             && cursor.row()->par()->getInset(cursor.row()->pos())
1831             && (cursor.row()->par()->getInset(cursor.row()->pos())->display() ||
1832                 cursor.row()->par()->getInset(cursor.row()->pos())->needFullRow()))
1833                 cursor.row()->fill(-1); // to force a new break  
1834
1835         // get the cursor row fist
1836         Row * row = cursor.row();
1837         int y = cursor.y() - row->baseline();
1838         if (c != Paragraph::META_INSET) /* Here case LyXText::InsertInset 
1839                                             * already insertet the character */
1840                 cursor.par()->insertChar(cursor.pos(), c);
1841         setCharFont(bview->buffer(), cursor.par(), cursor.pos(), rawtmpfont);
1842
1843         if (!jumped_over_space) {
1844                 // refresh the positions
1845                 Row * tmprow = row;
1846                 while (tmprow->next() && tmprow->next()->par() == row->par()) {
1847                         tmprow = tmprow->next();
1848                         tmprow->pos(tmprow->pos() + 1);
1849                 }
1850         }
1851    
1852         // Is there a break one row above
1853         if ((cursor.par()->isLineSeparator(cursor.pos())
1854              || cursor.par()->isNewline(cursor.pos())
1855              || cursor.row()->fill() == -1)
1856             && row->previous() && row->previous()->par() == row->par()) {
1857                 Paragraph::size_type z = nextBreakPoint(bview,
1858                                                            row->previous(),
1859                                                            workWidth(bview));
1860                 if (z >= row->pos()) {
1861                         row->pos(z + 1);
1862                         
1863                         // set the dimensions of the row above
1864                         row->previous()->fill(fill(bview,
1865                                                    row->previous(),
1866                                                    workWidth(bview)));
1867
1868                         setHeightOfRow(bview, row->previous());
1869              
1870                         y -= row->previous()->height();
1871                         refresh_y = y;
1872                         refresh_row = row->previous();
1873                         status(bview, LyXText::NEED_MORE_REFRESH);
1874              
1875                         breakAgainOneRow(bview, row);
1876
1877                         current_font = rawtmpfont;
1878                         real_current_font = realtmpfont;
1879                         setCursor(bview, cursor.par(), cursor.pos() + 1,
1880                                   false, cursor.boundary());
1881                         // cursor MUST be in row now.
1882              
1883                         if (row->next() && row->next()->par() == row->par())
1884                                 need_break_row = row->next();
1885                         else
1886                                 need_break_row = 0;
1887              
1888                         // check, wether the last characters font has changed.
1889                         if (cursor.pos() && cursor.pos() == cursor.par()->size()
1890                             && rawparfont != rawtmpfont)
1891                                 redoHeightOfParagraph(bview, cursor);
1892                         
1893                         charInserted();
1894                         return;
1895                 }
1896         }
1897    
1898         // recalculate the fill of the row
1899         if (row->fill() >= 0)  /* needed because a newline
1900                               * will set fill to -1. Otherwise
1901                               * we would not get a rebreak! */
1902                 row->fill(fill(bview, row, workWidth(bview)));
1903         if (row->fill() < 0) {
1904                 refresh_y = y;
1905                 refresh_row = row; 
1906                 refresh_x = cursor.x();
1907                 refresh_pos = cursor.pos();
1908                 status(bview, LyXText::NEED_MORE_REFRESH);
1909                 breakAgainOneRow(bview, row); 
1910                 // will the cursor be in another row now?
1911                 if (rowLast(row) <= cursor.pos() + 1 && row->next()) {
1912                         if (row->next() && row->next()->par() == row->par())
1913                                 // this should always be true
1914                                 row = row->next();
1915                         breakAgainOneRow(bview, row);
1916                 }
1917                 current_font = rawtmpfont;
1918                 real_current_font = realtmpfont;
1919
1920                 setCursor(bview, cursor.par(), cursor.pos() + 1, false,
1921                           cursor.boundary());
1922                 if (isBoundary(bview->buffer(), cursor.par(), cursor.pos())
1923                     != cursor.boundary())
1924                         setCursor(bview, cursor.par(), cursor.pos(), false,
1925                           !cursor.boundary());
1926                 if (row->next() && row->next()->par() == row->par())
1927                         need_break_row = row->next();
1928                 else
1929                         need_break_row = 0;             
1930         } else {
1931                 refresh_y = y;
1932                 refresh_x = cursor.x();
1933                 refresh_row = row;
1934                 refresh_pos = cursor.pos();
1935                 
1936                 int const tmpheight = row->height();
1937                 setHeightOfRow(bview, row);
1938                 if (tmpheight == row->height())
1939                         status(bview, LyXText::NEED_VERY_LITTLE_REFRESH);
1940                 else
1941                         status(bview, LyXText::NEED_MORE_REFRESH);
1942             
1943                 current_font = rawtmpfont;
1944                 real_current_font = realtmpfont;
1945                 setCursor(bview, cursor.par(), cursor.pos() + 1, false,
1946                           cursor.boundary());
1947         }
1948
1949         // check, wether the last characters font has changed.
1950         if (cursor.pos() && cursor.pos() == cursor.par()->size()
1951             && rawparfont != rawtmpfont) {
1952                 redoHeightOfParagraph(bview, cursor);
1953         } else {
1954                 // now the special right address boxes
1955                 if (textclasslist.Style(bview->buffer()->params.textclass,
1956                                    cursor.par()->getLayout()).margintype
1957                     == MARGIN_RIGHT_ADDRESS_BOX) {
1958                         redoDrawingOfParagraph(bview, cursor); 
1959                 }
1960         }
1961
1962         charInserted();
1963 }
1964    
1965
1966 void LyXText::charInserted()
1967 {
1968         // Here we could call FinishUndo for every 20 characters inserted.
1969         // This is from my experience how emacs does it.
1970         static unsigned int counter;
1971         if (counter < 20) {
1972                 ++counter;
1973         } else {
1974                 finishUndo();
1975                 counter = 0;
1976         }
1977 }
1978
1979
1980 void LyXText::prepareToPrint(BufferView * bview,
1981                              Row * row, float & x,
1982                              float & fill_separator, 
1983                              float & fill_hfill,
1984                              float & fill_label_hfill,
1985                              bool bidi) const
1986 {
1987         float nlh;
1988         float ns;
1989         
1990         float w = row->fill();
1991         fill_hfill = 0;
1992         fill_label_hfill = 0;
1993         fill_separator = 0;
1994         fill_label_hfill = 0;
1995
1996         bool const is_rtl =
1997                 row->par()->isRightToLeftPar(bview->buffer()->params);
1998         if (is_rtl) {
1999                 x = (workWidth(bview) > 0)
2000                         ? rightMargin(bview->buffer(), row) : 0;
2001         } else
2002                 x = (workWidth(bview) > 0) ? leftMargin(bview, row) : 0;
2003         
2004         // is there a manual margin with a manual label
2005         if (textclasslist.Style(bview->buffer()->params.textclass,
2006                            row->par()->getLayout()).margintype == MARGIN_MANUAL
2007             && textclasslist.Style(bview->buffer()->params.textclass,
2008                               row->par()->getLayout()).labeltype == LABEL_MANUAL) {
2009                
2010                 /* one more since labels are left aligned */ 
2011                 nlh = numberOfLabelHfills(bview->buffer(), row) + 1;
2012                 if (nlh && !row->par()->getLabelWidthString().empty()) {
2013                         fill_label_hfill = labelFill(bview, row) / nlh;
2014                 }
2015         }
2016                 
2017         // are there any hfills in the row?
2018         float const nh = numberOfHfills(bview->buffer(), row);
2019
2020         if (nh)
2021           fill_hfill = w / nh;
2022         else  {
2023                 // is it block, flushleft or flushright? 
2024                 // set x how you need it
2025         int align;
2026         if (row->par()->params().align() == LYX_ALIGN_LAYOUT)
2027           align = textclasslist.Style(bview->buffer()->params.textclass, row->par()->getLayout()).align;
2028         else
2029           align = row->par()->params().align();
2030            
2031         // center displayed insets 
2032         Inset * inset;
2033            if (row->par()->getChar(row->pos()) == Paragraph::META_INSET
2034                && (inset=row->par()->getInset(row->pos()))
2035                && (inset->display())) // || (inset->scroll() < 0)))
2036              align = (inset->lyxCode() == Inset::MATHMACRO_CODE)
2037                      ? LYX_ALIGN_BLOCK : LYX_ALIGN_CENTER;
2038
2039            switch (align) {
2040             case LYX_ALIGN_BLOCK:
2041               ns = numberOfSeparators(bview->buffer(), row);
2042               if (ns && row->next() && row->next()->par() == row->par() &&
2043                   !(row->next()->par()->isNewline(row->next()->pos() - 1))
2044                   && !(row->next()->par()->getChar(row->next()->pos()) == Paragraph::META_INSET
2045                        && row->next()->par()->getInset(row->next()->pos())
2046                        && row->next()->par()->getInset(row->next()->pos())->display())
2047                   )
2048                 fill_separator = w / ns;
2049               else if (is_rtl)
2050                 x += w;
2051               break;
2052             case LYX_ALIGN_RIGHT:
2053               x += w;
2054               break;
2055             case LYX_ALIGN_CENTER:
2056               x += w / 2;
2057               break;
2058            }
2059         }
2060         if (!bidi)
2061                 return;
2062
2063         computeBidiTables(bview->buffer(), row);
2064         if (is_rtl) {
2065                 Paragraph::size_type main_body = 
2066                         beginningOfMainBody(bview->buffer(), row->par());
2067                 Paragraph::size_type last = rowLast(row);
2068
2069                 if (main_body > 0 &&
2070                     (main_body-1 > last || 
2071                      !row->par()->isLineSeparator(main_body-1))) {
2072                         LyXLayout const & layout =
2073                                 textclasslist.Style(bview->buffer()->params.textclass,
2074                                                     row->par()->getLayout());
2075                         x += lyxfont::width(layout.labelsep,
2076                                             getFont(bview->buffer(), row->par(), -2));
2077                         if (main_body-1 <= last)
2078                                 x += fill_label_hfill;
2079                 }
2080         }
2081 }
2082       
2083 /* important for the screen */
2084
2085
2086 /* the cursor set functions have a special mechanism. When they
2087 * realize, that you left an empty paragraph, they will delete it.
2088 * They also delete the corresponding row */
2089
2090 void LyXText::cursorRightOneWord(BufferView * bview) const
2091 {
2092         // treat floats, HFills and Insets as words
2093         LyXCursor tmpcursor = cursor;
2094         // CHECK See comment on top of text.C
2095
2096         if (tmpcursor.pos() == tmpcursor.par()->size()
2097             && tmpcursor.par()->next()) {
2098                         tmpcursor.par(tmpcursor.par()->next());
2099                         tmpcursor.pos(0);
2100         } else {
2101                 int steps = 0;
2102
2103                 // Skip through initial nonword stuff.
2104                 while (tmpcursor.pos() < tmpcursor.par()->size() &&
2105                        ! tmpcursor.par()->isWord(tmpcursor.pos())) {
2106                   //    printf("Current pos1 %d", tmpcursor.pos()) ;
2107                         tmpcursor.pos(tmpcursor.pos() + 1);
2108                         ++steps;
2109                 }
2110                 // Advance through word.
2111                 while (tmpcursor.pos() < tmpcursor.par()->size() &&
2112                         tmpcursor.par()->isWord( tmpcursor.pos())) {
2113                   //     printf("Current pos2 %d", tmpcursor.pos()) ;
2114                         tmpcursor.pos(tmpcursor.pos() + 1);
2115                         ++steps;
2116                 }
2117         }
2118         setCursor(bview, tmpcursor.par(), tmpcursor.pos());
2119 }
2120
2121
2122 void LyXText::cursorTab(BufferView * bview) const
2123 {
2124     LyXCursor tmpcursor = cursor;
2125     while (tmpcursor.pos() < tmpcursor.par()->size()
2126            && !tmpcursor.par()->isNewline(tmpcursor.pos()))
2127         tmpcursor.pos(tmpcursor.pos() + 1);
2128
2129     if (tmpcursor.pos() == tmpcursor.par()->size()){
2130         if (tmpcursor.par()->next()) {
2131             tmpcursor.par(tmpcursor.par()->next());
2132             tmpcursor.pos(0);
2133         }
2134     } else
2135         tmpcursor.pos(tmpcursor.pos() + 1);
2136     setCursor(bview, tmpcursor.par(), tmpcursor.pos());
2137 }
2138
2139
2140 /* -------> Skip initial whitespace at end of word and move cursor to *start*
2141             of prior word, not to end of next prior word. */
2142
2143 void LyXText::cursorLeftOneWord(BufferView * bview)  const
2144 {
2145         LyXCursor tmpcursor = cursor;
2146         cursorLeftOneWord(tmpcursor);
2147         setCursor(bview, tmpcursor.par(), tmpcursor.pos());
2148 }
2149
2150 void LyXText::cursorLeftOneWord(LyXCursor  & cur)  const
2151 {
2152         // treat HFills, floats and Insets as words
2153         cur = cursor;
2154         while (cur.pos() 
2155                && (cur.par()->isSeparator(cur.pos() - 1) 
2156                    || cur.par()->isKomma(cur.pos() - 1))
2157                && !(cur.par()->isHfill(cur.pos() - 1)
2158                     || cur.par()->isInset(cur.pos() - 1)))
2159                 cur.pos(cur.pos() - 1);
2160
2161         if (cur.pos()
2162             && (cur.par()->isInset(cur.pos() - 1)
2163                 || cur.par()->isHfill(cur.pos() - 1))) {
2164                 cur.pos(cur.pos() - 1);
2165         } else if (!cur.pos()) {
2166                 if (cur.par()->previous()){
2167                         cur.par(cur.par()->previous());
2168                         cur.pos(cur.par()->size());
2169                 }
2170         } else {                // Here, cur != 0 
2171                 while (cur.pos() > 0 &&
2172                        cur.par()->isWord(cur.pos()-1) )
2173                         cur.pos(cur.pos() - 1);
2174         }
2175 }
2176
2177 /* -------> Select current word. This depends on behaviour of
2178 CursorLeftOneWord(), so it is patched as well. */
2179 void LyXText::getWord(LyXCursor & from, LyXCursor & to, 
2180                       word_location const loc) const
2181 {
2182         // first put the cursor where we wana start to select the word
2183         from = cursor;
2184         switch(loc) {
2185         case WHOLE_WORD_STRICT:
2186                 if (cursor.pos() == 0 || cursor.pos() == cursor.par()->size()
2187                     || cursor.par()->isSeparator(cursor.pos())
2188                     || cursor.par()->isKomma(cursor.pos())
2189                     || cursor.par()->isSeparator(cursor.pos() -1)
2190                     || cursor.par()->isKomma(cursor.pos() -1)) {
2191                         to = from;
2192                         return;
2193                 }
2194                 // no break here, we go to the next
2195                 
2196         case WHOLE_WORD:
2197                 // Move cursor to the beginning, when not already there.
2198                 if (from.pos() && !from.par()->isSeparator(from.pos() - 1)
2199                     && !from.par()->isKomma(from.pos() - 1))
2200                         cursorLeftOneWord(from);
2201                 break;
2202         case PREVIOUS_WORD:
2203                 // always move the cursor to the beginning of previous word
2204                 cursorLeftOneWord(from);
2205                 break;
2206         case NEXT_WORD:
2207                 lyxerr << "LyXText::getWord: NEXT_WORD not implemented yet\n";
2208                 break;
2209         case PARTIAL_WORD:
2210                 break;
2211         }
2212         to = from;
2213         while (to.pos() < to.par()->size()
2214                && !to.par()->isSeparator(to.pos())
2215                && !to.par()->isKomma(to.pos())
2216                && !to.par()->isHfill(to.pos()) )
2217         {
2218                 to.pos(to.pos() + 1);
2219         }
2220 }
2221
2222
2223 void LyXText::selectWord(BufferView * bview, word_location const loc) 
2224 {
2225         LyXCursor from;
2226         LyXCursor to;
2227         getWord(from, to, loc);
2228         if (cursor != from)
2229                 setCursor(bview, from.par(), from.pos());
2230         if (to == from)
2231                 return;
2232         selection.cursor = cursor;
2233         setCursor(bview, to.par(), to.pos() );
2234         setSelection(bview);
2235 }
2236
2237
2238 /* -------> Select the word currently under the cursor when no
2239         selection is currently set */
2240 bool LyXText::selectWordWhenUnderCursor(BufferView * bview, 
2241                                         word_location const loc) 
2242 {
2243         if (!selection.set()) {
2244                 selectWord(bview, loc);
2245                 return selection.set();
2246         }
2247         return false;
2248 }
2249
2250
2251 // This function is only used by the spellchecker for NextWord().
2252 // It doesn't handle LYX_ACCENTs and probably never will.
2253 string const LyXText::selectNextWord(BufferView * bview,
2254                                      float & value) const
2255 {
2256         if (the_locking_inset) {
2257                 string str = the_locking_inset->selectNextWord(bview, value);
2258                 if (!str.empty()) {
2259                         value += float(cursor.y())/float(height);
2260                         return str;
2261                 }
2262 #warning Dekel please have a look on this one RTL? (Jug)
2263                 // we have to go on checking so move cusor to the right
2264                 if (cursor.pos() == cursor.par()->size()) {
2265                         if (!cursor.par()->next())
2266                                 return str;
2267                         cursor.par(cursor.par()->next());
2268                         cursor.pos(0);
2269                 } else
2270                         cursor.pos(cursor.pos() + 1);
2271         }
2272         Paragraph * tmppar = cursor.par();
2273         
2274         // If this is not the very first word, skip rest of
2275         // current word because we are probably in the middle
2276         // of a word if there is text here.
2277         if (cursor.pos() || cursor.par()->previous()) {
2278                 while (cursor.pos() < cursor.par()->size()
2279                        && cursor.par()->isLetter(cursor.pos()))
2280                         cursor.pos(cursor.pos() + 1);
2281         }
2282         
2283         // Now, skip until we have real text (will jump paragraphs)
2284         while ((cursor.par()->size() > cursor.pos()
2285                && (!cursor.par()->isLetter(cursor.pos())
2286 #ifndef NO_LATEX
2287                     || cursor.par()->getFont(bview->buffer()->params, cursor.pos())
2288                     .latex() == LyXFont::ON
2289 #endif
2290                         )
2291                && (!cursor.par()->isInset(cursor.pos()) ||
2292                    !cursor.par()->getInset(cursor.pos())->isTextInset()))
2293                || (cursor.par()->size() == cursor.pos()
2294                    && cursor.par()->next()))
2295         {
2296                 if (cursor.pos() == cursor.par()->size()) {
2297                         cursor.par(cursor.par()->next());
2298                         cursor.pos(0);
2299                 } else
2300                         cursor.pos(cursor.pos() + 1);
2301         }
2302
2303         // now check if we hit an inset so it has to be a inset containing text!
2304         if (cursor.pos() < cursor.par()->size() &&
2305                 cursor.par()->isInset(cursor.pos()))
2306         {
2307                 // lock the inset!
2308                 cursor.par()->getInset(cursor.pos())->edit(bview);
2309                 // now call us again to do the above trick
2310                 // but obviously we have to start from down below ;)
2311                 return bview->text->selectNextWord(bview, value);
2312         }               
2313   
2314         // Update the value if we changed paragraphs
2315         if (cursor.par() != tmppar){
2316                 setCursor(bview, cursor.par(), cursor.pos());
2317                 value = float(cursor.y())/float(height);
2318         }
2319
2320         // Start the selection from here
2321         selection.cursor = cursor;
2322         
2323         Inset * inset;
2324
2325         // and find the end of the word 
2326         // (optional hyphens are part of a word)
2327         while (cursor.pos() < cursor.par()->size()
2328                && (cursor.par()->isLetter(cursor.pos())) 
2329                // assignment is intentional here
2330                || ((inset = getInset())
2331                    && inset->lyxCode() == Inset::SPECIALCHAR_CODE
2332                    && static_cast<InsetSpecialChar *>(inset)->kind()
2333                         == InsetSpecialChar::HYPHENATION
2334                    ))
2335                 cursor.pos(cursor.pos() + 1);
2336
2337         // Finally, we copy the word to a string and return it
2338         string str;
2339         if (selection.cursor.pos() < cursor.pos()) {
2340                 Paragraph::size_type i;
2341                 for (i = selection.cursor.pos(); i < cursor.pos(); ++i) {
2342                         if (cursor.par()->getChar(i) != Paragraph::META_INSET)
2343                                 str += cursor.par()->getChar(i);
2344                 }
2345         }
2346         return str;
2347 }
2348
2349
2350 // This one is also only for the spellchecker
2351 void LyXText::selectSelectedWord(BufferView * bview)
2352 {
2353         if (the_locking_inset) {
2354                 the_locking_inset->selectSelectedWord(bview);
2355                 return;
2356         }
2357         // move cursor to the beginning
2358         setCursor(bview, selection.cursor.par(), selection.cursor.pos());
2359         
2360         // set the sel cursor
2361         selection.cursor = cursor;
2362         Inset * inset;
2363         
2364         // now find the end of the word
2365         while (cursor.pos() < cursor.par()->size()
2366                && (cursor.par()->isLetter(cursor.pos())
2367                    // assignment is intentional here
2368                    || ((inset = getInset())
2369                        && inset->lyxCode() == Inset::SPECIALCHAR_CODE
2370                        && static_cast<InsetSpecialChar *>(inset)->kind()
2371                                 == InsetSpecialChar::HYPHENATION
2372                        )))
2373                 cursor.pos(cursor.pos() + 1);
2374         
2375         setCursor(bview, cursor.par(), cursor.pos());
2376         
2377         // finally set the selection
2378         setSelection(bview);
2379 }
2380
2381
2382 /* -------> Delete from cursor up to the end of the current or next word. */
2383 void LyXText::deleteWordForward(BufferView * bview)
2384 {
2385         if (!cursor.par()->size())
2386                 cursorRight(bview);
2387         else {
2388                 LyXCursor tmpcursor = cursor;
2389                 tmpcursor.row(0); // ??
2390                 selection.set(true); // to avoid deletion
2391                 cursorRightOneWord(bview);
2392                 setCursor(bview, tmpcursor, tmpcursor.par(), tmpcursor.pos());
2393                 selection.cursor = cursor;
2394                 cursor = tmpcursor;
2395                 setSelection(bview); 
2396                 
2397                 /* -----> Great, CutSelection() gets rid of multiple spaces. */
2398                 cutSelection(bview);
2399         }
2400 }
2401
2402
2403 /* -------> Delete from cursor to start of current or prior word. */
2404 void LyXText::deleteWordBackward(BufferView * bview)
2405 {
2406        if (!cursor.par()->size())
2407                cursorLeft(bview);
2408        else {
2409                LyXCursor tmpcursor = cursor;
2410                tmpcursor.row(0); // ??
2411                selection.set(true); // to avoid deletion
2412                cursorLeftOneWord(bview);
2413                setCursor(bview, tmpcursor, tmpcursor.par(), tmpcursor.pos());
2414                selection.cursor = cursor;
2415                cursor = tmpcursor;
2416                setSelection(bview);
2417                cutSelection(bview);
2418        }
2419 }
2420
2421
2422 /* -------> Kill to end of line. */
2423 void LyXText::deleteLineForward(BufferView * bview)
2424 {
2425         if (!cursor.par()->size())
2426                 // Paragraph is empty, so we just go to the right
2427                 cursorRight(bview);
2428         else {
2429                 LyXCursor tmpcursor = cursor;
2430                 // We can't store the row over a regular setCursor
2431                 // so we set it to 0 and reset it afterwards.
2432                 tmpcursor.row(0); // ??
2433                 selection.set(true); // to avoid deletion
2434                 cursorEnd(bview);
2435                 setCursor(bview, tmpcursor, tmpcursor.par(), tmpcursor.pos());
2436                 selection.cursor = cursor;
2437                 cursor = tmpcursor;
2438                 setSelection(bview);
2439                 // What is this test for ??? (JMarc)
2440                 if (!selection.set()) {
2441                         deleteWordForward(bview);
2442                 } else {
2443                         cutSelection(bview);
2444                 }
2445         }
2446 }
2447
2448
2449 // Change the case of a word at cursor position. 
2450 // This function directly manipulates Paragraph::text because there
2451 // is no Paragraph::SetChar currently. I did what I could to ensure
2452 // that it is correct. I guess part of it should be moved to
2453 // Paragraph, but it will have to change for 1.1 anyway. At least
2454 // it does not access outside of the allocated array as the older
2455 // version did. (JMarc) 
2456 void LyXText::changeCase(BufferView * bview, LyXText::TextCase action)
2457 {
2458         LyXCursor from;
2459         LyXCursor to;
2460
2461         if (selection.set()) {
2462                 from = selection.start;
2463                 to = selection.end;
2464         } else {
2465                 getWord(from, to, PARTIAL_WORD);
2466                 setCursor(bview, to.par(), to.pos() + 1);
2467         }
2468
2469         changeRegionCase(bview, from, to, action);
2470 }
2471
2472
2473 void LyXText::changeRegionCase(BufferView * bview,
2474                                LyXCursor const & from,
2475                                LyXCursor const & to,
2476                                LyXText::TextCase action)
2477 {
2478         lyx::Assert(from <= to);
2479         
2480         setUndo(bview, Undo::FINISH,
2481                 from.par(), to.par()->next());
2482
2483         Paragraph::size_type pos = from.pos();
2484         Paragraph * par = from.par();
2485
2486         while (par && (pos != to.pos() || par != to.par())) {
2487                 unsigned char c = par->getChar(pos);
2488                 if (!IsInsetChar(c) && !IsHfillChar(c)) {
2489                         switch (action) {
2490                         case text_lowercase:
2491                                 c = tolower(c);
2492                                 break;
2493                         case text_capitalization:
2494                                 c = toupper(c);
2495                                 action = text_lowercase;
2496                                 break;
2497                         case text_uppercase:
2498                                 c = toupper(c);
2499                                 break;
2500                         }
2501                 }
2502                 par->setChar(pos, c);
2503                 checkParagraph(bview, par, pos);
2504
2505                 ++pos;
2506                 if (pos == par->size()) {
2507                         par = par->next();
2508                         pos = 0;
2509                 }
2510         }
2511         if (to.row() != from.row()) {
2512                 refresh_y = from.y() - from.row()->baseline();
2513                 refresh_row = from.row();
2514                 status(bview, LyXText::NEED_MORE_REFRESH);
2515         }
2516 }
2517
2518
2519 void LyXText::transposeChars(BufferView & bview)
2520 {
2521         Paragraph * tmppar = cursor.par();
2522
2523         setUndo(&bview, Undo::FINISH,
2524                 tmppar, tmppar->next()); 
2525
2526         Paragraph::size_type tmppos = cursor.pos();
2527
2528         // First decide if it is possible to transpose at all
2529
2530         // We are at the beginning of a paragraph.
2531         if (tmppos == 0) return;
2532
2533         // We are at the end of a paragraph.
2534         if (tmppos == tmppar->size() - 1) return;
2535
2536         unsigned char c1 = tmppar->getChar(tmppos);
2537         unsigned char c2 = tmppar->getChar(tmppos - 1);
2538
2539         if (c1 != Paragraph::META_INSET
2540             && c2 != Paragraph::META_INSET) {
2541                 tmppar->setChar(tmppos, c2);
2542                 tmppar->setChar(tmppos - 1, c1);
2543         }
2544         // We should have an implementation that handles insets
2545         // as well, but that will have to come later. (Lgb)
2546         checkParagraph(const_cast<BufferView*>(&bview), tmppar, tmppos);
2547 }
2548
2549
2550 void LyXText::Delete(BufferView * bview)
2551 {
2552         // this is a very easy implementation
2553
2554         LyXCursor old_cursor = cursor;
2555         int const old_cur_par_id = old_cursor.par()->id();
2556         int const old_cur_par_prev_id = old_cursor.par()->previous() ?
2557                 old_cursor.par()->previous()->id() : 0;
2558         
2559         // just move to the right
2560         cursorRight(bview);
2561
2562         // CHECK Look at the comment here.
2563         // This check is not very good...
2564         // The cursorRightIntern calls DeleteEmptyParagrapgMechanism
2565         // and that can very well delete the par or par->previous in
2566         // old_cursor. Will a solution where we compare paragraph id's
2567         //work better?
2568         if ((cursor.par()->previous() ? cursor.par()->previous()->id() : 0)
2569             == old_cur_par_prev_id
2570             && cursor.par()->id() != old_cur_par_id)
2571                 return; // delete-empty-paragraph-mechanism has done it
2572
2573         // if you had success make a backspace
2574         if (old_cursor.par() != cursor.par() || old_cursor.pos() != cursor.pos()) {
2575                 LyXCursor tmpcursor = cursor;
2576                 cursor = old_cursor; // to make sure undo gets the right cursor position
2577                 setUndo(bview, Undo::DELETE,
2578                         cursor.par(), cursor.par()->next()); 
2579                 cursor = tmpcursor;
2580                 backspace(bview);
2581         }
2582 }
2583
2584
2585 void LyXText::backspace(BufferView * bview)
2586 {
2587         // Get the font that is used to calculate the baselineskip
2588         Paragraph::size_type lastpos = cursor.par()->size();
2589         LyXFont rawparfont =
2590                 cursor.par()->getFontSettings(bview->buffer()->params,
2591                                               lastpos - 1);
2592
2593         if (cursor.pos() == 0) {
2594                 // The cursor is at the beginning of a paragraph,
2595                 // so the the backspace will collapse two paragraphs into one.
2596                 
2597                 // we may paste some paragraphs
2598       
2599                 // is it an empty paragraph?
2600       
2601                 if ((lastpos == 0
2602                      || (lastpos == 1 && cursor.par()->isSeparator(0)))) {
2603                         // This is an empty paragraph and we delete it just by moving the cursor one step
2604                         // left and let the DeleteEmptyParagraphMechanism handle the actual deletion
2605                         // of the paragraph.
2606                         
2607                         if (cursor.par()->previous()) {
2608                                 Paragraph * tmppar = cursor.par()->previous();
2609                                 if (cursor.par()->getLayout() == tmppar->getLayout()
2610                                     && cursor.par()->getAlign() == tmppar->getAlign()) {
2611                                         // Inherit bottom DTD from the paragraph below.
2612                                         // (the one we are deleting)
2613                                         tmppar->params().lineBottom(cursor.par()->params().lineBottom());
2614                                         tmppar->params().spaceBottom(cursor.par()->params().spaceBottom());
2615                                         tmppar->params().pagebreakBottom(cursor.par()->params().pagebreakBottom());
2616                                 }
2617                                 
2618                                 cursorLeft(bview);
2619                      
2620                                 // the layout things can change the height of a row !
2621                                 int const tmpheight = cursor.row()->height();
2622                                 setHeightOfRow(bview, cursor.row());
2623                                 if (cursor.row()->height() != tmpheight) {
2624                                         refresh_y = cursor.y() - cursor.row()->baseline();
2625                                         refresh_row = cursor.row();
2626                                         status(bview, LyXText::NEED_MORE_REFRESH);
2627                                 }
2628                                 return;
2629                         }
2630                 }
2631
2632                 if (cursor.par()->previous()) {
2633                         setUndo(bview, Undo::DELETE,
2634                                 cursor.par()->previous(),
2635                                 cursor.par()->next());
2636                 }
2637                 
2638                 Paragraph * tmppar = cursor.par();
2639                 Row * tmprow = cursor.row();
2640
2641                 // We used to do cursorLeftIntern() here, but it is
2642                 // not a good idea since it triggers the auto-delete
2643                 // mechanism. So we do a cursorLeftIntern()-lite,
2644                 // without the dreaded mechanism. (JMarc)
2645                 if (cursor.par()->previous()) { 
2646                         // steps into the above paragraph.
2647                         setCursorIntern(bview, cursor.par()->previous(),
2648                                         cursor.par()->previous()->size(),
2649                                         false);
2650                 }
2651
2652                 /* Pasting is not allowed, if the paragraphs have different
2653                    layout. I think it is a real bug of all other
2654                    word processors to allow it. It confuses the user.
2655                    Even so with a footnote paragraph and a non-footnote
2656                    paragraph. I will not allow pasting in this case, 
2657                    because the user would be confused if the footnote behaves 
2658                    different wether it is open or closed.
2659                   
2660                    Correction: Pasting is always allowed with standard-layout
2661                 */
2662                 if (cursor.par() != tmppar
2663                     && (cursor.par()->getLayout() == tmppar->getLayout()
2664                         || tmppar->getLayout() == 0 /*standard*/)
2665                     && cursor.par()->getAlign() == tmppar->getAlign()) {
2666
2667                         removeParagraph(tmprow);
2668                         removeRow(tmprow);
2669                         cursor.par()->pasteParagraph(bview->buffer()->params);
2670                         
2671                         if (!cursor.pos() || !cursor.par()->isSeparator(cursor.pos() - 1))
2672                                 ; //cursor.par()->insertChar(cursor.pos(), ' ');
2673                         // strangely enough it seems that commenting out the line above removes
2674                         // most or all of the segfaults. I will however also try to move the
2675                         // two Remove... lines in front of the PasteParagraph too.
2676                         else
2677                                 if (cursor.pos())
2678                                         cursor.pos(cursor.pos() - 1);
2679                         
2680                         status(bview, LyXText::NEED_MORE_REFRESH);
2681                         refresh_row = cursor.row();
2682                         refresh_y = cursor.y() - cursor.row()->baseline();
2683                         
2684                         // remove the lost paragraph
2685                         // This one is not safe, since the paragraph that the tmprow and the
2686                         // following rows belong to has been deleted by the PasteParagraph
2687                         // above. The question is... could this be moved in front of the
2688                         // PasteParagraph?
2689                         //RemoveParagraph(tmprow);
2690                         //RemoveRow(tmprow);  
2691                         
2692                         // This rebuilds the rows.
2693                         appendParagraph(bview, cursor.row());
2694                         updateCounters(bview, cursor.row());
2695                         
2696                         // the row may have changed, block, hfills etc.
2697                         setCursor(bview, cursor.par(), cursor.pos(), false);
2698                 }
2699         } else {
2700                 /* this is the code for a normal backspace, not pasting
2701                  * any paragraphs */ 
2702                 setUndo(bview, Undo::DELETE,
2703                         cursor.par(), cursor.par()->next()); 
2704                 // We used to do cursorLeftIntern() here, but it is
2705                 // not a good idea since it triggers the auto-delete
2706                 // mechanism. So we do a cursorLeftIntern()-lite,
2707                 // without the dreaded mechanism. (JMarc)
2708                 setCursorIntern(bview, cursor.par(), cursor.pos()- 1,
2709                                 false, cursor.boundary());
2710                 
2711                 // some insets are undeletable here
2712                 if (cursor.par()->getChar(cursor.pos()) == Paragraph::META_INSET) {
2713                         if (!cursor.par()->getInset(cursor.pos())->deletable())
2714                                 return; 
2715                         // force complete redo when erasing display insets
2716                         // this is a cruel method but safe..... Matthias 
2717                         if (cursor.par()->getInset(cursor.pos())->display() ||
2718                             cursor.par()->getInset(cursor.pos())->needFullRow()) {
2719                                 cursor.par()->erase(cursor.pos());
2720                                 redoParagraph(bview);
2721                                 return;
2722                         }
2723                 }
2724                 
2725                 Row * row = cursor.row();
2726                 int y = cursor.y() - row->baseline();
2727                 Paragraph::size_type z;
2728                 /* remember that a space at the end of a row doesnt count
2729                  * when calculating the fill */ 
2730                 if (cursor.pos() < rowLast(row) ||
2731                     !cursor.par()->isLineSeparator(cursor.pos())) {
2732                         row->fill(row->fill() + singleWidth(bview,
2733                                                             cursor.par(),
2734                                                             cursor.pos()));
2735                 }
2736                 
2737                 /* some special code when deleting a newline. This is similar
2738                  * to the behavior when pasting paragraphs */ 
2739                 if (cursor.pos() && cursor.par()->isNewline(cursor.pos())) {
2740                         cursor.par()->erase(cursor.pos());
2741                         // refresh the positions
2742                         Row * tmprow = row;
2743                         while (tmprow->next() && tmprow->next()->par() == row->par()) {
2744                                 tmprow = tmprow->next();
2745                                 tmprow->pos(tmprow->pos() - 1);
2746                         }
2747                         if (cursor.par()->isLineSeparator(cursor.pos() - 1))
2748                                 cursor.pos(cursor.pos() - 1);
2749
2750                         if (cursor.pos() < cursor.par()->size()
2751                             && !cursor.par()->isSeparator(cursor.pos())) {
2752                                 cursor.par()->insertChar(cursor.pos(), ' ');
2753                                 setCharFont(bview->buffer(), cursor.par(), 
2754                                             cursor.pos(), current_font);
2755                                 // refresh the positions
2756                                 tmprow = row;
2757                                 while (tmprow->next() && tmprow->next()->par() == row->par()) {
2758                                         tmprow = tmprow->next();
2759                                         tmprow->pos(tmprow->pos() + 1);
2760                                 }
2761                         }
2762                 } else {
2763                         cursor.par()->erase(cursor.pos());
2764                         
2765                         // refresh the positions
2766                         Row * tmprow = row;
2767                         while (tmprow->next()
2768                                && tmprow->next()->par() == row->par()) {
2769                                 tmprow = tmprow->next();
2770                                 tmprow->pos(tmprow->pos() - 1);
2771                         }
2772
2773                         // delete newlines at the beginning of paragraphs
2774                         while (cursor.par()->size() &&
2775                                cursor.par()->isNewline(cursor.pos()) &&
2776                                cursor.pos() == beginningOfMainBody(bview->buffer(),
2777                                                                    cursor.par())) {
2778                                 cursor.par()->erase(cursor.pos());
2779                                 // refresh the positions
2780                                 tmprow = row;
2781                                 while (tmprow->next() && 
2782                                        tmprow->next()->par() == row->par()) {
2783                                         tmprow = tmprow->next();
2784                                         tmprow->pos(tmprow->pos() - 1);
2785                                 }
2786                         }
2787                 }
2788                 
2789                 // is there a break one row above
2790                 if (row->previous() && row->previous()->par() == row->par()) {
2791                         z = nextBreakPoint(bview, row->previous(),
2792                                            workWidth(bview));
2793                         if (z >= row->pos()) {
2794                                 row->pos(z + 1);
2795                                 
2796                                 Row * tmprow = row->previous();
2797                                 
2798                                 // maybe the current row is now empty
2799                                 if (row->pos() >= row->par()->size()) {
2800                                         // remove it
2801                                         removeRow(row);
2802                                         need_break_row = 0;
2803                                 } else {
2804                                         breakAgainOneRow(bview, row);
2805                                         if (row->next() && row->next()->par() == row->par())
2806                                                 need_break_row = row->next();
2807                                         else
2808                                                 need_break_row = 0;
2809                                 }
2810                                 
2811                                 // set the dimensions of the row above
2812                                 y -= tmprow->height();
2813                                 tmprow->fill(fill(bview, tmprow,
2814                                                   workWidth(bview)));
2815                                 setHeightOfRow(bview, tmprow);
2816                                 
2817                                 refresh_y = y;
2818                                 refresh_row = tmprow;
2819                                 status(bview, LyXText::NEED_MORE_REFRESH);
2820                                 setCursor(bview, cursor.par(), cursor.pos(),
2821                                           false, cursor.boundary());
2822                                 //current_font = rawtmpfont;
2823                                 //real_current_font = realtmpfont;
2824                                 // check, whether the last character's font has changed.
2825                                 if (rawparfont !=
2826                                     cursor.par()->getFontSettings(bview->buffer()->params,
2827                                                                   cursor.par()->size() - 1))
2828                                         redoHeightOfParagraph(bview, cursor);
2829                                 return;
2830                         }
2831                 }
2832                 
2833                 // break the cursor row again
2834                 if (row->next() && row->next()->par() == row->par() &&
2835                     (rowLast(row) == row->par()->size() - 1 ||
2836                      nextBreakPoint(bview, row, workWidth(bview)) != rowLast(row))) {
2837                         
2838                         /* it can happen that a paragraph loses one row
2839                          * without a real breakup. This is when a word
2840                          * is to long to be broken. Well, I don t care this 
2841                          * hack ;-) */
2842                         if (rowLast(row) == row->par()->size() - 1)
2843                                 removeRow(row->next());
2844                         
2845                         refresh_y = y;
2846                         refresh_row = row;
2847                         status(bview, LyXText::NEED_MORE_REFRESH);
2848                         
2849                         breakAgainOneRow(bview, row);
2850                         // will the cursor be in another row now?
2851                         if (row->next() && row->next()->par() == row->par() &&
2852                             rowLast(row) <= cursor.pos()) {
2853                                 row = row->next();
2854                                 breakAgainOneRow(bview, row);
2855                         }
2856
2857                         setCursor(bview, cursor.par(), cursor.pos(), false, cursor.boundary());
2858
2859                         if (row->next() && row->next()->par() == row->par())
2860                                 need_break_row = row->next();
2861                         else
2862                                 need_break_row = 0;
2863                 } else  {
2864                         // set the dimensions of the row
2865                         row->fill(fill(bview, row, workWidth(bview)));
2866                         int const tmpheight = row->height();
2867                         setHeightOfRow(bview, row);
2868                         if (tmpheight == row->height())
2869                                 status(bview, LyXText::NEED_VERY_LITTLE_REFRESH);
2870                         else
2871                                 status(bview, LyXText::NEED_MORE_REFRESH);
2872                         refresh_y = y;
2873                         refresh_row = row;
2874                         setCursor(bview, cursor.par(), cursor.pos(), false, cursor.boundary());
2875                 }
2876         }
2877
2878         // current_font = rawtmpfont;
2879         // real_current_font = realtmpfont;
2880
2881         if (isBoundary(bview->buffer(), cursor.par(), cursor.pos())
2882             != cursor.boundary())
2883                 setCursor(bview, cursor.par(), cursor.pos(), false,
2884                           !cursor.boundary());
2885
2886         lastpos = cursor.par()->size();
2887         if (cursor.pos() == lastpos)
2888                 setCurrentFont(bview);
2889         
2890         // check, whether the last characters font has changed.
2891         if (rawparfont != 
2892             cursor.par()->getFontSettings(bview->buffer()->params, lastpos - 1)) {
2893                 redoHeightOfParagraph(bview, cursor);
2894         } else {
2895                 // now the special right address boxes
2896                 if (textclasslist.Style(bview->buffer()->params.textclass,
2897                                         cursor.par()->getLayout()).margintype == MARGIN_RIGHT_ADDRESS_BOX) {
2898                         redoDrawingOfParagraph(bview, cursor); 
2899                 }
2900         }
2901 }
2902
2903
2904 void LyXText::getVisibleRow(BufferView * bview, int y_offset, int x_offset,
2905                             Row * row_ptr, int y, bool cleared)
2906 {
2907         // returns a printed row
2908         Painter & pain = bview->painter();
2909         
2910         bool const is_rtl =
2911                 row_ptr->par()->isRightToLeftPar(bview->buffer()->params);
2912         
2913         Paragraph::size_type const last = rowLastPrintable(row_ptr);
2914
2915         Paragraph::size_type vpos;
2916         Paragraph::size_type pos;
2917
2918         float tmpx;
2919
2920         LyXFont font(LyXFont::ALL_SANE);
2921         int maxdesc;
2922         if (row_ptr->height() <= 0) {
2923                 lyxerr << "LYX_ERROR: row.height: "
2924                        << row_ptr->height() << endl;
2925                 return;
2926         }
2927
2928         float x;
2929         float fill_separator;
2930         float fill_hfill;
2931         float fill_label_hfill;
2932         prepareToPrint(bview, row_ptr, x, fill_separator,
2933                        fill_hfill, fill_label_hfill);
2934         
2935         if (inset_owner && (x < 0))
2936                 x = 0;
2937         x += x_offset;
2938         
2939         // clear the area where we want to paint/print
2940         int const ww = bview->workWidth();
2941
2942         bool clear_area = true;
2943         Inset * inset = 0;
2944
2945         if (!bview->screen()->forceClear() && last == row_ptr->pos()
2946             && row_ptr->par()->getChar(row_ptr->pos()) == Paragraph::META_INSET
2947             && (inset = row_ptr->par()->getInset(row_ptr->pos()))) {
2948                 clear_area = inset->doClearArea();
2949         }
2950         // we don't need to clear it's already done!!!
2951         if (cleared) {
2952                 clear_area = true;
2953         } else if (clear_area) {
2954 #ifdef WITH_WARNINGS
2955 #warning Should be fixed with a lyxinset::clear_width(bv, font) function! (Jug)
2956 #warning Should we not fix this in the Painter, please have a look Lars! (Jug)
2957 #endif
2958                 int const y = y_offset < 0 ? 0 : y_offset;
2959                 int const h = y_offset < 0 ?
2960                         row_ptr->height() + y_offset : row_ptr->height();
2961                 int const w = inset_owner ?
2962                         inset_owner->width(bview, font) - 2 : ww;
2963                 int const x = x_offset;
2964                 pain.fillRectangle(x, y, w, h, backgroundColor());
2965         } else if (inset != 0) {
2966                 int h = row_ptr->baseline() - inset->ascent(bview, font);
2967                 // first clear the whole row above the inset!
2968                 if (h > 0) {
2969 #if 0
2970                         int const w = (inset_owner ?
2971                                  inset_owner->width(bview, font) : ww);
2972 #endif
2973                         pain.fillRectangle(x_offset, y_offset, ww, h,
2974                                            backgroundColor());
2975                 }
2976                 h += inset->ascent(bview, font) + inset->descent(bview, font);
2977                 // clear the space below the inset!
2978                 if ((row_ptr->height() - h) > 0) {
2979 #if 0
2980                         int const w = (inset_owner ?
2981                                  inset_owner->width(bview, font) : ww);
2982 #endif
2983                         pain.fillRectangle(x_offset, y_offset + h,
2984                                            ww, row_ptr->height() - h,
2985                                            backgroundColor());
2986                 }
2987                 // clear the space behind the inset, if needed
2988                 if (!inset_owner && !inset->display() && !inset->needFullRow())
2989                 {
2990                         int const w = inset->width(bview, font) + int(x);
2991                         pain.fillRectangle(w, y_offset, 
2992                                            ww - w, row_ptr->height(),
2993                                            backgroundColor());
2994                 }
2995         }
2996
2997         if (selection.set()) {
2998                 int const w = (inset_owner ?
2999                                inset_owner->width(bview, font) : ww);
3000                 // selection code
3001                 if (bidi_same_direction) {
3002                         if (selection.start.row() == row_ptr &&
3003                             selection.end.row() == row_ptr) {
3004                                 if (selection.start.x() < selection.end.x())
3005                                         pain.fillRectangle(x_offset + selection.start.x(),
3006                                                            y_offset,
3007                                                            selection.end.x() - selection.start.x(),
3008                                                            row_ptr->height(),
3009                                                            LColor::selection);
3010                                 else
3011                                         pain.fillRectangle(x_offset + selection.end.x(),
3012                                                            y_offset,
3013                                                            selection.start.x() - selection.end.x(),
3014                                                            row_ptr->height(),
3015                                                            LColor::selection);
3016                         } else if (selection.start.row() == row_ptr) {
3017                                 if (is_rtl)
3018                                         pain.fillRectangle(x_offset, y_offset,
3019                                                            selection.start.x(),
3020                                                            row_ptr->height(),
3021                                                            LColor::selection);
3022                                 else
3023                                         pain.fillRectangle(x_offset + selection.start.x(),
3024                                                            y_offset,
3025                                                            w - selection.start.x(),
3026                                                            row_ptr->height(),
3027                                                            LColor::selection);
3028                         } else if (selection.end.row() == row_ptr) {
3029                                 if (is_rtl)
3030                                         pain.fillRectangle(x_offset + selection.end.x(),
3031                                                            y_offset,
3032                                                            w - selection.end.x(),
3033                                                            row_ptr->height(),
3034                                                            LColor::selection);
3035                                 else
3036                                         pain.fillRectangle(x_offset, y_offset,
3037                                                            selection.end.x(),
3038                                                            row_ptr->height(),
3039                                                            LColor::selection);
3040                         } else if (y > selection.start.y()
3041                                    && y < selection.end.y()) {
3042                                 pain.fillRectangle(x_offset, y_offset, w,
3043                                                    row_ptr->height(),
3044                                                    LColor::selection);
3045                         }
3046                 } else if (selection.start.row() != row_ptr &&
3047                             selection.end.row() != row_ptr &&
3048                             y > selection.start.y()
3049                             && y < selection.end.y()) {
3050                         pain.fillRectangle(x_offset, y_offset, w,
3051                                            row_ptr->height(),
3052                                            LColor::selection);
3053                 } else if (selection.start.row() == row_ptr ||
3054                            selection.end.row() == row_ptr) {
3055                         float tmpx = x;
3056                         if ((selection.start.row() != row_ptr && !is_rtl) ||
3057                              (selection.end.row() != row_ptr && is_rtl))
3058                                 pain.fillRectangle(x_offset, y_offset,
3059                                                    int(tmpx),
3060                                                    row_ptr->height(),
3061                                                    LColor::selection);
3062                         Paragraph::size_type main_body =
3063                                 beginningOfMainBody(bview->buffer(),
3064                                                     row_ptr->par());
3065                         
3066                         for (vpos = row_ptr->pos(); vpos <= last; ++vpos)  {
3067                                 pos = vis2log(vpos);
3068                                 float const old_tmpx = tmpx;
3069                                 if (main_body > 0 && pos == main_body-1) {
3070                                         tmpx += fill_label_hfill +
3071                                                 lyxfont::width(textclasslist.Style(bview->buffer()->params.textclass,
3072                                                                                    row_ptr->par()->getLayout()).labelsep,
3073                                                                getFont(bview->buffer(),row_ptr->par(), -2));
3074                                         if (row_ptr->par()->isLineSeparator(main_body-1))
3075                                                 tmpx -= singleWidth(bview, row_ptr->par(), main_body-1);
3076                                 }
3077                                 if (hfillExpansion(bview->buffer(), row_ptr, pos)) {
3078                                         tmpx += singleWidth(bview, row_ptr->par(), pos);
3079                                         if (pos >= main_body)
3080                                                 tmpx += fill_hfill;
3081                                         else 
3082                                                 tmpx += fill_label_hfill;
3083                                 }
3084                                 else if (row_ptr->par()->isSeparator(pos)) {
3085                                         tmpx += singleWidth(bview, row_ptr->par(), pos);
3086                                         if (pos >= main_body)
3087                                                 tmpx += fill_separator;
3088                                 } else
3089                                         tmpx += singleWidth(bview, row_ptr->par(), pos);
3090                                 
3091                                 if ((selection.start.row() != row_ptr ||
3092                                       selection.start.pos() <= pos) &&
3093                                      (selection.end.row() != row_ptr ||
3094                                       pos < selection.end.pos()) )
3095                                         // Here we do not use x_offset as x_offset was
3096                                         // added to x.
3097                                         pain.fillRectangle(int(old_tmpx),
3098                                                            y_offset,
3099                                                            int(tmpx - old_tmpx + 1),
3100                                                            row_ptr->height(),
3101                                                            LColor::selection);
3102                         }
3103
3104                         if ((selection.start.row() != row_ptr && is_rtl) ||
3105                              (selection.end.row() != row_ptr && !is_rtl) )
3106                                 pain.fillRectangle(x_offset + int(tmpx),
3107                                                    y_offset,
3108                                                    int(ww - tmpx),
3109                                                    row_ptr->height(),
3110                                                    LColor::selection);
3111                 }
3112         }
3113
3114         int box_x = 0;
3115
3116         // Draw appendix lines
3117         Paragraph * firstpar = row_ptr->par();
3118
3119         if (firstpar->params().appendix()) {
3120                 pain.line(1, y_offset,
3121                           1, y_offset + row_ptr->height(),
3122                           LColor::appendixline);
3123                 pain.line(ww - 2, y_offset,
3124                           ww - 2, y_offset + row_ptr->height(),
3125                           LColor::appendixline);
3126         }
3127
3128         // Draw depth lines
3129         Paragraph::depth_type const depth = firstpar->getDepth();
3130         if (depth > 0) {
3131                 Paragraph::depth_type next_depth = 0;
3132                 Paragraph::depth_type prev_depth = 0;
3133                 if (row_ptr->next())
3134                                 next_depth = row_ptr->next()->par()->getDepth();
3135                 if (row_ptr->previous())
3136                                 prev_depth = row_ptr->previous()->par()->getDepth();
3137
3138                 for (Paragraph::depth_type i = 1; i <= depth; ++i) {
3139                         int const line_x = (LYX_PAPER_MARGIN / 5) *
3140                                 i + box_x + x_offset;
3141                         pain.line(line_x, y_offset, line_x,
3142                                   y_offset + row_ptr->height() - 1 - (i - next_depth - 1) * 3,
3143                                   LColor::depthbar);
3144                 
3145                         if (i > prev_depth)
3146                                 pain.fillRectangle(line_x, y_offset, LYX_PAPER_MARGIN / 5, 2,
3147                                                    LColor::depthbar);
3148                         if (i > next_depth)
3149                                 pain.fillRectangle(line_x,
3150                                                    y_offset + row_ptr->height() - 2 - (i - next_depth - 1) * 3,
3151                                                    LYX_PAPER_MARGIN / 5, 2,
3152                                                    LColor::depthbar);
3153                 }
3154         }
3155
3156         
3157         LyXLayout const & layout =
3158                 textclasslist.Style(bview->buffer()->params.textclass,
3159                                     row_ptr->par()->getLayout());
3160
3161         int y_top = 0;
3162         int y_bottom = row_ptr->height();
3163         
3164         // is it a first row?
3165         if (!row_ptr->pos() && (row_ptr->par() == firstpar)) {
3166                 
3167                 // start of appendix?
3168                 if (row_ptr->par()->params().startOfAppendix()) {
3169                         pain.line(1, y_offset,
3170                                   ww - 2, y_offset,
3171                                   LColor::appendixline);
3172                 }
3173                 
3174                 // think about the margins
3175                 if (!row_ptr->previous() && bv_owner)
3176                         y_top += LYX_PAPER_MARGIN;
3177                 
3178                 // draw a top pagebreak
3179                 if (row_ptr->par()->params().pagebreakTop()) {
3180                         LyXFont pb_font;
3181                         pb_font.setColor(LColor::pagebreak).decSize();
3182                         int w = 0;
3183                         int a = 0;
3184                         int d = 0;
3185                         pain.line(0, y_offset + y_top + 2*defaultHeight(),
3186                                   ww, 
3187                                   y_offset + y_top + 2 * defaultHeight(),
3188                                   LColor::pagebreak, 
3189                                   Painter::line_onoffdash);
3190                         lyxfont::rectText(_("Page Break (top)"), pb_font,
3191                                           w, a, d);
3192                         pain.rectText((ww - w)/2,
3193                                       y_offset + y_top + 2 * defaultHeight() + d,
3194                                       _("Page Break (top)"),
3195                                       pb_font,
3196                                       backgroundColor(),
3197                                       backgroundColor());
3198                         y_top += 3 * defaultHeight();
3199                 }
3200                 
3201                 if (row_ptr->par()->params().spaceTop().kind() == VSpace::VFILL) {
3202                         // draw a vfill top
3203                         pain.line(0, y_offset + 2 + y_top,
3204                                   LYX_PAPER_MARGIN, y_offset + 2 + y_top,
3205                                   LColor::vfillline);
3206                         
3207                         pain.line(0, y_offset + y_top + 3 * defaultHeight(),
3208                                   LYX_PAPER_MARGIN,
3209                                   y_offset + y_top + 3 * defaultHeight(),
3210                                   LColor::vfillline);
3211                         
3212                         pain.line(LYX_PAPER_MARGIN / 2, y_offset + 2 + y_top,
3213                                   LYX_PAPER_MARGIN / 2,
3214                                   y_offset + y_top + 3 * defaultHeight(),
3215                                   LColor::vfillline);
3216                         
3217                         y_top += 3 * defaultHeight();
3218                 }
3219                 
3220                 // think about user added space
3221                 y_top += int(row_ptr->par()->params().spaceTop().inPixels(bview));
3222                 
3223                 // think about the parskip
3224                 // some parskips VERY EASY IMPLEMENTATION
3225                 if (bview->buffer()->params.paragraph_separation == BufferParams::PARSEP_SKIP) {
3226                         if (layout.latextype == LATEX_PARAGRAPH
3227                             && firstpar->getDepth() == 0
3228                             && firstpar->previous())
3229                                 y_top += bview->buffer()->params.getDefSkip().inPixels(bview);
3230                         else if (firstpar->previous()
3231                                  && textclasslist.Style(bview->buffer()->params.textclass,
3232                                                         firstpar->previous()->getLayout()).latextype == LATEX_PARAGRAPH
3233                                  && firstpar->previous()->getDepth() == 0)
3234                                 // is it right to use defskip here, too? (AS) 
3235                                 y_top += bview->buffer()->params.getDefSkip().inPixels(bview);
3236                 }
3237                 
3238                 if (row_ptr->par()->params().lineTop()) {
3239                         // draw a top line
3240                         y_top +=  lyxfont::ascent('x',
3241                                                   getFont(bview->buffer(),
3242                                                           row_ptr->par(), 0));
3243                         int const w = (inset_owner ?
3244                                        inset_owner->width(bview, font) : ww);
3245                         int const xp = static_cast<int>(inset_owner ? x : 0);
3246                         pain.line(xp, y_offset + y_top,
3247                                   w, y_offset + y_top,
3248                                   LColor::topline,
3249                                   Painter::line_solid,
3250                                   Painter::line_thick);
3251                         
3252                         y_top +=  lyxfont::ascent('x',getFont(bview->buffer(),
3253                                                               row_ptr->par(), 0));
3254                 }
3255                 
3256                 // should we print a label?
3257                 if (layout.labeltype >= LABEL_STATIC
3258                     && (layout.labeltype != LABEL_STATIC
3259                         || layout.latextype != LATEX_ENVIRONMENT
3260                         || row_ptr->par()->isFirstInSequence())) {
3261                         font = getFont(bview->buffer(), row_ptr->par(), -2);
3262                         if (!row_ptr->par()->getLabelstring().empty()) {
3263                                 tmpx = x;
3264                                 string const tmpstring =
3265                                         row_ptr->par()->getLabelstring();
3266                                 
3267                                 if (layout.labeltype == LABEL_COUNTER_CHAPTER) {
3268                                         if (bview->buffer()->params.secnumdepth >= 0) {
3269                                                 // this is special code for
3270                                                 // the chapter layout. This is
3271                                                 // printed in an extra row
3272                                                 // and has a pagebreak at
3273                                                 // the top.
3274                                                 float spacing_val = 1.0;
3275                                                 if (!row_ptr->par()->params().spacing().isDefault()) {
3276                                                         spacing_val = row_ptr->par()->params().spacing().getValue();
3277                                                 } else {
3278                                                         spacing_val = bview->buffer()->params.spacing.getValue();
3279                                                 }
3280    
3281                                                 maxdesc = int(lyxfont::maxDescent(font) * layout.spacing.getValue() * spacing_val)
3282                                                         + int(layout.parsep) * defaultHeight();
3283                                                 if (is_rtl)
3284                                                         tmpx = ww - leftMargin(bview, row_ptr) - 
3285                                                                 lyxfont::width(tmpstring, font);
3286                                                 pain.text(int(tmpx),
3287                                                           y_offset + row_ptr->baseline() - row_ptr->ascent_of_text() - maxdesc,
3288                                                           tmpstring, font);
3289                                         }
3290                                 } else {
3291                                         if (is_rtl) {
3292                                                 tmpx = ww - leftMargin(bview, row_ptr)
3293                                                         + lyxfont::width(layout.labelsep, font);
3294                                         } else
3295                                                 tmpx = x - lyxfont::width(layout.labelsep, font)
3296                                                         - lyxfont::width(tmpstring, font);
3297
3298                                         // draw it!
3299                                         pain.text(int(tmpx),
3300                                                   y_offset + row_ptr->baseline(),
3301                                                   tmpstring, font);
3302                                 }
3303                         }
3304                         // the labels at the top of an environment.
3305                         // More or less for bibliography
3306                 } else if (layout.labeltype == LABEL_TOP_ENVIRONMENT ||
3307                            layout.labeltype == LABEL_BIBLIO ||
3308                            layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT) {
3309                         if (row_ptr->par()->isFirstInSequence()) {
3310                                 font = getFont(bview->buffer(),
3311                                                row_ptr->par(), -2);
3312                                 if (!row_ptr->par()->getLabelstring().empty()) {
3313                                         string const tmpstring =
3314                                                 row_ptr->par()->getLabelstring();
3315                                         float spacing_val = 1.0;
3316                                         if (!row_ptr->par()->params().spacing().isDefault()) {
3317                                                 spacing_val = row_ptr->par()->params().spacing().getValue();
3318                                         } else {
3319                                                 spacing_val = bview->buffer()->params.spacing.getValue();
3320                                         }
3321    
3322                                         maxdesc = int(lyxfont::maxDescent(font) * layout.spacing.getValue() * spacing_val
3323                                                       + (layout.labelbottomsep * defaultHeight()));
3324                                         
3325                                         tmpx = x;
3326                                         if (layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT){
3327                                                 tmpx = ( (is_rtl ? leftMargin(bview, row_ptr) : x)
3328                                                          + ww - rightMargin(bview->buffer(), row_ptr) ) / 2; 
3329                                                 tmpx -= lyxfont::width(tmpstring, font) / 2;
3330                                         } else if (is_rtl)
3331                                                 tmpx = ww - leftMargin(bview, row_ptr) - 
3332                                                         lyxfont::width(tmpstring, font);
3333                                         pain.text(int(tmpx),
3334                                                   y_offset + row_ptr->baseline()
3335                                                   - row_ptr->ascent_of_text()
3336                                                   - maxdesc,
3337                                                   tmpstring, font);
3338                                 }
3339                         }
3340                 }
3341                 if (layout.labeltype == LABEL_BIBLIO && row_ptr->par()->bibkey) {
3342                         font = getFont(bview->buffer(), row_ptr->par(), -1);
3343                         if (is_rtl)
3344                                 tmpx = ww - leftMargin(bview, row_ptr)
3345                                         + lyxfont::width(layout.labelsep, font);
3346                         else
3347                                 tmpx = x - lyxfont::width(layout.labelsep, font)
3348                                         - row_ptr->par()->bibkey->width(bview, font);
3349                         row_ptr->par()->bibkey->draw(bview, font,
3350                                                    y_offset + row_ptr->baseline(), 
3351                                                    tmpx, clear_area);
3352                 }
3353         }
3354         
3355         // is it a last row?
3356         Paragraph * par = row_ptr->par();
3357         if (row_ptr->par() == par
3358             && (!row_ptr->next() || row_ptr->next()->par() != row_ptr->par())) {
3359                 // think about the margins
3360                 if (!row_ptr->next() && bv_owner)
3361                         y_bottom -= LYX_PAPER_MARGIN;
3362                 
3363                 // draw a bottom pagebreak
3364                 if (firstpar->params().pagebreakBottom()) {
3365                         LyXFont pb_font;
3366                         pb_font.setColor(LColor::pagebreak).decSize();
3367                         int const y_place = y_offset + y_bottom
3368                                 - 2 * defaultHeight();
3369                         
3370                         int w = 0;
3371                         int a = 0;
3372                         int d = 0;
3373                         pain
3374                                 .line(0, y_place, ww, y_place,
3375                                       LColor::pagebreak,
3376                                       Painter::line_onoffdash);
3377                         lyxfont::rectText(_("Page Break (bottom)"), pb_font,
3378                                           w, a, d);
3379                         pain.rectText((ww - w) / 2, y_place + d,
3380                                       _("Page Break (bottom)"),
3381                                       pb_font,
3382                                       backgroundColor(),
3383                                       backgroundColor());
3384                         y_bottom -= 3 * defaultHeight();
3385                 }
3386                 
3387                 if (firstpar->params().spaceBottom().kind() == VSpace::VFILL) {
3388                         // draw a vfill bottom
3389                         int const y_place = y_offset + y_bottom
3390                                 - 3 * defaultHeight();
3391                         
3392                         pain.line(0, y_place,
3393                                   LYX_PAPER_MARGIN, y_place,
3394                                   LColor::vfillline);
3395                         pain.line(0, y_offset + y_bottom - 2,
3396                                   LYX_PAPER_MARGIN,
3397                                   y_offset + y_bottom - 2,
3398                                   LColor::vfillline);
3399                         pain.line(LYX_PAPER_MARGIN / 2,
3400                                   y_place,
3401                                   LYX_PAPER_MARGIN / 2,
3402                                   y_offset + y_bottom - 2,
3403                                   LColor::vfillline);
3404                         y_bottom -= 3 * defaultHeight();
3405                 }
3406                 
3407                 // think about user added space
3408                 y_bottom -= int(firstpar->params().spaceBottom().inPixels(bview));
3409                 
3410                 if (firstpar->params().lineBottom()) {
3411                         // draw a bottom line
3412                         y_bottom -= lyxfont::ascent('x',
3413                                                     getFont(bview->buffer(),
3414                                                             par,
3415                                                             par->size() - 1));
3416                         int const w = (inset_owner ?
3417                                        inset_owner->width(bview, font) : ww);
3418                         int const xp = static_cast<int>(inset_owner ? x : 0);
3419                         pain.line(xp, y_offset + y_bottom,
3420                                   w, y_offset + y_bottom,
3421                                   LColor::topline, Painter::line_solid,
3422                                   Painter::line_thick);
3423                         y_bottom -= lyxfont::ascent('x',
3424                                                     getFont(bview->buffer(),
3425                                                             par,
3426                                                             par->size() - 1));
3427                 }
3428
3429                 // draw an endlabel
3430                 int const endlabel =
3431                         row_ptr->par()->getEndLabel(bview->buffer()->params);
3432                 switch (endlabel) {
3433                 case END_LABEL_BOX:
3434                 case END_LABEL_FILLED_BOX:
3435                 {
3436                         LyXFont const font = getFont(bview->buffer(),
3437                                                      row_ptr->par(), last);
3438                         int const size = int(0.75 * lyxfont::maxAscent(font));
3439                         int const y = (y_offset + row_ptr->baseline()) - size;
3440                         int x = is_rtl ? LYX_PAPER_MARGIN 
3441                                 : ww - LYX_PAPER_MARGIN - size;
3442
3443                         if (row_ptr->fill() <= size)
3444                                 x += (size - row_ptr->fill() + 1) * (is_rtl ? -1 : 1);
3445                         if (endlabel == END_LABEL_BOX) {
3446                                 pain.line(x, y, x, y + size,
3447                                           LColor::eolmarker);
3448                                 pain.line(x + size, y, x + size , y + size,
3449                                           LColor::eolmarker);
3450                                 pain.line(x, y, x + size, y,
3451                                           LColor::eolmarker);
3452                                 pain.line(x, y + size, x + size, y + size,
3453                                           LColor::eolmarker);
3454                         } else
3455                                 pain.fillRectangle(x, y, size, size,
3456                                                    LColor::eolmarker);
3457                         break;
3458                 }
3459                 case END_LABEL_STATIC:
3460                 {
3461                         LyXTextClass::LayoutList::size_type layout = row_ptr->par()->getLayout();
3462                         string const tmpstring = textclasslist.
3463                                 Style(bview->buffer()->params.textclass,
3464                                       layout).endlabelstring();
3465                         font = getFont(bview->buffer(), row_ptr->par(), -2);
3466                         int const tmpx = is_rtl ?
3467                                 int(x) - lyxfont::width(tmpstring, font)
3468                                 : ww - rightMargin(bview->buffer(), row_ptr) - row_ptr->fill();
3469                         pain.text( tmpx, y_offset + row_ptr->baseline(), tmpstring, font);
3470                         break;
3471                 }
3472                 case END_LABEL_NO_LABEL:
3473                         break;
3474                 }
3475         }
3476         
3477         // draw the text in the pixmap
3478         
3479         vpos = row_ptr->pos();
3480
3481         Paragraph::size_type main_body = 
3482                 beginningOfMainBody(bview->buffer(), row_ptr->par());
3483         if (main_body > 0 &&
3484             (main_body-1 > last || 
3485              !row_ptr->par()->isLineSeparator(main_body - 1)))
3486                 main_body = 0;
3487         
3488         while (vpos <= last)  {
3489                 pos = vis2log(vpos);
3490                 if (main_body > 0 && pos == main_body - 1) {
3491                         x += fill_label_hfill
3492                                 + lyxfont::width(layout.labelsep,
3493                                                  getFont(bview->buffer(),
3494                                                          row_ptr->par(), -2))
3495                                 - singleWidth(bview,
3496                                               row_ptr->par(),
3497                                               main_body - 1);
3498                 }
3499                 
3500                 if (row_ptr->par() ->isHfill(pos)) {
3501                         x += 1;
3502                         pain.line(int(x),
3503                                   y_offset + row_ptr->baseline() - defaultHeight() / 2,
3504                                   int(x),
3505                                   y_offset + row_ptr->baseline(),
3506                                   LColor::vfillline);
3507                         
3508                         if (hfillExpansion(bview->buffer(),
3509                                            row_ptr, pos)) {
3510                                 if (pos >= main_body) {
3511                                         pain.line(int(x),
3512                                                   y_offset + row_ptr->baseline() - defaultHeight() / 4,
3513                                                   int(x + fill_hfill),
3514                                                   y_offset + row_ptr->baseline() - defaultHeight() / 4,
3515                                                   LColor::vfillline,
3516                                                   Painter::line_onoffdash);
3517                                         x += fill_hfill;
3518                                 } else {
3519                                         pain.line(int(x),
3520                                                   y_offset + row_ptr->baseline() - defaultHeight() / 4,
3521                                                   int(x + fill_label_hfill),
3522                                                   y_offset + row_ptr->baseline() - defaultHeight() / 4,
3523                                                   LColor::vfillline,
3524                                                   Painter::line_onoffdash);
3525                                         
3526                                         x += fill_label_hfill;
3527                                 }
3528                                 pain.line(int(x),
3529                                           y_offset + row_ptr->baseline() - defaultHeight() / 2,
3530                                           int(x),
3531                                           y_offset + row_ptr->baseline(),
3532                                           LColor::vfillline);
3533                         }
3534                         x += 2;
3535                         ++vpos;
3536                 } else if (row_ptr->par()->isSeparator(pos)) {
3537                         x += singleWidth(bview,
3538                                          row_ptr->par(), pos);
3539                         if (pos >= main_body)
3540                                 x += fill_separator;
3541                         ++vpos;
3542                 } else
3543                         draw(bview, row_ptr, vpos, y_offset, x, clear_area);
3544         }
3545 }
3546
3547
3548 int LyXText::defaultHeight() const
3549 {
3550         LyXFont font(LyXFont::ALL_SANE);
3551         return int(lyxfont::maxAscent(font) + lyxfont::maxDescent(font) * 1.5);
3552 }
3553
3554    
3555 /* returns the column near the specified x-coordinate of the row 
3556 * x is set to the real beginning of this column  */ 
3557 int LyXText::getColumnNearX(BufferView * bview, Row * row, int & x,
3558                             bool & boundary) const
3559 {
3560         float tmpx = 0.0;
3561         float fill_separator;
3562         float fill_hfill;
3563         float fill_label_hfill;
3564    
3565         prepareToPrint(bview, row, tmpx, fill_separator,
3566                        fill_hfill, fill_label_hfill);
3567
3568         Paragraph::size_type vc = row->pos();
3569         Paragraph::size_type last = rowLastPrintable(row);
3570         Paragraph::size_type c = 0;
3571         LyXLayout const & layout =
3572                 textclasslist.Style(bview->buffer()->params.textclass,
3573                                     row->par()->getLayout());
3574         bool left_side = false;
3575
3576         Paragraph::size_type
3577                 main_body = beginningOfMainBody(bview->buffer(), row->par());
3578         float last_tmpx = tmpx;
3579         
3580         if (main_body > 0 &&
3581             (main_body - 1 > last || 
3582              !row->par()->isLineSeparator(main_body - 1)))
3583                 main_body = 0;
3584         
3585         while (vc <= last && tmpx <= x) {
3586                 c = vis2log(vc);
3587                 last_tmpx = tmpx;
3588                 if (main_body > 0 && c == main_body-1) {
3589                         tmpx += fill_label_hfill +
3590                                 lyxfont::width(layout.labelsep,
3591                                                getFont(bview->buffer(), row->par(), -2));
3592                         if (row->par()->isLineSeparator(main_body - 1))
3593                                 tmpx -= singleWidth(bview, row->par(), main_body-1);
3594                 }
3595                 
3596                 if (hfillExpansion(bview->buffer(), row, c)) {
3597                         x += singleWidth(bview, row->par(), c);
3598                         if (c >= main_body)
3599                                 tmpx += fill_hfill;
3600                         else
3601                                 tmpx += fill_label_hfill;
3602                 }
3603                 else if (row->par()->isSeparator(c)) {
3604                         tmpx += singleWidth(bview, row->par(), c);
3605                         if (c >= main_body)
3606                                 tmpx+= fill_separator;
3607                 } else
3608                         tmpx += singleWidth(bview, row->par(), c);
3609                 ++vc;
3610         }
3611         
3612         if ((tmpx + last_tmpx) / 2 > x) {
3613                 tmpx = last_tmpx;
3614                 left_side = true;
3615         }
3616
3617         if (vc > last + 1)  // This shouldn't happen.
3618                 vc = last + 1;
3619
3620         boundary = false;
3621         bool const lastrow = lyxrc.rtl_support // This is not needed, but gives
3622                                          // some speedup if rtl_support=false
3623                 && (!row->next() || row->next()->par() != row->par());
3624         bool const rtl = (lastrow)
3625                 ? row->par()->isRightToLeftPar(bview->buffer()->params)
3626                 : false; // If lastrow is false, we don't need to compute
3627                          // the value of rtl.
3628
3629         if (row->pos() > last)  // Row is empty?
3630                 c = row->pos();
3631         else if (lastrow &&
3632                  ( ( rtl &&  left_side && vc == row->pos() && x < tmpx - 5) ||
3633                    (!rtl && !left_side && vc == last + 1   && x > tmpx + 5) ))
3634                 c = last + 1;
3635         else if (vc == row->pos()) {
3636                 c = vis2log(vc);
3637                 if (bidi_level(c) % 2 == 1)
3638                         ++c;
3639         } else {
3640                 c = vis2log(vc - 1);
3641                 bool const rtl = (bidi_level(c) % 2 == 1);
3642                 if (left_side == rtl) {
3643                         ++c;
3644                         boundary = isBoundary(bview->buffer(), row->par(), c);
3645                 }
3646         }
3647
3648         if (row->pos() <= last && c > last
3649             && row->par()->isNewline(last)) {
3650                 if (bidi_level(last) % 2 == 0)
3651                         tmpx -= singleWidth(bview, row->par(), last);
3652                 else
3653                         tmpx += singleWidth(bview, row->par(), last);
3654                 c = last;
3655         }
3656
3657         c -= row->pos();
3658         x = int(tmpx);
3659         return c;
3660 }
3661
3662
3663 // returns pointer to a specified row
3664 Row * LyXText::getRow(Paragraph * par,
3665                       Paragraph::size_type pos, int & y) const
3666 {
3667         if (!firstrow)
3668                 return 0;
3669         
3670         Row * tmprow = firstrow;
3671         y = 0;
3672         
3673         // find the first row of the specified paragraph
3674         while (tmprow->next() && tmprow->par() != par) {
3675                 y += tmprow->height();
3676                 tmprow = tmprow->next();
3677         }
3678         
3679         // now find the wanted row
3680         while (tmprow->pos() < pos
3681                && tmprow->next()
3682                && tmprow->next()->par() == par
3683                && tmprow->next()->pos() <= pos) {
3684                 y += tmprow->height();
3685                 tmprow = tmprow->next();
3686         }
3687         
3688         return tmprow;
3689 }