]> git.lyx.org Git - lyx.git/blob - src/text.C
de104b34ca7f197b3088ed842489509e7851956a
[lyx.git] / src / text.C
1 /**
2  * \file src/text.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author André Pönitz
11  * \author Dekel Tsur
12  * \author Jürgen Vigna
13  *
14  * Full author contact details are available in file CREDITS.
15  */
16
17 #include <config.h>
18
19 #include "lyxtext.h"
20
21 #include "author.h"
22 #include "buffer.h"
23 #include "bufferparams.h"
24 #include "BufferView.h"
25 #include "cursor.h"
26 #include "debug.h"
27 #include "dispatchresult.h"
28 #include "encoding.h"
29 #include "funcrequest.h"
30 #include "gettext.h"
31 #include "language.h"
32 #include "LColor.h"
33 #include "lyxlength.h"
34 #include "lyxlex.h"
35 #include "lyxrc.h"
36 #include "lyxrow.h"
37 #include "lyxrow_funcs.h"
38 #include "metricsinfo.h"
39 #include "paragraph.h"
40 #include "paragraph_funcs.h"
41 #include "ParagraphParameters.h"
42 #include "rowpainter.h"
43 #include "undo.h"
44 #include "vspace.h"
45 #include "WordLangTuple.h"
46
47 #include "frontends/font_metrics.h"
48 #include "frontends/LyXView.h"
49
50 #include "insets/insettext.h"
51
52 #include "support/lstrings.h"
53 #include "support/textutils.h"
54 #include "support/tostr.h"
55 #include "support/std_sstream.h"
56
57 using lyx::pos_type;
58 using lyx::word_location;
59
60 using lyx::support::bformat;
61 using lyx::support::contains;
62 using lyx::support::lowercase;
63 using lyx::support::split;
64 using lyx::support::uppercase;
65
66 using std::advance;
67 using std::distance;
68 using std::max;
69 using std::min;
70 using std::endl;
71 using std::string;
72
73
74 /// some space for drawing the 'nested' markers (in pixel)
75 extern int const NEST_MARGIN = 20;
76 /// margin for changebar
77 extern int const CHANGEBAR_MARGIN = 10;
78 /// right margin
79 extern int const RIGHT_MARGIN = 10;
80
81
82 namespace {
83
84 int numberOfSeparators(Paragraph const & par, Row const & row)
85 {
86         pos_type const first = max(row.pos(), par.beginOfBody());
87         pos_type const last = row.endpos() - 1;
88         int n = 0;
89         for (pos_type p = first; p < last; ++p) {
90                 if (par.isSeparator(p))
91                         ++n;
92         }
93         return n;
94 }
95
96
97 unsigned int maxParagraphWidth(ParagraphList const & plist)
98 {
99         unsigned int width = 0;
100         ParagraphList::const_iterator pit = plist.begin();
101         ParagraphList::const_iterator end = plist.end();
102                 for (; pit != end; ++pit)
103                         width = std::max(width, pit->width);
104         return width;
105 }
106
107
108 int numberOfLabelHfills(Paragraph const & par, Row const & row)
109 {
110         pos_type last = row.endpos() - 1;
111         pos_type first = row.pos();
112
113         // hfill *DO* count at the beginning of paragraphs!
114         if (first) {
115                 while (first < last && par.isHfill(first))
116                         ++first;
117         }
118
119         last = min(last, par.beginOfBody());
120         int n = 0;
121         for (pos_type p = first; p < last; ++p) {
122                 if (par.isHfill(p))
123                         ++n;
124         }
125         return n;
126 }
127
128
129 int numberOfHfills(Paragraph const & par, Row const & row)
130 {
131         pos_type const last = row.endpos() - 1;
132         pos_type first = row.pos();
133
134         // hfill *DO* count at the beginning of paragraphs!
135         if (first) {
136                 while (first < last && par.isHfill(first))
137                         ++first;
138         }
139
140         first = max(first, par.beginOfBody());
141
142         int n = 0;
143         for (pos_type p = first; p < last; ++p) {
144                 if (par.isHfill(p))
145                         ++n;
146         }
147         return n;
148 }
149
150 } // namespace anon
151
152
153 BufferView * LyXText::bv()
154 {
155         BOOST_ASSERT(bv_owner != 0);
156         return bv_owner;
157 }
158
159
160 double LyXText::spacing(Paragraph const & par) const
161 {
162         if (par.params().spacing().isDefault())
163                 return bv()->buffer()->params().spacing().getValue();
164         return par.params().spacing().getValue();
165 }
166
167
168 BufferView * LyXText::bv() const
169 {
170         BOOST_ASSERT(bv_owner != 0);
171         return bv_owner;
172 }
173
174
175 void LyXText::updateParPositions()
176 {
177         ParagraphList::iterator pit = paragraphs().begin();
178         ParagraphList::iterator end = paragraphs().end();
179         for (height = 0; pit != end; ++pit) {
180                 pit->y = height;
181                 height += pit->height;
182         }
183 }
184
185
186 int LyXText::textWidth() const
187 {
188         return textwidth_;
189 }
190
191
192 int LyXText::singleWidth(ParagraphList::iterator pit, pos_type pos) const
193 {
194         if (pos >= pit->size())
195                 return 0;
196
197         char const c = pit->getChar(pos);
198         return singleWidth(pit, pos, c, getFont(pit, pos));
199 }
200
201
202 int LyXText::singleWidth(ParagraphList::iterator pit,
203                          pos_type pos, char c, LyXFont const & font) const
204 {
205         if (pos >= pit->size()) {
206                 lyxerr << "in singleWidth(), pos: " << pos << endl;
207                 BOOST_ASSERT(false);
208                 return 0;
209         }
210
211         // The most common case is handled first (Asger)
212         if (IsPrintable(c)) {
213                 if (!font.language()->RightToLeft()) {
214                         if ((lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
215                              lyxrc.font_norm_type == LyXRC::ISO_10646_1)
216                             && font.language()->lang() == "arabic") {
217                                 if (Encodings::IsComposeChar_arabic(c))
218                                         return 0;
219                                 else
220                                         c = pit->transformChar(c, pos);
221                         } else if (font.language()->lang() == "hebrew" &&
222                                  Encodings::IsComposeChar_hebrew(c))
223                                 return 0;
224                 }
225                 return font_metrics::width(c, font);
226         }
227
228         if (c == Paragraph::META_INSET)
229                 return pit->getInset(pos)->width();
230
231         if (IsSeparatorChar(c))
232                 c = ' ';
233         return font_metrics::width(c, font);
234 }
235
236
237 int LyXText::leftMargin(ParagraphList::iterator pit) const
238 {
239         return leftMargin(pit, pit->size());
240 }
241
242
243 int LyXText::leftMargin(ParagraphList::iterator pit, pos_type pos) const
244 {
245         LyXTextClass const & tclass =
246                 bv()->buffer()->params().getLyXTextClass();
247         LyXLayout_ptr const & layout = pit->layout();
248
249         string parindent = layout->parindent;
250
251         int x = NEST_MARGIN + CHANGEBAR_MARGIN;
252
253         x += font_metrics::signedWidth(tclass.leftmargin(), tclass.defaultfont());
254
255         // This is the way LyX handles LaTeX-Environments.
256         // I have had this idea very late, so it seems to be a
257         // later added hack and this is true
258         if (pit->getDepth() == 0) {
259                 if (pit->layout() == tclass.defaultLayout()) {
260                         // find the previous same level paragraph
261                         if (pit != paragraphs().begin()) {
262                                 ParagraphList::iterator newpit =
263                                         depthHook(pit, paragraphs(), pit->getDepth());
264                                 if (newpit == pit && newpit->layout()->nextnoindent)
265                                         parindent.erase();
266                         }
267                 }
268         } else {
269                 // find the next level paragraph
270                 ParagraphList::iterator newpar =
271                         outerHook(pit, paragraphs());
272
273                 // Make a corresponding row. Need to call leftMargin()
274                 // to check whether it is a sufficent paragraph.
275                 if (newpar != paragraphs().end()
276                     && newpar->layout()->isEnvironment()) {
277                         x = leftMargin(newpar);
278                 }
279
280                 if (newpar != paragraphs().end()
281                     && pit->layout() == tclass.defaultLayout()) {
282                         if (newpar->params().noindent())
283                                 parindent.erase();
284                         else
285                                 parindent = newpar->layout()->parindent;
286                 }
287         }
288
289         LyXFont const labelfont = getLabelFont(pit);
290         switch (layout->margintype) {
291         case MARGIN_DYNAMIC:
292                 if (!layout->leftmargin.empty())
293                         x += font_metrics::signedWidth(layout->leftmargin,
294                                                   tclass.defaultfont());
295                 if (!pit->getLabelstring().empty()) {
296                         x += font_metrics::signedWidth(layout->labelindent,
297                                                   labelfont);
298                         x += font_metrics::width(pit->getLabelstring(),
299                                             labelfont);
300                         x += font_metrics::width(layout->labelsep, labelfont);
301                 }
302                 break;
303
304         case MARGIN_MANUAL:
305                 x += font_metrics::signedWidth(layout->labelindent, labelfont);
306                 // The width of an empty par, even with manual label, should be 0
307                 if (!pit->empty() && pos >= pit->beginOfBody()) {
308                         if (!pit->getLabelWidthString().empty()) {
309                                 x += font_metrics::width(pit->getLabelWidthString(),
310                                                labelfont);
311                                 x += font_metrics::width(layout->labelsep, labelfont);
312                         }
313                 }
314                 break;
315
316         case MARGIN_STATIC:
317                 x += font_metrics::signedWidth(layout->leftmargin, tclass.defaultfont()) * 4
318                         / (pit->getDepth() + 4);
319                 break;
320
321         case MARGIN_FIRST_DYNAMIC:
322                 if (layout->labeltype == LABEL_MANUAL) {
323                         if (pos >= pit->beginOfBody()) {
324                                 x += font_metrics::signedWidth(layout->leftmargin,
325                                                           labelfont);
326                         } else {
327                                 x += font_metrics::signedWidth(layout->labelindent,
328                                                           labelfont);
329                         }
330                 } else if (pos != 0
331                            // Special case to fix problems with
332                            // theorems (JMarc)
333                            || (layout->labeltype == LABEL_STATIC
334                                && layout->latextype == LATEX_ENVIRONMENT
335                                && !isFirstInSequence(pit, paragraphs()))) {
336                         x += font_metrics::signedWidth(layout->leftmargin,
337                                                   labelfont);
338                 } else if (layout->labeltype != LABEL_TOP_ENVIRONMENT
339                            && layout->labeltype != LABEL_BIBLIO
340                            && layout->labeltype !=
341                            LABEL_CENTERED_TOP_ENVIRONMENT) {
342                         x += font_metrics::signedWidth(layout->labelindent,
343                                                   labelfont);
344                         x += font_metrics::width(layout->labelsep, labelfont);
345                         x += font_metrics::width(pit->getLabelstring(),
346                                             labelfont);
347                 }
348                 break;
349
350         case MARGIN_RIGHT_ADDRESS_BOX: {
351 #if 0
352                 // ok, a terrible hack. The left margin depends on the widest
353                 // row in this paragraph.
354                 RowList::iterator rit = pit->rows.begin();
355                 RowList::iterator end = pit->rows.end();
356 #warning This is wrong.
357                 int minfill = textwidth_;
358                 for ( ; rit != end; ++rit)
359                         if (rit->fill() < minfill)
360                                 minfill = rit->fill();
361                 x += font_metrics::signedWidth(layout->leftmargin,
362                         tclass.defaultfont());
363                 x += minfill;
364 #endif
365                 // also wrong, but much shorter.
366                 x += textwidth_ / 2;
367                 break;
368         }
369         }
370
371         if (!pit->params().leftIndent().zero())
372                 x += pit->params().leftIndent().inPixels(textWidth());
373
374         LyXAlignment align;
375
376         if (pit->params().align() == LYX_ALIGN_LAYOUT)
377                 align = layout->align;
378         else
379                 align = pit->params().align();
380
381         // set the correct parindent
382         if (pos == 0
383             && (layout->labeltype == LABEL_NO_LABEL
384                || layout->labeltype == LABEL_TOP_ENVIRONMENT
385                || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
386                || (layout->labeltype == LABEL_STATIC
387                    && layout->latextype == LATEX_ENVIRONMENT
388                    && !isFirstInSequence(pit, paragraphs())))
389             && align == LYX_ALIGN_BLOCK
390             && !pit->params().noindent()
391             // in tabulars and ert paragraphs are never indented!
392             && (!pit->inInset()
393                 || !pit->inInset()->owner()
394                 || (pit->inInset()->owner()->lyxCode() != InsetOld::TABULAR_CODE
395                     && pit->inInset()->owner()->lyxCode() != InsetOld::ERT_CODE))
396             && (pit->layout() != tclass.defaultLayout()
397                 || bv()->buffer()->params().paragraph_separation ==
398                    BufferParams::PARSEP_INDENT))
399         {
400                 x += font_metrics::signedWidth(parindent, tclass.defaultfont());
401         }
402
403         return x;
404 }
405
406
407 int LyXText::rightMargin(Paragraph const & par) const
408 {
409         LyXTextClass const & tclass = bv()->buffer()->params().getLyXTextClass();
410
411         return
412                 RIGHT_MARGIN
413                 + font_metrics::signedWidth(tclass.rightmargin(),
414                                        tclass.defaultfont())
415                 + font_metrics::signedWidth(par.layout()->rightmargin,
416                                        tclass.defaultfont())
417                 * 4 / (par.getDepth() + 4);
418 }
419
420
421 int LyXText::labelEnd(ParagraphList::iterator pit) const
422 {
423         // labelEnd is only needed if the layout fills a flushleft label.
424         if (pit->layout()->margintype != MARGIN_MANUAL)
425                 return 0;
426         // return the beginning of the body
427         return leftMargin(pit);
428 }
429
430
431 namespace {
432
433 // this needs special handling - only newlines count as a break point
434 pos_type addressBreakPoint(pos_type i, Paragraph const & par)
435 {
436         pos_type const end = par.size();
437
438         for (; i < end; ++i)
439                 if (par.isNewline(i))
440                         return i + 1;
441
442         return end;
443 }
444
445 };
446
447
448 void LyXText::rowBreakPoint(ParagraphList::iterator pit, Row & row) const
449 {
450         pos_type const end = pit->size();
451         pos_type const pos = row.pos();
452         if (pos == end) {
453                 row.endpos(end);
454                 return;
455         }
456
457         // maximum pixel width of a row
458         int width = textWidth() - rightMargin(*pit); // - leftMargin(pit, row);
459         if (width < 0) {
460                 row.endpos(end);
461                 return;
462         }
463
464         LyXLayout_ptr const & layout = pit->layout();
465
466         if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX) {
467                 row.endpos(addressBreakPoint(pos, *pit));
468                 return;
469         }
470
471         pos_type const body_pos = pit->beginOfBody();
472
473
474         // Now we iterate through until we reach the right margin
475         // or the end of the par, then choose the possible break
476         // nearest that.
477
478         int const left = leftMargin(pit, pos);
479         int x = left;
480
481         // pixel width since last breakpoint
482         int chunkwidth = 0;
483
484
485         // We re-use the font resolution for the entire font span when possible
486         LyXFont font = getFont(pit, pos);
487         lyx::pos_type endPosOfFontSpan = pit->getEndPosOfFontSpan(pos);
488
489         pos_type point = end;
490         pos_type i = pos;
491         for ( ; i < end; ++i) {
492                 if (pit->isNewline(i)) {
493                         point = i + 1;
494                         break;
495                 }
496                 // Break before...
497                 if (i + 1 < end) {
498                         if (pit->isInset(i + 1) && pit->getInset(i + 1)->display()) {
499                                 point = i + 1;
500                                 break;
501                         }
502                         // ...and after.
503                         if (pit->isInset(i) && pit->getInset(i)->display()) {
504                                 point = i + 1;
505                                 break;
506                         }
507                 }
508
509                 char const c = pit->getChar(i);
510
511                 if (i > endPosOfFontSpan) {
512                         font = getFont(pit, i);
513                         endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
514                 }
515
516                 {
517                         int thiswidth = singleWidth(pit, i, c, font);
518
519                         // add the auto-hfill from label end to the body
520                         if (body_pos && i == body_pos) {
521                                 int add = font_metrics::width(layout->labelsep, getLabelFont(pit));
522                                 if (pit->isLineSeparator(i - 1))
523                                         add -= singleWidth(pit, i - 1);
524
525                                 add = std::max(add, labelEnd(pit) - x);
526                                 thiswidth += add;
527                         }
528
529                         x += thiswidth;
530                         //lyxerr << "i: " << i << " x: "
531                         //<< x << " width: " << width << endl;
532                         chunkwidth += thiswidth;
533                 }
534
535                 // break before a character that will fall off
536                 // the right of the row
537                 if (x >= width) {
538                         // if no break before, break here
539                         if (point == end || chunkwidth >= width - left) {
540                                 if (i > pos) {
541                                         point = i;
542                                         break;
543                                 }
544                         }
545                         // exit on last registered breakpoint:
546                         break;
547                 }
548
549                 if (!pit->isInset(i) || pit->getInset(i)->isChar()) {
550                         // some insets are line separators too
551                         if (pit->isLineSeparator(i)) {
552                                 // register breakpoint:
553                                 point = i + 1;
554                                 chunkwidth = 0;
555                         }
556                 }
557         }
558
559         if (i == end && x < width) {
560                 // maybe found one, but the par is short enough.
561                 point = end;
562         }
563
564         // manual labels cannot be broken in LaTeX. But we
565         // want to make our on-screen rendering of footnotes
566         // etc. still break
567         if (body_pos && point < body_pos)
568                 point = body_pos;
569
570         row.endpos(point);
571 }
572
573
574 // returns the minimum space a row needs on the screen in pixel
575 void LyXText::fill(ParagraphList::iterator pit, Row & row, int workwidth) const
576 {
577         // get the pure distance
578         pos_type const end = row.endpos();
579
580         string labelsep = pit->layout()->labelsep;
581         int w = leftMargin(pit, row.pos());
582
583         pos_type const body_pos = pit->beginOfBody();
584         pos_type i = row.pos();
585
586         if (i < end) {
587                 // We re-use the font resolution for the entire span when possible
588                 LyXFont font = getFont(pit, i);
589                 lyx::pos_type endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
590                 for ( ; i < end; ++i) {
591                         if (body_pos > 0 && i == body_pos) {
592                                 w += font_metrics::width(labelsep, getLabelFont(pit));
593                                 if (pit->isLineSeparator(i - 1))
594                                         w -= singleWidth(pit, i - 1);
595                                 w = max(w, labelEnd(pit));
596                         }
597                         char const c = pit->getChar(i);
598                         if (IsPrintable(c) && i > endPosOfFontSpan) {
599                                 // We need to get the next font
600                                 font = getFont(pit, i);
601                                 endPosOfFontSpan = pit->getEndPosOfFontSpan(i);
602                         }
603                         w += singleWidth(pit, i, c, font);
604                 }
605         }
606
607         if (body_pos > 0 && body_pos >= end) {
608                 w += font_metrics::width(labelsep, getLabelFont(pit));
609                 if (end > 0 && pit->isLineSeparator(end - 1))
610                         w -= singleWidth(pit, end - 1);
611                 w = max(w, labelEnd(pit));
612         }
613
614         int const fill = workwidth - w - rightMargin(*pit);
615         row.fill(fill);
616         row.width(workwidth - fill);
617 }
618
619
620 // returns the minimum space a manual label needs on the screen in pixel
621 int LyXText::labelFill(ParagraphList::iterator pit, Row const & row) const
622 {
623         pos_type last = pit->beginOfBody();
624
625         BOOST_ASSERT(last > 0);
626
627         // -1 because a label ends with a space that is in the label
628         --last;
629
630         // a separator at this end does not count
631         if (pit->isLineSeparator(last))
632                 --last;
633
634         int w = 0;
635         for (pos_type i = row.pos(); i <= last; ++i)
636                 w += singleWidth(pit, i);
637
638         string const & label = pit->params().labelWidthString();
639         if (label.empty())
640                 return 0;
641
642         return max(0, font_metrics::width(label, getLabelFont(pit)) - w);
643 }
644
645
646 LColor_color LyXText::backgroundColor() const
647 {
648         return LColor_color(LColor::color(background_color_));
649 }
650
651
652 void LyXText::setHeightOfRow(ParagraphList::iterator pit, Row & row)
653 {
654         // get the maximum ascent and the maximum descent
655         double layoutasc = 0;
656         double layoutdesc = 0;
657         double const dh = defaultRowHeight();
658
659         // ok, let us initialize the maxasc and maxdesc value.
660         // Only the fontsize count. The other properties
661         // are taken from the layoutfont. Nicer on the screen :)
662         LyXLayout_ptr const & layout = pit->layout();
663
664         // as max get the first character of this row then it can
665         // increase but not decrease the height. Just some point to
666         // start with so we don't have to do the assignment below too
667         // often.
668         LyXFont font = getFont(pit, row.pos());
669         LyXFont::FONT_SIZE const tmpsize = font.size();
670         font = getLayoutFont(pit);
671         LyXFont::FONT_SIZE const size = font.size();
672         font.setSize(tmpsize);
673
674         LyXFont labelfont = getLabelFont(pit);
675
676         // these are minimum values
677         double const spacing_val = layout->spacing.getValue() * spacing(*pit);
678         //lyxerr << "spacing_val = " << spacing_val << endl;
679         int maxasc  = int(font_metrics::maxAscent(font)  * spacing_val);
680         int maxdesc = int(font_metrics::maxDescent(font) * spacing_val);
681
682         // insets may be taller
683         InsetList::iterator ii = pit->insetlist.begin();
684         InsetList::iterator iend = pit->insetlist.end();
685         for ( ; ii != iend; ++ii) {
686                 if (ii->pos >= row.pos() && ii->pos < row.endpos()) {
687                         maxasc  = max(maxasc,  ii->inset->ascent());
688                         maxdesc = max(maxdesc, ii->inset->descent());
689                 }
690         }
691
692         // Check if any custom fonts are larger (Asger)
693         // This is not completely correct, but we can live with the small,
694         // cosmetic error for now.
695         int labeladdon = 0;
696         pos_type const pos_end = row.endpos();
697
698         LyXFont::FONT_SIZE maxsize =
699                 pit->highestFontInRange(row.pos(), pos_end, size);
700         if (maxsize > font.size()) {
701                 font.setSize(maxsize);
702                 maxasc  = max(maxasc,  font_metrics::maxAscent(font));
703                 maxdesc = max(maxdesc, font_metrics::maxDescent(font));
704         }
705
706         // This is nicer with box insets:
707         ++maxasc;
708         ++maxdesc;
709
710         row.ascent_of_text(maxasc);
711
712         // is it a top line?
713         if (row.pos() == 0) {
714                 BufferParams const & bufparams = bv()->buffer()->params();
715                 // some parksips VERY EASY IMPLEMENTATION
716                 if (bv()->buffer()->params().paragraph_separation
717                     == BufferParams::PARSEP_SKIP
718                         && pit != paragraphs().begin()
719                         && ((layout->isParagraph() && pit->getDepth() == 0)
720                             || (boost::prior(pit)->layout()->isParagraph()
721                                 && boost::prior(pit)->getDepth() == 0)))
722                 {
723                                 maxasc += bufparams.getDefSkip().inPixels(*bv());
724                 }
725
726                 if (pit->params().startOfAppendix())
727                         maxasc += int(3 * dh);
728
729                 // This is special code for the chapter, since the label of this
730                 // layout is printed in an extra row
731                 if (layout->counter == "chapter" && bufparams.secnumdepth >= 0) {
732                         labeladdon = int(font_metrics::maxHeight(labelfont)
733                                      * layout->spacing.getValue() * spacing(*pit));
734                 }
735
736                 // special code for the top label
737                 if ((layout->labeltype == LABEL_TOP_ENVIRONMENT
738                      || layout->labeltype == LABEL_BIBLIO
739                      || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
740                     && isFirstInSequence(pit, paragraphs())
741                     && !pit->getLabelstring().empty())
742                 {
743                         labeladdon = int(
744                                   font_metrics::maxHeight(labelfont)
745                                         * layout->spacing.getValue()
746                                         * spacing(*pit)
747                                 + (layout->topsep + layout->labelbottomsep) * dh);
748                 }
749
750                 // Add the layout spaces, for example before and after
751                 // a section, or between the items of a itemize or enumerate
752                 // environment.
753
754                 ParagraphList::iterator prev =
755                         depthHook(pit, paragraphs(), pit->getDepth());
756                 if (prev != pit
757                     && prev->layout() == layout
758                     && prev->getDepth() == pit->getDepth()
759                     && prev->getLabelWidthString() == pit->getLabelWidthString())
760                 {
761                         layoutasc = layout->itemsep * dh;
762                 } else if (pit != paragraphs().begin() || row.pos() != 0) {
763                         if (layout->topsep > 0)
764                                 layoutasc = layout->topsep * dh;
765                 }
766
767                 prev = outerHook(pit, paragraphs());
768                 if (prev != paragraphs().end()) {
769                         maxasc += int(prev->layout()->parsep * dh);
770                 } else if (pit != paragraphs().begin()) {
771                         ParagraphList::iterator prior_pit = boost::prior(pit);
772                         if (prior_pit->getDepth() != 0 ||
773                                         prior_pit->layout() == layout) {
774                                 maxasc += int(layout->parsep * dh);
775                         }
776                 }
777         }
778
779         // is it a bottom line?
780         if (row.endpos() >= pit->size()) {
781                 // add the layout spaces, for example before and after
782                 // a section, or between the items of a itemize or enumerate
783                 // environment
784                 ParagraphList::iterator nextpit = boost::next(pit);
785                 if (nextpit != paragraphs().end()) {
786                         ParagraphList::iterator cpit = pit;
787                         double usual = 0;
788                         double unusual = 0;
789
790                         if (cpit->getDepth() > nextpit->getDepth()) {
791                                 usual = cpit->layout()->bottomsep * dh;
792                                 cpit = depthHook(cpit, paragraphs(), nextpit->getDepth());
793                                 if (cpit->layout() != nextpit->layout()
794                                         || nextpit->getLabelWidthString() != cpit->getLabelWidthString())
795                                 {
796                                         unusual = cpit->layout()->bottomsep * dh;
797                                 }
798                                 layoutdesc = max(unusual, usual);
799                         } else if (cpit->getDepth() == nextpit->getDepth()) {
800                                 if (cpit->layout() != nextpit->layout()
801                                         || nextpit->getLabelWidthString() != cpit->getLabelWidthString())
802                                         layoutdesc = int(cpit->layout()->bottomsep * dh);
803                         }
804                 }
805         }
806
807         // incalculate the layout spaces
808         maxasc  += int(layoutasc  * 2 / (2 + pit->getDepth()));
809         maxdesc += int(layoutdesc * 2 / (2 + pit->getDepth()));
810
811         row.height(maxasc + maxdesc + labeladdon);
812         row.baseline(maxasc + labeladdon);
813         row.top_of_text(row.baseline() - font_metrics::maxAscent(font));
814 }
815
816
817 void LyXText::breakParagraph(LCursor & cur, char keep_layout)
818 {
819         BOOST_ASSERT(this == cur.text());
820         // allow only if at start or end, or all previous is new text
821         Paragraph & cpar = cur.paragraph();
822         ParagraphList::iterator cpit = getPar(cur.par());
823
824         if (cur.pos() != 0 && cur.pos() != cur.lastpos()
825             && cpar.isChangeEdited(0, cur.pos()))
826                 return;
827
828         LyXTextClass const & tclass =
829                 bv()->buffer()->params().getLyXTextClass();
830         LyXLayout_ptr const & layout = cpar.layout();
831
832         // this is only allowed, if the current paragraph is not empty
833         // or caption and if it has not the keepempty flag active
834         if (cur.lastpos() == 0 && !cpar.allowEmpty()
835            && layout->labeltype != LABEL_SENSITIVE)
836                 return;
837
838         // a layout change may affect also the following paragraph
839         recUndo(cur.par(), parOffset(undoSpan(cpit)) - 1);
840
841         // Always break behind a space
842         // It is better to erase the space (Dekel)
843         if (cur.pos() != cur.lastpos() && cpar.isLineSeparator(cur.pos()))
844                 cpar.erase(cur.pos());
845
846         // break the paragraph
847         if (keep_layout)
848                 keep_layout = 2;
849         else
850                 keep_layout = layout->isEnvironment();
851
852         // we need to set this before we insert the paragraph. IMO the
853         // breakParagraph call should return a bool if it inserts the
854         // paragraph before or behind and we should react on that one
855         // but we can fix this in 1.3.0 (Jug 20020509)
856         bool const isempty = cpar.allowEmpty() && cpar.empty();
857         ::breakParagraph(bv()->buffer()->params(), paragraphs(), cpit,
858                          cur.pos(), keep_layout);
859
860         cpit = getPar(cur.par());
861         ParagraphList::iterator next_par = boost::next(cpit);
862
863         // well this is the caption hack since one caption is really enough
864         if (layout->labeltype == LABEL_SENSITIVE) {
865                 if (!cur.pos())
866                         // set to standard-layout
867                         cpit->applyLayout(tclass.defaultLayout());
868                 else
869                         // set to standard-layout
870                         next_par->applyLayout(tclass.defaultLayout());
871         }
872
873         // if the cursor is at the beginning of a row without prior newline,
874         // move one row up!
875         // This touches only the screen-update. Otherwise we would may have
876         // an empty row on the screen
877         if (cur.pos() != 0 && cur.textRow().pos() == cur.pos()
878             && !cpit->isNewline(cur.pos() - 1))
879         {
880                 cursorLeft(cur, true);
881         }
882
883         while (!next_par->empty() && next_par->isNewline(0))
884                 next_par->erase(0);
885
886         updateCounters();
887         redoParagraph(cpit);
888         redoParagraph(next_par);
889
890         // This check is necessary. Otherwise the new empty paragraph will
891         // be deleted automatically. And it is more friendly for the user!
892         if (cur.pos() != 0 || isempty)
893                 setCursor(cur, cur.par() + 1, 0);
894         else
895                 setCursor(cur, cur.par(), 0);
896 }
897
898
899 // convenience function
900 void LyXText::redoParagraph(LCursor & cur)
901 {
902         BOOST_ASSERT(this == cur.text());
903         cur.clearSelection();
904         redoParagraph(getPar(cur.par()));
905         setCursorIntern(cur, cur.par(), cur.pos());
906 }
907
908
909 // insert a character, moves all the following breaks in the
910 // same Paragraph one to the right and make a rebreak
911 void LyXText::insertChar(LCursor & cur, char c)
912 {
913         BOOST_ASSERT(this == cur.text());
914         recordUndo(cur, Undo::INSERT);
915
916         Paragraph & par = cur.paragraph();
917         // try to remove this
918         ParagraphList::iterator pit = getPar(cur.par());
919
920         bool const freeSpacing = par.layout()->free_spacing ||
921                 par.isFreeSpacing();
922
923         if (lyxrc.auto_number) {
924                 static string const number_operators = "+-/*";
925                 static string const number_unary_operators = "+-";
926                 static string const number_seperators = ".,:";
927
928                 if (current_font.number() == LyXFont::ON) {
929                         if (!IsDigit(c) && !contains(number_operators, c) &&
930                             !(contains(number_seperators, c) &&
931                               cur.pos() != 0 &&
932                               cur.pos() != cur.lastpos() &&
933                               getFont(pit, cur.pos()).number() == LyXFont::ON &&
934                               getFont(pit, cur.pos() - 1).number() == LyXFont::ON)
935                            )
936                                 number(cur); // Set current_font.number to OFF
937                 } else if (IsDigit(c) &&
938                            real_current_font.isVisibleRightToLeft()) {
939                         number(cur); // Set current_font.number to ON
940
941                         if (cur.pos() != 0) {
942                                 char const c = par.getChar(cur.pos() - 1);
943                                 if (contains(number_unary_operators, c) &&
944                                     (cur.pos() == 1
945                                      || par.isSeparator(cur.pos() - 2)
946                                      || par.isNewline(cur.pos() - 2))
947                                   ) {
948                                         setCharFont(pit, cur.pos() - 1, current_font);
949                                 } else if (contains(number_seperators, c)
950                                      && cur.pos() >= 2
951                                      && getFont(pit, cur.pos() - 2).number() == LyXFont::ON) {
952                                         setCharFont(pit, cur.pos() - 1, current_font);
953                                 }
954                         }
955                 }
956         }
957
958         // First check, if there will be two blanks together or a blank at
959         // the beginning of a paragraph.
960         // I decided to handle blanks like normal characters, the main
961         // difference are the special checks when calculating the row.fill
962         // (blank does not count at the end of a row) and the check here
963
964         // The bug is triggered when we type in a description environment:
965         // The current_font is not changed when we go from label to main text
966         // and it should (along with realtmpfont) when we type the space.
967         // CHECK There is a bug here! (Asger)
968
969         // store the current font.  This is because of the use of cursor
970         // movements. The moving cursor would refresh the current font
971         LyXFont realtmpfont = real_current_font;
972         LyXFont rawtmpfont = current_font;
973
974         // When the free-spacing option is set for the current layout,
975         // disable the double-space checking
976         if (!freeSpacing && IsLineSeparatorChar(c)) {
977                 if (cur.pos() == 0) {
978                         static bool sent_space_message = false;
979                         if (!sent_space_message) {
980                                 cur.message(_("You cannot insert a space at the "
981                                         "beginning of a paragraph. Please read the Tutorial."));
982                                 sent_space_message = true;
983                                 return;
984                         }
985                 }
986                 BOOST_ASSERT(cur.pos() > 0);
987                 if (par.isLineSeparator(cur.pos() - 1)
988                     || par.isNewline(cur.pos() - 1)) {
989                         static bool sent_space_message = false;
990                         if (!sent_space_message) {
991                                 cur.message(_("You cannot type two spaces this way. "
992                                         "Please read the Tutorial."));
993                                 sent_space_message = true;
994                         }
995                         return;
996                 }
997         }
998
999         // Here case LyXText::InsertInset already inserted the character
1000         if (c != Paragraph::META_INSET)
1001                 par.insertChar(cur.pos(), c);
1002
1003         setCharFont(pit, cur.pos(), rawtmpfont);
1004
1005         current_font = rawtmpfont;
1006         real_current_font = realtmpfont;
1007         redoParagraph(cur);
1008         setCursor(cur, cur.par(), cur.pos() + 1, false, cur.boundary());
1009         charInserted();
1010 }
1011
1012
1013 void LyXText::charInserted()
1014 {
1015         // Here we call finishUndo for every 20 characters inserted.
1016         // This is from my experience how emacs does it. (Lgb)
1017         static unsigned int counter;
1018         if (counter < 20) {
1019                 ++counter;
1020         } else {
1021                 finishUndo();
1022                 counter = 0;
1023         }
1024 }
1025
1026
1027 void LyXText::prepareToPrint(ParagraphList::iterator pit, Row & row) const
1028 {
1029         double w = row.fill();
1030         double fill_hfill = 0;
1031         double fill_label_hfill = 0;
1032         double fill_separator = 0;
1033         double x = 0;
1034
1035         bool const is_rtl =
1036                 pit->isRightToLeftPar(bv()->buffer()->params());
1037         if (is_rtl)
1038                 x = rightMargin(*pit);
1039         else
1040                 x = leftMargin(pit, row.pos());
1041
1042         // is there a manual margin with a manual label
1043         LyXLayout_ptr const & layout = pit->layout();
1044
1045         if (layout->margintype == MARGIN_MANUAL
1046             && layout->labeltype == LABEL_MANUAL) {
1047                 /// We might have real hfills in the label part
1048                 int nlh = numberOfLabelHfills(*pit, row);
1049
1050                 // A manual label par (e.g. List) has an auto-hfill
1051                 // between the label text and the body of the
1052                 // paragraph too.
1053                 // But we don't want to do this auto hfill if the par
1054                 // is empty.
1055                 if (!pit->empty())
1056                         ++nlh;
1057
1058                 if (nlh && !pit->getLabelWidthString().empty())
1059                         fill_label_hfill = labelFill(pit, row) / double(nlh);
1060         }
1061
1062         // are there any hfills in the row?
1063         int const nh = numberOfHfills(*pit, row);
1064
1065         if (nh) {
1066                 if (w > 0)
1067                         fill_hfill = w / nh;
1068         // we don't have to look at the alignment if it is ALIGN_LEFT and
1069         // if the row is already larger then the permitted width as then
1070         // we force the LEFT_ALIGN'edness!
1071         } else if (int(row.width()) < textWidth()) {
1072                 // is it block, flushleft or flushright?
1073                 // set x how you need it
1074                 int align;
1075                 if (pit->params().align() == LYX_ALIGN_LAYOUT)
1076                         align = layout->align;
1077                 else
1078                         align = pit->params().align();
1079
1080                 // Display-style insets should always be on a centred row
1081                 // The test on pit->size() is to catch zero-size pars, which
1082                 // would trigger the assert in Paragraph::getInset().
1083                 //inset = pit->size() ? pit->getInset(row.pos()) : 0;
1084                 if (!pit->empty()
1085                     && pit->isInset(row.pos())
1086                     && pit->getInset(row.pos())->display())
1087                 {
1088                         align = LYX_ALIGN_CENTER;
1089                 }
1090
1091                 switch (align) {
1092     case LYX_ALIGN_BLOCK: {
1093                                 int const ns = numberOfSeparators(*pit, row);
1094                                 bool disp_inset = false;
1095                                 if (row.endpos() < pit->size()) {
1096                                         InsetBase * in = pit->getInset(row.endpos());
1097                                         if (in)
1098                                                 disp_inset = in->display();
1099                                 }
1100                                 // If we have separators, this is not the last row of a
1101                                 // par, does not end in newline, and is not row above a
1102                                 // display inset... then stretch it
1103                                 if (ns
1104                                         && row.endpos() < pit->size()
1105                                         && !pit->isNewline(row.endpos() - 1)
1106                                         && !disp_inset
1107                                         ) {
1108                                                 fill_separator = w / ns;
1109                                 } else if (is_rtl) {
1110                                         x += w;
1111                                 }
1112                                 break;
1113                         }
1114     case LYX_ALIGN_RIGHT:
1115                         x += w;
1116                         break;
1117     case LYX_ALIGN_CENTER:
1118                         x += w / 2;
1119                         break;
1120                 }
1121         }
1122
1123         bidi.computeTables(*pit, *bv()->buffer(), row);
1124         if (is_rtl) {
1125                 pos_type body_pos = pit->beginOfBody();
1126                 pos_type end = row.endpos();
1127
1128                 if (body_pos > 0
1129                     && (body_pos > end || !pit->isLineSeparator(body_pos - 1)))
1130                 {
1131                         x += font_metrics::width(layout->labelsep, getLabelFont(pit));
1132                         if (body_pos <= end)
1133                                 x += fill_label_hfill;
1134                 }
1135         }
1136
1137         row.fill_hfill(fill_hfill);
1138         row.fill_label_hfill(fill_label_hfill);
1139         row.fill_separator(fill_separator);
1140         row.x(x);
1141 }
1142
1143
1144 // the cursor set functions have a special mechanism. When they
1145 // realize, that you left an empty paragraph, they will delete it.
1146
1147 void LyXText::cursorRightOneWord(LCursor & cur)
1148 {
1149         BOOST_ASSERT(this == cur.text());
1150         if (cur.pos() == cur.lastpos() && cur.par() != cur.lastpar()) {
1151                 ++cur.par();
1152                 cur.pos() = 0;
1153         } else {
1154                 // Skip through initial nonword stuff.
1155                 // Treat floats and insets as words.
1156                 while (cur.pos() != cur.lastpos() && !cur.paragraph().isWord(cur.pos()))
1157                         ++cur.pos();
1158                 // Advance through word.
1159                 while (cur.pos() != cur.lastpos() && cur.paragraph().isWord(cur.pos()))
1160                         ++cur.pos();
1161         }
1162         setCursor(cur, cur.par(), cur.pos());
1163 }
1164
1165
1166 void LyXText::cursorLeftOneWord(LCursor & cur)
1167 {
1168         BOOST_ASSERT(this == cur.text());
1169         if (cur.pos() == 0 && cur.par() != 0) {
1170                 --cur.par();
1171                 cur.pos() = cur.lastpos();
1172         } else { 
1173                 // Skip through initial nonword stuff.
1174                 // Treat floats and insets as words.
1175                 while (cur.pos() != 0 && !cur.paragraph().isWord(cur.pos() - 1))
1176                         --cur.pos();
1177                 // Advance through word.
1178                 while (cur.pos() != 0 && cur.paragraph().isWord(cur.pos() - 1))
1179                         --cur.pos();
1180         }
1181         setCursor(cur, cur.par(), cur.pos());
1182 }
1183
1184
1185 void LyXText::selectWord(LCursor & cur, word_location loc)
1186 {
1187         BOOST_ASSERT(this == cur.text());
1188         CursorSlice from = cur.current();
1189         CursorSlice to = cur.current();
1190         getWord(from, to, loc);
1191         if (cur.current() != from)
1192                 setCursor(cur, from.par(), from.pos());
1193         if (to == from)
1194                 return;
1195         cur.resetAnchor();
1196         setCursor(cur, to.par(), to.pos());
1197         cur.setSelection();
1198 }
1199
1200
1201 // Select the word currently under the cursor when no
1202 // selection is currently set
1203 bool LyXText::selectWordWhenUnderCursor(LCursor & cur, word_location loc)
1204 {
1205         BOOST_ASSERT(this == cur.text());
1206         if (cur.selection())
1207                 return false;
1208         selectWord(cur, loc);
1209         return cur.selection();
1210 }
1211
1212
1213 void LyXText::acceptChange(LCursor & cur)
1214 {
1215         BOOST_ASSERT(this == cur.text());
1216         if (!cur.selection() && cur.lastpos() != 0)
1217                 return;
1218
1219         CursorSlice const & startc = cur.selBegin();
1220         CursorSlice const & endc = cur.selEnd();
1221         if (startc.par() == endc.par()) {
1222                 recordUndoSelection(cur, Undo::INSERT);
1223                 getPar(startc)->acceptChange(startc.pos(), endc.pos());
1224                 finishUndo();
1225                 cur.clearSelection();
1226                 redoParagraph(getPar(startc));
1227                 setCursorIntern(cur, startc.par(), 0);
1228         }
1229 #warning handle multi par selection
1230 }
1231
1232
1233 void LyXText::rejectChange(LCursor & cur)
1234 {
1235         BOOST_ASSERT(this == cur.text());
1236         if (!cur.selection() && cur.lastpos() != 0)
1237                 return;
1238
1239         CursorSlice const & startc = cur.selBegin();
1240         CursorSlice const & endc = cur.selEnd();
1241         if (startc.par() == endc.par()) {
1242                 recordUndoSelection(cur, Undo::INSERT);
1243                 getPar(startc)->rejectChange(startc.pos(), endc.pos());
1244                 finishUndo();
1245                 cur.clearSelection();
1246                 redoParagraph(getPar(startc));
1247                 setCursorIntern(cur, startc.par(), 0);
1248         }
1249 #warning handle multi par selection
1250 }
1251
1252
1253 // Delete from cursor up to the end of the current or next word.
1254 void LyXText::deleteWordForward(LCursor & cur)
1255 {
1256         BOOST_ASSERT(this == cur.text());
1257         if (cur.lastpos() == 0)
1258                 cursorRight(cur, true);
1259         else {
1260                 cur.resetAnchor();
1261                 cur.selection() = true;
1262                 cursorRightOneWord(cur);
1263                 cur.setSelection();
1264                 cutSelection(cur, true, false);
1265         }
1266 }
1267
1268
1269 // Delete from cursor to start of current or prior word.
1270 void LyXText::deleteWordBackward(LCursor & cur)
1271 {
1272         BOOST_ASSERT(this == cur.text());
1273         if (cur.lastpos() == 0)
1274                 cursorLeft(cur, true);
1275         else {
1276                 cur.resetAnchor();
1277                 cur.selection() = true;
1278                 cursorLeftOneWord(cur);
1279                 cur.setSelection();
1280                 cutSelection(cur, true, false);
1281         }
1282 }
1283
1284
1285 // Kill to end of line.
1286 void LyXText::deleteLineForward(LCursor & cur)
1287 {
1288         BOOST_ASSERT(this == cur.text());
1289         if (cur.lastpos() == 0) {
1290                 // Paragraph is empty, so we just go to the right
1291                 cursorRight(cur, true);
1292         } else {
1293                 cur.resetAnchor();
1294                 cur.selection() = true; // to avoid deletion
1295                 cursorEnd(cur);
1296                 cur.setSelection();
1297                 // What is this test for ??? (JMarc)
1298                 if (!cur.selection())
1299                         deleteWordForward(cur);
1300                 else
1301                         cutSelection(cur, true, false);
1302         }
1303 }
1304
1305
1306 void LyXText::changeCase(LCursor & cur, LyXText::TextCase action)
1307 {
1308         BOOST_ASSERT(this == cur.text());
1309         CursorSlice from;
1310         CursorSlice to;
1311
1312         if (cur.selection()) {
1313                 from = cur.selBegin();
1314                 to = cur.selEnd();
1315         } else {
1316                 from = cursor();
1317                 getWord(from, to, lyx::PARTIAL_WORD);
1318                 setCursor(cur, to.par(), to.pos() + 1);
1319         }
1320
1321         recordUndoSelection(cur);
1322
1323         pos_type pos = from.pos();
1324         int par = from.par();
1325
1326         while (par != int(paragraphs().size()) &&
1327                (pos != to.pos() || par != to.par())) {
1328                 ParagraphList::iterator pit = getPar(par);
1329                 if (pos == pit->size()) {
1330                         ++par;
1331                         pos = 0;
1332                         continue;
1333                 }
1334                 unsigned char c = pit->getChar(pos);
1335                 if (c != Paragraph::META_INSET) {
1336                         switch (action) {
1337                         case text_lowercase:
1338                                 c = lowercase(c);
1339                                 break;
1340                         case text_capitalization:
1341                                 c = uppercase(c);
1342                                 action = text_lowercase;
1343                                 break;
1344                         case text_uppercase:
1345                                 c = uppercase(c);
1346                                 break;
1347                         }
1348                 }
1349 #warning changes
1350                 pit->setChar(pos, c);
1351                 ++pos;
1352         }
1353 }
1354
1355
1356 void LyXText::Delete(LCursor & cur)
1357 {
1358         BOOST_ASSERT(this == cur.text());
1359         // this is a very simple implementation
1360         // just move to the right
1361         // if you had success make a backspace
1362         size_t oldpar = cur.par();
1363         if (cursorRight(cur, true)) {
1364                 recordUndo(cur, Undo::DELETE, oldpar);
1365                 backspace(cur);
1366         }
1367 }
1368
1369
1370 void LyXText::backspace(LCursor & cur)
1371 {
1372         BOOST_ASSERT(this == cur.text());
1373         if (cur.pos() == 0) {
1374                 // The cursor is at the beginning of a paragraph, so
1375                 // the the backspace will collapse two paragraphs into
1376                 // one.
1377
1378                 // but it's not allowed unless it's new
1379                 Paragraph & par = cur.paragraph();
1380                 if (par.isChangeEdited(0, par.size()))
1381                         return;
1382
1383                 // we may paste some paragraphs
1384
1385                 // is it an empty paragraph?
1386                 pos_type lastpos = cur.lastpos();
1387                 if (lastpos == 0 || (lastpos == 1 && par.isSeparator(0))) {
1388                         // This is an empty paragraph and we delete it just
1389                         // by moving the cursor one step
1390                         // left and let the DeleteEmptyParagraphMechanism
1391                         // handle the actual deletion of the paragraph.
1392
1393                         if (cur.par() != 0) {
1394                                 cursorLeft(cur, true);
1395                                 // the layout things can change the height of a row !
1396                                 redoParagraph(cur);
1397                                 return;
1398                         }
1399                 }
1400
1401                 if (cur.par() != 0)
1402                         recordUndo(cur, Undo::DELETE, cur.par() - 1);
1403
1404                 ParagraphList::iterator tmppit = getPar(cur.par());
1405                 // We used to do cursorLeftIntern() here, but it is
1406                 // not a good idea since it triggers the auto-delete
1407                 // mechanism. So we do a cursorLeftIntern()-lite,
1408                 // without the dreaded mechanism. (JMarc)
1409                 if (cur.par() != 0) {
1410                         // steps into the above paragraph.
1411                         setCursorIntern(cur, cur.par() - 1,
1412                                         getPar(cur.par() - 1)->size(),
1413                                         false);
1414                 }
1415
1416                 // Pasting is not allowed, if the paragraphs have different
1417                 // layout. I think it is a real bug of all other
1418                 // word processors to allow it. It confuses the user.
1419                 // Correction: Pasting is always allowed with standard-layout
1420                 Buffer & buf = *bv()->buffer();
1421                 BufferParams const & bufparams = buf.params();
1422                 LyXTextClass const & tclass = bufparams.getLyXTextClass();
1423                 ParagraphList::iterator const cpit = getPar(cur.par());
1424
1425                 if (cpit != tmppit
1426                     && (cpit->layout() == tmppit->layout()
1427                         || tmppit->layout() == tclass.defaultLayout())
1428                     && cpit->getAlign() == tmppit->getAlign()) {
1429                         mergeParagraph(bufparams, buf.paragraphs(), cpit);
1430
1431                         if (cur.pos() != 0 && cpit->isSeparator(cur.pos() - 1))
1432                                 --cur.pos();
1433
1434                         // the counters may have changed
1435                         updateCounters();
1436                         setCursor(cur, cur.par(), cur.pos(), false);
1437                 }
1438         } else {
1439                 // this is the code for a normal backspace, not pasting
1440                 // any paragraphs
1441                 recordUndo(cur, Undo::DELETE);
1442                 // We used to do cursorLeftIntern() here, but it is
1443                 // not a good idea since it triggers the auto-delete
1444                 // mechanism. So we do a cursorLeftIntern()-lite,
1445                 // without the dreaded mechanism. (JMarc)
1446                 setCursorIntern(cur, cur.par(), cur.pos() - 1,
1447                                 false, cur.boundary());
1448                 cur.paragraph().erase(cur.pos());
1449         }
1450
1451         if (cur.pos() == cur.lastpos())
1452                 setCurrentFont(cur);
1453
1454         redoParagraph(cur);
1455         setCursor(cur, cur.par(), cur.pos(), false, cur.boundary());
1456 }
1457
1458
1459 ParagraphList::iterator LyXText::cursorPar() const
1460 {
1461         //lyxerr << "### cursorPar: cursor: " << bv()->cursor() << endl;
1462         //lyxerr << "xxx cursorPar: cursor: " << cursor() << endl;
1463         return getPar(cursor().par());
1464 }
1465
1466
1467 ParagraphList::iterator LyXText::getPar(CursorSlice const & cur) const
1468 {
1469         return getPar(cur.par());
1470 }
1471
1472
1473 ParagraphList::iterator LyXText::getPar(int par) const
1474 {
1475         //lyxerr << "getPar: " << par << " from " << paragraphs().size() << endl;
1476         BOOST_ASSERT(par >= 0);
1477         BOOST_ASSERT(par < int(paragraphs().size()));
1478         ParagraphList::iterator pit = paragraphs().begin();
1479         advance(pit, par);
1480         return pit;
1481 }
1482
1483
1484 // y is relative to this LyXText's top
1485 RowList::iterator
1486 LyXText::getRowNearY(int y, ParagraphList::iterator & pit) const
1487 {
1488         BOOST_ASSERT(!paragraphs().empty());
1489         BOOST_ASSERT(!paragraphs().begin()->rows.empty());
1490 #if 1
1491         ParagraphList::iterator const
1492                 pend = boost::prior(paragraphs().end());
1493         pit = paragraphs().begin();
1494         while (int(pit->y + pit->height) < y && pit != pend)
1495                 ++pit;
1496
1497         RowList::iterator rit = pit->rows.end();
1498         RowList::iterator const rbegin = pit->rows.begin();
1499         do {
1500                 --rit;
1501         } while (rit != rbegin && int(pit->y + rit->y_offset()) > y);
1502
1503         return rit;
1504 #else
1505         pit = boost::prior(paragraphs().end());
1506
1507         RowList::iterator rit = lastRow();
1508         RowList::iterator rbegin = firstRow();
1509
1510         while (rit != rbegin && int(pit->y + rit->y_offset()) > y)
1511                 previousRow(pit, rit);
1512
1513         return rit;
1514 #endif
1515 }
1516
1517
1518 int LyXText::getDepth() const
1519 {
1520         return cursorPar()->getDepth();
1521 }
1522
1523
1524 RowList::iterator LyXText::firstRow() const
1525 {
1526         return paragraphs().front().rows.begin();
1527 }
1528
1529
1530 RowList::iterator LyXText::lastRow() const
1531 {
1532         return boost::prior(endRow());
1533 }
1534
1535
1536 RowList::iterator LyXText::endRow() const
1537 {
1538         return paragraphs().back().rows.end();
1539 }
1540
1541
1542 void LyXText::nextRow(ParagraphList::iterator & pit,
1543         RowList::iterator & rit) const
1544 {
1545         ++rit;
1546         if (rit == pit->rows.end()) {
1547                 ++pit;
1548                 if (pit == paragraphs().end())
1549                         --pit;
1550                 else
1551                         rit = pit->rows.begin();
1552         }
1553 }
1554
1555
1556 void LyXText::previousRow(ParagraphList::iterator & pit,
1557         RowList::iterator & rit) const
1558 {
1559         if (rit != pit->rows.begin())
1560                 --rit;
1561         else {
1562                 BOOST_ASSERT(pit != paragraphs().begin());
1563                 --pit;
1564                 rit = boost::prior(pit->rows.end());
1565         }
1566 }
1567
1568
1569 int LyXText::parOffset(ParagraphList::iterator pit) const
1570 {
1571         return distance(paragraphs().begin(), pit);
1572 }
1573
1574
1575 void LyXText::redoParagraphInternal(ParagraphList::iterator pit)
1576 {
1577         // remove rows of paragraph, keep track of height changes
1578         height -= pit->height;
1579
1580         // clear old data
1581         pit->rows.clear();
1582         pit->height = 0;
1583         pit->width = 0;
1584
1585         // redo insets
1586         InsetList::iterator ii = pit->insetlist.begin();
1587         InsetList::iterator iend = pit->insetlist.end();
1588         for (; ii != iend; ++ii) {
1589                 Dimension dim;
1590                 int const w = textWidth() - leftMargin(pit) - rightMargin(*pit);
1591                 MetricsInfo mi(bv(), getFont(pit, ii->pos), w);
1592                 ii->inset->metrics(mi, dim);
1593         }
1594
1595         // rebreak the paragraph
1596         pit->setBeginOfBody();
1597         pos_type z = 0;
1598         do {
1599                 Row row(z);
1600                 rowBreakPoint(pit, row);
1601                 z = row.endpos();
1602                 fill(pit, row, textwidth_);
1603                 prepareToPrint(pit, row);
1604                 setHeightOfRow(pit, row);
1605                 row.y_offset(pit->height);
1606                 pit->rows.push_back(row);
1607                 pit->width = std::max(pit->width, row.width());
1608                 pit->height += row.height();
1609         } while (z < pit->size());
1610
1611         height += pit->height;
1612         //lyxerr << "redoParagraph: " << pit->rows.size() << " rows\n";
1613 }
1614
1615
1616 void LyXText::redoParagraphs(ParagraphList::iterator pit,
1617   ParagraphList::iterator end)
1618 {
1619         for ( ; pit != end; ++pit)
1620                 redoParagraphInternal(pit);
1621         updateParPositions();
1622 }
1623
1624
1625 void LyXText::redoParagraph(ParagraphList::iterator pit)
1626 {
1627         redoParagraphInternal(pit);
1628         updateParPositions();
1629 }
1630
1631
1632 void LyXText::fullRebreak()
1633 {
1634         redoParagraphs(paragraphs().begin(), paragraphs().end());
1635         bv()->cursor().resetAnchor();
1636 }
1637
1638
1639 void LyXText::metrics(MetricsInfo & mi, Dimension & dim)
1640 {
1641         //BOOST_ASSERT(mi.base.textwidth);
1642         if (mi.base.textwidth)
1643                 textwidth_ = mi.base.textwidth;
1644         //lyxerr << "LyXText::metrics: width: " << mi.base.textwidth
1645         //      << " textWidth: " << textWidth() << "\nfont: " << mi.base.font << endl;
1646
1647         // Rebuild row cache. This recomputes height as well.
1648         redoParagraphs(paragraphs().begin(), paragraphs().end());
1649
1650         width = maxParagraphWidth(paragraphs());
1651
1652         // final dimension
1653         dim.asc = firstRow()->ascent_of_text();
1654         dim.des = height - dim.asc;
1655         dim.wid = width;
1656 }
1657
1658
1659 // only used for inset right now. should also be used for main text
1660 void LyXText::draw(PainterInfo & pi, int x, int y) const
1661 {
1662         xo_ = x;
1663         yo_ = y;
1664         paintTextInset(*this, pi, x, y);
1665 }
1666
1667
1668 // only used for inset right now. should also be used for main text
1669 void LyXText::drawSelection(PainterInfo &, int, int) const
1670 {
1671         //lyxerr << "LyXText::drawSelection at " << x << " " << y << endl;
1672 }
1673
1674
1675 bool LyXText::isLastRow(ParagraphList::iterator pit, Row const & row) const
1676 {
1677         return row.endpos() >= pit->size()
1678                && boost::next(pit) == paragraphs().end();
1679 }
1680
1681
1682 bool LyXText::isFirstRow(ParagraphList::iterator pit, Row const & row) const
1683 {
1684         return row.pos() == 0 && pit == paragraphs().begin();
1685 }
1686
1687
1688 void LyXText::getWord(CursorSlice & from, CursorSlice & to,
1689         word_location const loc)
1690 {
1691         Paragraph & from_par = *getPar(from);
1692         switch (loc) {
1693         case lyx::WHOLE_WORD_STRICT:
1694                 if (from.pos() == 0 || from.pos() == from_par.size()
1695                     || from_par.isSeparator(from.pos())
1696                     || from_par.isKomma(from.pos())
1697                     || from_par.isNewline(from.pos())
1698                     || from_par.isSeparator(from.pos() - 1)
1699                     || from_par.isKomma(from.pos() - 1)
1700                     || from_par.isNewline(from.pos() - 1)) {
1701                         to = from;
1702                         return;
1703                 }
1704                 // no break here, we go to the next
1705
1706         case lyx::WHOLE_WORD:
1707                 // Move cursor to the beginning, when not already there.
1708                 if (from.pos() && !from_par.isSeparator(from.pos() - 1)
1709                     && !(from_par.isKomma(from.pos() - 1)
1710                          || from_par.isNewline(from.pos() - 1)))
1711                         cursorLeftOneWord(bv()->cursor());
1712                 break;
1713         case lyx::PREVIOUS_WORD:
1714                 // always move the cursor to the beginning of previous word
1715                 cursorLeftOneWord(bv()->cursor());
1716                 break;
1717         case lyx::NEXT_WORD:
1718                 lyxerr << "LyXText::getWord: NEXT_WORD not implemented yet"
1719                        << endl;
1720                 break;
1721         case lyx::PARTIAL_WORD:
1722                 break;
1723         }
1724         to = from;
1725         Paragraph & to_par = *getPar(to);
1726         while (to.pos() < to_par.size()
1727                && !to_par.isSeparator(to.pos())
1728                && !to_par.isKomma(to.pos())
1729                && !to_par.isNewline(to.pos())
1730                && !to_par.isHfill(to.pos())
1731                && !to_par.isInset(to.pos()))
1732         {
1733                 ++to.pos();
1734         }
1735 }
1736
1737
1738 void LyXText::write(Buffer const & buf, std::ostream & os) const
1739 {
1740         ParagraphList::const_iterator pit = paragraphs().begin();
1741         ParagraphList::const_iterator end = paragraphs().end();
1742         Paragraph::depth_type dth = 0;
1743         for (; pit != end; ++pit)
1744                 pit->write(buf, os, buf.params(), dth);
1745 }
1746
1747
1748 bool LyXText::read(Buffer const & buf, LyXLex & lex)
1749 {
1750         static Change current_change;
1751
1752         bool the_end_read = false;
1753         ParagraphList::iterator pit = paragraphs().begin();
1754         Paragraph::depth_type depth = 0;
1755
1756         while (lex.isOK()) {
1757                 lex.nextToken();
1758                 string token = lex.getString();
1759
1760                 if (token.empty())
1761                         continue;
1762
1763                 if (in_inset_) {
1764
1765                         if (token == "\\end_inset") {
1766                                 the_end_read = true;
1767                                 break;
1768                         }
1769
1770                         if (token == "\\end_document") {
1771                                 lex.printError("\\end_document read in inset! Error in document!");
1772                                 return false;
1773                         }
1774
1775                 } else {
1776
1777                         if (token == "\\end_document") {
1778                                 the_end_read = true;
1779                                 continue;
1780                         }
1781
1782                 }
1783
1784                 // FIXME: ugly.
1785                 int unknown = 0;
1786
1787                 if (token == "\\begin_layout") {
1788                         lex.pushToken(token);
1789
1790                         Paragraph par;
1791                         par.params().depth(depth);
1792                         if (buf.params().tracking_changes)
1793                                 par.trackChanges();
1794                         LyXFont f(LyXFont::ALL_INHERIT, buf.params().language);
1795                         par.setFont(0, f);
1796
1797                         // insert after
1798                         if (pit != paragraphs().end())
1799                                 ++pit;
1800
1801                         pit = paragraphs().insert(pit, par);
1802
1803                         // FIXME: goddamn InsetTabular makes us pass a Buffer
1804                         // not BufferParams
1805                         ::readParagraph(buf, *pit, lex);
1806
1807                 } else if (token == "\\begin_deeper") {
1808                         ++depth;
1809                 } else if (token == "\\end_deeper") {
1810                         if (!depth) {
1811                                 lex.printError("\\end_deeper: " "depth is already null");
1812                         } else {
1813                                 --depth;
1814                         }
1815                 } else {
1816                         ++unknown;
1817                 }
1818
1819         }
1820         return the_end_read;
1821 }
1822
1823
1824 int LyXText::ascent() const
1825 {
1826         return firstRow()->ascent_of_text();
1827 }
1828
1829
1830 int LyXText::descent() const
1831 {
1832         return height - firstRow()->ascent_of_text();
1833 }
1834
1835
1836 int LyXText::cursorX(CursorSlice const & cur) const
1837 {
1838         ParagraphList::iterator pit = getPar(cur);
1839         if (pit->rows.empty())
1840                 return xo_;
1841         Row const & row         = *pit->getRow(cur.pos());
1842         pos_type pos            = cur.pos();
1843         pos_type cursor_vpos    = 0;
1844         double x                = row.x();
1845         double fill_separator   = row.fill_separator();
1846         double fill_hfill       = row.fill_hfill();
1847         double fill_label_hfill = row.fill_label_hfill();
1848         pos_type const row_pos  = row.pos();
1849         pos_type const end      = row.endpos();
1850
1851         if (end <= row_pos)
1852                 cursor_vpos = row_pos;
1853         else if (pos >= end)
1854                 cursor_vpos = (pit->isRightToLeftPar(bv()->buffer()->params()))
1855                         ? row_pos : end;
1856         else if (pos > row_pos && pos >= end)
1857                 // Place cursor after char at (logical) position pos - 1
1858                 cursor_vpos = (bidi.level(pos - 1) % 2 == 0)
1859                         ? bidi.log2vis(pos - 1) + 1 : bidi.log2vis(pos - 1);
1860         else
1861                 // Place cursor before char at (logical) position pos
1862                 cursor_vpos = (bidi.level(pos) % 2 == 0)
1863                         ? bidi.log2vis(pos) : bidi.log2vis(pos) + 1;
1864
1865         pos_type body_pos = pit->beginOfBody();
1866         if (body_pos > 0 &&
1867             (body_pos > end || !pit->isLineSeparator(body_pos - 1)))
1868                 body_pos = 0;
1869
1870         for (pos_type vpos = row_pos; vpos < cursor_vpos; ++vpos) {
1871                 pos_type pos = bidi.vis2log(vpos);
1872                 if (body_pos > 0 && pos == body_pos - 1) {
1873                         x += fill_label_hfill
1874                                 + font_metrics::width(pit->layout()->labelsep,
1875                                                       getLabelFont(pit));
1876                         if (pit->isLineSeparator(body_pos - 1))
1877                                 x -= singleWidth(pit, body_pos - 1);
1878                 }
1879
1880                 if (hfillExpansion(*pit, row, pos)) {
1881                         x += singleWidth(pit, pos);
1882                         if (pos >= body_pos)
1883                                 x += fill_hfill;
1884                         else
1885                                 x += fill_label_hfill;
1886                 } else if (pit->isSeparator(pos)) {
1887                         x += singleWidth(pit, pos);
1888                         if (pos >= body_pos)
1889                                 x += fill_separator;
1890                 } else
1891                         x += singleWidth(pit, pos);
1892         }
1893         return xo_ + int(x);
1894 }
1895
1896
1897 int LyXText::cursorY(CursorSlice const & cur) const
1898 {
1899         Paragraph & par = *getPar(cur);
1900         Row & row = *par.getRow(cur.pos());
1901         return yo_ + par.y + row.y_offset() + row.baseline();
1902 }
1903
1904
1905 CursorSlice & LyXText::cursor()
1906 {
1907         //lyxerr << "# accessing slice " << findText(this) << endl;
1908         if (this != bv()->cursor().text()) {
1909                 lyxerr << "cursor: " << bv()->cursor()
1910                         << "\ntext: " << bv()->cursor().text() 
1911                         << "\nthis: " << this << endl;
1912                 BOOST_ASSERT(false);
1913         }
1914         return bv()->cursor().current();
1915 }
1916
1917
1918 CursorSlice const & LyXText::cursor() const
1919 {
1920         if (this != bv()->cursor().text()) {
1921                 lyxerr << "cursor: " << bv()->cursor()
1922                         << "\ntext: " << bv()->cursor().text() 
1923                         << "\nthis: " << this << endl;
1924                 BOOST_ASSERT(false);
1925         }
1926         return bv()->cursor().current();
1927 }
1928
1929
1930 void LyXText::replaceSelection(LCursor & cur)
1931 {
1932         BOOST_ASSERT(this == cur.text());
1933         if (cur.selection()) {
1934                 cutSelection(cur, true, false);
1935                 cur.update();
1936         }
1937 }
1938
1939
1940 // Returns the current font and depth as a message.
1941 string LyXText::currentState(LCursor & cur)
1942 {
1943         BOOST_ASSERT(this == cur.text());
1944         Buffer * buffer = bv()->buffer();
1945         Paragraph const & par = cur.paragraph();
1946         std::ostringstream os;
1947
1948         bool const show_change = buffer->params().tracking_changes
1949                 && cur.pos() != cur.lastpos()
1950                 && par.lookupChange(cur.pos()) != Change::UNCHANGED;
1951
1952         if (show_change) {
1953                 Change change = par.lookupChangeFull(cur.pos());
1954                 Author const & a = buffer->params().authors().get(change.author);
1955                 os << _("Change: ") << a.name();
1956                 if (!a.email().empty())
1957                         os << " (" << a.email() << ")";
1958                 if (change.changetime)
1959                         os << _(" at ") << ctime(&change.changetime);
1960                 os << " : ";
1961         }
1962
1963         // I think we should only show changes from the default
1964         // font. (Asger)
1965         LyXFont font = real_current_font;
1966         font.reduce(buffer->params().getLyXTextClass().defaultfont());
1967
1968         // avoid _(...) re-entrance problem
1969         string const s = font.stateText(&buffer->params());
1970         os << bformat(_("Font: %1$s"), s);
1971
1972         // os << bformat(_("Font: %1$s"), font.stateText(&buffer->params));
1973
1974         // The paragraph depth
1975         int depth = getDepth();
1976         if (depth > 0)
1977                 os << bformat(_(", Depth: %1$s"), tostr(depth));
1978
1979         // The paragraph spacing, but only if different from
1980         // buffer spacing.
1981         Spacing const & spacing = par.params().spacing();
1982         if (!spacing.isDefault()) {
1983                 os << _(", Spacing: ");
1984                 switch (spacing.getSpace()) {
1985                 case Spacing::Single:
1986                         os << _("Single");
1987                         break;
1988                 case Spacing::Onehalf:
1989                         os << _("OneHalf");
1990                         break;
1991                 case Spacing::Double:
1992                         os << _("Double");
1993                         break;
1994                 case Spacing::Other:
1995                         os << _("Other (") << spacing.getValue() << ')';
1996                         break;
1997                 case Spacing::Default:
1998                         // should never happen, do nothing
1999                         break;
2000                 }
2001         }
2002 #ifdef DEVEL_VERSION
2003         os << _(", Paragraph: ") << par.id();
2004         os << _(", Position: ") << cur.pos();
2005         Row & row = cur.textRow();
2006         os << bformat(_(", Row b:%1$d e:%2$d"), row.pos(), row.endpos());
2007         os << _(", Inset: ");
2008         InsetOld * inset = par.inInset();
2009         if (inset)
2010                 os << inset << " owner: " << inset->owner();
2011         else
2012                 os << -1;
2013 #endif
2014         return os.str();
2015 }
2016
2017
2018 string LyXText::getPossibleLabel(LCursor & cur) const
2019 {
2020         ParagraphList & plist = paragraphs();
2021         ParagraphList::iterator pit = getPar(cur.par());
2022
2023         LyXLayout_ptr layout = pit->layout();
2024
2025         if (layout->latextype == LATEX_PARAGRAPH && pit != plist.begin()) {
2026                 ParagraphList::iterator pit2 = boost::prior(pit);
2027
2028                 LyXLayout_ptr const & layout2 = pit2->layout();
2029
2030                 if (layout2->latextype != LATEX_PARAGRAPH) {
2031                         pit = pit2;
2032                         layout = layout2;
2033                 }
2034         }
2035
2036         string text = layout->latexname().substr(0, 3);
2037         if (layout->latexname() == "theorem")
2038                 text = "thm"; // Create a correct prefix for prettyref
2039
2040         text += ':';
2041         if (layout->latextype == LATEX_PARAGRAPH ||
2042             lyxrc.label_init_length < 0)
2043                 text.erase();
2044
2045         string par_text = pit->asString(*cur.bv().buffer(), false);
2046         for (int i = 0; i < lyxrc.label_init_length; ++i) {
2047                 if (par_text.empty())
2048                         break;
2049                 string head;
2050                 par_text = split(par_text, head, ' ');
2051                 // Is it legal to use spaces in labels ?
2052                 if (i > 0)
2053                         text += '-';
2054                 text += head;
2055         }
2056
2057         return text;
2058 }