]> git.lyx.org Git - lyx.git/blob - src/Text.cpp
Compile fix.
[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                         cur.message(_(
940                                         "You cannot insert a space at the "
941                                         "beginning of a paragraph. Please read the Tutorial."));
942                         return;
943                 }
944                 LASSERT(cur.pos() > 0, /**/);
945                 if ((par.isLineSeparator(cur.pos() - 1) || par.isNewline(cur.pos() - 1))
946                                 && !par.isDeleted(cur.pos() - 1)) {
947                         cur.message(_(
948                                         "You cannot type two spaces this way. "
949                                         "Please read the Tutorial."));
950                         return;
951                 }
952         }
953
954         par.insertChar(cur.pos(), c, cur.current_font,
955                 cur.buffer()->params().trackChanges);
956         cur.checkBufferStructure();
957
958 //              cur.screenUpdateFlags(Update::Force);
959         bool boundary = cur.boundary()
960                 || tm.isRTLBoundary(cur.pit(), cur.pos() + 1);
961         setCursor(cur, cur.pit(), cur.pos() + 1, false, boundary);
962         charInserted(cur);
963 }
964
965
966 void Text::charInserted(Cursor & cur)
967 {
968         Paragraph & par = cur.paragraph();
969
970         // Here we call finishUndo for every 20 characters inserted.
971         // This is from my experience how emacs does it. (Lgb)
972         if (undo_counter_ < 20) {
973                 ++undo_counter_;
974         } else {
975                 cur.finishUndo();
976                 undo_counter_ = 0;
977         }
978
979         // register word if a non-letter was entered
980         if (cur.pos() > 1
981             && !par.isWordSeparator(cur.pos() - 2)
982             && par.isWordSeparator(cur.pos() - 1)) {
983                 // get the word in front of cursor
984                 LASSERT(this == cur.text(), /**/);
985                 cur.paragraph().updateWords();
986         }
987 }
988
989
990 // the cursor set functions have a special mechanism. When they
991 // realize, that you left an empty paragraph, they will delete it.
992
993 bool Text::cursorForwardOneWord(Cursor & cur)
994 {
995         LASSERT(this == cur.text(), /**/);
996
997         pos_type const lastpos = cur.lastpos();
998         pit_type pit = cur.pit();
999         pos_type pos = cur.pos();
1000         Paragraph const & par = cur.paragraph();
1001
1002         // Paragraph boundary is a word boundary
1003         if (pos == lastpos) {
1004                 if (pit != cur.lastpit())
1005                         return setCursor(cur, pit + 1, 0);
1006                 else
1007                         return false;
1008         }
1009
1010         if (lyxrc.mac_like_word_movement) {
1011                 // Skip through trailing punctuation and spaces.
1012                 while (pos != lastpos && (par.isChar(pos) || par.isSpace(pos)))
1013                         ++pos;
1014
1015                 // Skip over either a non-char inset or a full word
1016                 if (pos != lastpos && par.isWordSeparator(pos))
1017                         ++pos;
1018                 else while (pos != lastpos && !par.isWordSeparator(pos))
1019                              ++pos;
1020         } else {
1021                 LASSERT(pos < lastpos, /**/); // see above
1022                 if (!par.isWordSeparator(pos))
1023                         while (pos != lastpos && !par.isWordSeparator(pos))
1024                                 ++pos;
1025                 else if (par.isChar(pos))
1026                         while (pos != lastpos && par.isChar(pos))
1027                                 ++pos;
1028                 else if (!par.isSpace(pos)) // non-char inset
1029                         ++pos;
1030
1031                 // Skip over white space
1032                 while (pos != lastpos && par.isSpace(pos))
1033                              ++pos;             
1034         }
1035
1036         return setCursor(cur, pit, pos);
1037 }
1038
1039
1040 bool Text::cursorBackwardOneWord(Cursor & cur)
1041 {
1042         LASSERT(this == cur.text(), /**/);
1043
1044         pit_type pit = cur.pit();
1045         pos_type pos = cur.pos();
1046         Paragraph & par = cur.paragraph();
1047
1048         // Paragraph boundary is a word boundary
1049         if (pos == 0 && pit != 0)
1050                 return setCursor(cur, pit - 1, getPar(pit - 1).size());
1051
1052         if (lyxrc.mac_like_word_movement) {
1053                 // Skip through punctuation and spaces.
1054                 while (pos != 0 && (par.isChar(pos - 1) || par.isSpace(pos - 1)))
1055                         --pos;
1056
1057                 // Skip over either a non-char inset or a full word
1058                 if (pos != 0 && par.isWordSeparator(pos - 1) && !par.isChar(pos - 1))
1059                         --pos;
1060                 else while (pos != 0 && !par.isWordSeparator(pos - 1))
1061                              --pos;
1062         } else {
1063                 // Skip over white space
1064                 while (pos != 0 && par.isSpace(pos - 1))
1065                              --pos;
1066
1067                 if (pos != 0 && !par.isWordSeparator(pos - 1))
1068                         while (pos != 0 && !par.isWordSeparator(pos - 1))
1069                                 --pos;
1070                 else if (pos != 0 && par.isChar(pos - 1))
1071                         while (pos != 0 && par.isChar(pos - 1))
1072                                 --pos;
1073                 else if (pos != 0 && !par.isSpace(pos - 1)) // non-char inset
1074                         --pos;
1075         }
1076
1077         return setCursor(cur, pit, pos);
1078 }
1079
1080
1081 bool Text::cursorVisLeftOneWord(Cursor & cur)
1082 {
1083         LASSERT(this == cur.text(), /**/);
1084
1085         pos_type left_pos, right_pos;
1086         bool left_is_letter, right_is_letter;
1087
1088         Cursor temp_cur = cur;
1089
1090         // always try to move at least once...
1091         while (temp_cur.posVisLeft(true /* skip_inset */)) {
1092
1093                 // collect some information about current cursor position
1094                 temp_cur.getSurroundingPos(left_pos, right_pos);
1095                 left_is_letter = 
1096                         (left_pos > -1 ? !temp_cur.paragraph().isWordSeparator(left_pos) : false);
1097                 right_is_letter = 
1098                         (right_pos > -1 ? !temp_cur.paragraph().isWordSeparator(right_pos) : false);
1099
1100                 // if we're not at a letter/non-letter boundary, continue moving
1101                 if (left_is_letter == right_is_letter)
1102                         continue;
1103
1104                 // we should stop when we have an LTR word on our right or an RTL word
1105                 // on our left
1106                 if ((left_is_letter && temp_cur.paragraph().getFontSettings(
1107                                 temp_cur.buffer()->params(), left_pos).isRightToLeft())
1108                         || (right_is_letter && !temp_cur.paragraph().getFontSettings(
1109                                 temp_cur.buffer()->params(), right_pos).isRightToLeft()))
1110                         break;
1111         }
1112
1113         return setCursor(cur, temp_cur.pit(), temp_cur.pos(), 
1114                                          true, temp_cur.boundary());
1115 }
1116
1117
1118 bool Text::cursorVisRightOneWord(Cursor & cur)
1119 {
1120         LASSERT(this == cur.text(), /**/);
1121
1122         pos_type left_pos, right_pos;
1123         bool left_is_letter, right_is_letter;
1124
1125         Cursor temp_cur = cur;
1126
1127         // always try to move at least once...
1128         while (temp_cur.posVisRight(true /* skip_inset */)) {
1129
1130                 // collect some information about current cursor position
1131                 temp_cur.getSurroundingPos(left_pos, right_pos);
1132                 left_is_letter = 
1133                         (left_pos > -1 ? !temp_cur.paragraph().isWordSeparator(left_pos) : false);
1134                 right_is_letter = 
1135                         (right_pos > -1 ? !temp_cur.paragraph().isWordSeparator(right_pos) : false);
1136
1137                 // if we're not at a letter/non-letter boundary, continue moving
1138                 if (left_is_letter == right_is_letter)
1139                         continue;
1140
1141                 // we should stop when we have an LTR word on our right or an RTL word
1142                 // on our left
1143                 if ((left_is_letter && temp_cur.paragraph().getFontSettings(
1144                                 temp_cur.buffer()->params(), 
1145                                 left_pos).isRightToLeft())
1146                         || (right_is_letter && !temp_cur.paragraph().getFontSettings(
1147                                 temp_cur.buffer()->params(), 
1148                                 right_pos).isRightToLeft()))
1149                         break;
1150         }
1151
1152         return setCursor(cur, temp_cur.pit(), temp_cur.pos(), 
1153                                          true, temp_cur.boundary());
1154 }
1155
1156
1157 void Text::selectWord(Cursor & cur, word_location loc)
1158 {
1159         LASSERT(this == cur.text(), /**/);
1160         CursorSlice from = cur.top();
1161         CursorSlice to = cur.top();
1162         getWord(from, to, loc);
1163         if (cur.top() != from)
1164                 setCursor(cur, from.pit(), from.pos());
1165         if (to == from)
1166                 return;
1167         if (!cur.selection())
1168                 cur.resetAnchor();
1169         setCursor(cur, to.pit(), to.pos());
1170         cur.setSelection();
1171         cur.setWordSelection(true);
1172 }
1173
1174
1175 void Text::selectAll(Cursor & cur)
1176 {
1177         LASSERT(this == cur.text(), /**/);
1178         if (cur.lastpos() == 0 && cur.lastpit() == 0)
1179                 return;
1180         // If the cursor is at the beginning, make sure the cursor ends there
1181         if (cur.pit() == 0 && cur.pos() == 0) {
1182                 setCursor(cur, cur.lastpit(), getPar(cur.lastpit()).size());
1183                 cur.resetAnchor();
1184                 setCursor(cur, 0, 0);           
1185         } else {
1186                 setCursor(cur, 0, 0);
1187                 cur.resetAnchor();
1188                 setCursor(cur, cur.lastpit(), getPar(cur.lastpit()).size());
1189         }
1190         cur.setSelection();
1191 }
1192
1193
1194 // Select the word currently under the cursor when no
1195 // selection is currently set
1196 bool Text::selectWordWhenUnderCursor(Cursor & cur, word_location loc)
1197 {
1198         LASSERT(this == cur.text(), /**/);
1199         if (cur.selection())
1200                 return false;
1201         selectWord(cur, loc);
1202         return cur.selection();
1203 }
1204
1205
1206 void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
1207 {
1208         LASSERT(this == cur.text(), /**/);
1209
1210         if (!cur.selection()) {
1211                 bool const changed = cur.paragraph().isChanged(cur.pos());
1212                 if (!(changed && findNextChange(&cur.bv())))
1213                         return;
1214         }
1215
1216         cur.recordUndoSelection();
1217
1218         pit_type begPit = cur.selectionBegin().pit();
1219         pit_type endPit = cur.selectionEnd().pit();
1220
1221         pos_type begPos = cur.selectionBegin().pos();
1222         pos_type endPos = cur.selectionEnd().pos();
1223
1224         // keep selection info, because endPos becomes invalid after the first loop
1225         bool endsBeforeEndOfPar = (endPos < pars_[endPit].size());
1226
1227         // first, accept/reject changes within each individual paragraph (do not consider end-of-par)
1228
1229         for (pit_type pit = begPit; pit <= endPit; ++pit) {
1230                 pos_type parSize = pars_[pit].size();
1231
1232                 // ignore empty paragraphs; otherwise, an assertion will fail for
1233                 // acceptChanges(bparams, 0, 0) or rejectChanges(bparams, 0, 0)
1234                 if (parSize == 0)
1235                         continue;
1236
1237                 // do not consider first paragraph if the cursor starts at pos size()
1238                 if (pit == begPit && begPos == parSize)
1239                         continue;
1240
1241                 // do not consider last paragraph if the cursor ends at pos 0
1242                 if (pit == endPit && endPos == 0)
1243                         break; // last iteration anyway
1244
1245                 pos_type left  = (pit == begPit ? begPos : 0);
1246                 pos_type right = (pit == endPit ? endPos : parSize);
1247
1248                 if (op == ACCEPT) {
1249                         pars_[pit].acceptChanges(left, right);
1250                 } else {
1251                         pars_[pit].rejectChanges(left, right);
1252                 }
1253         }
1254
1255         // next, accept/reject imaginary end-of-par characters
1256
1257         for (pit_type pit = begPit; pit <= endPit; ++pit) {
1258                 pos_type pos = pars_[pit].size();
1259
1260                 // skip if the selection ends before the end-of-par
1261                 if (pit == endPit && endsBeforeEndOfPar)
1262                         break; // last iteration anyway
1263
1264                 // skip if this is not the last paragraph of the document
1265                 // note: the user should be able to accept/reject the par break of the last par!
1266                 if (pit == endPit && pit + 1 != int(pars_.size()))
1267                         break; // last iteration anway
1268
1269                 if (op == ACCEPT) {
1270                         if (pars_[pit].isInserted(pos)) {
1271                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1272                         } else if (pars_[pit].isDeleted(pos)) {
1273                                 if (pit + 1 == int(pars_.size())) {
1274                                         // we cannot remove a par break at the end of the last paragraph;
1275                                         // instead, we mark it unchanged
1276                                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1277                                 } else {
1278                                         mergeParagraph(cur.buffer()->params(), pars_, pit);
1279                                         --endPit;
1280                                         --pit;
1281                                 }
1282                         }
1283                 } else {
1284                         if (pars_[pit].isDeleted(pos)) {
1285                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1286                         } else if (pars_[pit].isInserted(pos)) {
1287                                 if (pit + 1 == int(pars_.size())) {
1288                                         // we mark the par break at the end of the last paragraph unchanged
1289                                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1290                                 } else {
1291                                         mergeParagraph(cur.buffer()->params(), pars_, pit);
1292                                         --endPit;
1293                                         --pit;
1294                                 }
1295                         }
1296                 }
1297         }
1298
1299         // finally, invoke the DEPM
1300
1301         deleteEmptyParagraphMechanism(begPit, endPit, cur.buffer()->params().trackChanges);
1302
1303         //
1304
1305         cur.finishUndo();
1306         cur.clearSelection();
1307         setCursorIntern(cur, begPit, begPos);
1308         cur.screenUpdateFlags(Update::Force);
1309         cur.forceBufferUpdate();
1310 }
1311
1312
1313 void Text::acceptChanges()
1314 {
1315         BufferParams const & bparams = owner_->buffer().params();
1316         lyx::acceptChanges(pars_, bparams);
1317         deleteEmptyParagraphMechanism(0, pars_.size() - 1, bparams.trackChanges);
1318 }
1319
1320
1321 void Text::rejectChanges()
1322 {
1323         BufferParams const & bparams = owner_->buffer().params();
1324         pit_type pars_size = static_cast<pit_type>(pars_.size());
1325
1326         // first, reject changes within each individual paragraph
1327         // (do not consider end-of-par)
1328         for (pit_type pit = 0; pit < pars_size; ++pit) {
1329                 if (!pars_[pit].empty())   // prevent assertion failure
1330                         pars_[pit].rejectChanges(0, pars_[pit].size());
1331         }
1332
1333         // next, reject imaginary end-of-par characters
1334         for (pit_type pit = 0; pit < pars_size; ++pit) {
1335                 pos_type pos = pars_[pit].size();
1336
1337                 if (pars_[pit].isDeleted(pos)) {
1338                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1339                 } else if (pars_[pit].isInserted(pos)) {
1340                         if (pit == pars_size - 1) {
1341                                 // we mark the par break at the end of the last
1342                                 // paragraph unchanged
1343                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
1344                         } else {
1345                                 mergeParagraph(bparams, pars_, pit);
1346                                 --pit;
1347                                 --pars_size;
1348                         }
1349                 }
1350         }
1351
1352         // finally, invoke the DEPM
1353         deleteEmptyParagraphMechanism(0, pars_size - 1, bparams.trackChanges);
1354 }
1355
1356
1357 void Text::deleteWordForward(Cursor & cur)
1358 {
1359         LASSERT(this == cur.text(), /**/);
1360         if (cur.lastpos() == 0)
1361                 cursorForward(cur);
1362         else {
1363                 cur.resetAnchor();
1364                 cur.setSelection(true);
1365                 cursorForwardOneWord(cur);
1366                 cur.setSelection();
1367                 cutSelection(cur, true, false);
1368                 cur.checkBufferStructure();
1369         }
1370 }
1371
1372
1373 void Text::deleteWordBackward(Cursor & cur)
1374 {
1375         LASSERT(this == cur.text(), /**/);
1376         if (cur.lastpos() == 0)
1377                 cursorBackward(cur);
1378         else {
1379                 cur.resetAnchor();
1380                 cur.setSelection(true);
1381                 cursorBackwardOneWord(cur);
1382                 cur.setSelection();
1383                 cutSelection(cur, true, false);
1384                 cur.checkBufferStructure();
1385         }
1386 }
1387
1388
1389 // Kill to end of line.
1390 void Text::changeCase(Cursor & cur, TextCase action)
1391 {
1392         LASSERT(this == cur.text(), /**/);
1393         CursorSlice from;
1394         CursorSlice to;
1395
1396         bool gotsel = false;
1397         if (cur.selection()) {
1398                 from = cur.selBegin();
1399                 to = cur.selEnd();
1400                 gotsel = true;
1401         } else {
1402                 from = cur.top();
1403                 getWord(from, to, PARTIAL_WORD);
1404                 cursorForwardOneWord(cur);
1405         }
1406
1407         cur.recordUndoSelection();
1408
1409         pit_type begPit = from.pit();
1410         pit_type endPit = to.pit();
1411
1412         pos_type begPos = from.pos();
1413         pos_type endPos = to.pos();
1414
1415         pos_type right = 0; // needed after the for loop
1416
1417         for (pit_type pit = begPit; pit <= endPit; ++pit) {
1418                 Paragraph & par = pars_[pit];
1419                 pos_type const pos = (pit == begPit ? begPos : 0);
1420                 right = (pit == endPit ? endPos : par.size());
1421                 par.changeCase(cur.buffer()->params(), pos, right, action);
1422         }
1423
1424         // the selection may have changed due to logically-only deleted chars
1425         if (gotsel) {
1426                 setCursor(cur, begPit, begPos);
1427                 cur.resetAnchor();
1428                 setCursor(cur, endPit, right);
1429                 cur.setSelection();
1430         } else
1431                 setCursor(cur, endPit, right);
1432
1433         cur.checkBufferStructure();
1434 }
1435
1436
1437 bool Text::handleBibitems(Cursor & cur)
1438 {
1439         if (cur.paragraph().layout().labeltype != LABEL_BIBLIO)
1440                 return false;
1441
1442         if (cur.pos() != 0)
1443                 return false;
1444
1445         BufferParams const & bufparams = cur.buffer()->params();
1446         Paragraph const & par = cur.paragraph();
1447         Cursor prevcur = cur;
1448         if (cur.pit() > 0) {
1449                 --prevcur.pit();
1450                 prevcur.pos() = prevcur.lastpos();
1451         }
1452         Paragraph const & prevpar = prevcur.paragraph();
1453
1454         // if a bibitem is deleted, merge with previous paragraph
1455         // if this is a bibliography item as well
1456         if (cur.pit() > 0 && par.layout() == prevpar.layout()) {
1457                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit());
1458                 mergeParagraph(bufparams, cur.text()->paragraphs(),
1459                                                         prevcur.pit());
1460                 cur.forceBufferUpdate();
1461                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
1462                 cur.screenUpdateFlags(Update::Force);
1463                 return true;
1464         } 
1465
1466         // otherwise reset to default
1467         cur.paragraph().setPlainOrDefaultLayout(bufparams.documentClass());
1468         return true;
1469 }
1470
1471
1472 bool Text::erase(Cursor & cur)
1473 {
1474         LASSERT(this == cur.text(), return false);
1475         bool needsUpdate = false;
1476         Paragraph & par = cur.paragraph();
1477
1478         if (cur.pos() != cur.lastpos()) {
1479                 // this is the code for a normal delete, not pasting
1480                 // any paragraphs
1481                 cur.recordUndo(DELETE_UNDO);
1482                 bool const was_inset = cur.paragraph().isInset(cur.pos());
1483                 if(!par.eraseChar(cur.pos(), cur.buffer()->params().trackChanges))
1484                         // the character has been logically deleted only => skip it
1485                         cur.top().forwardPos();
1486
1487                 if (was_inset)
1488                         cur.forceBufferUpdate();
1489                 else
1490                         cur.checkBufferStructure();
1491                 needsUpdate = true;
1492         } else {
1493                 if (cur.pit() == cur.lastpit())
1494                         return dissolveInset(cur);
1495
1496                 if (!par.isMergedOnEndOfParDeletion(cur.buffer()->params().trackChanges)) {
1497                         par.setChange(cur.pos(), Change(Change::DELETED));
1498                         cur.forwardPos();
1499                         needsUpdate = true;
1500                 } else {
1501                         setCursorIntern(cur, cur.pit() + 1, 0);
1502                         needsUpdate = backspacePos0(cur);
1503                 }
1504         }
1505
1506         needsUpdate |= handleBibitems(cur);
1507
1508         if (needsUpdate) {
1509                 // Make sure the cursor is correct. Is this really needed?
1510                 // No, not really... at least not here!
1511                 cur.text()->setCursor(cur.top(), cur.pit(), cur.pos());
1512                 cur.checkBufferStructure();
1513         }
1514
1515         return needsUpdate;
1516 }
1517
1518
1519 bool Text::backspacePos0(Cursor & cur)
1520 {
1521         LASSERT(this == cur.text(), /**/);
1522         if (cur.pit() == 0)
1523                 return false;
1524
1525         bool needsUpdate = false;
1526
1527         BufferParams const & bufparams = cur.buffer()->params();
1528         DocumentClass const & tclass = bufparams.documentClass();
1529         ParagraphList & plist = cur.text()->paragraphs();
1530         Paragraph const & par = cur.paragraph();
1531         Cursor prevcur = cur;
1532         --prevcur.pit();
1533         prevcur.pos() = prevcur.lastpos();
1534         Paragraph const & prevpar = prevcur.paragraph();
1535
1536         // is it an empty paragraph?
1537         if (cur.lastpos() == 0
1538             || (cur.lastpos() == 1 && par.isSeparator(0))) {
1539                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit(), cur.pit());
1540                 plist.erase(boost::next(plist.begin(), cur.pit()));
1541                 needsUpdate = true;
1542         }
1543         // is previous par empty?
1544         else if (prevcur.lastpos() == 0
1545                  || (prevcur.lastpos() == 1 && prevpar.isSeparator(0))) {
1546                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit(), cur.pit());
1547                 plist.erase(boost::next(plist.begin(), prevcur.pit()));
1548                 needsUpdate = true;
1549         }
1550         // Pasting is not allowed, if the paragraphs have different
1551         // layouts. I think it is a real bug of all other
1552         // word processors to allow it. It confuses the user.
1553         // Correction: Pasting is always allowed with standard-layout
1554         // or the empty layout.
1555         else if (par.layout() == prevpar.layout()
1556                  || tclass.isDefaultLayout(par.layout())
1557                  || tclass.isPlainLayout(par.layout())) {
1558                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit());
1559                 mergeParagraph(bufparams, plist, prevcur.pit());
1560                 needsUpdate = true;
1561         }
1562
1563         if (needsUpdate) {
1564                 cur.forceBufferUpdate();
1565                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
1566         }
1567
1568         return needsUpdate;
1569 }
1570
1571
1572 bool Text::backspace(Cursor & cur)
1573 {
1574         LASSERT(this == cur.text(), /**/);
1575         bool needsUpdate = false;
1576         if (cur.pos() == 0) {
1577                 if (cur.pit() == 0)
1578                         return dissolveInset(cur);
1579
1580                 Paragraph & prev_par = pars_[cur.pit() - 1];
1581
1582                 if (!prev_par.isMergedOnEndOfParDeletion(cur.buffer()->params().trackChanges)) {
1583                         prev_par.setChange(prev_par.size(), Change(Change::DELETED));
1584                         setCursorIntern(cur, cur.pit() - 1, prev_par.size());
1585                         return true;
1586                 }
1587                 // The cursor is at the beginning of a paragraph, so
1588                 // the backspace will collapse two paragraphs into one.
1589                 needsUpdate = backspacePos0(cur);
1590
1591         } else {
1592                 // this is the code for a normal backspace, not pasting
1593                 // any paragraphs
1594                 cur.recordUndo(DELETE_UNDO);
1595                 // We used to do cursorBackwardIntern() here, but it is
1596                 // not a good idea since it triggers the auto-delete
1597                 // mechanism. So we do a cursorBackwardIntern()-lite,
1598                 // without the dreaded mechanism. (JMarc)
1599                 setCursorIntern(cur, cur.pit(), cur.pos() - 1,
1600                                 false, cur.boundary());
1601                 bool const was_inset = cur.paragraph().isInset(cur.pos());
1602                 cur.paragraph().eraseChar(cur.pos(), cur.buffer()->params().trackChanges);
1603                 if (was_inset)
1604                         cur.forceBufferUpdate();
1605                 else
1606                         cur.checkBufferStructure();
1607         }
1608
1609         if (cur.pos() == cur.lastpos())
1610                 cur.setCurrentFont();
1611
1612         needsUpdate |= handleBibitems(cur);
1613
1614         // A singlePar update is not enough in this case.
1615 //              cur.screenUpdateFlags(Update::Force);
1616         setCursor(cur.top(), cur.pit(), cur.pos());
1617
1618         return needsUpdate;
1619 }
1620
1621
1622 bool Text::dissolveInset(Cursor & cur)
1623 {
1624         LASSERT(this == cur.text(), return false);
1625
1626         if (isMainText() || cur.inset().nargs() != 1)
1627                 return false;
1628
1629         cur.recordUndoInset();
1630         cur.setMark(false);
1631         cur.selHandle(false);
1632         // save position
1633         pos_type spos = cur.pos();
1634         pit_type spit = cur.pit();
1635         ParagraphList plist;
1636         if (cur.lastpit() != 0 || cur.lastpos() != 0)
1637                 plist = paragraphs();
1638         cur.popBackward();
1639         // store cursor offset
1640         if (spit == 0)
1641                 spos += cur.pos();
1642         spit += cur.pit();
1643         Buffer & b = *cur.buffer();
1644         cur.paragraph().eraseChar(cur.pos(), b.params().trackChanges);
1645         if (!plist.empty()) {
1646                 // ERT paragraphs have the Language latex_language.
1647                 // This is invalid outside of ERT, so we need to
1648                 // change it to the buffer language.
1649                 ParagraphList::iterator it = plist.begin();
1650                 ParagraphList::iterator it_end = plist.end();
1651                 for (; it != it_end; it++)
1652                         it->changeLanguage(b.params(), latex_language, b.language());
1653
1654                 pasteParagraphList(cur, plist, b.params().documentClassPtr(),
1655                                    b.errorList("Paste"));
1656                 // restore position
1657                 cur.pit() = min(cur.lastpit(), spit);
1658                 cur.pos() = min(cur.lastpos(), spos);
1659         } else
1660                 cur.forceBufferUpdate();
1661
1662         // Ensure the current language is set correctly (bug 6292)
1663         cur.text()->setCursor(cur, cur.pit(), cur.pos());
1664         cur.clearSelection();
1665         cur.resetAnchor();
1666         return true;
1667 }
1668
1669
1670 void Text::getWord(CursorSlice & from, CursorSlice & to,
1671         word_location const loc) const
1672 {
1673         to = from;
1674         pars_[to.pit()].locateWord(from.pos(), to.pos(), loc);
1675 }
1676
1677
1678 void Text::write(ostream & os) const
1679 {
1680         Buffer const & buf = owner_->buffer();
1681         ParagraphList::const_iterator pit = paragraphs().begin();
1682         ParagraphList::const_iterator end = paragraphs().end();
1683         depth_type dth = 0;
1684         for (; pit != end; ++pit)
1685                 pit->write(os, buf.params(), dth);
1686
1687         // Close begin_deeper
1688         for(; dth > 0; --dth)
1689                 os << "\n\\end_deeper";
1690 }
1691
1692
1693 bool Text::read(Lexer & lex, 
1694                 ErrorList & errorList, InsetText * insetPtr)
1695 {
1696         Buffer const & buf = owner_->buffer();
1697         depth_type depth = 0;
1698         bool res = true;
1699
1700         while (lex.isOK()) {
1701                 lex.nextToken();
1702                 string const token = lex.getString();
1703
1704                 if (token.empty())
1705                         continue;
1706
1707                 if (token == "\\end_inset")
1708                         break;
1709
1710                 if (token == "\\end_body")
1711                         continue;
1712
1713                 if (token == "\\begin_body")
1714                         continue;
1715
1716                 if (token == "\\end_document") {
1717                         res = false;
1718                         break;
1719                 }
1720
1721                 if (token == "\\begin_layout") {
1722                         lex.pushToken(token);
1723
1724                         Paragraph par;
1725                         par.setInsetOwner(insetPtr);
1726                         par.params().depth(depth);
1727                         par.setFont(0, Font(inherit_font, buf.params().language));
1728                         pars_.push_back(par);
1729                         readParagraph(pars_.back(), lex, errorList);
1730
1731                         // register the words in the global word list
1732                         pars_.back().updateWords();
1733                 } else if (token == "\\begin_deeper") {
1734                         ++depth;
1735                 } else if (token == "\\end_deeper") {
1736                         if (!depth)
1737                                 lex.printError("\\end_deeper: " "depth is already null");
1738                         else
1739                                 --depth;
1740                 } else {
1741                         LYXERR0("Handling unknown body token: `" << token << '\'');
1742                 }
1743         }
1744
1745         // avoid a crash on weird documents (bug 4859)
1746         if (pars_.empty()) {
1747                 Paragraph par;
1748                 par.setInsetOwner(insetPtr);
1749                 par.params().depth(depth);
1750                 par.setFont(0, Font(inherit_font, 
1751                                     buf.params().language));
1752                 par.setPlainOrDefaultLayout(buf.params().documentClass());
1753                 pars_.push_back(par);
1754         }
1755         
1756         return res;
1757 }
1758
1759 // Returns the current font and depth as a message.
1760 docstring Text::currentState(Cursor const & cur) const
1761 {
1762         LASSERT(this == cur.text(), /**/);
1763         Buffer & buf = *cur.buffer();
1764         Paragraph const & par = cur.paragraph();
1765         odocstringstream os;
1766
1767         if (buf.params().trackChanges)
1768                 os << _("[Change Tracking] ");
1769
1770         Change change = par.lookupChange(cur.pos());
1771
1772         if (change.changed()) {
1773                 Author const & a = buf.params().authors().get(change.author);
1774                 os << _("Change: ") << a.name();
1775                 if (!a.email().empty())
1776                         os << " (" << a.email() << ")";
1777                 // FIXME ctime is english, we should translate that
1778                 os << _(" at ") << ctime(&change.changetime);
1779                 os << " : ";
1780         }
1781
1782         // I think we should only show changes from the default
1783         // font. (Asger)
1784         // No, from the document font (MV)
1785         Font font = cur.real_current_font;
1786         font.fontInfo().reduce(buf.params().getFont().fontInfo());
1787
1788         os << bformat(_("Font: %1$s"), font.stateText(&buf.params()));
1789
1790         // The paragraph depth
1791         int depth = cur.paragraph().getDepth();
1792         if (depth > 0)
1793                 os << bformat(_(", Depth: %1$d"), depth);
1794
1795         // The paragraph spacing, but only if different from
1796         // buffer spacing.
1797         Spacing const & spacing = par.params().spacing();
1798         if (!spacing.isDefault()) {
1799                 os << _(", Spacing: ");
1800                 switch (spacing.getSpace()) {
1801                 case Spacing::Single:
1802                         os << _("Single");
1803                         break;
1804                 case Spacing::Onehalf:
1805                         os << _("OneHalf");
1806                         break;
1807                 case Spacing::Double:
1808                         os << _("Double");
1809                         break;
1810                 case Spacing::Other:
1811                         os << _("Other (") << from_ascii(spacing.getValueAsString()) << ')';
1812                         break;
1813                 case Spacing::Default:
1814                         // should never happen, do nothing
1815                         break;
1816                 }
1817         }
1818
1819 #ifdef DEVEL_VERSION
1820         os << _(", Inset: ") << &cur.inset();
1821         os << _(", Paragraph: ") << cur.pit();
1822         os << _(", Id: ") << par.id();
1823         os << _(", Position: ") << cur.pos();
1824         // FIXME: Why is the check for par.size() needed?
1825         // We are called with cur.pos() == par.size() quite often.
1826         if (!par.empty() && cur.pos() < par.size()) {
1827                 // Force output of code point, not character
1828                 size_t const c = par.getChar(cur.pos());
1829                 os << _(", Char: 0x") << hex << c;
1830         }
1831         os << _(", Boundary: ") << cur.boundary();
1832 //      Row & row = cur.textRow();
1833 //      os << bformat(_(", Row b:%1$d e:%2$d"), row.pos(), row.endpos());
1834 #endif
1835         return os.str();
1836 }
1837
1838
1839 docstring Text::getPossibleLabel(Cursor const & cur) const
1840 {
1841         pit_type pit = cur.pit();
1842
1843         Layout const * layout = &(pars_[pit].layout());
1844
1845         docstring text;
1846         docstring par_text = pars_[pit].asString();
1847
1848         // The return string of math matrices might contain linebreaks
1849         par_text = subst(par_text, '\n', '-');
1850         int const numwords = 3;
1851         for (int i = 0; i < numwords; ++i) {
1852                 if (par_text.empty())
1853                         break;
1854                 docstring head;
1855                 par_text = split(par_text, head, ' ');
1856                 // Is it legal to use spaces in labels ?
1857                 if (i > 0)
1858                         text += '-';
1859                 text += head;
1860         }
1861         
1862         // Make sure it isn't too long
1863         unsigned int const max_label_length = 32;
1864         if (text.size() > max_label_length)
1865                 text.resize(max_label_length);
1866
1867         // Will contain the label prefix.
1868         docstring name;
1869
1870         // For section, subsection, etc...
1871         if (layout->latextype == LATEX_PARAGRAPH && pit != 0) {
1872                 Layout const * layout2 = &(pars_[pit - 1].layout());
1873                 if (layout2->latextype != LATEX_PARAGRAPH) {
1874                         --pit;
1875                         layout = layout2;
1876                 }
1877         }
1878         if (layout->latextype != LATEX_PARAGRAPH)
1879                 name = layout->refprefix;
1880
1881         // For captions, we just take the caption type
1882         Inset * caption_inset = cur.innerInsetOfType(CAPTION_CODE);
1883         if (caption_inset) {
1884                 string const & ftype = static_cast<InsetCaption *>(caption_inset)->type();
1885                 FloatList const & fl = cur.buffer()->params().documentClass().floats();
1886                 if (fl.typeExist(ftype)) {
1887                         Floating const & flt = fl.getType(ftype);
1888                         name = from_utf8(flt.refPrefix());
1889                 }
1890                 if (name.empty())
1891                         name = from_utf8(ftype.substr(0,3));
1892         }
1893
1894         // If none of the above worked, see if the inset knows.
1895         if (name.empty()) {
1896                 InsetLayout const & il = cur.inset().getLayout();
1897                 name = il.refprefix();
1898         }
1899
1900         if (!name.empty())
1901                 // FIXME refstyle
1902                 // We should allow customization of the separator or else change it
1903                 text = name + ':' + text;
1904
1905         return text;
1906 }
1907
1908
1909 docstring Text::asString(int options) const
1910 {
1911         return asString(0, pars_.size(), options);
1912 }
1913
1914
1915 docstring Text::asString(pit_type beg, pit_type end, int options) const
1916 {
1917         size_t i = size_t(beg);
1918         docstring str = pars_[i].asString(options);
1919         for (++i; i != size_t(end); ++i) {
1920                 str += '\n';
1921                 str += pars_[i].asString(options);
1922         }
1923         return str;
1924 }
1925
1926
1927
1928 void Text::charsTranspose(Cursor & cur)
1929 {
1930         LASSERT(this == cur.text(), /**/);
1931
1932         pos_type pos = cur.pos();
1933
1934         // If cursor is at beginning or end of paragraph, do nothing.
1935         if (pos == cur.lastpos() || pos == 0)
1936                 return;
1937
1938         Paragraph & par = cur.paragraph();
1939
1940         // Get the positions of the characters to be transposed.
1941         pos_type pos1 = pos - 1;
1942         pos_type pos2 = pos;
1943
1944         // In change tracking mode, ignore deleted characters.
1945         while (pos2 < cur.lastpos() && par.isDeleted(pos2))
1946                 ++pos2;
1947         if (pos2 == cur.lastpos())
1948                 return;
1949
1950         while (pos1 >= 0 && par.isDeleted(pos1))
1951                 --pos1;
1952         if (pos1 < 0)
1953                 return;
1954
1955         // Don't do anything if one of the "characters" is not regular text.
1956         if (par.isInset(pos1) || par.isInset(pos2))
1957                 return;
1958
1959         // Store the characters to be transposed (including font information).
1960         char_type const char1 = par.getChar(pos1);
1961         Font const font1 =
1962                 par.getFontSettings(cur.buffer()->params(), pos1);
1963
1964         char_type const char2 = par.getChar(pos2);
1965         Font const font2 =
1966                 par.getFontSettings(cur.buffer()->params(), pos2);
1967
1968         // And finally, we are ready to perform the transposition.
1969         // Track the changes if Change Tracking is enabled.
1970         bool const trackChanges = cur.buffer()->params().trackChanges;
1971
1972         cur.recordUndo();
1973
1974         par.eraseChar(pos2, trackChanges);
1975         par.eraseChar(pos1, trackChanges);
1976         par.insertChar(pos1, char2, font2, trackChanges);
1977         par.insertChar(pos2, char1, font1, trackChanges);
1978
1979         cur.checkBufferStructure();
1980
1981         // After the transposition, move cursor to after the transposition.
1982         setCursor(cur, cur.pit(), pos2);
1983         cur.forwardPos();
1984 }
1985
1986
1987 DocIterator Text::macrocontextPosition() const
1988 {
1989         return macrocontext_position_;
1990 }
1991
1992
1993 void Text::setMacrocontextPosition(DocIterator const & pos)
1994 {
1995         macrocontext_position_ = pos;
1996 }
1997
1998
1999 docstring Text::previousWord(CursorSlice const & sl) const
2000 {
2001         CursorSlice from = sl;
2002         CursorSlice to = sl;
2003         getWord(from, to, PREVIOUS_WORD);
2004         if (sl == from || to == from)
2005                 return docstring();
2006         
2007         Paragraph const & par = sl.paragraph();
2008         return par.asString(from.pos(), to.pos());
2009 }
2010
2011
2012 bool Text::completionSupported(Cursor const & cur) const
2013 {
2014         Paragraph const & par = cur.paragraph();
2015         return cur.pos() > 0
2016                 && (cur.pos() >= par.size() || par.isWordSeparator(cur.pos()))
2017                 && !par.isWordSeparator(cur.pos() - 1);
2018 }
2019
2020
2021 CompletionList const * Text::createCompletionList(Cursor const & cur) const
2022 {
2023         WordList const * list = theWordList(*cur.getFont().language());
2024         return new TextCompletionList(cur, list);
2025 }
2026
2027
2028 bool Text::insertCompletion(Cursor & cur, docstring const & s, bool /*finished*/)
2029 {       
2030         LASSERT(cur.bv().cursor() == cur, /**/);
2031         cur.insert(s);
2032         cur.bv().cursor() = cur;
2033         if (!(cur.result().screenUpdate() & Update::Force))
2034                 cur.screenUpdateFlags(cur.result().screenUpdate() | Update::SinglePar);
2035         return true;
2036 }
2037         
2038         
2039 docstring Text::completionPrefix(Cursor const & cur) const
2040 {
2041         return previousWord(cur.top());
2042 }
2043
2044 } // namespace lyx