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