]> git.lyx.org Git - lyx.git/blob - src/Text.cpp
This is the first of a series of commits that will make InsetLayout a real class.
[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 "Cursor.h"
30 #include "ParIterator.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 "FontIterator.h"
38 #include "Language.h"
39 #include "Length.h"
40 #include "Lexer.h"
41 #include "LyXRC.h"
42 #include "Paragraph.h"
43 #include "paragraph_funcs.h"
44 #include "ParagraphParameters.h"
45 #include "TextClass.h"
46 #include "TextMetrics.h"
47 #include "VSpace.h"
48 #include "WordLangTuple.h"
49
50 #include "insets/InsetText.h"
51 #include "insets/InsetBibitem.h"
52 #include "insets/InsetCaption.h"
53 #include "insets/InsetHFill.h"
54 #include "insets/InsetLine.h"
55 #include "insets/InsetNewline.h"
56 #include "insets/InsetNewpage.h"
57 #include "insets/InsetOptArg.h"
58 #include "insets/InsetSpace.h"
59 #include "insets/InsetSpecialChar.h"
60 #include "insets/InsetTabular.h"
61
62 #include "support/convert.h"
63 #include "support/debug.h"
64 #include "support/docstream.h"
65 #include "support/gettext.h"
66 #include "support/lstrings.h"
67 #include "support/textutils.h"
68
69 #include <boost/next_prior.hpp>
70
71 #include <sstream>
72
73 using namespace std;
74 using namespace lyx::support;
75
76 namespace lyx {
77
78 using cap::cutSelection;
79 using cap::pasteParagraphList;
80
81 namespace {
82
83 void readParToken(Buffer const & buf, Paragraph & par, Lexer & lex,
84         string const & token, Font & font, Change & change, ErrorList & errorList)
85 {
86         BufferParams const & bp = buf.params();
87
88         if (token[0] != '\\') {
89                 docstring dstr = lex.getDocString();
90                 par.appendString(dstr, font, change);
91
92         } else if (token == "\\begin_layout") {
93                 lex.eatLine();
94                 docstring layoutname = lex.getDocString();
95
96                 font = Font(inherit_font, bp.language);
97                 change = Change(Change::UNCHANGED);
98
99                 TextClass const & tclass = bp.getTextClass();
100
101                 if (layoutname.empty())
102                         layoutname = tclass.defaultLayoutName();
103
104                 if (par.forceEmptyLayout()) {
105                         // in this case only the empty layout is allowed
106                         layoutname = tclass.emptyLayoutName();
107                 } else if (par.useEmptyLayout()) {
108                         // in this case, default layout maps to empty layout 
109                         if (layoutname == tclass.defaultLayoutName())
110                                 layoutname = tclass.emptyLayoutName();
111                 } else { 
112                         // otherwise, the empty layout maps to the default
113                         if (layoutname == tclass.emptyLayoutName())
114                                 layoutname = tclass.defaultLayoutName();
115                 }
116
117                 bool hasLayout = tclass.hasLayout(layoutname);
118
119                 if (!hasLayout) {
120                         errorList.push_back(ErrorItem(_("Unknown layout"),
121                         bformat(_("Layout '%1$s' does not exist in textclass '%2$s'\nTrying to use the default instead.\n"),
122                         layoutname, from_utf8(tclass.name())), par.id(), 0, par.size()));
123                         layoutname = par.useEmptyLayout() ? 
124                                         tclass.emptyLayoutName() :
125                                         tclass.defaultLayoutName();
126                 }
127
128                 par.layout(bp.getTextClass()[layoutname]);
129
130                 // Test whether the layout is obsolete.
131                 LayoutPtr const & layout = par.layout();
132                 if (!layout->obsoleted_by().empty())
133                         par.layout(bp.getTextClass()[layout->obsoleted_by()]);
134
135                 par.params().read(lex);
136
137         } else if (token == "\\end_layout") {
138                 LYXERR0("Solitary \\end_layout in line " << lex.getLineNo() << "\n"
139                        << "Missing \\begin_layout ?");
140         } else if (token == "\\end_inset") {
141                 LYXERR0("Solitary \\end_inset in line " << lex.getLineNo() << "\n"
142                        << "Missing \\begin_inset ?");
143         } else if (token == "\\begin_inset") {
144                 Inset * inset = readInset(lex, buf);
145                 if (inset)
146                         par.insertInset(par.size(), inset, font, change);
147                 else {
148                         lex.eatLine();
149                         docstring line = lex.getDocString();
150                         errorList.push_back(ErrorItem(_("Unknown Inset"), line,
151                                             par.id(), 0, par.size()));
152                 }
153         } else if (token == "\\family") {
154                 lex.next();
155                 setLyXFamily(lex.getString(), font.fontInfo());
156         } else if (token == "\\series") {
157                 lex.next();
158                 setLyXSeries(lex.getString(), font.fontInfo());
159         } else if (token == "\\shape") {
160                 lex.next();
161                 setLyXShape(lex.getString(), font.fontInfo());
162         } else if (token == "\\size") {
163                 lex.next();
164                 setLyXSize(lex.getString(), font.fontInfo());
165         } else if (token == "\\lang") {
166                 lex.next();
167                 string const tok = lex.getString();
168                 Language const * lang = languages.getLanguage(tok);
169                 if (lang) {
170                         font.setLanguage(lang);
171                 } else {
172                         font.setLanguage(bp.language);
173                         lex.printError("Unknown language `$$Token'");
174                 }
175         } else if (token == "\\numeric") {
176                 lex.next();
177                 font.fontInfo().setNumber(font.setLyXMisc(lex.getString()));
178         } else if (token == "\\emph") {
179                 lex.next();
180                 font.fontInfo().setEmph(font.setLyXMisc(lex.getString()));
181         } else if (token == "\\bar") {
182                 lex.next();
183                 string const tok = lex.getString();
184
185                 if (tok == "under")
186                         font.fontInfo().setUnderbar(FONT_ON);
187                 else if (tok == "no")
188                         font.fontInfo().setUnderbar(FONT_OFF);
189                 else if (tok == "default")
190                         font.fontInfo().setUnderbar(FONT_INHERIT);
191                 else
192                         lex.printError("Unknown bar font flag "
193                                        "`$$Token'");
194         } else if (token == "\\noun") {
195                 lex.next();
196                 font.fontInfo().setNoun(font.setLyXMisc(lex.getString()));
197         } else if (token == "\\color") {
198                 lex.next();
199                 setLyXColor(lex.getString(), font.fontInfo());
200         } else if (token == "\\InsetSpace" || token == "\\SpecialChar") {
201
202                 // Insets don't make sense in a free-spacing context! ---Kayvan
203                 if (par.isFreeSpacing()) {
204                         if (token == "\\InsetSpace")
205                                 par.appendChar(' ', font, change);
206                         else if (lex.isOK()) {
207                                 lex.next();
208                                 string const next_token = lex.getString();
209                                 if (next_token == "\\-")
210                                         par.appendChar('-', font, change);
211                                 else {
212                                         lex.printError("Token `$$Token' "
213                                                        "is in free space "
214                                                        "paragraph layout!");
215                                 }
216                         }
217                 } else {
218                         auto_ptr<Inset> inset;
219                         if (token == "\\SpecialChar" )
220                                 inset.reset(new InsetSpecialChar);
221                         else
222                                 inset.reset(new InsetSpace);
223                         inset->read(buf, lex);
224                         par.insertInset(par.size(), inset.release(),
225                                         font, change);
226                 }
227         } else if (token == "\\backslash") {
228                 par.appendChar('\\', font, change);
229         } else if (token == "\\linebreak") {
230                 auto_ptr<Inset> inset(new InsetLinebreak);
231                 inset->read(buf, lex);
232                 par.insertInset(par.size(), inset.release(), font, change);
233         } else if (token == "\\newline") {
234                 auto_ptr<Inset> inset(new InsetNewline);
235                 inset->read(buf, lex);
236                 par.insertInset(par.size(), inset.release(), font, change);
237         } else if (token == "\\LyXTable") {
238                 auto_ptr<Inset> inset(new InsetTabular(buf));
239                 inset->read(buf, lex);
240                 par.insertInset(par.size(), inset.release(), font, change);
241         } else if (token == "\\hfill") {
242                 par.insertInset(par.size(), new InsetHFill, font, change);
243         } else if (token == "\\lyxline") {
244                 par.insertInset(par.size(), new InsetLine, font, change);
245         } else if (token == "\\newpage") {
246                 par.insertInset(par.size(), new InsetNewpage, font, change);
247         } else if (token == "\\pagebreak") {
248                 par.insertInset(par.size(), new InsetPagebreak, font, change);
249         } else if (token == "\\clearpage") {
250                 par.insertInset(par.size(), new InsetClearPage, font, change);
251         } else if (token == "\\cleardoublepage") {
252                 par.insertInset(par.size(), new InsetClearDoublePage, font, change);
253         } else if (token == "\\change_unchanged") {
254                 change = Change(Change::UNCHANGED);
255         } else if (token == "\\change_inserted") {
256                 lex.eatLine();
257                 istringstream is(lex.getString());
258                 unsigned int aid;
259                 time_t ct;
260                 is >> aid >> ct;
261                 if (aid >= bp.author_map.size()) {
262                         errorList.push_back(ErrorItem(_("Change tracking error"),
263                                             bformat(_("Unknown author index for insertion: %1$d\n"), aid),
264                                             par.id(), 0, par.size()));
265                         change = Change(Change::UNCHANGED);
266                 } else
267                         change = Change(Change::INSERTED, bp.author_map[aid], ct);
268         } else if (token == "\\change_deleted") {
269                 lex.eatLine();
270                 istringstream is(lex.getString());
271                 unsigned int aid;
272                 time_t ct;
273                 is >> aid >> ct;
274                 if (aid >= bp.author_map.size()) {
275                         errorList.push_back(ErrorItem(_("Change tracking error"),
276                                             bformat(_("Unknown author index for deletion: %1$d\n"), aid),
277                                             par.id(), 0, par.size()));
278                         change = Change(Change::UNCHANGED);
279                 } else
280                         change = Change(Change::DELETED, bp.author_map[aid], ct);
281         } else {
282                 lex.eatLine();
283                 errorList.push_back(ErrorItem(_("Unknown token"),
284                         bformat(_("Unknown token: %1$s %2$s\n"), from_utf8(token),
285                         lex.getDocString()),
286                         par.id(), 0, par.size()));
287         }
288 }
289
290
291 void readParagraph(Buffer const & buf, Paragraph & par, Lexer & lex,
292         ErrorList & errorList)
293 {
294         lex.nextToken();
295         string token = lex.getString();
296         Font font;
297         Change change(Change::UNCHANGED);
298
299         while (lex.isOK()) {
300                 readParToken(buf, par, lex, token, font, change, errorList);
301
302                 lex.nextToken();
303                 token = lex.getString();
304
305                 if (token.empty())
306                         continue;
307
308                 if (token == "\\end_layout") {
309                         //Ok, paragraph finished
310                         break;
311                 }
312
313                 LYXERR(Debug::PARSER, "Handling paragraph token: `" << token << '\'');
314                 if (token == "\\begin_layout" || token == "\\end_document"
315                     || token == "\\end_inset" || token == "\\begin_deeper"
316                     || token == "\\end_deeper") {
317                         lex.pushToken(token);
318                         lyxerr << "Paragraph ended in line "
319                                << lex.getLineNo() << "\n"
320                                << "Missing \\end_layout.\n";
321                         break;
322                 }
323         }
324         // Final change goes to paragraph break:
325         par.setChange(par.size(), change);
326
327         // Initialize begin_of_body_ on load; redoParagraph maintains
328         par.setBeginOfBody();
329 }
330
331
332 } // namespace anon
333
334
335 bool Text::empty() const
336 {
337         return pars_.empty() || (pars_.size() == 1 && pars_[0].empty()
338                 // FIXME: Should we consider the labeled type as empty too? 
339                 && pars_[0].layout()->labeltype == LABEL_NO_LABEL);
340 }
341
342
343 double Text::spacing(Buffer const & buffer,
344                 Paragraph const & par) const
345 {
346         if (par.params().spacing().isDefault())
347                 return buffer.params().spacing().getValue();
348         return par.params().spacing().getValue();
349 }
350
351
352 void Text::breakParagraph(Cursor & cur, bool inverse_logic)
353 {
354         BOOST_ASSERT(this == cur.text());
355
356         Paragraph & cpar = cur.paragraph();
357         pit_type cpit = cur.pit();
358
359         TextClass const & tclass = cur.buffer().params().getTextClass();
360         LayoutPtr const & layout = cpar.layout();
361
362         // this is only allowed, if the current paragraph is not empty
363         // or caption and if it has not the keepempty flag active
364         if (cur.lastpos() == 0 && !cpar.allowEmpty() &&
365             layout->labeltype != LABEL_SENSITIVE)
366                 return;
367
368         // a layout change may affect also the following paragraph
369         recUndo(cur, cur.pit(), undoSpan(cur.pit()) - 1);
370
371         // Always break behind a space
372         // It is better to erase the space (Dekel)
373         if (cur.pos() != cur.lastpos() && cpar.isLineSeparator(cur.pos()))
374                 cpar.eraseChar(cur.pos(), cur.buffer().params().trackChanges);
375
376         // What should the layout for the new paragraph be?
377         bool keep_layout = inverse_logic ? 
378                 !layout->isEnvironment() 
379                 : layout->isEnvironment();
380
381         // We need to remember this before we break the paragraph, because
382         // that invalidates the layout variable
383         bool sensitive = layout->labeltype == LABEL_SENSITIVE;
384
385         // we need to set this before we insert the paragraph.
386         bool const isempty = cpar.allowEmpty() && cpar.empty();
387
388         lyx::breakParagraph(cur.buffer().params(), paragraphs(), cpit,
389                          cur.pos(), keep_layout);
390
391         // After this, neither paragraph contains any rows!
392
393         cpit = cur.pit();
394         pit_type next_par = cpit + 1;
395
396         // well this is the caption hack since one caption is really enough
397         if (sensitive) {
398                 if (cur.pos() == 0)
399                         // set to standard-layout
400                 //FIXME Check if this should be emptyLayout() in some cases
401                         pars_[cpit].applyLayout(tclass.defaultLayout());
402                 else
403                         // set to standard-layout
404                         //FIXME Check if this should be emptyLayout() in some cases
405                         pars_[next_par].applyLayout(tclass.defaultLayout());
406         }
407
408         while (!pars_[next_par].empty() && pars_[next_par].isNewline(0)) {
409                 if (!pars_[next_par].eraseChar(0, cur.buffer().params().trackChanges))
410                         break; // the character couldn't be deleted physically due to change tracking
411         }
412
413         updateLabels(cur.buffer());
414
415         // A singlePar update is not enough in this case.
416         cur.updateFlags(Update::Force);
417
418         // This check is necessary. Otherwise the new empty paragraph will
419         // be deleted automatically. And it is more friendly for the user!
420         if (cur.pos() != 0 || isempty)
421                 setCursor(cur, cur.pit() + 1, 0);
422         else
423                 setCursor(cur, cur.pit(), 0);
424 }
425
426
427 // insert a character, moves all the following breaks in the
428 // same Paragraph one to the right and make a rebreak
429 void Text::insertChar(Cursor & cur, char_type c)
430 {
431         BOOST_ASSERT(this == cur.text());
432
433         cur.recordUndo(INSERT_UNDO);
434
435         TextMetrics const & tm = cur.bv().textMetrics(this);
436         Buffer const & buffer = cur.buffer();
437         Paragraph & par = cur.paragraph();
438         // try to remove this
439         pit_type const pit = cur.pit();
440
441         bool const freeSpacing = par.layout()->free_spacing ||
442                 par.isFreeSpacing();
443
444         if (lyxrc.auto_number) {
445                 static docstring const number_operators = from_ascii("+-/*");
446                 static docstring const number_unary_operators = from_ascii("+-");
447                 static docstring const number_seperators = from_ascii(".,:");
448
449                 if (cur.current_font.fontInfo().number() == FONT_ON) {
450                         if (!isDigit(c) && !contains(number_operators, c) &&
451                             !(contains(number_seperators, c) &&
452                               cur.pos() != 0 &&
453                               cur.pos() != cur.lastpos() &&
454                               tm.getDisplayFont(pit, cur.pos()).fontInfo().number() == FONT_ON &&
455                               tm.getDisplayFont(pit, cur.pos() - 1).fontInfo().number() == FONT_ON)
456                            )
457                                 number(cur); // Set current_font.number to OFF
458                 } else if (isDigit(c) &&
459                            cur.real_current_font.isVisibleRightToLeft()) {
460                         number(cur); // Set current_font.number to ON
461
462                         if (cur.pos() != 0) {
463                                 char_type const c = par.getChar(cur.pos() - 1);
464                                 if (contains(number_unary_operators, c) &&
465                                     (cur.pos() == 1
466                                      || par.isSeparator(cur.pos() - 2)
467                                      || par.isNewline(cur.pos() - 2))
468                                   ) {
469                                         setCharFont(buffer, pit, cur.pos() - 1, cur.current_font,
470                                                 tm.font_);
471                                 } else if (contains(number_seperators, c)
472                                      && cur.pos() >= 2
473                                      && tm.getDisplayFont(pit, cur.pos() - 2).fontInfo().number() == FONT_ON) {
474                                         setCharFont(buffer, pit, cur.pos() - 1, cur.current_font,
475                                                 tm.font_);
476                                 }
477                         }
478                 }
479         }
480
481         // In Bidi text, we want spaces to be treated in a special way: spaces
482         // which are between words in different languages should get the 
483         // paragraph's language; otherwise, spaces should keep the language 
484         // they were originally typed in. This is only in effect while typing;
485         // after the text is already typed in, the user can always go back and
486         // explicitly set the language of a space as desired. But 99.9% of the
487         // time, what we're doing here is what the user actually meant.
488         // 
489         // The following cases are the ones in which the language of the space
490         // should be changed to match that of the containing paragraph. In the
491         // depictions, lowercase is LTR, uppercase is RTL, underscore (_) 
492         // represents a space, pipe (|) represents the cursor position (so the
493         // character before it is the one just typed in). The different cases
494         // are depicted logically (not visually), from left to right:
495         // 
496         // 1. A_a|
497         // 2. a_A|
498         //
499         // Theoretically, there are other situations that we should, perhaps, deal
500         // with (e.g.: a|_A, A|_a). In practice, though, there really isn't any 
501         // point (to understand why, just try to create this situation...).
502
503         if ((cur.pos() >= 2) && (par.isLineSeparator(cur.pos() - 1))) {
504                 // get font in front and behind the space in question. But do NOT 
505                 // use getFont(cur.pos()) because the character c is not inserted yet
506                 Font const pre_space_font  = tm.getDisplayFont(cur.pit(), cur.pos() - 2);
507                 Font const & post_space_font = cur.real_current_font;
508                 bool pre_space_rtl  = pre_space_font.isVisibleRightToLeft();
509                 bool post_space_rtl = post_space_font.isVisibleRightToLeft();
510                 
511                 if (pre_space_rtl != post_space_rtl) {
512                         // Set the space's language to match the language of the 
513                         // adjacent character whose direction is the paragraph's
514                         // direction; don't touch other properties of the font
515                         Language const * lang = 
516                                 (pre_space_rtl == par.isRTL(buffer.params())) ?
517                                 pre_space_font.language() : post_space_font.language();
518
519                         Font space_font = tm.getDisplayFont(cur.pit(), cur.pos() - 1);
520                         space_font.setLanguage(lang);
521                         par.setFont(cur.pos() - 1, space_font);
522                 }
523         }
524         
525         // Next check, if there will be two blanks together or a blank at
526         // the beginning of a paragraph.
527         // I decided to handle blanks like normal characters, the main
528         // difference are the special checks when calculating the row.fill
529         // (blank does not count at the end of a row) and the check here
530
531         // When the free-spacing option is set for the current layout,
532         // disable the double-space checking
533         if (!freeSpacing && isLineSeparatorChar(c)) {
534                 if (cur.pos() == 0) {
535                         static bool sent_space_message = false;
536                         if (!sent_space_message) {
537                                 cur.message(_("You cannot insert a space at the "
538                                                            "beginning of a paragraph. Please read the Tutorial."));
539                                 sent_space_message = true;
540                         }
541                         return;
542                 }
543                 BOOST_ASSERT(cur.pos() > 0);
544                 if ((par.isLineSeparator(cur.pos() - 1) || par.isNewline(cur.pos() - 1))
545                     && !par.isDeleted(cur.pos() - 1)) {
546                         static bool sent_space_message = false;
547                         if (!sent_space_message) {
548                                 cur.message(_("You cannot type two spaces this way. "
549                                                            "Please read the Tutorial."));
550                                 sent_space_message = true;
551                         }
552                         return;
553                 }
554         }
555
556         par.insertChar(cur.pos(), c, cur.current_font, cur.buffer().params().trackChanges);
557         cur.checkBufferStructure();
558
559 //              cur.updateFlags(Update::Force);
560         setCursor(cur.top(), cur.pit(), cur.pos() + 1);
561         charInserted(cur);
562 }
563
564
565 void Text::charInserted(Cursor & cur)
566 {
567         Paragraph & par = cur.paragraph();
568
569         // Here we call finishUndo for every 20 characters inserted.
570         // This is from my experience how emacs does it. (Lgb)
571         static unsigned int counter;
572         if (counter < 20) {
573                 ++counter;
574         } else {
575                 cur.finishUndo();
576                 counter = 0;
577         }
578
579         // register word if a non-letter was entered
580         if (cur.pos() > 1
581             && par.isLetter(cur.pos() - 2)
582             && !par.isLetter(cur.pos() - 1)) {
583                 // get the word in front of cursor
584                 BOOST_ASSERT(this == cur.text());
585                 CursorSlice focus = cur.top();
586                 focus.backwardPos();
587                 CursorSlice from = focus;
588                 CursorSlice to = focus;
589                 getWord(from, to, PREVIOUS_WORD);
590                 if (focus == from || to == from)
591                         return;
592                 docstring word
593                 = par.asString(cur.buffer(), from.pos(), to.pos(), false);
594
595                 // register words longer than 5 characters
596                 if (word.length() > 5)
597                         cur.buffer().registerWord(word);
598         }
599 }
600
601
602 // the cursor set functions have a special mechanism. When they
603 // realize, that you left an empty paragraph, they will delete it.
604
605 bool Text::cursorForwardOneWord(Cursor & cur)
606 {
607         BOOST_ASSERT(this == cur.text());
608
609         Cursor old = cur;
610
611         if (old.pos() == old.lastpos() && old.pit() != old.lastpit()) {
612                 ++old.pit();
613                 old.pos() = 0;
614         } else {
615                 // Advance through word.
616                 while (old.pos() != old.lastpos() && old.paragraph().isLetter(old.pos()))
617                         ++old.pos();
618                 // Skip through trailing nonword stuff.
619                 while (old.pos() != old.lastpos() && !old.paragraph().isLetter(old.pos()))
620                         ++old.pos();
621         }
622         return setCursor(cur, old.pit(), old.pos());
623 }
624
625
626 bool Text::cursorBackwardOneWord(Cursor & cur)
627 {
628         BOOST_ASSERT(this == cur.text());
629
630         Cursor old = cur;
631
632         if (old.pos() == 0 && old.pit() != 0) {
633                 --old.pit();
634                 old.pos() = old.lastpos();
635         } else {
636                 // Skip through initial nonword stuff.
637                 while (old.pos() != 0 && !old.paragraph().isLetter(old.pos() - 1))
638                         --old.pos();
639                 // Advance through word.
640                 while (old.pos() != 0 && old.paragraph().isLetter(old.pos() - 1))
641                         --old.pos();
642         }
643         return setCursor(cur, old.pit(), old.pos());
644 }
645
646
647 void Text::selectWord(Cursor & cur, word_location loc)
648 {
649         BOOST_ASSERT(this == cur.text());
650         CursorSlice from = cur.top();
651         CursorSlice to = cur.top();
652         getWord(from, to, loc);
653         if (cur.top() != from)
654                 setCursor(cur, from.pit(), from.pos());
655         if (to == from)
656                 return;
657         cur.resetAnchor();
658         setCursor(cur, to.pit(), to.pos());
659         cur.setSelection();
660 }
661
662
663 // Select the word currently under the cursor when no
664 // selection is currently set
665 bool Text::selectWordWhenUnderCursor(Cursor & cur, word_location loc)
666 {
667         BOOST_ASSERT(this == cur.text());
668         if (cur.selection())
669                 return false;
670         selectWord(cur, loc);
671         return cur.selection();
672 }
673
674
675 void Text::acceptOrRejectChanges(Cursor & cur, ChangeOp op)
676 {
677         BOOST_ASSERT(this == cur.text());
678
679         if (!cur.selection())
680                 return;
681
682         cur.recordUndoSelection();
683
684         pit_type begPit = cur.selectionBegin().pit();
685         pit_type endPit = cur.selectionEnd().pit();
686
687         pos_type begPos = cur.selectionBegin().pos();
688         pos_type endPos = cur.selectionEnd().pos();
689
690         // keep selection info, because endPos becomes invalid after the first loop
691         bool endsBeforeEndOfPar = (endPos < pars_[endPit].size());
692
693         // first, accept/reject changes within each individual paragraph (do not consider end-of-par)
694
695         for (pit_type pit = begPit; pit <= endPit; ++pit) {
696                 pos_type parSize = pars_[pit].size();
697
698                 // ignore empty paragraphs; otherwise, an assertion will fail for
699                 // acceptChanges(bparams, 0, 0) or rejectChanges(bparams, 0, 0)
700                 if (parSize == 0)
701                         continue;
702
703                 // do not consider first paragraph if the cursor starts at pos size()
704                 if (pit == begPit && begPos == parSize)
705                         continue;
706
707                 // do not consider last paragraph if the cursor ends at pos 0
708                 if (pit == endPit && endPos == 0)
709                         break; // last iteration anyway
710
711                 pos_type left  = (pit == begPit ? begPos : 0);
712                 pos_type right = (pit == endPit ? endPos : parSize);
713
714                 if (op == ACCEPT) {
715                         pars_[pit].acceptChanges(cur.buffer().params(), left, right);
716                 } else {
717                         pars_[pit].rejectChanges(cur.buffer().params(), left, right);
718                 }
719         }
720
721         // next, accept/reject imaginary end-of-par characters
722
723         for (pit_type pit = begPit; pit <= endPit; ++pit) {
724                 pos_type pos = pars_[pit].size();
725
726                 // skip if the selection ends before the end-of-par
727                 if (pit == endPit && endsBeforeEndOfPar)
728                         break; // last iteration anyway
729
730                 // skip if this is not the last paragraph of the document
731                 // note: the user should be able to accept/reject the par break of the last par!
732                 if (pit == endPit && pit + 1 != int(pars_.size()))
733                         break; // last iteration anway
734
735                 if (op == ACCEPT) {
736                         if (pars_[pit].isInserted(pos)) {
737                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
738                         } else if (pars_[pit].isDeleted(pos)) {
739                                 if (pit + 1 == int(pars_.size())) {
740                                         // we cannot remove a par break at the end of the last paragraph;
741                                         // instead, we mark it unchanged
742                                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
743                                 } else {
744                                         mergeParagraph(cur.buffer().params(), pars_, pit);
745                                         --endPit;
746                                         --pit;
747                                 }
748                         }
749                 } else {
750                         if (pars_[pit].isDeleted(pos)) {
751                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
752                         } else if (pars_[pit].isInserted(pos)) {
753                                 if (pit + 1 == int(pars_.size())) {
754                                         // we mark the par break at the end of the last paragraph unchanged
755                                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
756                                 } else {
757                                         mergeParagraph(cur.buffer().params(), pars_, pit);
758                                         --endPit;
759                                         --pit;
760                                 }
761                         }
762                 }
763         }
764
765         // finally, invoke the DEPM
766
767         deleteEmptyParagraphMechanism(begPit, endPit, cur.buffer().params().trackChanges);
768
769         //
770
771         cur.finishUndo();
772         cur.clearSelection();
773         setCursorIntern(cur, begPit, begPos);
774         cur.updateFlags(Update::Force);
775         updateLabels(cur.buffer());
776 }
777
778
779 void Text::acceptChanges(BufferParams const & bparams)
780 {
781         lyx::acceptChanges(pars_, bparams);
782         deleteEmptyParagraphMechanism(0, pars_.size() - 1, bparams.trackChanges);
783 }
784
785
786 void Text::rejectChanges(BufferParams const & bparams)
787 {
788         pit_type pars_size = static_cast<pit_type>(pars_.size());
789
790         // first, reject changes within each individual paragraph
791         // (do not consider end-of-par)
792         for (pit_type pit = 0; pit < pars_size; ++pit) {
793                 if (!pars_[pit].empty())   // prevent assertion failure
794                         pars_[pit].rejectChanges(bparams, 0, pars_[pit].size());
795         }
796
797         // next, reject imaginary end-of-par characters
798         for (pit_type pit = 0; pit < pars_size; ++pit) {
799                 pos_type pos = pars_[pit].size();
800
801                 if (pars_[pit].isDeleted(pos)) {
802                         pars_[pit].setChange(pos, Change(Change::UNCHANGED));
803                 } else if (pars_[pit].isInserted(pos)) {
804                         if (pit == pars_size - 1) {
805                                 // we mark the par break at the end of the last
806                                 // paragraph unchanged
807                                 pars_[pit].setChange(pos, Change(Change::UNCHANGED));
808                         } else {
809                                 mergeParagraph(bparams, pars_, pit);
810                                 --pit;
811                                 --pars_size;
812                         }
813                 }
814         }
815
816         // finally, invoke the DEPM
817         deleteEmptyParagraphMechanism(0, pars_size - 1, bparams.trackChanges);
818 }
819
820
821 void Text::deleteWordForward(Cursor & cur)
822 {
823         BOOST_ASSERT(this == cur.text());
824         if (cur.lastpos() == 0)
825                 cursorForward(cur);
826         else {
827                 cur.resetAnchor();
828                 cur.selection() = true;
829                 cursorForwardOneWord(cur);
830                 cur.setSelection();
831                 cutSelection(cur, true, false);
832                 cur.checkBufferStructure();
833         }
834 }
835
836
837 void Text::deleteWordBackward(Cursor & cur)
838 {
839         BOOST_ASSERT(this == cur.text());
840         if (cur.lastpos() == 0)
841                 cursorBackward(cur);
842         else {
843                 cur.resetAnchor();
844                 cur.selection() = true;
845                 cursorBackwardOneWord(cur);
846                 cur.setSelection();
847                 cutSelection(cur, true, false);
848                 cur.checkBufferStructure();
849         }
850 }
851
852
853 // Kill to end of line.
854 void Text::changeCase(Cursor & cur, TextCase action)
855 {
856         BOOST_ASSERT(this == cur.text());
857         CursorSlice from;
858         CursorSlice to;
859
860         bool gotsel = false;
861         if (cur.selection()) {
862                 from = cur.selBegin();
863                 to = cur.selEnd();
864                 gotsel = true;
865         } else {
866                 from = cur.top();
867                 getWord(from, to, PARTIAL_WORD);
868                 cursorForwardOneWord(cur);
869         }
870
871         cur.recordUndoSelection();
872
873         pit_type begPit = from.pit();
874         pit_type endPit = to.pit();
875
876         pos_type begPos = from.pos();
877         pos_type endPos = to.pos();
878
879         pos_type right = 0; // needed after the for loop
880
881         for (pit_type pit = begPit; pit <= endPit; ++pit) {
882                 Paragraph & par = pars_[pit];
883                 pos_type const pos = (pit == begPit ? begPos : 0);
884                 right = (pit == endPit ? endPos : par.size());
885                 par.changeCase(cur.buffer().params(), pos, right, action);
886         }
887
888         // the selection may have changed due to logically-only deleted chars
889         if (gotsel) {
890                 setCursor(cur, begPit, begPos);
891                 cur.resetAnchor();
892                 setCursor(cur, endPit, right);
893                 cur.setSelection();
894         } else
895                 setCursor(cur, endPit, right);
896
897         cur.checkBufferStructure();
898 }
899
900
901 bool Text::handleBibitems(Cursor & cur)
902 {
903         if (cur.paragraph().layout()->labeltype != LABEL_BIBLIO)
904                 return false;
905
906         if (cur.pos() != 0)
907                 return false;
908
909         BufferParams const & bufparams = cur.buffer().params();
910         Paragraph const & par = cur.paragraph();
911         Cursor prevcur = cur;
912         if (cur.pit() > 0) {
913                 --prevcur.pit();
914                 prevcur.pos() = prevcur.lastpos();
915         }
916         Paragraph const & prevpar = prevcur.paragraph();
917
918         // if a bibitem is deleted, merge with previous paragraph
919         // if this is a bibliography item as well
920         if (cur.pit() > 0 && par.layout() == prevpar.layout()) {
921                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit());
922                 mergeParagraph(bufparams, cur.text()->paragraphs(),
923                                                         prevcur.pit());
924                 updateLabels(cur.buffer());
925                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
926                 cur.updateFlags(Update::Force);
927                 return true;
928         } 
929
930         // otherwise reset to default
931         if (par.useEmptyLayout())
932                 cur.paragraph().layout(bufparams.getTextClass().emptyLayout());
933         else
934                 cur.paragraph().layout(bufparams.getTextClass().defaultLayout());
935         return true;
936 }
937
938
939 bool Text::erase(Cursor & cur)
940 {
941         BOOST_ASSERT(this == cur.text());
942         bool needsUpdate = false;
943         Paragraph & par = cur.paragraph();
944
945         if (cur.pos() != cur.lastpos()) {
946                 // this is the code for a normal delete, not pasting
947                 // any paragraphs
948                 cur.recordUndo(DELETE_UNDO);
949                 bool const was_inset = cur.paragraph().isInset(cur.pos());
950                 if(!par.eraseChar(cur.pos(), cur.buffer().params().trackChanges))
951                         // the character has been logically deleted only => skip it
952                         cur.top().forwardPos();
953
954                 if (was_inset)
955                         updateLabels(cur.buffer());
956                 else
957                         cur.checkBufferStructure();
958                 needsUpdate = true;
959         } else {
960                 if (cur.pit() == cur.lastpit())
961                         return dissolveInset(cur);
962
963                 if (!par.isMergedOnEndOfParDeletion(cur.buffer().params().trackChanges)) {
964                         par.setChange(cur.pos(), Change(Change::DELETED));
965                         cur.forwardPos();
966                         needsUpdate = true;
967                 } else {
968                         setCursorIntern(cur, cur.pit() + 1, 0);
969                         needsUpdate = backspacePos0(cur);
970                 }
971         }
972
973         needsUpdate |= handleBibitems(cur);
974
975         if (needsUpdate) {
976                 // Make sure the cursor is correct. Is this really needed?
977                 // No, not really... at least not here!
978                 cur.text()->setCursor(cur.top(), cur.pit(), cur.pos());
979                 cur.checkBufferStructure();
980         }
981
982         return needsUpdate;
983 }
984
985
986 bool Text::backspacePos0(Cursor & cur)
987 {
988         BOOST_ASSERT(this == cur.text());
989         if (cur.pit() == 0)
990                 return false;
991
992         bool needsUpdate = false;
993
994         BufferParams const & bufparams = cur.buffer().params();
995         TextClass const & tclass = bufparams.getTextClass();
996         ParagraphList & plist = cur.text()->paragraphs();
997         Paragraph const & par = cur.paragraph();
998         Cursor prevcur = cur;
999         --prevcur.pit();
1000         prevcur.pos() = prevcur.lastpos();
1001         Paragraph const & prevpar = prevcur.paragraph();
1002
1003         // is it an empty paragraph?
1004         if (cur.lastpos() == 0
1005             || (cur.lastpos() == 1 && par.isSeparator(0))) {
1006                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit(), cur.pit());
1007                 plist.erase(boost::next(plist.begin(), cur.pit()));
1008                 needsUpdate = true;
1009         }
1010         // is previous par empty?
1011         else if (prevcur.lastpos() == 0
1012                  || (prevcur.lastpos() == 1 && prevpar.isSeparator(0))) {
1013                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit(), cur.pit());
1014                 plist.erase(boost::next(plist.begin(), prevcur.pit()));
1015                 needsUpdate = true;
1016         }
1017         // Pasting is not allowed, if the paragraphs have different
1018         // layouts. I think it is a real bug of all other
1019         // word processors to allow it. It confuses the user.
1020         // Correction: Pasting is always allowed with standard-layout
1021         // or the empty layout.
1022         else if (par.layout() == prevpar.layout()
1023                  || par.layout() == tclass.defaultLayout()
1024                  || par.layout() == tclass.emptyLayout()) {
1025                 cur.recordUndo(ATOMIC_UNDO, prevcur.pit());
1026                 mergeParagraph(bufparams, plist, prevcur.pit());
1027                 needsUpdate = true;
1028         }
1029
1030         if (needsUpdate) {
1031                 updateLabels(cur.buffer());
1032                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
1033         }
1034
1035         return needsUpdate;
1036 }
1037
1038
1039 bool Text::backspace(Cursor & cur)
1040 {
1041         BOOST_ASSERT(this == cur.text());
1042         bool needsUpdate = false;
1043         if (cur.pos() == 0) {
1044                 if (cur.pit() == 0)
1045                         return dissolveInset(cur);
1046
1047                 Paragraph & prev_par = pars_[cur.pit() - 1];
1048
1049                 if (!prev_par.isMergedOnEndOfParDeletion(cur.buffer().params().trackChanges)) {
1050                         prev_par.setChange(prev_par.size(), Change(Change::DELETED));
1051                         setCursorIntern(cur, cur.pit() - 1, prev_par.size());
1052                         return true;
1053                 }
1054                 // The cursor is at the beginning of a paragraph, so
1055                 // the backspace will collapse two paragraphs into one.
1056                 needsUpdate = backspacePos0(cur);
1057
1058         } else {
1059                 // this is the code for a normal backspace, not pasting
1060                 // any paragraphs
1061                 cur.recordUndo(DELETE_UNDO);
1062                 // We used to do cursorBackwardIntern() here, but it is
1063                 // not a good idea since it triggers the auto-delete
1064                 // mechanism. So we do a cursorBackwardIntern()-lite,
1065                 // without the dreaded mechanism. (JMarc)
1066                 setCursorIntern(cur, cur.pit(), cur.pos() - 1,
1067                                 false, cur.boundary());
1068                 bool const was_inset = cur.paragraph().isInset(cur.pos());
1069                 cur.paragraph().eraseChar(cur.pos(), cur.buffer().params().trackChanges);
1070                 if (was_inset)
1071                         updateLabels(cur.buffer());
1072                 else
1073                         cur.checkBufferStructure();
1074         }
1075
1076         if (cur.pos() == cur.lastpos())
1077                 cur.setCurrentFont();
1078
1079         needsUpdate |= handleBibitems(cur);
1080
1081         // A singlePar update is not enough in this case.
1082 //              cur.updateFlags(Update::Force);
1083         setCursor(cur.top(), cur.pit(), cur.pos());
1084
1085         return needsUpdate;
1086 }
1087
1088
1089 bool Text::dissolveInset(Cursor & cur) {
1090         BOOST_ASSERT(this == cur.text());
1091
1092         if (isMainText(cur.bv().buffer()) || cur.inset().nargs() != 1)
1093                 return false;
1094
1095         cur.recordUndoInset();
1096         cur.mark() = false;
1097         cur.selHandle(false);
1098         // save position
1099         pos_type spos = cur.pos();
1100         pit_type spit = cur.pit();
1101         ParagraphList plist;
1102         if (cur.lastpit() != 0 || cur.lastpos() != 0)
1103                 plist = paragraphs();
1104         cur.popBackward();
1105         // store cursor offset
1106         if (spit == 0)
1107                 spos += cur.pos();
1108         spit += cur.pit();
1109         Buffer & b = cur.buffer();
1110         cur.paragraph().eraseChar(cur.pos(), b.params().trackChanges);
1111         if (!plist.empty()) {
1112                 // ERT paragraphs have the Language latex_language.
1113                 // This is invalid outside of ERT, so we need to
1114                 // change it to the buffer language.
1115                 ParagraphList::iterator it = plist.begin();
1116                 ParagraphList::iterator it_end = plist.end();
1117                 for (; it != it_end; it++)
1118                         it->changeLanguage(b.params(), latex_language, b.language());
1119
1120                 pasteParagraphList(cur, plist, b.params().getTextClassPtr(),
1121                                    b.errorList("Paste"));
1122                 // restore position
1123                 cur.pit() = min(cur.lastpit(), spit);
1124                 cur.pos() = min(cur.lastpos(), spos);
1125         }
1126         cur.clearSelection();
1127         cur.resetAnchor();
1128         return true;
1129 }
1130
1131
1132 void Text::getWord(CursorSlice & from, CursorSlice & to,
1133         word_location const loc)
1134 {
1135         Paragraph const & from_par = pars_[from.pit()];
1136         switch (loc) {
1137         case WHOLE_WORD_STRICT:
1138                 if (from.pos() == 0 || from.pos() == from_par.size()
1139                     || !from_par.isLetter(from.pos())
1140                     || !from_par.isLetter(from.pos() - 1)) {
1141                         to = from;
1142                         return;
1143                 }
1144                 // no break here, we go to the next
1145
1146         case WHOLE_WORD:
1147                 // If we are already at the beginning of a word, do nothing
1148                 if (!from.pos() || !from_par.isLetter(from.pos() - 1))
1149                         break;
1150                 // no break here, we go to the next
1151
1152         case PREVIOUS_WORD:
1153                 // always move the cursor to the beginning of previous word
1154                 while (from.pos() && from_par.isLetter(from.pos() - 1))
1155                         --from.pos();
1156                 break;
1157         case NEXT_WORD:
1158                 LYXERR0("Text::getWord: NEXT_WORD not implemented yet");
1159                 break;
1160         case PARTIAL_WORD:
1161                 // no need to move the 'from' cursor
1162                 break;
1163         }
1164         to = from;
1165         Paragraph & to_par = pars_[to.pit()];
1166         while (to.pos() < to_par.size() && to_par.isLetter(to.pos()))
1167                 ++to.pos();
1168 }
1169
1170
1171 void Text::write(Buffer const & buf, ostream & os) const
1172 {
1173         ParagraphList::const_iterator pit = paragraphs().begin();
1174         ParagraphList::const_iterator end = paragraphs().end();
1175         depth_type dth = 0;
1176         for (; pit != end; ++pit)
1177                 pit->write(buf, os, buf.params(), dth);
1178
1179         // Close begin_deeper
1180         for(; dth > 0; --dth)
1181                 os << "\n\\end_deeper";
1182 }
1183
1184
1185 bool Text::read(Buffer const & buf, Lexer & lex, 
1186                 ErrorList & errorList, InsetText * insetPtr)
1187 {
1188         depth_type depth = 0;
1189
1190         while (lex.isOK()) {
1191                 lex.nextToken();
1192                 string const token = lex.getString();
1193
1194                 if (token.empty())
1195                         continue;
1196
1197                 if (token == "\\end_inset")
1198                         break;
1199
1200                 if (token == "\\end_body")
1201                         continue;
1202
1203                 if (token == "\\begin_body")
1204                         continue;
1205
1206                 if (token == "\\end_document")
1207                         return false;
1208
1209                 if (token == "\\begin_layout") {
1210                         lex.pushToken(token);
1211
1212                         Paragraph par;
1213                         par.params().depth(depth);
1214                         par.setFont(0, Font(inherit_font, buf.params().language));
1215                         par.setInsetOwner(insetPtr);
1216                         pars_.push_back(par);
1217
1218                         // FIXME: goddamn InsetTabular makes us pass a Buffer
1219                         // not BufferParams
1220                         lyx::readParagraph(buf, pars_.back(), lex, errorList);
1221
1222                 } else if (token == "\\begin_deeper") {
1223                         ++depth;
1224                 } else if (token == "\\end_deeper") {
1225                         if (!depth)
1226                                 lex.printError("\\end_deeper: " "depth is already null");
1227                         else
1228                                 --depth;
1229                 } else {
1230                         LYXERR0("Handling unknown body token: `" << token << '\'');
1231                 }
1232         }
1233         return true;
1234 }
1235
1236 // Returns the current font and depth as a message.
1237 docstring Text::currentState(Cursor & cur)
1238 {
1239         BOOST_ASSERT(this == cur.text());
1240         Buffer & buf = cur.buffer();
1241         Paragraph const & par = cur.paragraph();
1242         odocstringstream os;
1243
1244         if (buf.params().trackChanges)
1245                 os << _("[Change Tracking] ");
1246
1247         Change change = par.lookupChange(cur.pos());
1248
1249         if (change.type != Change::UNCHANGED) {
1250                 Author const & a = buf.params().authors().get(change.author);
1251                 os << _("Change: ") << a.name();
1252                 if (!a.email().empty())
1253                         os << " (" << a.email() << ")";
1254                 // FIXME ctime is english, we should translate that
1255                 os << _(" at ") << ctime(&change.changetime);
1256                 os << " : ";
1257         }
1258
1259         // I think we should only show changes from the default
1260         // font. (Asger)
1261         // No, from the document font (MV)
1262         Font font = cur.real_current_font;
1263         font.fontInfo().reduce(buf.params().getFont().fontInfo());
1264
1265         os << bformat(_("Font: %1$s"), font.stateText(&buf.params()));
1266
1267         // The paragraph depth
1268         int depth = cur.paragraph().getDepth();
1269         if (depth > 0)
1270                 os << bformat(_(", Depth: %1$d"), depth);
1271
1272         // The paragraph spacing, but only if different from
1273         // buffer spacing.
1274         Spacing const & spacing = par.params().spacing();
1275         if (!spacing.isDefault()) {
1276                 os << _(", Spacing: ");
1277                 switch (spacing.getSpace()) {
1278                 case Spacing::Single:
1279                         os << _("Single");
1280                         break;
1281                 case Spacing::Onehalf:
1282                         os << _("OneHalf");
1283                         break;
1284                 case Spacing::Double:
1285                         os << _("Double");
1286                         break;
1287                 case Spacing::Other:
1288                         os << _("Other (") << from_ascii(spacing.getValueAsString()) << ')';
1289                         break;
1290                 case Spacing::Default:
1291                         // should never happen, do nothing
1292                         break;
1293                 }
1294         }
1295
1296 #ifdef DEVEL_VERSION
1297         os << _(", Inset: ") << &cur.inset();
1298         os << _(", Paragraph: ") << cur.pit();
1299         os << _(", Id: ") << par.id();
1300         os << _(", Position: ") << cur.pos();
1301         // FIXME: Why is the check for par.size() needed?
1302         // We are called with cur.pos() == par.size() quite often.
1303         if (!par.empty() && cur.pos() < par.size()) {
1304                 // Force output of code point, not character
1305                 size_t const c = par.getChar(cur.pos());
1306                 os << _(", Char: 0x") << hex << c;
1307         }
1308         os << _(", Boundary: ") << cur.boundary();
1309 //      Row & row = cur.textRow();
1310 //      os << bformat(_(", Row b:%1$d e:%2$d"), row.pos(), row.endpos());
1311 #endif
1312         return os.str();
1313 }
1314
1315
1316 docstring Text::getPossibleLabel(Cursor & cur) const
1317 {
1318         pit_type pit = cur.pit();
1319
1320         LayoutPtr layout = pars_[pit].layout();
1321
1322         docstring text;
1323         docstring par_text = pars_[pit].asString(cur.buffer(), false);
1324         string piece;
1325         // the return string of math matrices might contain linebreaks
1326         par_text = subst(par_text, '\n', '-');
1327         for (int i = 0; i < lyxrc.label_init_length; ++i) {
1328                 if (par_text.empty())
1329                         break;
1330                 docstring head;
1331                 par_text = split(par_text, head, ' ');
1332                 // Is it legal to use spaces in labels ?
1333                 if (i > 0)
1334                         text += '-';
1335                 text += head;
1336         }
1337
1338         // No need for a prefix if the user said so.
1339         if (lyxrc.label_init_length <= 0)
1340                 return text;
1341
1342         // Will contain the label type.
1343         docstring name;
1344
1345         // For section, subsection, etc...
1346         if (layout->latextype == LATEX_PARAGRAPH && pit != 0) {
1347                 LayoutPtr const & layout2 = pars_[pit - 1].layout();
1348                 if (layout2->latextype != LATEX_PARAGRAPH) {
1349                         --pit;
1350                         layout = layout2;
1351                 }
1352         }
1353         if (layout->latextype != LATEX_PARAGRAPH)
1354                 name = from_ascii(layout->latexname());
1355
1356         // for captions, we just take the caption type
1357         Inset * caption_inset = cur.innerInsetOfType(CAPTION_CODE);
1358         if (caption_inset)
1359                 name = from_ascii(static_cast<InsetCaption *>(caption_inset)->type());
1360
1361         // If none of the above worked, we'll see if we're inside various
1362         // types of insets and take our abbreviation from them.
1363         if (name.empty()) {
1364                 InsetCode const codes[] = {
1365                         FLOAT_CODE,
1366                         WRAP_CODE,
1367                         FOOT_CODE
1368                 };
1369                 for (unsigned int i = 0; i < (sizeof codes / sizeof codes[0]); ++i) {
1370                         Inset * float_inset = cur.innerInsetOfType(codes[i]);
1371                         if (float_inset) {
1372                                 name = float_inset->name();
1373                                 break;
1374                         }
1375                 }
1376         }
1377
1378         // Create a correct prefix for prettyref
1379         if (name == "theorem")
1380                 name = from_ascii("thm");
1381         else if (name == "Foot")
1382                 name = from_ascii("fn");
1383         else if (name == "listing")
1384                 name = from_ascii("lst");
1385
1386         if (!name.empty())
1387                 text = name.substr(0, 3) + ':' + text;
1388
1389         return text;
1390 }
1391
1392
1393 void Text::charsTranspose(Cursor & cur)
1394 {
1395         BOOST_ASSERT(this == cur.text());
1396
1397         pos_type pos = cur.pos();
1398
1399         // If cursor is at beginning or end of paragraph, do nothing.
1400         if (pos == cur.lastpos() || pos == 0)
1401                 return;
1402
1403         Paragraph & par = cur.paragraph();
1404
1405         // Get the positions of the characters to be transposed.
1406         pos_type pos1 = pos - 1;
1407         pos_type pos2 = pos;
1408
1409         // In change tracking mode, ignore deleted characters.
1410         while (pos2 < cur.lastpos() && par.isDeleted(pos2))
1411                 ++pos2;
1412         if (pos2 == cur.lastpos())
1413                 return;
1414
1415         while (pos1 >= 0 && par.isDeleted(pos1))
1416                 --pos1;
1417         if (pos1 < 0)
1418                 return;
1419
1420         // Don't do anything if one of the "characters" is not regular text.
1421         if (par.isInset(pos1) || par.isInset(pos2))
1422                 return;
1423
1424         // Store the characters to be transposed (including font information).
1425         char_type char1 = par.getChar(pos1);
1426         Font const font1 =
1427                 par.getFontSettings(cur.buffer().params(), pos1);
1428
1429         char_type char2 = par.getChar(pos2);
1430         Font const font2 =
1431                 par.getFontSettings(cur.buffer().params(), pos2);
1432
1433         // And finally, we are ready to perform the transposition.
1434         // Track the changes if Change Tracking is enabled.
1435         bool const trackChanges = cur.buffer().params().trackChanges;
1436
1437         cur.recordUndo();
1438
1439         par.eraseChar(pos2, trackChanges);
1440         par.eraseChar(pos1, trackChanges);
1441         par.insertChar(pos1, char2, font2, trackChanges);
1442         par.insertChar(pos2, char1, font1, trackChanges);
1443
1444         cur.checkBufferStructure();
1445
1446         // After the transposition, move cursor to after the transposition.
1447         setCursor(cur, cur.pit(), pos2);
1448         cur.forwardPos();
1449 }
1450
1451
1452 DocIterator Text::macrocontextPosition() const
1453 {
1454         return macrocontext_position_;
1455 }
1456
1457
1458 void Text::setMacrocontextPosition(DocIterator const & pos)
1459 {
1460         macrocontext_position_ = pos;
1461 }
1462
1463
1464 } // namespace lyx