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