]> git.lyx.org Git - lyx.git/blob - src/Text.cpp
typo
[lyx.git] / src / Text.cpp
1 /**
2  * \file src/Text.cpp
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 Dov Feldstern
9  * \author Jean-Marc Lasgouttes
10  * \author John Levon
11  * \author André Pönitz
12  * \author Stefan Schimanski
13  * \author Dekel Tsur
14  * \author Jürgen Vigna
15  *
16  * Full author contact details are available in file CREDITS.
17  */
18
19 #include <config.h>
20
21 #include "Text.h"
22
23 #include "Author.h"
24 #include "Buffer.h"
25 #include "buffer_funcs.h"
26 #include "BufferParams.h"
27 #include "BufferView.h"
28 #include "Changes.h"
29 #include "CompletionList.h"
30 #include "Cursor.h"
31 #include "CutAndPaste.h"
32 #include "DispatchResult.h"
33 #include "Encoding.h"
34 #include "ErrorList.h"
35 #include "FuncRequest.h"
36 #include "factory.h"
37 #include "InsetList.h"
38 #include "Language.h"
39 #include "Layout.h"
40 #include "Length.h"
41 #include "Lexer.h"
42 #include "lyxfind.h"
43 #include "LyXRC.h"
44 #include "Paragraph.h"
45 #include "ParagraphParameters.h"
46 #include "ParIterator.h"
47 #include "TextClass.h"
48 #include "TextMetrics.h"
49 #include "VSpace.h"
50 #include "WordLangTuple.h"
51 #include "WordList.h"
52
53 #include "insets/InsetText.h"
54 #include "insets/InsetBibitem.h"
55 #include "insets/InsetCaption.h"
56 #include "insets/InsetNewline.h"
57 #include "insets/InsetNewpage.h"
58 #include "insets/InsetArgument.h"
59 #include "insets/InsetSpace.h"
60 #include "insets/InsetSpecialChar.h"
61 #include "insets/InsetTabular.h"
62
63 #include "support/debug.h"
64 #include "support/docstream.h"
65 #include "support/gettext.h"
66 #include "support/lassert.h"
67 #include "support/lstrings.h"
68 #include "support/textutils.h"
69
70 #include <boost/next_prior.hpp>
71
72 #include <sstream>
73
74 using namespace std;
75 using namespace lyx::support;
76
77 namespace lyx {
78
79 using cap::cutSelection;
80 using cap::pasteParagraphList;
81
82 static bool moveItem(Paragraph & fromPar, pos_type fromPos,
83         Paragraph & toPar, pos_type toPos, BufferParams const & params)
84 {
85         // Note: moveItem() does not honour change tracking!
86         // Therefore, it should only be used for breaking and merging paragraphs
87
88         // We need a copy here because the character at fromPos is going to be erased.
89         Font const tmpFont = fromPar.getFontSettings(params, fromPos);
90         Change const tmpChange = fromPar.lookupChange(fromPos);
91
92         if (Inset * tmpInset = fromPar.getInset(fromPos)) {
93                 fromPar.releaseInset(fromPos);
94                 // The inset is not in fromPar any more.
95                 if (!toPar.insertInset(toPos, tmpInset, tmpFont, tmpChange)) {
96                         delete tmpInset;
97                         return false;
98                 }
99                 return true;
100         }
101
102         char_type const tmpChar = fromPar.getChar(fromPos);
103         fromPar.eraseChar(fromPos, false);
104         toPar.insertChar(toPos, tmpChar, tmpFont, tmpChange);
105         return true;
106 }
107
108
109 void breakParagraphConservative(BufferParams const & bparams,
110         ParagraphList & pars, pit_type par_offset, pos_type pos)
111 {
112         // create a new paragraph
113         Paragraph & tmp = *pars.insert(boost::next(pars.begin(), par_offset + 1),
114                                        Paragraph());
115         Paragraph & par = pars[par_offset];
116
117         tmp.setInsetOwner(&par.inInset());
118         tmp.makeSameLayout(par);
119
120         LASSERT(pos <= par.size(), /**/);
121
122         if (pos < par.size()) {
123                 // move everything behind the break position to the new paragraph
124                 pos_type pos_end = par.size() - 1;
125
126                 for (pos_type i = pos, j = 0; i <= pos_end; ++i) {
127                         if (moveItem(par, pos, tmp, j, bparams)) {
128                                 ++j;
129                         }
130                 }
131                 // Move over the end-of-par change information
132                 tmp.setChange(tmp.size(), par.lookupChange(par.size()));
133                 par.setChange(par.size(), Change(bparams.trackChanges ?
134                                            Change::INSERTED : Change::UNCHANGED));
135         }
136 }
137
138
139 void mergeParagraph(BufferParams const & bparams,
140         ParagraphList & pars, pit_type par_offset)
141 {
142         Paragraph & next = pars[par_offset + 1];
143         Paragraph & par = pars[par_offset];
144
145         pos_type pos_end = next.size() - 1;
146         pos_type pos_insert = par.size();
147
148         // the imaginary end-of-paragraph character (at par.size()) has to be
149         // marked as unmodified. Otherwise, its change is adopted by the first
150         // character of the next paragraph.
151         if (par.isChanged(par.size())) {
152                 LYXERR(Debug::CHANGES,
153                    "merging par with inserted/deleted end-of-par character");
154                 par.setChange(par.size(), Change(Change::UNCHANGED));
155         }
156
157         Change change = next.lookupChange(next.size());
158
159         // move the content of the second paragraph to the end of the first one
160         for (pos_type i = 0, j = pos_insert; i <= pos_end; ++i) {
161                 if (moveItem(next, 0, par, j, bparams)) {
162                         ++j;
163                 }
164         }
165
166         // move the change of the end-of-paragraph character
167         par.setChange(par.size(), change);
168
169         pars.erase(boost::next(pars.begin(), par_offset + 1));
170 }
171
172
173 Text::Text(InsetText * owner, bool use_default_layout)
174         : owner_(owner), autoBreakRows_(false), undo_counter_(0)
175 {
176         pars_.push_back(Paragraph());
177         Paragraph & par = pars_.back();
178         par.setInsetOwner(owner);
179         DocumentClass const & dc = owner->buffer().params().documentClass();
180         if (use_default_layout)
181                 par.setDefaultLayout(dc);
182         else
183                 par.setPlainLayout(dc);
184 }
185
186
187 Text::Text(InsetText * owner, Text const & text)
188         : owner_(owner), autoBreakRows_(text.autoBreakRows_), undo_counter_(0)
189 {
190         pars_ = text.pars_;
191         ParagraphList::iterator const end = pars_.end();
192         ParagraphList::iterator it = pars_.begin();
193         for (; it != end; ++it)
194                 it->setInsetOwner(owner);
195 }
196
197
198 pit_type Text::depthHook(pit_type pit, depth_type depth) const
199 {
200         pit_type newpit = pit;
201
202         if (newpit != 0)
203                 --newpit;
204
205         while (newpit != 0 && pars_[newpit].getDepth() > depth)
206                 --newpit;
207
208         if (pars_[newpit].getDepth() > depth)
209                 return pit;
210
211         return newpit;
212 }
213
214
215 pit_type Text::outerHook(pit_type par_offset) const
216 {
217         Paragraph const & par = pars_[par_offset];
218
219         if (par.getDepth() == 0)
220                 return pars_.size();
221         return depthHook(par_offset, depth_type(par.getDepth() - 1));
222 }
223
224
225 bool Text::isFirstInSequence(pit_type par_offset) const
226 {
227         Paragraph const & par = pars_[par_offset];
228
229         pit_type dhook_offset = depthHook(par_offset, par.getDepth());
230
231         if (dhook_offset == par_offset)
232                 return true;
233
234         Paragraph const & dhook = pars_[dhook_offset];
235
236         return dhook.layout() != par.layout()
237                 || dhook.getDepth() != par.getDepth();
238 }
239
240
241 Font const Text::outerFont(pit_type par_offset) const
242 {
243         depth_type par_depth = pars_[par_offset].getDepth();
244         FontInfo tmpfont = inherit_font;
245
246         // Resolve against environment font information
247         while (par_offset != pit_type(pars_.size())
248                && par_depth
249                && !tmpfont.resolved()) {
250                 par_offset = outerHook(par_offset);
251                 if (par_offset != pit_type(pars_.size())) {
252                         tmpfont.realize(pars_[par_offset].layout().font);
253                         par_depth = pars_[par_offset].getDepth();
254                 }
255         }
256
257         return Font(tmpfont);
258 }
259
260
261 static void acceptOrRejectChanges(ParagraphList & pars,
262         BufferParams const & bparams, Text::ChangeOp op)
263 {
264         pit_type pars_size = static_cast<pit_type>(pars.size());
265
266         // first, accept or reject changes within each individual
267         // paragraph (do not consider end-of-par)
268         for (pit_type pit = 0; pit < pars_size; ++pit) {
269                 // prevent assertion failure
270                 if (!pars[pit].empty()) {
271                         if (op == Text::ACCEPT)
272                                 pars[pit].acceptChanges(0, pars[pit].size());
273                         else
274                                 pars[pit].rejectChanges(0, pars[pit].size());
275                 }
276         }
277
278         // next, accept or reject imaginary end-of-par characters
279         for (pit_type pit = 0; pit < pars_size; ++pit) {
280                 pos_type pos = pars[pit].size();
281                 if (pars[pit].isChanged(pos)) {
282                         // keep the end-of-par char if it is inserted and accepted
283                         // or when it is deleted and rejected.
284                         if (pars[pit].isInserted(pos) == (op == Text::ACCEPT)) {
285                                 pars[pit].setChange(pos, Change(Change::UNCHANGED));
286                         } else {
287                                 if (pit == pars_size - 1) {
288                                         // we cannot remove a par break at the end of the last
289                                         // paragraph; instead, we mark it unchanged
290                                         pars[pit].setChange(pos, Change(Change::UNCHANGED));
291                                 } else {
292                                         mergeParagraph(bparams, pars, pit);
293                                         --pit;
294                                         --pars_size;
295                                 }
296                         }
297                 }
298         }
299 }
300
301
302 void acceptChanges(ParagraphList & pars, BufferParams const & bparams)
303 {
304         acceptOrRejectChanges(pars, bparams, Text::ACCEPT);
305 }
306
307
308 void rejectChanges(ParagraphList & pars, BufferParams const & bparams)
309 {
310         acceptOrRejectChanges(pars, bparams, Text::REJECT);
311 }
312
313
314 InsetText const & Text::inset() const
315 {
316         return *owner_;
317 }
318
319
320 void Text::readParToken(Paragraph & par, Lexer & lex,
321         string const & token, Font & font, Change & change, ErrorList & errorList)
322 {
323         Buffer * buf = const_cast<Buffer *>(&owner_->buffer());
324         BufferParams const & bp = buf->params();
325
326         if (token[0] != '\\') {
327                 docstring dstr = lex.getDocString();
328                 par.appendString(dstr, font, change);
329
330         } else if (token == "\\begin_layout") {
331                 lex.eatLine();
332                 docstring layoutname = lex.getDocString();
333
334                 font = Font(inherit_font, bp.language);
335                 change = Change(Change::UNCHANGED);
336
337                 DocumentClass const & tclass = bp.documentClass();
338
339                 if (layoutname.empty())
340                         layoutname = tclass.defaultLayoutName();
341
342                 if (owner_->forcePlainLayout()) {
343                         // in this case only the empty layout is allowed
344                         layoutname = tclass.plainLayoutName();
345                 } else if (par.usePlainLayout()) {
346                         // in this case, default layout maps to empty layout 
347                         if (layoutname == tclass.defaultLayoutName())
348                                 layoutname = tclass.plainLayoutName();
349                 } else { 
350                         // otherwise, the empty layout maps to the default
351                         if (layoutname == tclass.plainLayoutName())
352                                 layoutname = tclass.defaultLayoutName();
353                 }
354
355                 // When we apply an unknown layout to a document, we add this layout to the textclass
356                 // of this document. For example, when you apply class article to a beamer document,
357                 // all unknown layouts such as frame will be added to document class article so that
358                 // these layouts can keep their original names.
359                 tclass.addLayoutIfNeeded(layoutname);
360
361                 par.setLayout(bp.documentClass()[layoutname]);
362
363                 // Test whether the layout is obsolete.
364                 Layout const & layout = par.layout();
365                 if (!layout.obsoleted_by().empty())
366                         par.setLayout(bp.documentClass()[layout.obsoleted_by()]);
367
368                 par.params().read(lex);
369
370         } else if (token == "\\end_layout") {
371                 LYXERR0("Solitary \\end_layout in line " << lex.lineNumber() << "\n"
372                        << "Missing \\begin_layout ?");
373         } else if (token == "\\end_inset") {
374                 LYXERR0("Solitary \\end_inset in line " << lex.lineNumber() << "\n"
375                        << "Missing \\begin_inset ?");
376         } else if (token == "\\begin_inset") {
377                 Inset * inset = readInset(lex, buf);
378                 if (inset)
379                         par.insertInset(par.size(), inset, font, change);
380                 else {
381                         lex.eatLine();
382                         docstring line = lex.getDocString();
383                         errorList.push_back(ErrorItem(_("Unknown Inset"), line,
384                                             par.id(), 0, par.size()));
385                 }
386         } else if (token == "\\family") {
387                 lex.next();
388                 setLyXFamily(lex.getString(), font.fontInfo());
389         } else if (token == "\\series") {
390                 lex.next();
391                 setLyXSeries(lex.getString(), font.fontInfo());
392         } else if (token == "\\shape") {
393                 lex.next();
394                 setLyXShape(lex.getString(), font.fontInfo());
395         } else if (token == "\\size") {
396                 lex.next();
397                 setLyXSize(lex.getString(), font.fontInfo());
398         } else if (token == "\\lang") {
399                 lex.next();
400                 string const tok = lex.getString();
401                 Language const * lang = languages.getLanguage(tok);
402                 if (lang) {
403                         font.setLanguage(lang);
404                 } else {
405                         font.setLanguage(bp.language);
406                         lex.printError("Unknown language `$$Token'");
407                 }
408         } else if (token == "\\numeric") {
409                 lex.next();
410                 font.fontInfo().setNumber(setLyXMisc(lex.getString()));
411         } else if (token == "\\emph") {
412                 lex.next();
413                 font.fontInfo().setEmph(setLyXMisc(lex.getString()));
414         } else if (token == "\\bar") {
415                 lex.next();
416                 string const tok = lex.getString();
417
418                 if (tok == "under")
419                         font.fontInfo().setUnderbar(FONT_ON);
420                 else if (tok == "no")
421                         font.fontInfo().setUnderbar(FONT_OFF);
422                 else if (tok == "default")
423                         font.fontInfo().setUnderbar(FONT_INHERIT);
424                 else
425                         lex.printError("Unknown bar font flag "
426                                        "`$$Token'");
427         } else if (token == "\\strikeout") {
428                 lex.next();
429                 font.fontInfo().setStrikeout(setLyXMisc(lex.getString()));
430         } else if (token == "\\uuline") {
431                 lex.next();
432                 font.fontInfo().setUuline(setLyXMisc(lex.getString()));
433         } else if (token == "\\uwave") {
434                 lex.next();
435                 font.fontInfo().setUwave(setLyXMisc(lex.getString()));
436         } else if (token == "\\noun") {
437                 lex.next();
438                 font.fontInfo().setNoun(setLyXMisc(lex.getString()));
439         } else if (token == "\\color") {
440                 lex.next();
441                 setLyXColor(lex.getString(), font.fontInfo());
442         } else if (token == "\\SpecialChar") {
443                 auto_ptr<Inset> inset;
444                 inset.reset(new InsetSpecialChar);
445                 inset->read(lex);
446                 inset->setBuffer(*buf);
447                 par.insertInset(par.size(), inset.release(), font, change);
448         } else if (token == "\\backslash") {
449                 par.appendChar('\\', font, change);
450         } else if (token == "\\LyXTable") {
451                 auto_ptr<Inset> inset(new InsetTabular(buf));
452                 inset->read(lex);
453                 par.insertInset(par.size(), inset.release(), font, change);
454         } else if (token == "\\change_unchanged") {
455                 change = Change(Change::UNCHANGED);
456         } else if (token == "\\change_inserted" || token == "\\change_deleted") {
457                 lex.eatLine();
458                 istringstream is(lex.getString());
459                 unsigned int aid;
460                 time_t ct;
461                 is >> aid >> ct;
462                 map<unsigned int, int> const & am = bp.author_map;
463                 if (am.find(aid) == am.end()) {
464                         errorList.push_back(ErrorItem(_("Change tracking error"),
465                                             bformat(_("Unknown author index for change: %1$d\n"), aid),
466                                             par.id(), 0, par.size()));
467                         change = Change(Change::UNCHANGED);
468                 } else {
469                         if (token == "\\change_inserted")
470                                 change = Change(Change::INSERTED, am.find(aid)->second, ct);
471                         else
472                                 change = Change(Change::DELETED, am.find(aid)->second, ct);
473                 }
474         } else {
475                 lex.eatLine();
476                 errorList.push_back(ErrorItem(_("Unknown token"),
477                         bformat(_("Unknown token: %1$s %2$s\n"), from_utf8(token),
478                         lex.getDocString()),
479                         par.id(), 0, par.size()));
480         }
481 }
482
483
484 void Text::readParagraph(Paragraph & par, Lexer & lex,
485         ErrorList & errorList)
486 {
487         lex.nextToken();
488         string token = lex.getString();
489         Font font;
490         Change change(Change::UNCHANGED);
491
492         while (lex.isOK()) {
493                 readParToken(par, lex, token, font, change, errorList);
494
495                 lex.nextToken();
496                 token = lex.getString();
497
498                 if (token.empty())
499                         continue;
500
501                 if (token == "\\end_layout") {
502                         //Ok, paragraph finished
503                         break;
504                 }
505
506                 LYXERR(Debug::PARSER, "Handling paragraph token: `" << token << '\'');
507                 if (token == "\\begin_layout" || token == "\\end_document"
508                     || token == "\\end_inset" || token == "\\begin_deeper"
509                     || token == "\\end_deeper") {
510                         lex.pushToken(token);
511                         lyxerr << "Paragraph ended in line "
512                                << lex.lineNumber() << "\n"
513                                << "Missing \\end_layout.\n";
514                         break;
515                 }
516         }
517         // Final change goes to paragraph break:
518         par.setChange(par.size(), change);
519
520         // Initialize begin_of_body_ on load; redoParagraph maintains
521         par.setBeginOfBody();
522         
523         // mark paragraph for spell checking on load
524         // par.requestSpellCheck();
525 }
526
527
528 class TextCompletionList : public CompletionList
529 {
530 public:
531         ///
532         TextCompletionList(Cursor const & cur, WordList const * list)
533                 : buffer_(cur.buffer()), pos_(0), list_(list)
534         {}
535         ///
536         virtual ~TextCompletionList() {}
537         
538         ///
539         virtual bool sorted() const { return true; }
540         ///
541         virtual size_t size() const
542         {
543                 return list_->size();
544         }
545         ///
546         virtual docstring const & data(size_t idx) const
547         {
548                 return list_->word(idx);
549         }
550         
551 private:
552         ///
553         Buffer const * buffer_;
554         ///
555         size_t pos_;
556         ///
557         WordList const * list_;
558 };
559
560
561 bool Text::empty() const
562 {
563         return pars_.empty() || (pars_.size() == 1 && pars_[0].empty()
564                 // FIXME: Should we consider the labeled type as empty too? 
565                 && pars_[0].layout().labeltype == LABEL_NO_LABEL);
566 }
567
568
569 double Text::spacing(Paragraph const & par) const
570 {
571         if (par.params().spacing().isDefault())
572                 return owner_->buffer().params().spacing().getValue();
573         return par.params().spacing().getValue();
574 }
575
576
577 /**
578  * This breaks a paragraph at the specified position.
579  * The new paragraph will:
580  * - Decrease depth by one (or change layout to default layout) when
581  *    keep_layout == false  
582  * - keep current depth and layout when keep_layout == true
583  */
584 static void breakParagraph(Text & text, pit_type par_offset, pos_type pos, 
585                     bool keep_layout)
586 {
587         BufferParams const & bparams = text.inset().buffer().params();
588         ParagraphList & pars = text.paragraphs();
589         // create a new paragraph, and insert into the list
590         ParagraphList::iterator tmp =
591                 pars.insert(boost::next(pars.begin(), par_offset + 1),
592                             Paragraph());
593
594         Paragraph & par = pars[par_offset];
595
596         // remember to set the inset_owner
597         tmp->setInsetOwner(&par.inInset());
598         // without doing that we get a crash when typing <Return> at the
599         // end of a paragraph
600         tmp->setPlainOrDefaultLayout(bparams.documentClass());
601
602         // layout stays the same with latex-environments
603         if (keep_layout) {
604                 tmp->setLayout(par.layout());
605                 tmp->setLabelWidthString(par.params().labelWidthString());
606                 tmp->params().depth(par.params().depth());
607         } else if (par.params().depth() > 0) {
608                 Paragraph const & hook = pars[text.outerHook(par_offset)];
609                 tmp->setLayout(hook.layout());
610                 // not sure the line below is useful
611                 tmp->setLabelWidthString(par.params().labelWidthString());
612                 tmp->params().depth(hook.params().depth());
613         }
614
615         bool const isempty = (par.allowEmpty() && par.empty());
616
617         if (!isempty && (par.size() > pos || par.empty())) {
618                 tmp->setLayout(par.layout());
619                 tmp->params().align(par.params().align());
620                 tmp->setLabelWidthString(par.params().labelWidthString());
621
622                 tmp->params().depth(par.params().depth());
623                 tmp->params().noindent(par.params().noindent());
624
625                 // move everything behind the break position
626                 // to the new paragraph
627
628                 /* Note: if !keepempty, empty() == true, then we reach
629                  * here with size() == 0. So pos_end becomes - 1. This
630                  * doesn't cause problems because both loops below
631                  * enforce pos <= pos_end and 0 <= pos
632                  */
633                 pos_type pos_end = par.size() - 1;
634
635                 for (pos_type i = pos, j = 0; i <= pos_end; ++i) {
636                         if (moveItem(par, pos, *tmp, j, bparams)) {
637                                 ++j;
638                         }
639                 }
640         }
641
642         // Move over the end-of-par change information
643         tmp->setChange(tmp->size(), par.lookupChange(par.size()));
644         par.setChange(par.size(), Change(bparams.trackChanges ?
645                                            Change::INSERTED : Change::UNCHANGED));
646
647         if (pos) {
648                 // Make sure that we keep the language when
649                 // breaking paragraph.
650                 if (tmp->empty()) {
651                         Font changed = tmp->getFirstFontSettings(bparams);
652                         Font const & old = par.getFontSettings(bparams, par.size());
653                         changed.setLanguage(old.language());
654                         tmp->setFont(0, changed);
655                 }
656
657                 return;
658         }
659
660         if (!isempty) {
661                 bool const soa = par.params().startOfAppendix();
662                 par.params().clear();
663                 // do not lose start of appendix marker (bug 4212)
664                 par.params().startOfAppendix(soa);
665                 par.setPlainOrDefaultLayout(bparams.documentClass());
666         }
667
668         // layout stays the same with latex-environments
669         if (keep_layout) {
670                 par.setLayout(tmp->layout());
671                 par.setLabelWidthString(tmp->params().labelWidthString());
672                 par.params().depth(tmp->params().depth());
673         }
674 }
675
676
677 void Text::breakParagraph(Cursor & cur, bool inverse_logic)
678 {
679         LASSERT(this == cur.text(), /**/);
680
681         Paragraph & cpar = cur.paragraph();
682         pit_type cpit = cur.pit();
683
684         DocumentClass const & tclass = cur.buffer()->params().documentClass();
685         Layout const & layout = cpar.layout();
686
687         if (cur.lastpos() == 0 && !cpar.allowEmpty()) {
688                 if (changeDepthAllowed(cur, DEC_DEPTH))
689                         changeDepth(cur, DEC_DEPTH);
690                 else 
691                         setLayout(cur, tclass.defaultLayoutName());
692                 return;
693         }
694
695         // a layout change may affect also the following paragraph
696         recUndo(cur, cur.pit(), undoSpan(cur.pit()) - 1);
697
698         // Always break behind a space
699         // It is better to erase the space (Dekel)
700         if (cur.pos() != cur.lastpos() && cpar.isLineSeparator(cur.pos()))
701                 cpar.eraseChar(cur.pos(), cur.buffer()->params().trackChanges);
702
703         // What should the layout for the new paragraph be?
704         bool keep_layout = inverse_logic ? 
705                 !layout.isEnvironment() 
706                 : layout.isEnvironment();
707
708         // We need to remember this before we break the paragraph, because
709         // that invalidates the layout variable
710         bool sensitive = layout.labeltype == LABEL_SENSITIVE;
711
712         // we need to set this before we insert the paragraph.
713         bool const isempty = cpar.allowEmpty() && cpar.empty();
714
715         lyx::breakParagraph(*this, cpit, cur.pos(), keep_layout);
716
717         // After this, neither paragraph contains any rows!
718
719         cpit = cur.pit();
720         pit_type next_par = cpit + 1;
721
722         // well this is the caption hack since one caption is really enough
723         if (sensitive) {
724                 if (cur.pos() == 0)
725                         // set to standard-layout
726                 //FIXME Check if this should be plainLayout() in some cases
727                         pars_[cpit].applyLayout(tclass.defaultLayout());
728                 else
729                         // set to standard-layout
730                         //FIXME Check if this should be plainLayout() in some cases
731                         pars_[next_par].applyLayout(tclass.defaultLayout());
732         }
733
734         while (!pars_[next_par].empty() && pars_[next_par].isNewline(0)) {
735                 if (!pars_[next_par].eraseChar(0, cur.buffer()->params().trackChanges))
736                         break; // the character couldn't be deleted physically due to change tracking
737         }
738
739         // A singlePar update is not enough in this case.
740         cur.screenUpdateFlags(Update::Force);
741         cur.forceBufferUpdate();
742
743         // This check is necessary. Otherwise the new empty paragraph will
744         // be deleted automatically. And it is more friendly for the user!
745         if (cur.pos() != 0 || isempty)
746                 setCursor(cur, cur.pit() + 1, 0);
747         else
748                 setCursor(cur, cur.pit(), 0);
749 }
750
751
752 // needed to insert the selection
753 void Text::insertStringAsLines(DocIterator const & dit, docstring const & str,
754                 Font const & font)
755 {
756         BufferParams const & bparams = owner_->buffer().params();
757         pit_type pit = dit.pit();
758         pos_type pos = dit.pos();
759
760         // insert the string, don't insert doublespace
761         bool space_inserted = true;
762         for (docstring::const_iterator cit = str.begin();
763             cit != str.end(); ++cit) {
764                 Paragraph & par = pars_[pit];
765                 if (*cit == '\n') {
766                         if (autoBreakRows_ && (!par.empty() || par.allowEmpty())) {
767                                 lyx::breakParagraph(*this, pit, pos,
768                                         par.layout().isEnvironment());
769                                 ++pit;
770                                 pos = 0;
771                                 space_inserted = true;
772                         } else {
773                                 continue;
774                         }
775                         // do not insert consecutive spaces if !free_spacing
776                 } else if ((*cit == ' ' || *cit == '\t') &&
777                            space_inserted && !par.isFreeSpacing()) {
778                         continue;
779                 } else if (*cit == '\t') {
780                         if (!par.isFreeSpacing()) {
781                                 // tabs are like spaces here
782                                 par.insertChar(pos, ' ', font, bparams.trackChanges);
783                                 ++pos;
784                                 space_inserted = true;
785                         } else {
786                                 par.insertChar(pos, *cit, font, bparams.trackChanges);
787                                 ++pos;
788                                 space_inserted = true;
789                         }
790                 } else if (!isPrintable(*cit)) {
791                         // Ignore unprintables
792                         continue;
793                 } else {
794                         // just insert the character
795                         par.insertChar(pos, *cit, font, bparams.trackChanges);
796                         ++pos;
797                         space_inserted = (*cit == ' ');
798                 }
799         }
800 }
801
802
803 // turn double CR to single CR, others are converted into one
804 // blank. Then insertStringAsLines is called
805 void Text::insertStringAsParagraphs(DocIterator const & dit, docstring const & str,
806                 Font const & font)
807 {
808         docstring linestr = str;
809         bool newline_inserted = false;
810
811         for (string::size_type i = 0, siz = linestr.size(); i < siz; ++i) {
812                 if (linestr[i] == '\n') {
813                         if (newline_inserted) {
814                                 // we know that \r will be ignored by
815                                 // insertStringAsLines. Of course, it is a dirty
816                                 // trick, but it works...
817                                 linestr[i - 1] = '\r';
818                                 linestr[i] = '\n';
819                         } else {
820                                 linestr[i] = ' ';
821                                 newline_inserted = true;
822                         }
823                 } else if (isPrintable(linestr[i])) {
824                         newline_inserted = false;
825                 }
826         }
827         insertStringAsLines(dit, linestr, font);
828 }
829
830
831 // insert a character, moves all the following breaks in the
832 // same Paragraph one to the right and make a rebreak
833 void Text::insertChar(Cursor & cur, char_type c)
834 {
835         LASSERT(this == cur.text(), /**/);
836
837         cur.recordUndo(INSERT_UNDO);
838
839         TextMetrics const & tm = cur.bv().textMetrics(this);
840         Buffer const & buffer = *cur.buffer();
841         Paragraph & par = cur.paragraph();
842         // try to remove this
843         pit_type const pit = cur.pit();
844
845         bool const freeSpacing = par.layout().free_spacing ||
846                 par.isFreeSpacing();
847
848         if (lyxrc.auto_number) {
849                 static docstring const number_operators = from_ascii("+-/*");
850                 static docstring const number_unary_operators = from_ascii("+-");
851                 static docstring const number_seperators = from_ascii(".,:");
852
853                 if (cur.current_font.fontInfo().number() == FONT_ON) {
854                         if (!isDigit(c) && !contains(number_operators, c) &&
855                             !(contains(number_seperators, c) &&
856                               cur.pos() != 0 &&
857                               cur.pos() != cur.lastpos() &&
858                               tm.displayFont(pit, cur.pos()).fontInfo().number() == FONT_ON &&
859                               tm.displayFont(pit, cur.pos() - 1).fontInfo().number() == FONT_ON)
860                            )
861                                 number(cur); // Set current_font.number to OFF
862                 } else if (isDigit(c) &&
863                            cur.real_current_font.isVisibleRightToLeft()) {
864                         number(cur); // Set current_font.number to ON
865
866                         if (cur.pos() != 0) {
867                                 char_type const c = par.getChar(cur.pos() - 1);
868                                 if (contains(number_unary_operators, c) &&
869                                     (cur.pos() == 1
870                                      || par.isSeparator(cur.pos() - 2)
871                                      || par.isNewline(cur.pos() - 2))
872                                   ) {
873                                         setCharFont(pit, cur.pos() - 1, cur.current_font,
874                                                 tm.font_);
875                                 } else if (contains(number_seperators, c)
876                                      && cur.pos() >= 2
877                                      && tm.displayFont(pit, cur.pos() - 2).fontInfo().number() == FONT_ON) {
878                                         setCharFont(pit, cur.pos() - 1, cur.current_font,
879                                                 tm.font_);
880                                 }
881                         }
882                 }
883         }
884
885         // In Bidi text, we want spaces to be treated in a special way: spaces
886         // which are between words in different languages should get the 
887         // paragraph's language; otherwise, spaces should keep the language 
888         // they were originally typed in. This is only in effect while typing;
889         // after the text is already typed in, the user can always go back and
890         // explicitly set the language of a space as desired. But 99.9% of the
891         // time, what we're doing here is what the user actually meant.
892         // 
893         // The following cases are the ones in which the language of the space
894         // should be changed to match that of the containing paragraph. In the
895         // depictions, lowercase is LTR, uppercase is RTL, underscore (_) 
896         // represents a space, pipe (|) represents the cursor position (so the
897         // character before it is the one just typed in). The different cases
898         // are depicted logically (not visually), from left to right:
899         // 
900         // 1. A_a|
901         // 2. a_A|
902         //
903         // Theoretically, there are other situations that we should, perhaps, deal
904         // with (e.g.: a|_A, A|_a). In practice, though, there really isn't any 
905         // point (to understand why, just try to create this situation...).
906
907         if ((cur.pos() >= 2) && (par.isLineSeparator(cur.pos() - 1))) {
908                 // get font in front and behind the space in question. But do NOT 
909                 // use getFont(cur.pos()) because the character c is not inserted yet
910                 Font const pre_space_font  = tm.displayFont(cur.pit(), cur.pos() - 2);
911                 Font const & post_space_font = cur.real_current_font;
912                 bool pre_space_rtl  = pre_space_font.isVisibleRightToLeft();
913                 bool post_space_rtl = post_space_font.isVisibleRightToLeft();
914                 
915                 if (pre_space_rtl != post_space_rtl) {
916                         // Set the space's language to match the language of the 
917                         // adjacent character whose direction is the paragraph's
918                         // direction; don't touch other properties of the font
919                         Language const * lang = 
920                                 (pre_space_rtl == par.isRTL(buffer.params())) ?
921                                 pre_space_font.language() : post_space_font.language();
922
923                         Font space_font = tm.displayFont(cur.pit(), cur.pos() - 1);
924                         space_font.setLanguage(lang);
925                         par.setFont(cur.pos() - 1, space_font);
926                 }
927         }
928         
929         // Next check, if there will be two blanks together or a blank at
930         // the beginning of a paragraph.
931         // I decided to handle blanks like normal characters, the main
932         // difference are the special checks when calculating the row.fill
933         // (blank does not count at the end of a row) and the check here
934
935         // When the free-spacing option is set for the current layout,
936         // disable the double-space checking
937         if (!freeSpacing && isLineSeparatorChar(c)) {
938                 if (cur.pos() == 0) {
939                         static bool sent_space_message = false;
940                         if (!sent_space_message) {
941                                 cur.message(_("You cannot insert a space at the "
942                                                            "beginning of a paragraph. Please read the Tutorial."));
943                                 sent_space_message = true;
944                         }
945                         return;
946                 }
947                 LASSERT(cur.pos() > 0, /**/);
948                 if ((par.isLineSeparator(cur.pos() - 1) || par.isNewline(cur.pos() - 1))
949                     && !par.isDeleted(cur.pos() - 1)) {
950                         static bool sent_space_message = false;
951                         if (!sent_space_message) {
952                                 cur.message(_("You cannot type two spaces this way. "
953                                                            "Please read the Tutorial."));
954                                 sent_space_message = true;
955                         }
956                         return;
957                 }
958         }
959
960         par.insertChar(cur.pos(), c, cur.current_font,
961                 cur.buffer()->params().trackChanges);
962         cur.checkBufferStructure();
963
964 //              cur.screenUpdateFlags(Update::Force);
965         bool boundary = cur.boundary()
966                 || tm.isRTLBoundary(cur.pit(), cur.pos() + 1);
967         setCursor(cur, cur.pit(), cur.pos() + 1, false, boundary);
968         charInserted(cur);
969 }
970
971
972 void Text::charInserted(Cursor & cur)
973 {
974         Paragraph & par = cur.paragraph();
975
976         // Here we call finishUndo for every 20 characters inserted.
977         // This is from my experience how emacs does it. (Lgb)
978         if (undo_counter_ < 20) {
979                 ++undo_counter_;
980         } else {
981                 cur.finishUndo();
982                 undo_counter_ = 0;
983         }
984
985         // register word if a non-letter was entered
986         if (cur.pos() > 1
987             && !par.isWordSeparator(cur.pos() - 2)
988             && par.isWordSeparator(cur.pos() - 1)) {
989                 // get the word in front of cursor
990                 LASSERT(this == cur.text(), /**/);
991                 cur.paragraph().updateWords();
992         }
993 }
994
995
996 // the cursor set functions have a special mechanism. When they
997 // realize, that you left an empty paragraph, they will delete it.
998
999 bool Text::cursorForwardOneWord(Cursor & cur)
1000 {
1001         LASSERT(this == cur.text(), /**/);
1002
1003         pos_type const lastpos = cur.lastpos();
1004         pit_type pit = cur.pit();
1005         pos_type pos = cur.pos();
1006         Paragraph const & par = cur.paragraph();
1007
1008         // Paragraph boundary is a word boundary
1009         if (pos == lastpos) {
1010                 if (pit != cur.lastpit())
1011                         return setCursor(cur, pit + 1, 0);
1012                 else
1013                         return false;
1014         }
1015
1016         if (lyxrc.mac_like_word_movement) {
1017                 // Skip through trailing punctuation and spaces.
1018                 while (pos != lastpos && (par.isChar(pos) || par.isSpace(pos)))
1019                         ++pos;
1020
1021                 // Skip over either a non-char inset or a full word
1022                 if (pos != lastpos && par.isWordSeparator(pos))
1023                         ++pos;
1024                 else while (pos != lastpos && !par.isWordSeparator(pos))
1025                              ++pos;
1026         } else {
1027                 LASSERT(pos < lastpos, /**/); // see above
1028                 if (!par.isWordSeparator(pos))
1029                         while (pos != lastpos && !par.isWordSeparator(pos))
1030                                 ++pos;
1031                 else if (par.isChar(pos))
1032                         while (pos != lastpos && par.isChar(pos))
1033                                 ++pos;
1034                 else if (!par.isSpace(pos)) // non-char inset
1035                         ++pos;
1036
1037                 // Skip over white space
1038                 while (pos != lastpos && par.isSpace(pos))
1039                              ++pos;             
1040         }
1041
1042         return setCursor(cur, pit, pos);
1043 }
1044
1045
1046 bool Text::cursorBackwardOneWord(Cursor & cur)
1047 {
1048         LASSERT(this == cur.text(), /**/);
1049
1050         pit_type pit = cur.pit();
1051         pos_type pos = cur.pos();
1052         Paragraph & par = cur.paragraph();
1053
1054         // Paragraph boundary is a word boundary
1055         if (pos == 0 && pit != 0)
1056                 return setCursor(cur, pit - 1, getPar(pit - 1).size());
1057
1058         if (lyxrc.mac_like_word_movement) {
1059                 // Skip through punctuation and spaces.
1060                 while (pos != 0 && (par.isChar(pos - 1) || par.isSpace(pos - 1)))
1061                         --pos;
1062
1063                 // Skip over either a non-char inset or a full word
1064                 if (pos != 0 && par.isWordSeparator(pos - 1) && !par.isChar(pos - 1))
1065                         --pos;
1066                 else while (pos != 0 && !par.isWordSeparator(pos - 1))
1067                              --pos;
1068         } else {
1069                 // Skip over white space
1070                 while (pos != 0 && par.isSpace(pos - 1))
1071                              --pos;
1072
1073                 if (pos != 0 && !par.isWordSeparator(pos - 1))
1074                         while (pos != 0 && !par.isWordSeparator(pos - 1))
1075                                 --pos;
1076                 else if (pos != 0 && par.isChar(pos - 1))
1077                         while (pos != 0 && par.isChar(pos - 1))
1078                                 --pos;
1079                 else if (pos != 0 && !par.isSpace(pos - 1)) // non-char inset
1080                         --pos;
1081         }
1082
1083         return setCursor(cur, pit, pos);
1084 }
1085
1086
1087 bool Text::cursorVisLeftOneWord(Cursor & cur)
1088 {
1089         LASSERT(this == cur.text(), /**/);
1090
1091         pos_type left_pos, right_pos;
1092         bool left_is_letter, right_is_letter;
1093
1094         Cursor temp_cur = cur;
1095
1096         // always try to move at least once...
1097         while (temp_cur.posVisLeft(true /* skip_inset */)) {
1098
1099                 // collect some information about current cursor position
1100                 temp_cur.getSurroundingPos(left_pos, right_pos);
1101                 left_is_letter = 
1102                         (left_pos > -1 ? !temp_cur.paragraph().isWordSeparator(left_pos) : false);
1103                 right_is_letter = 
1104                         (right_pos > -1 ? !temp_cur.paragraph().isWordSeparator(right_pos) : false);
1105
1106                 // if we're not at a letter/non-letter boundary, continue moving
1107                 if (left_is_letter == right_is_letter)
1108                         continue;
1109
1110                 // we should stop when we have an LTR word on our right or an RTL word
1111                 // on our left
1112                 if ((left_is_letter && temp_cur.paragraph().getFontSettings(
1113                                 temp_cur.buffer()->params(), left_pos).isRightToLeft())
1114                         || (right_is_letter && !temp_cur.paragraph().getFontSettings(
1115                                 temp_cur.buffer()->params(), right_pos).isRightToLeft()))
1116                         break;
1117         }
1118
1119         return setCursor(cur, temp_cur.pit(), temp_cur.pos(), 
1120                                          true, temp_cur.boundary());
1121 }
1122
1123
1124 bool Text::cursorVisRightOneWord(Cursor & cur)
1125 {
1126         LASSERT(this == cur.text(), /**/);
1127
1128         pos_type left_pos, right_pos;
1129         bool left_is_letter, right_is_letter;
1130
1131         Cursor temp_cur = cur;
1132
1133         // always try to move at least once...
1134         while (temp_cur.posVisRight(true /* skip_inset */)) {
1135
1136                 // collect some information about current cursor position
1137                 temp_cur.getSurroundingPos(left_pos, right_pos);
1138                 left_is_letter = 
1139                         (left_pos > -1 ? !temp_cur.paragraph().isWordSeparator(left_pos) : false);
1140                 right_is_letter = 
1141                         (right_pos > -1 ? !temp_cur.paragraph().isWordSeparator(right_pos) : false);
1142
1143                 // if we're not at a letter/non-letter boundary, continue moving
1144                 if (left_is_letter == right_is_letter)
1145                         continue;
1146
1147                 // we should stop when we have an LTR word on our right or an RTL word
1148                 // on our left
1149                 if ((left_is_letter && temp_cur.paragraph().getFontSettings(
1150                                 temp_cur.buffer()->params(), 
1151                                 left_pos).isRightToLeft())
1152                         || (right_is_letter && !temp_cur.paragraph().getFontSettings(
1153                                 temp_cur.buffer()->params(), 
1154                                 right_pos).isRightToLeft()))
1155                         break;
1156         }
1157
1158         return setCursor(cur, temp_cur.pit(), temp_cur.pos(), 
1159                                          true, temp_cur.boundary());
1160 }
1161
1162
1163 void Text::selectWord(Cursor & cur, word_location loc)
1164 {
1165         LASSERT(this == cur.text(), /**/);
1166         CursorSlice from = cur.top();
1167         CursorSlice to = cur.top();
1168         getWord(from, to, loc);
1169         if (cur.top() != from)
1170                 setCursor(cur, from.pit(), from.pos());
1171         if (to == from)
1172                 return;
1173         if (!cur.selection())
1174                 cur.resetAnchor();
1175         setCursor(cur, to.pit(), to.pos());
1176         cur.setSelection();
1177         cur.setWordSelection(true);
1178 }
1179
1180
1181 void Text::selectAll(Cursor & cur)
1182 {
1183         LASSERT(this == cur.text(), /**/);
1184         if (cur.lastpos() == 0 && cur.lastpit() == 0)
1185                 return;
1186         // If the cursor is at the beginning, make sure the cursor ends there
1187         if (cur.pit() == 0 && cur.pos() == 0) {
1188                 setCursor(cur, cur.lastpit(), getPar(cur.lastpit()).size());
1189                 cur.resetAnchor();
1190                 setCursor(cur, 0, 0);           
1191         } else {
1192                 setCursor(cur, 0, 0);
1193                 cur.resetAnchor();
1194                 setCursor(cur, cur.lastpit(), getPar(cur.lastpit()).size());
1195         }
1196         cur.setSelection();
1197 }
1198
1199
1200 // Select the word currently under the cursor when no
1201 // selection is currently set
1202 bool Text::selectWordWhenUnderCursor(Cursor & cur, word_location loc)
1203 {
1204         LASSERT(this == cur.text(), /**/);
1205         if (cur.selection())
1206                 return false;
1207         selectWord(cur, loc);
1208         return cur.selection();
1209 }
1210
1211
1212 void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
1213 {
1214         LASSERT(this == cur.text(), /**/);
1215
1216         if (!cur.selection()) {
1217                 bool const changed = cur.paragraph().isChanged(cur.pos());
1218                 if (!(changed && findNextChange(&cur.bv())))
1219                         return;
1220         }
1221
1222         cur.recordUndoSelection();
1223
1224         pit_type begPit = cur.selectionBegin().pit();
1225         pit_type endPit = cur.selectionEnd().pit();
1226
1227         pos_type begPos = cur.selectionBegin().pos();
1228         pos_type endPos = cur.selectionEnd().pos();
1229
1230         // keep selection info, because endPos becomes invalid after the first loop
1231         bool endsBeforeEndOfPar = (endPos < pars_[endPit].size());
1232
1233         // first, accept/reject changes within each individual paragraph (do not consider end-of-par)
1234
1235         for (pit_type pit = begPit; pit <= endPit; ++pit) {
1236                 pos_type parSize = pars_[pit].size();
1237
1238                 // ignore empty paragraphs; otherwise, an assertion will fail for
1239                 // acceptChanges(bparams, 0, 0) or rejectChanges(bparams, 0, 0)
1240                 if (parSize == 0)
1241                         continue;
1242
1243                 // do not consider first paragraph if the cursor starts at pos size()
1244                 if (pit == begPit && begPos == parSize)
1245                         continue;
1246
1247                 // do not consider last paragraph if the cursor ends at pos 0
1248                 if (pit == endPit && endPos == 0)
1249                         break; // last iteration anyway
1250
1251                 pos_type left  = (pit == begPit ? begPos : 0);
1252                 pos_type right = (pit == endPit ? endPos : parSize);
1253
1254                 if (op == ACCEPT) {
1255                         pars_[pit].acceptChanges(left, right);
1256                 } else {
1257                         pars_[pit].rejectChanges(left, right);
1258                 }
1259         }
1260
1261         // next, accept/reject imaginary end-of-par characters
1262
1263         for (pit_type pit = begPit; pit <= endPit; ++pit) {
1264                 pos_type pos = pars_[pit].size();
1265
1266                 // skip if the selection ends before the end-of-par
1267                 if (pit == endPit && endsBeforeEndOfPar)
1268                         break; // last iteration anyway
1269
1270                 // skip if this is not the last paragraph of the document
1271                 // note: the user should be able to accept/reject the par break of the last par!
1272                 if (pit == endPit && pit + 1 != int(pars_.size()))
1273                         break; // last iteration anway
1274
1275                 if (op == ACCEPT) {
1276                         if (pars_[pit].isInserted(pos)) {
1277                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1278                         } else if (pars_[pit].isDeleted(pos)) {
1279                                 if (pit + 1 == int(pars_.size())) {
1280                                         // we cannot remove a par break at the end of the last paragraph;
1281                                         // instead, we mark it unchanged
1282                                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1283                                 } else {
1284                                         mergeParagraph(cur.buffer()->params(), pars_, pit);
1285                                         --endPit;
1286                                         --pit;
1287                                 }
1288                         }
1289                 } else {
1290                         if (pars_[pit].isDeleted(pos)) {
1291                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1292                         } else if (pars_[pit].isInserted(pos)) {
1293                                 if (pit + 1 == int(pars_.size())) {
1294                                         // we mark the par break at the end of the last paragraph unchanged
1295                                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1296                                 } else {
1297                                         mergeParagraph(cur.buffer()->params(), pars_, pit);
1298                                         --endPit;
1299                                         --pit;
1300                                 }
1301                         }
1302                 }
1303         }
1304
1305         // finally, invoke the DEPM
1306
1307         deleteEmptyParagraphMechanism(begPit, endPit, cur.buffer()->params().trackChanges);
1308
1309         //
1310
1311         cur.finishUndo();
1312         cur.clearSelection();
1313         setCursorIntern(cur, begPit, begPos);
1314         cur.screenUpdateFlags(Update::Force);
1315         cur.forceBufferUpdate();
1316 }
1317
1318
1319 void Text::acceptChanges()
1320 {
1321         BufferParams const & bparams = owner_->buffer().params();
1322         lyx::acceptChanges(pars_, bparams);
1323         deleteEmptyParagraphMechanism(0, pars_.size() - 1, bparams.trackChanges);
1324 }
1325
1326
1327 void Text::rejectChanges()
1328 {
1329         BufferParams const & bparams = owner_->buffer().params();
1330         pit_type pars_size = static_cast<pit_type>(pars_.size());
1331
1332         // first, reject changes within each individual paragraph
1333         // (do not consider end-of-par)
1334         for (pit_type pit = 0; pit < pars_size; ++pit) {
1335                 if (!pars_[pit].empty())   // prevent assertion failure
1336                         pars_[pit].rejectChanges(0, pars_[pit].size());
1337         }
1338
1339         // next, reject imaginary end-of-par characters
1340         for (pit_type pit = 0; pit < pars_size; ++pit) {
1341                 pos_type pos = pars_[pit].size();
1342
1343                 if (pars_[pit].isDeleted(pos)) {
1344                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1345                 } else if (pars_[pit].isInserted(pos)) {
1346                         if (pit == pars_size - 1) {
1347                                 // we mark the par break at the end of the last
1348                                 // paragraph unchanged
1349                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1350                         } else {
1351                                 mergeParagraph(bparams, pars_, pit);
1352                                 --pit;
1353                                 --pars_size;
1354                         }
1355                 }
1356         }
1357
1358         // finally, invoke the DEPM
1359         deleteEmptyParagraphMechanism(0, pars_size - 1, bparams.trackChanges);
1360 }
1361
1362
1363 void Text::deleteWordForward(Cursor & cur)
1364 {
1365         LASSERT(this == cur.text(), /**/);
1366         if (cur.lastpos() == 0)
1367                 cursorForward(cur);
1368         else {
1369                 cur.resetAnchor();
1370                 cur.setSelection(true);
1371                 cursorForwardOneWord(cur);
1372                 cur.setSelection();
1373                 cutSelection(cur, true, false);
1374                 cur.checkBufferStructure();
1375         }
1376 }
1377
1378
1379 void Text::deleteWordBackward(Cursor & cur)
1380 {
1381         LASSERT(this == cur.text(), /**/);
1382         if (cur.lastpos() == 0)
1383                 cursorBackward(cur);
1384         else {
1385                 cur.resetAnchor();
1386                 cur.setSelection(true);
1387                 cursorBackwardOneWord(cur);
1388                 cur.setSelection();
1389                 cutSelection(cur, true, false);
1390                 cur.checkBufferStructure();
1391         }
1392 }
1393
1394
1395 // Kill to end of line.
1396 void Text::changeCase(Cursor & cur, TextCase action)
1397 {
1398         LASSERT(this == cur.text(), /**/);
1399         CursorSlice from;
1400         CursorSlice to;
1401
1402         bool gotsel = false;
1403         if (cur.selection()) {
1404                 from = cur.selBegin();
1405                 to = cur.selEnd();
1406                 gotsel = true;
1407         } else {
1408                 from = cur.top();
1409                 getWord(from, to, PARTIAL_WORD);
1410                 cursorForwardOneWord(cur);
1411         }
1412
1413         cur.recordUndoSelection();
1414
1415         pit_type begPit = from.pit();
1416         pit_type endPit = to.pit();
1417
1418         pos_type begPos = from.pos();
1419         pos_type endPos = to.pos();
1420
1421         pos_type right = 0; // needed after the for loop
1422
1423         for (pit_type pit = begPit; pit <= endPit; ++pit) {
1424                 Paragraph & par = pars_[pit];
1425                 pos_type const pos = (pit == begPit ? begPos : 0);
1426                 right = (pit == endPit ? endPos : par.size());
1427                 par.changeCase(cur.buffer()->params(), pos, right, action);
1428         }
1429
1430         // the selection may have changed due to logically-only deleted chars
1431         if (gotsel) {
1432                 setCursor(cur, begPit, begPos);
1433                 cur.resetAnchor();
1434                 setCursor(cur, endPit, right);
1435                 cur.setSelection();
1436         } else
1437                 setCursor(cur, endPit, right);
1438
1439         cur.checkBufferStructure();
1440 }
1441
1442
1443 bool Text::handleBibitems(Cursor & cur)
1444 {
1445         if (cur.paragraph().layout().labeltype != LABEL_BIBLIO)
1446                 return false;
1447
1448         if (cur.pos() != 0)
1449                 return false;
1450
1451         BufferParams const & bufparams = cur.buffer()->params();
1452         Paragraph const & par = cur.paragraph();
1453         Cursor prevcur = cur;
1454         if (cur.pit() > 0) {
1455                 --prevcur.pit();
1456                 prevcur.pos() = prevcur.lastpos();
1457         }
1458         Paragraph const & prevpar = prevcur.paragraph();
1459
1460         // if a bibitem is deleted, merge with previous paragraph
1461         // if this is a bibliography item as well
1462         if (cur.pit() > 0 && par.layout() == prevpar.layout()) {
1463                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit());
1464                 mergeParagraph(bufparams, cur.text()->paragraphs(),
1465                                                         prevcur.pit());
1466                 cur.forceBufferUpdate();
1467                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
1468                 cur.screenUpdateFlags(Update::Force);
1469                 return true;
1470         } 
1471
1472         // otherwise reset to default
1473         cur.paragraph().setPlainOrDefaultLayout(bufparams.documentClass());
1474         return true;
1475 }
1476
1477
1478 bool Text::erase(Cursor & cur)
1479 {
1480         LASSERT(this == cur.text(), return false);
1481         bool needsUpdate = false;
1482         Paragraph & par = cur.paragraph();
1483
1484         if (cur.pos() != cur.lastpos()) {
1485                 // this is the code for a normal delete, not pasting
1486                 // any paragraphs
1487                 cur.recordUndo(DELETE_UNDO);
1488                 bool const was_inset = cur.paragraph().isInset(cur.pos());
1489                 if(!par.eraseChar(cur.pos(), cur.buffer()->params().trackChanges))
1490                         // the character has been logically deleted only => skip it
1491                         cur.top().forwardPos();
1492
1493                 if (was_inset)
1494                         cur.forceBufferUpdate();
1495                 else
1496                         cur.checkBufferStructure();
1497                 needsUpdate = true;
1498         } else {
1499                 if (cur.pit() == cur.lastpit())
1500                         return dissolveInset(cur);
1501
1502                 if (!par.isMergedOnEndOfParDeletion(cur.buffer()->params().trackChanges)) {
1503                         par.setChange(cur.pos(), Change(Change::DELETED));
1504                         cur.forwardPos();
1505                         needsUpdate = true;
1506                 } else {
1507                         setCursorIntern(cur, cur.pit() + 1, 0);
1508                         needsUpdate = backspacePos0(cur);
1509                 }
1510         }
1511
1512         needsUpdate |= handleBibitems(cur);
1513
1514         if (needsUpdate) {
1515                 // Make sure the cursor is correct. Is this really needed?
1516                 // No, not really... at least not here!
1517                 cur.text()->setCursor(cur.top(), cur.pit(), cur.pos());
1518                 cur.checkBufferStructure();
1519         }
1520
1521         return needsUpdate;
1522 }
1523
1524
1525 bool Text::backspacePos0(Cursor & cur)
1526 {
1527         LASSERT(this == cur.text(), /**/);
1528         if (cur.pit() == 0)
1529                 return false;
1530
1531         bool needsUpdate = false;
1532
1533         BufferParams const & bufparams = cur.buffer()->params();
1534         DocumentClass const & tclass = bufparams.documentClass();
1535         ParagraphList & plist = cur.text()->paragraphs();
1536         Paragraph const & par = cur.paragraph();
1537         Cursor prevcur = cur;
1538         --prevcur.pit();
1539         prevcur.pos() = prevcur.lastpos();
1540         Paragraph const & prevpar = prevcur.paragraph();
1541
1542         // is it an empty paragraph?
1543         if (cur.lastpos() == 0
1544             || (cur.lastpos() == 1 && par.isSeparator(0))) {
1545                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit(), cur.pit());
1546                 plist.erase(boost::next(plist.begin(), cur.pit()));
1547                 needsUpdate = true;
1548         }
1549         // is previous par empty?
1550         else if (prevcur.lastpos() == 0
1551                  || (prevcur.lastpos() == 1 && prevpar.isSeparator(0))) {
1552                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit(), cur.pit());
1553                 plist.erase(boost::next(plist.begin(), prevcur.pit()));
1554                 needsUpdate = true;
1555         }
1556         // Pasting is not allowed, if the paragraphs have different
1557         // layouts. I think it is a real bug of all other
1558         // word processors to allow it. It confuses the user.
1559         // Correction: Pasting is always allowed with standard-layout
1560         // or the empty layout.
1561         else if (par.layout() == prevpar.layout()
1562                  || tclass.isDefaultLayout(par.layout())
1563                  || tclass.isPlainLayout(par.layout())) {
1564                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit());
1565                 mergeParagraph(bufparams, plist, prevcur.pit());
1566                 needsUpdate = true;
1567         }
1568
1569         if (needsUpdate) {
1570                 cur.forceBufferUpdate();
1571                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
1572         }
1573
1574         return needsUpdate;
1575 }
1576
1577
1578 bool Text::backspace(Cursor & cur)
1579 {
1580         LASSERT(this == cur.text(), /**/);
1581         bool needsUpdate = false;
1582         if (cur.pos() == 0) {
1583                 if (cur.pit() == 0)
1584                         return dissolveInset(cur);
1585
1586                 Paragraph & prev_par = pars_[cur.pit() - 1];
1587
1588                 if (!prev_par.isMergedOnEndOfParDeletion(cur.buffer()->params().trackChanges)) {
1589                         prev_par.setChange(prev_par.size(), Change(Change::DELETED));
1590                         setCursorIntern(cur, cur.pit() - 1, prev_par.size());
1591                         return true;
1592                 }
1593                 // The cursor is at the beginning of a paragraph, so
1594                 // the backspace will collapse two paragraphs into one.
1595                 needsUpdate = backspacePos0(cur);
1596
1597         } else {
1598                 // this is the code for a normal backspace, not pasting
1599                 // any paragraphs
1600                 cur.recordUndo(DELETE_UNDO);
1601                 // We used to do cursorBackwardIntern() here, but it is
1602                 // not a good idea since it triggers the auto-delete
1603                 // mechanism. So we do a cursorBackwardIntern()-lite,
1604                 // without the dreaded mechanism. (JMarc)
1605                 setCursorIntern(cur, cur.pit(), cur.pos() - 1,
1606                                 false, cur.boundary());
1607                 bool const was_inset = cur.paragraph().isInset(cur.pos());
1608                 cur.paragraph().eraseChar(cur.pos(), cur.buffer()->params().trackChanges);
1609                 if (was_inset)
1610                         cur.forceBufferUpdate();
1611                 else
1612                         cur.checkBufferStructure();
1613         }
1614
1615         if (cur.pos() == cur.lastpos())
1616                 cur.setCurrentFont();
1617
1618         needsUpdate |= handleBibitems(cur);
1619
1620         // A singlePar update is not enough in this case.
1621 //              cur.screenUpdateFlags(Update::Force);
1622         setCursor(cur.top(), cur.pit(), cur.pos());
1623
1624         return needsUpdate;
1625 }
1626
1627
1628 bool Text::dissolveInset(Cursor & cur)
1629 {
1630         LASSERT(this == cur.text(), return false);
1631
1632         if (isMainText() || cur.inset().nargs() != 1)
1633                 return false;
1634
1635         cur.recordUndoInset();
1636         cur.setMark(false);
1637         cur.selHandle(false);
1638         // save position
1639         pos_type spos = cur.pos();
1640         pit_type spit = cur.pit();
1641         ParagraphList plist;
1642         if (cur.lastpit() != 0 || cur.lastpos() != 0)
1643                 plist = paragraphs();
1644         cur.popBackward();
1645         // store cursor offset
1646         if (spit == 0)
1647                 spos += cur.pos();
1648         spit += cur.pit();
1649         Buffer & b = *cur.buffer();
1650         cur.paragraph().eraseChar(cur.pos(), b.params().trackChanges);
1651         if (!plist.empty()) {
1652                 // ERT paragraphs have the Language latex_language.
1653                 // This is invalid outside of ERT, so we need to
1654                 // change it to the buffer language.
1655                 ParagraphList::iterator it = plist.begin();
1656                 ParagraphList::iterator it_end = plist.end();
1657                 for (; it != it_end; it++)
1658                         it->changeLanguage(b.params(), latex_language, b.language());
1659
1660                 pasteParagraphList(cur, plist, b.params().documentClassPtr(),
1661                                    b.errorList("Paste"));
1662                 // restore position
1663                 cur.pit() = min(cur.lastpit(), spit);
1664                 cur.pos() = min(cur.lastpos(), spos);
1665         } else
1666                 cur.forceBufferUpdate();
1667
1668         // Ensure the current language is set correctly (bug 6292)
1669         cur.text()->setCursor(cur, cur.pit(), cur.pos());
1670         cur.clearSelection();
1671         cur.resetAnchor();
1672         return true;
1673 }
1674
1675
1676 void Text::getWord(CursorSlice & from, CursorSlice & to,
1677         word_location const loc) const
1678 {
1679         to = from;
1680         pars_[to.pit()].locateWord(from.pos(), to.pos(), loc);
1681 }
1682
1683
1684 void Text::write(ostream & os) const
1685 {
1686         Buffer const & buf = owner_->buffer();
1687         ParagraphList::const_iterator pit = paragraphs().begin();
1688         ParagraphList::const_iterator end = paragraphs().end();
1689         depth_type dth = 0;
1690         for (; pit != end; ++pit)
1691                 pit->write(os, buf.params(), dth);
1692
1693         // Close begin_deeper
1694         for(; dth > 0; --dth)
1695                 os << "\n\\end_deeper";
1696 }
1697
1698
1699 bool Text::read(Lexer & lex, 
1700                 ErrorList & errorList, InsetText * insetPtr)
1701 {
1702         Buffer const & buf = owner_->buffer();
1703         depth_type depth = 0;
1704         bool res = true;
1705
1706         while (lex.isOK()) {
1707                 lex.nextToken();
1708                 string const token = lex.getString();
1709
1710                 if (token.empty())
1711                         continue;
1712
1713                 if (token == "\\end_inset")
1714                         break;
1715
1716                 if (token == "\\end_body")
1717                         continue;
1718
1719                 if (token == "\\begin_body")
1720                         continue;
1721
1722                 if (token == "\\end_document") {
1723                         res = false;
1724                         break;
1725                 }
1726
1727                 if (token == "\\begin_layout") {
1728                         lex.pushToken(token);
1729
1730                         Paragraph par;
1731                         par.setInsetOwner(insetPtr);
1732                         par.params().depth(depth);
1733                         par.setFont(0, Font(inherit_font, buf.params().language));
1734                         pars_.push_back(par);
1735                         readParagraph(pars_.back(), lex, errorList);
1736
1737                         // register the words in the global word list
1738                         pars_.back().updateWords();
1739                 } else if (token == "\\begin_deeper") {
1740                         ++depth;
1741                 } else if (token == "\\end_deeper") {
1742                         if (!depth)
1743                                 lex.printError("\\end_deeper: " "depth is already null");
1744                         else
1745                                 --depth;
1746                 } else {
1747                         LYXERR0("Handling unknown body token: `" << token << '\'');
1748                 }
1749         }
1750
1751         // avoid a crash on weird documents (bug 4859)
1752         if (pars_.empty()) {
1753                 Paragraph par;
1754                 par.setInsetOwner(insetPtr);
1755                 par.params().depth(depth);
1756                 par.setFont(0, Font(inherit_font, 
1757                                     buf.params().language));
1758                 par.setPlainOrDefaultLayout(buf.params().documentClass());
1759                 pars_.push_back(par);
1760         }
1761         
1762         return res;
1763 }
1764
1765 // Returns the current font and depth as a message.
1766 docstring Text::currentState(Cursor const & cur) const
1767 {
1768         LASSERT(this == cur.text(), /**/);
1769         Buffer & buf = *cur.buffer();
1770         Paragraph const & par = cur.paragraph();
1771         odocstringstream os;
1772
1773         if (buf.params().trackChanges)
1774                 os << _("[Change Tracking] ");
1775
1776         Change change = par.lookupChange(cur.pos());
1777
1778         if (change.changed()) {
1779                 Author const & a = buf.params().authors().get(change.author);
1780                 os << _("Change: ") << a.name();
1781                 if (!a.email().empty())
1782                         os << " (" << a.email() << ")";
1783                 // FIXME ctime is english, we should translate that
1784                 os << _(" at ") << ctime(&change.changetime);
1785                 os << " : ";
1786         }
1787
1788         // I think we should only show changes from the default
1789         // font. (Asger)
1790         // No, from the document font (MV)
1791         Font font = cur.real_current_font;
1792         font.fontInfo().reduce(buf.params().getFont().fontInfo());
1793
1794         os << bformat(_("Font: %1$s"), font.stateText(&buf.params()));
1795
1796         // The paragraph depth
1797         int depth = cur.paragraph().getDepth();
1798         if (depth > 0)
1799                 os << bformat(_(", Depth: %1$d"), depth);
1800
1801         // The paragraph spacing, but only if different from
1802         // buffer spacing.
1803         Spacing const & spacing = par.params().spacing();
1804         if (!spacing.isDefault()) {
1805                 os << _(", Spacing: ");
1806                 switch (spacing.getSpace()) {
1807                 case Spacing::Single:
1808                         os << _("Single");
1809                         break;
1810                 case Spacing::Onehalf:
1811                         os << _("OneHalf");
1812                         break;
1813                 case Spacing::Double:
1814                         os << _("Double");
1815                         break;
1816                 case Spacing::Other:
1817                         os << _("Other (") << from_ascii(spacing.getValueAsString()) << ')';
1818                         break;
1819                 case Spacing::Default:
1820                         // should never happen, do nothing
1821                         break;
1822                 }
1823         }
1824
1825 #ifdef DEVEL_VERSION
1826         os << _(", Inset: ") << &cur.inset();
1827         os << _(", Paragraph: ") << cur.pit();
1828         os << _(", Id: ") << par.id();
1829         os << _(", Position: ") << cur.pos();
1830         // FIXME: Why is the check for par.size() needed?
1831         // We are called with cur.pos() == par.size() quite often.
1832         if (!par.empty() && cur.pos() < par.size()) {
1833                 // Force output of code point, not character
1834                 size_t const c = par.getChar(cur.pos());
1835                 os << _(", Char: 0x") << hex << c;
1836         }
1837         os << _(", Boundary: ") << cur.boundary();
1838 //      Row & row = cur.textRow();
1839 //      os << bformat(_(", Row b:%1$d e:%2$d"), row.pos(), row.endpos());
1840 #endif
1841         return os.str();
1842 }
1843
1844
1845 docstring Text::getPossibleLabel(Cursor const & cur) const
1846 {
1847         pit_type pit = cur.pit();
1848
1849         Layout const * layout = &(pars_[pit].layout());
1850
1851         docstring text;
1852         docstring par_text = pars_[pit].asString();
1853
1854         // The return string of math matrices might contain linebreaks
1855         par_text = subst(par_text, '\n', '-');
1856         int const numwords = 3;
1857         for (int i = 0; i < numwords; ++i) {
1858                 if (par_text.empty())
1859                         break;
1860                 docstring head;
1861                 par_text = split(par_text, head, ' ');
1862                 // Is it legal to use spaces in labels ?
1863                 if (i > 0)
1864                         text += '-';
1865                 text += head;
1866         }
1867         
1868         // Make sure it isn't too long
1869         unsigned int const max_label_length = 32;
1870         if (text.size() > max_label_length)
1871                 text.resize(max_label_length);
1872
1873         // Will contain the label prefix.
1874         docstring name;
1875
1876         // For section, subsection, etc...
1877         if (layout->latextype == LATEX_PARAGRAPH && pit != 0) {
1878                 Layout const * layout2 = &(pars_[pit - 1].layout());
1879                 if (layout2->latextype != LATEX_PARAGRAPH) {
1880                         --pit;
1881                         layout = layout2;
1882                 }
1883         }
1884         if (layout->latextype != LATEX_PARAGRAPH)
1885                 name = layout->refprefix;
1886
1887         // For captions, we just take the caption type
1888         Inset * caption_inset = cur.innerInsetOfType(CAPTION_CODE);
1889         if (caption_inset) {
1890                 string const & ftype = static_cast<InsetCaption *>(caption_inset)->type();
1891                 FloatList const & fl = cur.buffer()->params().documentClass().floats();
1892                 if (fl.typeExist(ftype)) {
1893                         Floating const & flt = fl.getType(ftype);
1894                         name = from_utf8(flt.refPrefix());
1895                 }
1896                 if (name.empty())
1897                         name = from_utf8(ftype.substr(0,3));
1898         }
1899
1900         // If none of the above worked, see if the inset knows.
1901         if (name.empty()) {
1902                 InsetLayout const & il = cur.inset().getLayout();
1903                 name = il.refprefix();
1904         }
1905
1906         if (!name.empty())
1907                 // FIXME refstyle
1908                 // We should allow customization of the separator or else change it
1909                 text = name + ':' + text;
1910
1911         return text;
1912 }
1913
1914
1915 docstring Text::asString(int options) const
1916 {
1917         return asString(0, pars_.size(), options);
1918 }
1919
1920
1921 docstring Text::asString(pit_type beg, pit_type end, int options) const
1922 {
1923         size_t i = size_t(beg);
1924         docstring str = pars_[i].asString(options);
1925         for (++i; i != size_t(end); ++i) {
1926                 str += '\n';
1927                 str += pars_[i].asString(options);
1928         }
1929         return str;
1930 }
1931
1932
1933
1934 void Text::charsTranspose(Cursor & cur)
1935 {
1936         LASSERT(this == cur.text(), /**/);
1937
1938         pos_type pos = cur.pos();
1939
1940         // If cursor is at beginning or end of paragraph, do nothing.
1941         if (pos == cur.lastpos() || pos == 0)
1942                 return;
1943
1944         Paragraph & par = cur.paragraph();
1945
1946         // Get the positions of the characters to be transposed.
1947         pos_type pos1 = pos - 1;
1948         pos_type pos2 = pos;
1949
1950         // In change tracking mode, ignore deleted characters.
1951         while (pos2 < cur.lastpos() && par.isDeleted(pos2))
1952                 ++pos2;
1953         if (pos2 == cur.lastpos())
1954                 return;
1955
1956         while (pos1 >= 0 && par.isDeleted(pos1))
1957                 --pos1;
1958         if (pos1 < 0)
1959                 return;
1960
1961         // Don't do anything if one of the "characters" is not regular text.
1962         if (par.isInset(pos1) || par.isInset(pos2))
1963                 return;
1964
1965         // Store the characters to be transposed (including font information).
1966         char_type const char1 = par.getChar(pos1);
1967         Font const font1 =
1968                 par.getFontSettings(cur.buffer()->params(), pos1);
1969
1970         char_type const char2 = par.getChar(pos2);
1971         Font const font2 =
1972                 par.getFontSettings(cur.buffer()->params(), pos2);
1973
1974         // And finally, we are ready to perform the transposition.
1975         // Track the changes if Change Tracking is enabled.
1976         bool const trackChanges = cur.buffer()->params().trackChanges;
1977
1978         cur.recordUndo();
1979
1980         par.eraseChar(pos2, trackChanges);
1981         par.eraseChar(pos1, trackChanges);
1982         par.insertChar(pos1, char2, font2, trackChanges);
1983         par.insertChar(pos2, char1, font1, trackChanges);
1984
1985         cur.checkBufferStructure();
1986
1987         // After the transposition, move cursor to after the transposition.
1988         setCursor(cur, cur.pit(), pos2);
1989         cur.forwardPos();
1990 }
1991
1992
1993 DocIterator Text::macrocontextPosition() const
1994 {
1995         return macrocontext_position_;
1996 }
1997
1998
1999 void Text::setMacrocontextPosition(DocIterator const & pos)
2000 {
2001         macrocontext_position_ = pos;
2002 }
2003
2004
2005 docstring Text::previousWord(CursorSlice const & sl) const
2006 {
2007         CursorSlice from = sl;
2008         CursorSlice to = sl;
2009         getWord(from, to, PREVIOUS_WORD);
2010         if (sl == from || to == from)
2011                 return docstring();
2012         
2013         Paragraph const & par = sl.paragraph();
2014         return par.asString(from.pos(), to.pos());
2015 }
2016
2017
2018 bool Text::completionSupported(Cursor const & cur) const
2019 {
2020         Paragraph const & par = cur.paragraph();
2021         return cur.pos() > 0
2022                 && (cur.pos() >= par.size() || par.isWordSeparator(cur.pos()))
2023                 && !par.isWordSeparator(cur.pos() - 1);
2024 }
2025
2026
2027 CompletionList const * Text::createCompletionList(Cursor const & cur) const
2028 {
2029         WordList const * list = theWordList(*cur.getFont().language());
2030         return new TextCompletionList(cur, list);
2031 }
2032
2033
2034 bool Text::insertCompletion(Cursor & cur, docstring const & s, bool /*finished*/)
2035 {       
2036         LASSERT(cur.bv().cursor() == cur, /**/);
2037         cur.insert(s);
2038         cur.bv().cursor() = cur;
2039         if (!(cur.result().update() & Update::Force))
2040                 cur.screenUpdateFlags(cur.result().update() | Update::SinglePar);
2041         return true;
2042 }
2043         
2044         
2045 docstring Text::completionPrefix(Cursor const & cur) const
2046 {
2047         return previousWord(cur.top());
2048 }
2049
2050 } // namespace lyx