]> git.lyx.org Git - lyx.git/blob - src/text.C
* src/text.C: first step to sanitize accept/rejectChange
[lyx.git] / src / text.C
1 /**
2  * \file src/text.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author André Pönitz
11  * \author Dekel Tsur
12  * \author Jürgen Vigna
13  *
14  * Full author contact details are available in file CREDITS.
15  */
16
17 #include <config.h>
18
19 #include "lyxtext.h"
20
21 #include "author.h"
22 #include "buffer.h"
23 #include "buffer_funcs.h"
24 #include "bufferparams.h"
25 #include "BufferView.h"
26 #include "bufferview_funcs.h"
27 #include "cursor.h"
28 #include "pariterator.h"
29 #include "coordcache.h"
30 #include "CutAndPaste.h"
31 #include "debug.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 "gettext.h"
39 #include "language.h"
40 #include "LColor.h"
41 #include "lyxlength.h"
42 #include "lyxlex.h"
43 #include "lyxrc.h"
44 #include "lyxrow.h"
45 #include "metricsinfo.h"
46 #include "paragraph.h"
47 #include "paragraph_funcs.h"
48 #include "ParagraphParameters.h"
49 #include "rowpainter.h"
50 #include "undo.h"
51 #include "vspace.h"
52 #include "WordLangTuple.h"
53
54 #include "frontends/FontMetrics.h"
55 #include "frontends/Painter.h"
56
57 #include "insets/insettext.h"
58 #include "insets/insetbibitem.h"
59 #include "insets/insethfill.h"
60 #include "insets/insetlatexaccent.h"
61 #include "insets/insetline.h"
62 #include "insets/insetnewline.h"
63 #include "insets/insetpagebreak.h"
64 #include "insets/insetoptarg.h"
65 #include "insets/insetspace.h"
66 #include "insets/insetspecialchar.h"
67 #include "insets/insettabular.h"
68
69 #include "support/lstrings.h"
70 #include "support/textutils.h"
71 #include "support/convert.h"
72
73 #include <boost/current_function.hpp>
74
75 #include <sstream>
76
77 using std::auto_ptr;
78 using std::advance;
79 using std::distance;
80 using std::max;
81 using std::min;
82 using std::endl;
83 using std::string;
84
85 namespace lyx {
86
87 using support::bformat;
88 using support::contains;
89 using support::lowercase;
90 using support::split;
91 using support::uppercase;
92
93 using cap::cutSelection;
94 using cap::pasteParagraphList;
95
96 using frontend::FontMetrics;
97
98 namespace {
99
100 void readParToken(Buffer const & buf, Paragraph & par, LyXLex & lex,
101         string const & token, LyXFont & font, Change & change, ErrorList & errorList)
102 {
103         BufferParams const & bp = buf.params();
104
105         if (token[0] != '\\') {
106 #if 0
107                 string::const_iterator cit = token.begin();
108                 for (; cit != token.end(); ++cit)
109                         par.insertChar(par.size(), (*cit), font, change);
110 #else
111                 docstring dstr = lex.getDocString();
112                 docstring::const_iterator cit = dstr.begin();
113                 docstring::const_iterator cend = dstr.end();
114                 for (; cit != cend; ++cit)
115                         par.insertChar(par.size(), *cit, font, change);
116 #endif
117         } else if (token == "\\begin_layout") {
118                 lex.eatLine();
119                 string layoutname = lex.getString();
120
121                 font = LyXFont(LyXFont::ALL_INHERIT, bp.language);
122                 change = Change(Change::UNCHANGED);
123
124                 LyXTextClass const & tclass = bp.getLyXTextClass();
125
126                 if (layoutname.empty()) {
127                         layoutname = tclass.defaultLayoutName();
128                 }
129
130                 bool hasLayout = tclass.hasLayout(layoutname);
131
132                 if (!hasLayout) {
133                         errorList.push_back(ErrorItem(_("Unknown layout"),
134                         bformat(_("Layout '%1$s' does not exist in textclass '%2$s'\nTrying to use the default instead.\n"),
135                         from_utf8(layoutname), from_utf8(tclass.name())), par.id(), 0, par.size()));
136                         layoutname = tclass.defaultLayoutName();
137                 }
138
139                 par.layout(bp.getLyXTextClass()[layoutname]);
140
141                 // Test whether the layout is obsolete.
142                 LyXLayout_ptr const & layout = par.layout();
143                 if (!layout->obsoleted_by().empty())
144                         par.layout(bp.getLyXTextClass()[layout->obsoleted_by()]);
145
146                 par.params().read(lex);
147
148         } else if (token == "\\end_layout") {
149                 lyxerr << BOOST_CURRENT_FUNCTION
150                        << ": Solitary \\end_layout in line "
151                        << lex.getLineNo() << "\n"
152                        << "Missing \\begin_layout?.\n";
153         } else if (token == "\\end_inset") {
154                 lyxerr << BOOST_CURRENT_FUNCTION
155                        << ": Solitary \\end_inset in line "
156                        << lex.getLineNo() << "\n"
157                        << "Missing \\begin_inset?.\n";
158         } else if (token == "\\begin_inset") {
159                 InsetBase * inset = readInset(lex, buf);
160                 if (inset)
161                         par.insertInset(par.size(), inset, font, change);
162                 else {
163                         lex.eatLine();
164                         docstring line = lex.getDocString();
165                         errorList.push_back(ErrorItem(_("Unknown Inset"), line,
166                                             par.id(), 0, par.size()));
167                 }
168         } else if (token == "\\family") {
169                 lex.next();
170                 font.setLyXFamily(lex.getString());
171         } else if (token == "\\series") {
172                 lex.next();
173                 font.setLyXSeries(lex.getString());
174         } else if (token == "\\shape") {
175                 lex.next();
176                 font.setLyXShape(lex.getString());
177         } else if (token == "\\size") {
178                 lex.next();
179                 font.setLyXSize(lex.getString());
180         } else if (token == "\\lang") {
181                 lex.next();
182                 string const tok = lex.getString();
183                 Language const * lang = languages.getLanguage(tok);
184                 if (lang) {
185                         font.setLanguage(lang);
186                 } else {
187                         font.setLanguage(bp.language);
188                         lex.printError("Unknown language `$$Token'");
189                 }
190         } else if (token == "\\numeric") {
191                 lex.next();
192                 font.setNumber(font.setLyXMisc(lex.getString()));
193         } else if (token == "\\emph") {
194                 lex.next();
195                 font.setEmph(font.setLyXMisc(lex.getString()));
196         } else if (token == "\\bar") {
197                 lex.next();
198                 string const tok = lex.getString();
199
200                 if (tok == "under")
201                         font.setUnderbar(LyXFont::ON);
202                 else if (tok == "no")
203                         font.setUnderbar(LyXFont::OFF);
204                 else if (tok == "default")
205                         font.setUnderbar(LyXFont::INHERIT);
206                 else
207                         lex.printError("Unknown bar font flag "
208                                        "`$$Token'");
209         } else if (token == "\\noun") {
210                 lex.next();
211                 font.setNoun(font.setLyXMisc(lex.getString()));
212         } else if (token == "\\color") {
213                 lex.next();
214                 font.setLyXColor(lex.getString());
215         } else if (token == "\\InsetSpace" || token == "\\SpecialChar") {
216
217                 // Insets don't make sense in a free-spacing context! ---Kayvan
218                 if (par.isFreeSpacing()) {
219                         if (token == "\\InsetSpace")
220                                 par.insertChar(par.size(), ' ', font, change);
221                         else if (lex.isOK()) {
222                                 lex.next();
223                                 string const next_token = lex.getString();
224                                 if (next_token == "\\-")
225                                         par.insertChar(par.size(), '-', font, change);
226                                 else {
227                                         lex.printError("Token `$$Token' "
228                                                        "is in free space "
229                                                        "paragraph layout!");
230                                 }
231                         }
232                 } else {
233                         auto_ptr<InsetBase> inset;
234                         if (token == "\\SpecialChar" )
235                                 inset.reset(new InsetSpecialChar);
236                         else
237                                 inset.reset(new InsetSpace);
238                         inset->read(buf, lex);
239                         par.insertInset(par.size(), inset.release(),
240                                         font, change);
241                 }
242         } else if (token == "\\i") {
243                 auto_ptr<InsetBase> inset(new InsetLatexAccent);
244                 inset->read(buf, lex);
245                 par.insertInset(par.size(), inset.release(), font, change);
246         } else if (token == "\\backslash") {
247                 par.insertChar(par.size(), '\\', font, change);
248         } else if (token == "\\newline") {
249                 auto_ptr<InsetBase> inset(new InsetNewline);
250                 inset->read(buf, lex);
251                 par.insertInset(par.size(), inset.release(), font, change);
252         } else if (token == "\\LyXTable") {
253                 auto_ptr<InsetBase> inset(new InsetTabular(buf));
254                 inset->read(buf, lex);
255                 par.insertInset(par.size(), inset.release(), font, change);
256         } else if (token == "\\hfill") {
257                 par.insertInset(par.size(), new InsetHFill, font, change);
258         } else if (token == "\\lyxline") {
259                 par.insertInset(par.size(), new InsetLine, font, change);
260         } else if (token == "\\newpage") {
261                 par.insertInset(par.size(), new InsetPagebreak, font, change);
262         } else if (token == "\\clearpage") {
263                 par.insertInset(par.size(), new InsetClearPage, font, change);
264         } else if (token == "\\cleardoublepage") {
265                 par.insertInset(par.size(), new InsetClearDoublePage, font, change);
266         } else if (token == "\\change_unchanged") {
267                 change = Change(Change::UNCHANGED);
268         } else if (token == "\\change_inserted") {
269                 lex.eatLine();
270                 std::istringstream is(lex.getString());
271                 unsigned int aid;
272                 time_type 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 insertion: %1$d\n"), aid),
277                                             par.id(), 0, par.size()));
278                         change = Change(Change::UNCHANGED);
279                 } else
280                         change = Change(Change::INSERTED, bp.author_map[aid], ct);
281         } else if (token == "\\change_deleted") {
282                 lex.eatLine();
283                 std::istringstream is(lex.getString());
284                 unsigned int aid;
285                 time_type ct;
286                 is >> aid >> ct;
287                 if (aid >= bp.author_map.size()) {
288                         errorList.push_back(ErrorItem(_("Change tracking error"),
289                                             bformat(_("Unknown author index for deletion: %1$d\n"), aid),
290                                             par.id(), 0, par.size()));
291                         change = Change(Change::UNCHANGED);
292                 } else
293                         change = Change(Change::DELETED, bp.author_map[aid], ct);
294         } else {
295                 lex.eatLine();
296                 errorList.push_back(ErrorItem(_("Unknown token"),
297                         bformat(_("Unknown token: %1$s %2$s\n"), from_utf8(token),
298                         lex.getDocString()),
299                         par.id(), 0, par.size()));
300         }
301 }
302
303
304 void readParagraph(Buffer const & buf, Paragraph & par, LyXLex & lex,
305         ErrorList & errorList)
306 {
307         lex.nextToken();
308         string token = lex.getString();
309         LyXFont font;
310         Change change(Change::UNCHANGED);
311
312         while (lex.isOK()) {
313                 readParToken(buf, par, lex, token, font, change, errorList);
314
315                 lex.nextToken();
316                 token = lex.getString();
317
318                 if (token.empty())
319                         continue;
320
321                 if (token == "\\end_layout") {
322                         //Ok, paragraph finished
323                         break;
324                 }
325
326                 lyxerr[Debug::PARSER] << "Handling paragraph token: `"
327                                       << token << '\'' << endl;
328                 if (token == "\\begin_layout" || token == "\\end_document"
329                     || token == "\\end_inset" || token == "\\begin_deeper"
330                     || token == "\\end_deeper") {
331                         lex.pushToken(token);
332                         lyxerr << "Paragraph ended in line "
333                                << lex.getLineNo() << "\n"
334                                << "Missing \\end_layout.\n";
335                         break;
336                 }
337         }
338         // Final change goes to paragraph break:
339         par.setChange(par.size(), change);
340
341         // Initialize begin_of_body_ on load; redoParagraph maintains
342         par.setBeginOfBody();
343 }
344
345
346 } // namespace anon
347
348
349
350 double LyXText::spacing(Buffer const & buffer,
351                 Paragraph const & par) const
352 {
353         if (par.params().spacing().isDefault())
354                 return buffer.params().spacing().getValue();
355         return par.params().spacing().getValue();
356 }
357
358
359 int LyXText::singleWidth(Buffer const & buffer, Paragraph const & par,
360                 pos_type pos) const
361 {
362         return singleWidth(par, pos, par.getChar(pos),
363                 getFont(buffer, par, pos));
364 }
365
366
367 int LyXText::singleWidth(Paragraph const & par,
368                          pos_type pos, char_type c, LyXFont const & font) const
369 {
370         // The most common case is handled first (Asger)
371         if (isPrintable(c)) {
372                 Language const * language = font.language();
373                 if (language->rightToLeft()) {
374                         if ((lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
375                              lyxrc.font_norm_type == LyXRC::ISO_10646_1)
376                             && language->lang() == "arabic") {
377                                 if (Encodings::isComposeChar_arabic(c))
378                                         return 0;
379                                 c = par.transformChar(c, pos);
380                         } else if (language->lang() == "hebrew" &&
381                                    Encodings::isComposeChar_hebrew(c))
382                                 return 0;
383                 }
384                 return theFontMetrics(font).width(c);
385         }
386
387         if (c == Paragraph::META_INSET)
388                 return par.getInset(pos)->width();
389
390         return theFontMetrics(font).width(c);
391 }
392
393
394 int LyXText::leftMargin(Buffer const & buffer, int max_width, pit_type pit) const
395 {
396         BOOST_ASSERT(pit >= 0);
397         BOOST_ASSERT(pit < int(pars_.size()));
398         return leftMargin(buffer, max_width, pit, pars_[pit].size());
399 }
400
401
402 int LyXText::leftMargin(Buffer const & buffer, int max_width,
403                 pit_type const pit, pos_type const pos) const
404 {
405         BOOST_ASSERT(pit >= 0);
406         BOOST_ASSERT(pit < int(pars_.size()));
407         Paragraph const & par = pars_[pit];
408         BOOST_ASSERT(pos >= 0);
409         BOOST_ASSERT(pos <= par.size());
410         //lyxerr << "LyXText::leftMargin: pit: " << pit << " pos: " << pos << endl;
411         LyXTextClass const & tclass = buffer.params().getLyXTextClass();
412         LyXLayout_ptr const & layout = par.layout();
413
414         string parindent = layout->parindent;
415
416         int l_margin = 0;
417
418         if (isMainText(buffer))
419                 l_margin += changebarMargin();
420
421         // FIXME UNICODE
422         docstring leftm = from_utf8(tclass.leftmargin());
423         l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(leftm);
424
425         if (par.getDepth() != 0) {
426                 // find the next level paragraph
427                 pit_type newpar = outerHook(pit, pars_);
428                 if (newpar != pit_type(pars_.size())) {
429                         if (pars_[newpar].layout()->isEnvironment()) {
430                                 l_margin = leftMargin(buffer, max_width, newpar);
431                         }
432                         if (par.layout() == tclass.defaultLayout()) {
433                                 if (pars_[newpar].params().noindent())
434                                         parindent.erase();
435                                 else
436                                         parindent = pars_[newpar].layout()->parindent;
437                         }
438                 }
439         }
440
441         // This happens after sections in standard classes. The 1.3.x
442         // code compared depths too, but it does not seem necessary
443         // (JMarc)
444         if (par.layout() == tclass.defaultLayout()
445             && pit > 0 && pars_[pit - 1].layout()->nextnoindent)
446                 parindent.erase();
447
448         LyXFont const labelfont = getLabelFont(buffer, par);
449         FontMetrics const & labelfont_metrics = theFontMetrics(labelfont);
450
451         switch (layout->margintype) {
452         case MARGIN_DYNAMIC:
453                 if (!layout->leftmargin.empty()) {
454                         // FIXME UNICODE
455                         docstring leftm = from_utf8(layout->leftmargin);
456                         l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(leftm);
457                 }
458                 if (!par.getLabelstring().empty()) {
459                         // FIXME UNICODE
460                         docstring labin = from_utf8(layout->labelindent);
461                         l_margin += labelfont_metrics.signedWidth(labin);
462                         docstring labstr = par.getLabelstring();
463                         l_margin += labelfont_metrics.width(labstr);
464                         docstring labsep = from_utf8(layout->labelsep);
465                         l_margin += labelfont_metrics.width(labsep);
466                 }
467                 break;
468
469         case MARGIN_MANUAL: {
470                 // FIXME UNICODE
471                 docstring labin = from_utf8(layout->labelindent);
472                 l_margin += labelfont_metrics.signedWidth(labin);
473                 // The width of an empty par, even with manual label, should be 0
474                 if (!par.empty() && pos >= par.beginOfBody()) {
475                         if (!par.getLabelWidthString().empty()) {
476                                 docstring labstr = par.getLabelWidthString();
477                                 l_margin += labelfont_metrics.width(labstr);
478                                 docstring labsep = from_utf8(layout->labelsep);
479                                 l_margin += labelfont_metrics.width(labsep);
480                         }
481                 }
482                 break;
483         }
484
485         case MARGIN_STATIC: {
486                 // FIXME UNICODE
487                 docstring leftm = from_utf8(layout->leftmargin);
488                 l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(leftm)
489                         * 4     / (par.getDepth() + 4);
490                 break;
491         }
492
493         case MARGIN_FIRST_DYNAMIC:
494                 if (layout->labeltype == LABEL_MANUAL) {
495                         if (pos >= par.beginOfBody()) {
496                                 // FIXME UNICODE
497                                 l_margin += labelfont_metrics.signedWidth(
498                                         from_utf8(layout->leftmargin));
499                         } else {
500                                 // FIXME UNICODE
501                                 l_margin += labelfont_metrics.signedWidth(
502                                         from_utf8(layout->labelindent));
503                         }
504                 } else if (pos != 0
505                            // Special case to fix problems with
506                            // theorems (JMarc)
507                            || (layout->labeltype == LABEL_STATIC
508                                && layout->latextype == LATEX_ENVIRONMENT
509                                && !isFirstInSequence(pit, pars_))) {
510                         // FIXME UNICODE
511                         l_margin += labelfont_metrics.signedWidth(from_utf8(layout->leftmargin));
512                 } else if (layout->labeltype != LABEL_TOP_ENVIRONMENT
513                            && layout->labeltype != LABEL_BIBLIO
514                            && layout->labeltype !=
515                            LABEL_CENTERED_TOP_ENVIRONMENT) {
516                         l_margin += labelfont_metrics.signedWidth(from_utf8(layout->labelindent));
517                         l_margin += labelfont_metrics.width(from_utf8(layout->labelsep));
518                         l_margin += labelfont_metrics.width(par.getLabelstring());
519                 }
520                 break;
521
522         case MARGIN_RIGHT_ADDRESS_BOX: {
523 #if 0
524                 // ok, a terrible hack. The left margin depends on the widest
525                 // row in this paragraph.
526                 RowList::iterator rit = par.rows().begin();
527                 RowList::iterator end = par.rows().end();
528 #ifdef WITH_WARNINGS
529 #warning This is wrong.
530 #endif
531                 int minfill = max_width;
532                 for ( ; rit != end; ++rit)
533                         if (rit->fill() < minfill)
534                                 minfill = rit->fill();
535                 l_margin += theFontMetrics(params.getFont()).signedWidth(layout->leftmargin);
536                 l_margin += minfill;
537 #endif
538                 // also wrong, but much shorter.
539                 l_margin += max_width / 2;
540                 break;
541         }
542         }
543
544         if (!par.params().leftIndent().zero())
545                 l_margin += par.params().leftIndent().inPixels(max_width);
546
547         LyXAlignment align;
548
549         if (par.params().align() == LYX_ALIGN_LAYOUT)
550                 align = layout->align;
551         else
552                 align = par.params().align();
553
554         // set the correct parindent
555         if (pos == 0
556             && (layout->labeltype == LABEL_NO_LABEL
557                || layout->labeltype == LABEL_TOP_ENVIRONMENT
558                || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
559                || (layout->labeltype == LABEL_STATIC
560                    && layout->latextype == LATEX_ENVIRONMENT
561                    && !isFirstInSequence(pit, pars_)))
562             && align == LYX_ALIGN_BLOCK
563             && !par.params().noindent()
564             // in some insets, paragraphs are never indented
565             && !(par.inInset() && par.inInset()->neverIndent(buffer))
566             // display style insets are always centered, omit indentation
567             && !(!par.empty()
568                     && par.isInset(pos)
569                     && par.getInset(pos)->display())
570             && (par.layout() != tclass.defaultLayout()
571                 || buffer.params().paragraph_separation ==
572                    BufferParams::PARSEP_INDENT))
573         {
574                 docstring din = from_utf8(parindent);
575                 l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(din);
576         }
577
578         return l_margin;
579 }
580
581
582 LColor_color LyXText::backgroundColor() const
583 {
584         return LColor_color(LColor::color(background_color_));
585 }
586
587
588 void LyXText::breakParagraph(LCursor & cur, bool keep_layout)
589 {
590         BOOST_ASSERT(this == cur.text());
591
592         Paragraph & cpar = cur.paragraph();
593         pit_type cpit = cur.pit();
594
595         LyXTextClass const & tclass = cur.buffer().params().getLyXTextClass();
596         LyXLayout_ptr const & layout = cpar.layout();
597
598         // this is only allowed, if the current paragraph is not empty
599         // or caption and if it has not the keepempty flag active
600         if (cur.lastpos() == 0 && !cpar.allowEmpty() &&
601             layout->labeltype != LABEL_SENSITIVE)
602                 return;
603
604         // a layout change may affect also the following paragraph
605         recUndo(cur, cur.pit(), undoSpan(cur.pit()) - 1);
606
607         // Always break behind a space
608         // It is better to erase the space (Dekel)
609         if (cur.pos() != cur.lastpos() && cpar.isLineSeparator(cur.pos()))
610                 cpar.eraseChar(cur.pos(), cur.buffer().params().trackChanges);
611
612         // What should the layout for the new paragraph be?
613         int preserve_layout = 0;
614         if (keep_layout)
615                 preserve_layout = 2;
616         else
617                 preserve_layout = layout->isEnvironment();
618
619         // We need to remember this before we break the paragraph, because
620         // that invalidates the layout variable
621         bool sensitive = layout->labeltype == LABEL_SENSITIVE;
622
623         // we need to set this before we insert the paragraph.
624         bool const isempty = cpar.allowEmpty() && cpar.empty();
625
626         lyx::breakParagraph(cur.buffer().params(), paragraphs(), cpit,
627                          cur.pos(), preserve_layout);
628
629         // After this, neither paragraph contains any rows!
630
631         cpit = cur.pit();
632         pit_type next_par = cpit + 1;
633
634         // well this is the caption hack since one caption is really enough
635         if (sensitive) {
636                 if (cur.pos() == 0)
637                         // set to standard-layout
638                         pars_[cpit].applyLayout(tclass.defaultLayout());
639                 else
640                         // set to standard-layout
641                         pars_[next_par].applyLayout(tclass.defaultLayout());
642         }
643
644         while (!pars_[next_par].empty() && pars_[next_par].isNewline(0))
645                 pars_[next_par].eraseChar(0, cur.buffer().params().trackChanges);
646
647         ParIterator current_it(cur);
648         ParIterator last_it(cur);
649         ++last_it;
650         ++last_it;
651
652         updateLabels(cur.buffer(), current_it, last_it);
653
654         // A singlePar update is not enough in this case.
655         cur.updateFlags(Update::Force);
656
657         // This check is necessary. Otherwise the new empty paragraph will
658         // be deleted automatically. And it is more friendly for the user!
659         if (cur.pos() != 0 || isempty)
660                 setCursor(cur.top(), cur.pit() + 1, 0);
661         else
662                 setCursor(cur.top(), cur.pit(), 0);
663 }
664
665
666 // insert a character, moves all the following breaks in the
667 // same Paragraph one to the right and make a rebreak
668 void LyXText::insertChar(LCursor & cur, char_type c)
669 {
670         BOOST_ASSERT(this == cur.text());
671         BOOST_ASSERT(c != Paragraph::META_INSET);
672
673         recordUndo(cur, Undo::INSERT);
674
675         Buffer const & buffer = cur.buffer();
676         Paragraph & par = cur.paragraph();
677         // try to remove this
678         pit_type const pit = cur.pit();
679
680         bool const freeSpacing = par.layout()->free_spacing ||
681                 par.isFreeSpacing();
682
683         if (lyxrc.auto_number) {
684                 static docstring const number_operators = from_ascii("+-/*");
685                 static docstring const number_unary_operators = from_ascii("+-");
686                 static docstring const number_seperators = from_ascii(".,:");
687
688                 if (current_font.number() == LyXFont::ON) {
689                         if (!isDigit(c) && !contains(number_operators, c) &&
690                             !(contains(number_seperators, c) &&
691                               cur.pos() != 0 &&
692                               cur.pos() != cur.lastpos() &&
693                               getFont(buffer, par, cur.pos()).number() == LyXFont::ON &&
694                               getFont(buffer, par, cur.pos() - 1).number() == LyXFont::ON)
695                            )
696                                 number(cur); // Set current_font.number to OFF
697                 } else if (isDigit(c) &&
698                            real_current_font.isVisibleRightToLeft()) {
699                         number(cur); // Set current_font.number to ON
700
701                         if (cur.pos() != 0) {
702                                 char_type const c = par.getChar(cur.pos() - 1);
703                                 if (contains(number_unary_operators, c) &&
704                                     (cur.pos() == 1
705                                      || par.isSeparator(cur.pos() - 2)
706                                      || par.isNewline(cur.pos() - 2))
707                                   ) {
708                                         setCharFont(buffer, pit, cur.pos() - 1, current_font);
709                                 } else if (contains(number_seperators, c)
710                                      && cur.pos() >= 2
711                                      && getFont(buffer, par, cur.pos() - 2).number() == LyXFont::ON) {
712                                         setCharFont(buffer, pit, cur.pos() - 1, current_font);
713                                 }
714                         }
715                 }
716         }
717
718         // First check, if there will be two blanks together or a blank at
719         // the beginning of a paragraph.
720         // I decided to handle blanks like normal characters, the main
721         // difference are the special checks when calculating the row.fill
722         // (blank does not count at the end of a row) and the check here
723
724         // When the free-spacing option is set for the current layout,
725         // disable the double-space checking
726         if (!freeSpacing && isLineSeparatorChar(c)) {
727                 if (cur.pos() == 0) {
728                         static bool sent_space_message = false;
729                         if (!sent_space_message) {
730                                 cur.message(_("You cannot insert a space at the "
731                                                            "beginning of a paragraph. Please read the Tutorial."));
732                                 sent_space_message = true;
733                         }
734                         return;
735                 }
736                 BOOST_ASSERT(cur.pos() > 0);
737                 if ((par.isLineSeparator(cur.pos() - 1) || par.isNewline(cur.pos() - 1))
738                     && !par.isDeleted(cur.pos() - 1)) {
739                         static bool sent_space_message = false;
740                         if (!sent_space_message) {
741                                 cur.message(_("You cannot type two spaces this way. "
742                                                            "Please read the Tutorial."));
743                                 sent_space_message = true;
744                         }
745                         return;
746                 }
747         }
748
749         par.insertChar(cur.pos(), c, current_font, cur.buffer().params().trackChanges);
750
751 //              cur.updateFlags(Update::Force);
752         setCursor(cur.top(), cur.pit(), cur.pos() + 1);
753         charInserted();
754 }
755
756
757 void LyXText::charInserted()
758 {
759         // Here we call finishUndo for every 20 characters inserted.
760         // This is from my experience how emacs does it. (Lgb)
761         static unsigned int counter;
762         if (counter < 20) {
763                 ++counter;
764         } else {
765                 finishUndo();
766                 counter = 0;
767         }
768 }
769
770
771 // the cursor set functions have a special mechanism. When they
772 // realize, that you left an empty paragraph, they will delete it.
773
774 bool LyXText::cursorRightOneWord(LCursor & cur)
775 {
776         BOOST_ASSERT(this == cur.text());
777
778         LCursor old = cur;
779
780         if (old.pos() == old.lastpos() && old.pit() != old.lastpit()) {
781                 ++old.pit();
782                 old.pos() = 0;
783         } else {
784                 // Advance through word.
785                 while (old.pos() != old.lastpos() && old.paragraph().isLetter(old.pos()))
786                         ++old.pos();
787                 // Skip through trailing nonword stuff.
788                 while (old.pos() != old.lastpos() && !old.paragraph().isLetter(old.pos()))
789                         ++old.pos();
790         }
791         return setCursor(cur, old.pit(), old.pos());
792 }
793
794
795 bool LyXText::cursorLeftOneWord(LCursor & cur)
796 {
797         BOOST_ASSERT(this == cur.text());
798
799         LCursor old = cur;
800
801         if (old.pos() == 0 && old.pit() != 0) {
802                 --old.pit();
803                 old.pos() = old.lastpos();
804         } else {
805                 // Skip through initial nonword stuff.
806                 while (old.pos() != 0 && !old.paragraph().isLetter(old.pos() - 1))
807                         --old.pos();
808                 // Advance through word.
809                 while (old.pos() != 0 && old.paragraph().isLetter(old.pos() - 1))
810                         --old.pos();
811         }
812         return setCursor(cur, old.pit(), old.pos());
813 }
814
815
816 void LyXText::selectWord(LCursor & cur, word_location loc)
817 {
818         BOOST_ASSERT(this == cur.text());
819         CursorSlice from = cur.top();
820         CursorSlice to = cur.top();
821         getWord(from, to, loc);
822         if (cur.top() != from)
823                 setCursor(cur, from.pit(), from.pos());
824         if (to == from)
825                 return;
826         cur.resetAnchor();
827         setCursor(cur, to.pit(), to.pos());
828         cur.setSelection();
829 }
830
831
832 // Select the word currently under the cursor when no
833 // selection is currently set
834 bool LyXText::selectWordWhenUnderCursor(LCursor & cur, word_location loc)
835 {
836         BOOST_ASSERT(this == cur.text());
837         if (cur.selection())
838                 return false;
839         selectWord(cur, loc);
840         return cur.selection();
841 }
842
843
844 void LyXText::acceptChange(LCursor & cur)
845 {
846         // FIXME: change tracking (MG)
847
848         BOOST_ASSERT(this == cur.text());
849
850         if (!cur.selection() && cur.lastpos() != 0)
851                 return;
852
853         // FIXME: we must handle start = end = 0
854
855         recordUndoSelection(cur, Undo::INSERT);
856
857         DocIterator it = cur.selectionBegin();
858         DocIterator et = cur.selectionEnd();
859         pit_type pit = it.pit();
860         for (; pit <= et.pit(); ++pit) {
861                 pos_type left  = (pit == it.pit() ? it.pos() : 0);
862                 pos_type right = (pit == et.pit() ? et.pos() : pars_[pit].size());
863                 pars_[pit].acceptChanges(left, right);
864
865                 // handle imaginary end-of-par character
866                 if (right == pars_[pit].size() && !pars_[pit].isUnchanged(right)) {
867                         if (pars_[pit].isInserted(right)) {
868                                 pars_[pit].setChange(right, Change(Change::UNCHANGED));
869                         } else {
870                                 // if (pit + 1 < et.pit()) {
871                                 //      setCursorIntern(cur, pit + 1, 0);
872                                 //      backspacePos0(cur);
873                                 // }
874                         }
875                 }
876         }
877         finishUndo();
878         cur.clearSelection();
879         setCursorIntern(cur, it.pit(), it.pos());
880         cur.updateFlags(Update::Force);
881 }
882
883
884 void LyXText::rejectChange(LCursor & cur)
885 {
886         // FIXME: change tracking (MG)
887
888         BOOST_ASSERT(this == cur.text());
889
890         if (!cur.selection() && cur.lastpos() != 0)
891                 return;
892
893         // FIXME: we must handle start = end = 0
894
895         recordUndoSelection(cur, Undo::INSERT);
896
897         DocIterator it = cur.selectionBegin();
898         DocIterator et = cur.selectionEnd();
899         pit_type pit = it.pit();
900         for (; pit <= et.pit(); ++pit) {
901                 pos_type left  = (pit == it.pit() ? it.pos() : 0);
902                 pos_type right = (pit == et.pit() ? et.pos() : pars_[pit].size());
903                 pars_[pit].rejectChanges(left, right);
904
905                 // handle imaginary end-of-par character
906                 if (right == pars_[pit].size() && !pars_[pit].isUnchanged(right)) {
907                         if (pars_[pit].isDeleted(right)) {
908                                 pars_[pit].setChange(right, Change(Change::UNCHANGED));
909                         } else {
910                                 // if (pit + 1 < et.pit()) {
911                                 //      setCursorIntern(cur, pit + 1, 0);
912                                 //      backspacePos0(cur);
913                                 // }
914                         }
915                 }
916         }
917         finishUndo();
918         cur.clearSelection();
919         setCursorIntern(cur, it.pit(), it.pos());
920         cur.updateFlags(Update::Force);
921 }
922
923
924 // Delete from cursor up to the end of the current or next word.
925 void LyXText::deleteWordForward(LCursor & cur)
926 {
927         BOOST_ASSERT(this == cur.text());
928         if (cur.lastpos() == 0)
929                 cursorRight(cur);
930         else {
931                 cur.resetAnchor();
932                 cur.selection() = true;
933                 cursorRightOneWord(cur);
934                 cur.setSelection();
935                 cutSelection(cur, true, false);
936         }
937 }
938
939
940 // Delete from cursor to start of current or prior word.
941 void LyXText::deleteWordBackward(LCursor & cur)
942 {
943         BOOST_ASSERT(this == cur.text());
944         if (cur.lastpos() == 0)
945                 cursorLeft(cur);
946         else {
947                 cur.resetAnchor();
948                 cur.selection() = true;
949                 cursorLeftOneWord(cur);
950                 cur.setSelection();
951                 cutSelection(cur, true, false);
952         }
953 }
954
955
956 // Kill to end of line.
957 void LyXText::deleteLineForward(LCursor & cur)
958 {
959         BOOST_ASSERT(this == cur.text());
960         if (cur.lastpos() == 0) {
961                 // Paragraph is empty, so we just go to the right
962                 cursorRight(cur);
963         } else {
964                 cur.resetAnchor();
965                 cur.selection() = true; // to avoid deletion
966                 cursorEnd(cur);
967                 cur.setSelection();
968                 // What is this test for ??? (JMarc)
969                 if (!cur.selection())
970                         deleteWordForward(cur);
971                 else
972                         cutSelection(cur, true, false);
973         }
974 }
975
976
977 void LyXText::changeCase(LCursor & cur, LyXText::TextCase action)
978 {
979         BOOST_ASSERT(this == cur.text());
980         CursorSlice from;
981         CursorSlice to;
982
983         if (cur.selection()) {
984                 from = cur.selBegin();
985                 to = cur.selEnd();
986         } else {
987                 from = cur.top();
988                 getWord(from, to, PARTIAL_WORD);
989                 cursorRightOneWord(cur);
990         }
991
992         recordUndoSelection(cur);
993
994         pos_type pos = from.pos();
995         int par = from.pit();
996
997         while (par != int(pars_.size()) && (pos != to.pos() || par != to.pit())) {
998                 pit_type pit = par;
999                 if (pos == pars_[pit].size()) {
1000                         ++par;
1001                         pos = 0;
1002                         continue;
1003                 }
1004                 char_type c = pars_[pit].getChar(pos);
1005                 if (c != Paragraph::META_INSET) {
1006                         switch (action) {
1007                         case text_lowercase:
1008                                 c = lowercase(c);
1009                                 break;
1010                         case text_capitalization:
1011                                 c = uppercase(c);
1012                                 action = text_lowercase;
1013                                 break;
1014                         case text_uppercase:
1015                                 c = uppercase(c);
1016                                 break;
1017                         }
1018                 }
1019
1020                 // FIXME: change tracking (MG)
1021                 // sorry but we are no longer allowed to set a single character directly
1022                 // we have to rewrite this method in terms of erase&insert operations
1023                 //pars_[pit].setChar(pos, c);
1024                 ++pos;
1025         }
1026 }
1027
1028
1029 bool LyXText::erase(LCursor & cur)
1030 {
1031         BOOST_ASSERT(this == cur.text());
1032         bool needsUpdate = false;
1033         Paragraph & par = cur.paragraph();
1034
1035         if (cur.pos() != cur.lastpos()) {
1036                 // this is the code for a normal delete, not pasting
1037                 // any paragraphs
1038                 recordUndo(cur, Undo::DELETE);
1039                 par.eraseChar(cur.pos(), cur.buffer().params().trackChanges);
1040                 if (par.isDeleted(cur.pos()))
1041                         cur.forwardPosNoDescend();
1042                 needsUpdate = true;
1043         } else {
1044                 if (cur.pit() == cur.lastpit())
1045                         return dissolveInset(cur);
1046
1047                 if (!par.isMergedOnEndOfParDeletion(cur.buffer().params().trackChanges)) {
1048                         par.setChange(cur.pos(), Change(Change::DELETED));
1049                         cur.forwardPos();
1050                         needsUpdate = true;
1051                 } else {
1052                         setCursorIntern(cur, cur.pit() + 1, 0);
1053                         needsUpdate = backspacePos0(cur);
1054                 }
1055         }
1056
1057         if (needsUpdate) {
1058                 // Make sure the cursor is correct. Is this really needed?
1059                 // No, not really... at least not here!
1060                 cur.text()->setCursor(cur.top(), cur.pit(), cur.pos());
1061         }
1062         
1063         return needsUpdate;
1064 }
1065
1066
1067 bool LyXText::backspacePos0(LCursor & cur)
1068 {
1069         BOOST_ASSERT(this == cur.text());
1070         if (cur.pit() == 0)
1071                 return false;
1072
1073         bool needsUpdate = false;
1074
1075         BufferParams const & bufparams = cur.buffer().params();
1076         LyXTextClass const & tclass = bufparams.getLyXTextClass();
1077         ParagraphList & plist = cur.text()->paragraphs();
1078         Paragraph const & par = cur.paragraph();
1079         LCursor prevcur = cur;
1080         --prevcur.pit();
1081         prevcur.pos() = prevcur.lastpos();
1082         Paragraph const & prevpar = prevcur.paragraph();
1083
1084         // is it an empty paragraph?
1085         if (cur.lastpos() == 0 
1086             || (cur.lastpos() == 1 && par.isSeparator(0))) {
1087                 recordUndo(cur, Undo::ATOMIC, prevcur.pit(), cur.pit());
1088                 plist.erase(boost::next(plist.begin(), cur.pit()));
1089                 needsUpdate = true;
1090         }
1091         // is previous par empty?
1092         else if (prevcur.lastpos() == 0 
1093                  || (prevcur.lastpos() == 1 && prevpar.isSeparator(0))) {
1094                 recordUndo(cur, Undo::ATOMIC, prevcur.pit(), cur.pit());
1095                 plist.erase(boost::next(plist.begin(), prevcur.pit()));
1096                 needsUpdate = true;
1097         }
1098         // Pasting is not allowed, if the paragraphs have different
1099         // layouts. I think it is a real bug of all other
1100         // word processors to allow it. It confuses the user.
1101         // Correction: Pasting is always allowed with standard-layout
1102         else if (par.layout() == prevpar.layout()
1103                  || par.layout() == tclass.defaultLayout()) {
1104                 recordUndo(cur, Undo::ATOMIC, prevcur.pit());
1105                 mergeParagraph(bufparams, plist, prevcur.pit());
1106                 needsUpdate = true;
1107         }
1108
1109         if (needsUpdate) {
1110                 updateLabels(cur.buffer());
1111                 setCursorIntern(cur, prevcur.pit(), prevcur.pos());
1112         }
1113
1114         return needsUpdate;
1115 }
1116
1117
1118 bool LyXText::backspace(LCursor & cur)
1119 {
1120         BOOST_ASSERT(this == cur.text());
1121         bool needsUpdate = false;
1122         if (cur.pos() == 0) {
1123                 if (cur.pit() == 0)
1124                         return dissolveInset(cur);
1125
1126                 Paragraph & prev_par = pars_[cur.pit() - 1];
1127
1128                 if (!prev_par.isMergedOnEndOfParDeletion(cur.buffer().params().trackChanges)) {
1129                         prev_par.setChange(prev_par.size(), Change(Change::DELETED));
1130                         setCursorIntern(cur, cur.pit() - 1, prev_par.size());
1131                         return true;
1132                 }
1133                 // The cursor is at the beginning of a paragraph, so
1134                 // the backspace will collapse two paragraphs into one.
1135                 needsUpdate = backspacePos0(cur);
1136
1137         } else {
1138                 // this is the code for a normal backspace, not pasting
1139                 // any paragraphs
1140                 recordUndo(cur, Undo::DELETE);
1141                 // We used to do cursorLeftIntern() here, but it is
1142                 // not a good idea since it triggers the auto-delete
1143                 // mechanism. So we do a cursorLeftIntern()-lite,
1144                 // without the dreaded mechanism. (JMarc)
1145                 setCursorIntern(cur, cur.pit(), cur.pos() - 1,
1146                                 false, cur.boundary());
1147                 cur.paragraph().eraseChar(cur.pos(), cur.buffer().params().trackChanges);
1148         }
1149
1150         if (cur.pos() == cur.lastpos())
1151                 setCurrentFont(cur);
1152
1153         // A singlePar update is not enough in this case.
1154 //              cur.updateFlags(Update::Force);
1155         setCursor(cur.top(), cur.pit(), cur.pos());
1156
1157         return needsUpdate;
1158 }
1159
1160
1161 bool LyXText::dissolveInset(LCursor & cur) {
1162         BOOST_ASSERT(this == cur.text());
1163
1164         if (isMainText(*cur.bv().buffer()) || cur.inset().nargs() != 1)
1165                 return false;
1166
1167         recordUndoInset(cur);
1168         cur.selHandle(false);
1169         // save position
1170         pos_type spos = cur.pos();
1171         pit_type spit = cur.pit();
1172         ParagraphList plist;
1173         if (cur.lastpit() != 0 || cur.lastpos() != 0)
1174                 plist = paragraphs();
1175         cur.popLeft();
1176         // store cursor offset
1177         if (spit == 0)
1178                 spos += cur.pos();
1179         spit += cur.pit();
1180         Buffer & b = cur.buffer();
1181         cur.paragraph().eraseChar(cur.pos(), b.params().trackChanges);
1182         if (!plist.empty()) {
1183                 // ERT paragraphs have the Language latex_language.
1184                 // This is invalid outside of ERT, so we need to
1185                 // change it to the buffer language.
1186                 ParagraphList::iterator it = plist.begin();
1187                 ParagraphList::iterator it_end = plist.end();
1188                 for (; it != it_end; it++) {
1189                         it->changeLanguage(b.params(), latex_language,
1190                                         b.getLanguage());
1191                 }
1192
1193                 pasteParagraphList(cur, plist, b.params().textclass,
1194                                    b.errorList("Paste"));
1195                 // restore position
1196                 cur.pit() = std::min(cur.lastpit(), spit);
1197                 cur.pos() = std::min(cur.lastpos(), spos);
1198         }
1199         cur.clearSelection();
1200         cur.resetAnchor();
1201         return true;
1202 }
1203
1204
1205 // only used for inset right now. should also be used for main text
1206 void LyXText::draw(PainterInfo & pi, int x, int y) const
1207 {
1208         paintTextInset(*this, pi, x, y);
1209 }
1210
1211
1212 // only used for inset right now. should also be used for main text
1213 void LyXText::drawSelection(PainterInfo & pi, int x, int) const
1214 {
1215         LCursor & cur = pi.base.bv->cursor();
1216         if (!cur.selection())
1217                 return;
1218         if (!ptr_cmp(cur.text(), this))
1219                 return;
1220
1221         if (lyxerr.debugging(Debug::DEBUG)) {
1222                 lyxerr[Debug::DEBUG]
1223                         << BOOST_CURRENT_FUNCTION
1224                         << "draw selection at " << x
1225                         << endl;
1226         }
1227
1228         DocIterator beg = cur.selectionBegin();
1229         DocIterator end = cur.selectionEnd();
1230
1231         BufferView & bv = *pi.base.bv;
1232         Buffer const & buffer = *bv.buffer();
1233
1234         // the selection doesn't touch the visible screen
1235         if (bv_funcs::status(&bv, beg) == bv_funcs::CUR_BELOW
1236             || bv_funcs::status(&bv, end) == bv_funcs::CUR_ABOVE)
1237                 return;
1238
1239         Paragraph const & par1 = pars_[beg.pit()];
1240         Paragraph const & par2 = pars_[end.pit()];
1241         TextMetrics const & tm = bv.textMetrics(this);
1242         ParagraphMetrics const & pm1 = tm.parMetrics(beg.pit());
1243         ParagraphMetrics const & pm2 = tm.parMetrics(end.pit());
1244
1245         bool const above = (bv_funcs::status(&bv, beg)
1246                             == bv_funcs::CUR_ABOVE);
1247         bool const below = (bv_funcs::status(&bv, end)
1248                             == bv_funcs::CUR_BELOW);
1249         int y1,y2,x1,x2;
1250         if (above) {
1251                 y1 = 0;
1252                 y2 = 0;
1253                 x1 = 0;
1254                 x2 = tm.width();
1255         } else {
1256                 Row const & row1 = pm1.getRow(beg.pos(), beg.boundary());
1257                 y1 = bv_funcs::getPos(bv, beg, beg.boundary()).y_ - row1.ascent();
1258                 y2 = y1 + row1.height();
1259                 int const startx = cursorX(bv, beg.top(), beg.boundary());
1260                 if (!isRTL(buffer, par1)) {
1261                         x1 = startx;
1262                         x2 = 0 + tm.width();
1263                 }
1264                 else {
1265                         x1 = 0;
1266                         x2 = startx;
1267                 }
1268         }
1269
1270         int Y1,Y2,X1,X2;
1271         if (below) {
1272                 Y1 = bv.workHeight();
1273                 Y2 = bv.workHeight();
1274                 X1 = 0;
1275                 X2 = tm.width();
1276         } else {
1277                 Row const & row2 = pm2.getRow(end.pos(), end.boundary());
1278                 Y1 = bv_funcs::getPos(bv, end, end.boundary()).y_ - row2.ascent();
1279                 Y2 = Y1 + row2.height();
1280                 int const endx = cursorX(bv, end.top(), end.boundary());
1281                 if (!isRTL(buffer, par2)) {
1282                         X1 = 0;
1283                         X2 = endx;
1284                 }
1285                 else {
1286                         X1 = endx;
1287                         X2 = 0 + tm.width();
1288                 }
1289         }
1290
1291         if (!above && !below && &pm1.getRow(beg.pos(), beg.boundary())
1292             == &pm2.getRow(end.pos(), end.boundary()))
1293         {
1294                 // paint only one rectangle
1295                 int const b( !isRTL(*bv.buffer(), par1) ? x + x1 : x + X1 );
1296                 int const w( !isRTL(*bv.buffer(), par1) ? X2 - x1 : x2 - X1 );
1297                 pi.pain.fillRectangle(b, y1, w, y2 - y1, LColor::selection);
1298                 return;
1299         }
1300
1301         if (lyxerr.debugging(Debug::DEBUG)) {
1302                 lyxerr[Debug::DEBUG] << " y1: " << y1 << " y2: " << y2
1303                            << "X1:" << X1 << " x2: " << X2 << " wid: " << tm.width()
1304                         << endl;
1305         }
1306
1307         // paint upper rectangle
1308         pi.pain.fillRectangle(x + x1, y1, x2 - x1, y2 - y1,
1309                                       LColor::selection);
1310         // paint bottom rectangle
1311         pi.pain.fillRectangle(x + X1, Y1, X2 - X1, Y2 - Y1,
1312                                       LColor::selection);
1313         // paint center rectangle
1314         pi.pain.fillRectangle(x, y2, tm.width(),
1315                               Y1 - y2, LColor::selection);
1316 }
1317
1318
1319 bool LyXText::isLastRow(pit_type pit, Row const & row) const
1320 {
1321         return row.endpos() >= pars_[pit].size()
1322                 && pit + 1 == pit_type(paragraphs().size());
1323 }
1324
1325
1326 bool LyXText::isFirstRow(pit_type pit, Row const & row) const
1327 {
1328         return row.pos() == 0 && pit == 0;
1329 }
1330
1331
1332 void LyXText::getWord(CursorSlice & from, CursorSlice & to,
1333         word_location const loc)
1334 {
1335         Paragraph const & from_par = pars_[from.pit()];
1336         switch (loc) {
1337         case WHOLE_WORD_STRICT:
1338                 if (from.pos() == 0 || from.pos() == from_par.size()
1339                     || !from_par.isLetter(from.pos())
1340                     || !from_par.isLetter(from.pos() - 1)) {
1341                         to = from;
1342                         return;
1343                 }
1344                 // no break here, we go to the next
1345
1346         case WHOLE_WORD:
1347                 // If we are already at the beginning of a word, do nothing
1348                 if (!from.pos() || !from_par.isLetter(from.pos() - 1))
1349                         break;
1350                 // no break here, we go to the next
1351
1352         case PREVIOUS_WORD:
1353                 // always move the cursor to the beginning of previous word
1354                 while (from.pos() && from_par.isLetter(from.pos() - 1))
1355                         --from.pos();
1356                 break;
1357         case NEXT_WORD:
1358                 lyxerr << "LyXText::getWord: NEXT_WORD not implemented yet"
1359                        << endl;
1360                 break;
1361         case PARTIAL_WORD:
1362                 // no need to move the 'from' cursor
1363                 break;
1364         }
1365         to = from;
1366         Paragraph & to_par = pars_[to.pit()];
1367         while (to.pos() < to_par.size() && to_par.isLetter(to.pos()))
1368                 ++to.pos();
1369 }
1370
1371
1372 void LyXText::write(Buffer const & buf, std::ostream & os) const
1373 {
1374         ParagraphList::const_iterator pit = paragraphs().begin();
1375         ParagraphList::const_iterator end = paragraphs().end();
1376         depth_type dth = 0;
1377         for (; pit != end; ++pit)
1378                 pit->write(buf, os, buf.params(), dth);
1379 }
1380
1381
1382 bool LyXText::read(Buffer const & buf, LyXLex & lex, ErrorList & errorList)
1383 {
1384         depth_type depth = 0;
1385
1386         while (lex.isOK()) {
1387                 lex.nextToken();
1388                 string const token = lex.getString();
1389
1390                 if (token.empty())
1391                         continue;
1392
1393                 if (token == "\\end_inset")
1394                         break;
1395
1396                 if (token == "\\end_body")
1397                         continue;
1398
1399                 if (token == "\\begin_body")
1400                         continue;
1401
1402                 if (token == "\\end_document")
1403                         return false;
1404
1405                 if (token == "\\begin_layout") {
1406                         lex.pushToken(token);
1407
1408                         Paragraph par;
1409                         par.params().depth(depth);
1410                         par.setFont(0, LyXFont(LyXFont::ALL_INHERIT, buf.params().language));
1411                         pars_.push_back(par);
1412
1413                         // FIXME: goddamn InsetTabular makes us pass a Buffer
1414                         // not BufferParams
1415                         lyx::readParagraph(buf, pars_.back(), lex, errorList);
1416
1417                 } else if (token == "\\begin_deeper") {
1418                         ++depth;
1419                 } else if (token == "\\end_deeper") {
1420                         if (!depth) {
1421                                 lex.printError("\\end_deeper: " "depth is already null");
1422                         } else {
1423                                 --depth;
1424                         }
1425                 } else {
1426                         lyxerr << "Handling unknown body token: `"
1427                                << token << '\'' << endl;
1428                 }
1429         }
1430         return true;
1431 }
1432
1433 int LyXText::cursorX(BufferView const & bv, CursorSlice const & sl,
1434                 bool boundary) const
1435 {
1436         TextMetrics const & tm = bv.textMetrics(sl.text());
1437         pit_type const pit = sl.pit();
1438         Paragraph const & par = pars_[pit];
1439         ParagraphMetrics const & pm = tm.parMetrics(pit);
1440         if (pm.rows().empty())
1441                 return 0;
1442
1443         pos_type ppos = sl.pos();
1444         // Correct position in front of big insets
1445         bool const boundary_correction = ppos != 0 && boundary;
1446         if (boundary_correction)
1447                 --ppos;
1448
1449         Row const & row = pm.getRow(sl.pos(), boundary);
1450
1451         pos_type cursor_vpos = 0;
1452
1453         Buffer const & buffer = *bv.buffer();
1454         RowMetrics const m = tm.computeRowMetrics(pit, row);
1455         double x = m.x;
1456
1457         pos_type const row_pos  = row.pos();
1458         pos_type const end      = row.endpos();
1459
1460         if (end <= row_pos)
1461                 cursor_vpos = row_pos;
1462         else if (ppos >= end)
1463                 cursor_vpos = isRTL(buffer, par) ? row_pos : end;
1464         else if (ppos > row_pos && ppos >= end)
1465                 // Place cursor after char at (logical) position pos - 1
1466                 cursor_vpos = (bidi.level(ppos - 1) % 2 == 0)
1467                         ? bidi.log2vis(ppos - 1) + 1 : bidi.log2vis(ppos - 1);
1468         else
1469                 // Place cursor before char at (logical) position ppos
1470                 cursor_vpos = (bidi.level(ppos) % 2 == 0)
1471                         ? bidi.log2vis(ppos) : bidi.log2vis(ppos) + 1;
1472
1473         pos_type body_pos = par.beginOfBody();
1474         if (body_pos > 0 &&
1475             (body_pos > end || !par.isLineSeparator(body_pos - 1)))
1476                 body_pos = 0;
1477
1478         // Use font span to speed things up, see below
1479         FontSpan font_span;
1480         LyXFont font;
1481         FontMetrics const & labelfm = theFontMetrics(
1482                 getLabelFont(buffer, par));
1483
1484         for (pos_type vpos = row_pos; vpos < cursor_vpos; ++vpos) {
1485                 pos_type pos = bidi.vis2log(vpos);
1486                 if (body_pos > 0 && pos == body_pos - 1) {
1487                         // FIXME UNICODE
1488                         docstring const lsep = from_utf8(par.layout()->labelsep);
1489                         x += m.label_hfill + labelfm.width(lsep);
1490                         if (par.isLineSeparator(body_pos - 1))
1491                                 x -= singleWidth(buffer, par, body_pos - 1);
1492                 }
1493
1494                 // Use font span to speed things up, see above
1495                 if (pos < font_span.first || pos > font_span.last) {
1496                         font_span = par.fontSpan(pos);
1497                         font = getFont(buffer, par, pos);
1498                 }
1499
1500                 x += singleWidth(par, pos, par.getChar(pos), font);
1501
1502                 if (par.hfillExpansion(row, pos))
1503                         x += (pos >= body_pos) ? m.hfill : m.label_hfill;
1504                 else if (par.isSeparator(pos) && pos >= body_pos)
1505                         x += m.separator;
1506         }
1507
1508         // see correction above
1509         if (boundary_correction)
1510                 if (getFont(buffer, par, ppos).isVisibleRightToLeft())
1511                         x -= singleWidth(buffer, par, ppos);
1512                 else
1513                         x += singleWidth(buffer, par, ppos);
1514
1515         // Make sure inside an inset we always count from the left
1516         // edge (bidi!) -- MV
1517         if (sl.pos() < par.size()) {
1518                 font = getFont(buffer, par, sl.pos());
1519                 if (!boundary && font.isVisibleRightToLeft()
1520                   && par.isInset(sl.pos()))
1521                         x -= par.getInset(sl.pos())->width();
1522         }
1523         return int(x);
1524 }
1525
1526
1527 int LyXText::cursorY(BufferView const & bv, CursorSlice const & sl, bool boundary) const
1528 {
1529         //lyxerr << "LyXText::cursorY: boundary: " << boundary << std::endl;
1530         ParagraphMetrics const & pm = bv.parMetrics(this, sl.pit());
1531         if (pm.rows().empty())
1532                 return 0;
1533
1534         int h = 0;
1535         h -= bv.parMetrics(this, 0).rows()[0].ascent();
1536         for (pit_type pit = 0; pit < sl.pit(); ++pit) {
1537                 h += bv.parMetrics(this, pit).height();
1538         }
1539         int pos = sl.pos();
1540         if (pos && boundary)
1541                 --pos;
1542         size_t const rend = pm.pos2row(pos);
1543         for (size_t rit = 0; rit != rend; ++rit)
1544                 h += pm.rows()[rit].height();
1545         h += pm.rows()[rend].ascent();
1546         return h;
1547 }
1548
1549
1550 // Returns the current font and depth as a message.
1551 docstring LyXText::currentState(LCursor & cur)
1552 {
1553         BOOST_ASSERT(this == cur.text());
1554         Buffer & buf = cur.buffer();
1555         Paragraph const & par = cur.paragraph();
1556         odocstringstream os;
1557
1558         if (buf.params().trackChanges)
1559                 os << "[C] ";
1560
1561         Change change = par.lookupChange(cur.pos());
1562
1563         if (change.type != Change::UNCHANGED) {
1564                 Author const & a = buf.params().authors().get(change.author);
1565                 os << _("Change: ") << a.name();
1566                 if (!a.email().empty())
1567                         os << " (" << a.email() << ")";
1568                 // FIXME ctime is english, we should translate that
1569                 os << _(" at ") << ctime(&change.changetime);
1570                 os << " : ";
1571         }
1572
1573         // I think we should only show changes from the default
1574         // font. (Asger)
1575         // No, from the document font (MV)
1576         LyXFont font = real_current_font;
1577         font.reduce(buf.params().getFont());
1578
1579         os << bformat(_("Font: %1$s"), font.stateText(&buf.params()));
1580
1581         // The paragraph depth
1582         int depth = cur.paragraph().getDepth();
1583         if (depth > 0)
1584                 os << bformat(_(", Depth: %1$d"), depth);
1585
1586         // The paragraph spacing, but only if different from
1587         // buffer spacing.
1588         Spacing const & spacing = par.params().spacing();
1589         if (!spacing.isDefault()) {
1590                 os << _(", Spacing: ");
1591                 switch (spacing.getSpace()) {
1592                 case Spacing::Single:
1593                         os << _("Single");
1594                         break;
1595                 case Spacing::Onehalf:
1596                         os << _("OneHalf");
1597                         break;
1598                 case Spacing::Double:
1599                         os << _("Double");
1600                         break;
1601                 case Spacing::Other:
1602                         os << _("Other (") << from_ascii(spacing.getValueAsString()) << ')';
1603                         break;
1604                 case Spacing::Default:
1605                         // should never happen, do nothing
1606                         break;
1607                 }
1608         }
1609
1610 #ifdef DEVEL_VERSION
1611         os << _(", Inset: ") << &cur.inset();
1612         os << _(", Paragraph: ") << cur.pit();
1613         os << _(", Id: ") << par.id();
1614         os << _(", Position: ") << cur.pos();
1615         os << _(", Boundary: ") << cur.boundary();
1616 //      Row & row = cur.textRow();
1617 //      os << bformat(_(", Row b:%1$d e:%2$d"), row.pos(), row.endpos());
1618 #endif
1619         return os.str();
1620 }
1621
1622
1623 docstring LyXText::getPossibleLabel(LCursor & cur) const
1624 {
1625         pit_type pit = cur.pit();
1626
1627         LyXLayout_ptr layout = pars_[pit].layout();
1628
1629         if (layout->latextype == LATEX_PARAGRAPH && pit != 0) {
1630                 LyXLayout_ptr const & layout2 = pars_[pit - 1].layout();
1631                 if (layout2->latextype != LATEX_PARAGRAPH) {
1632                         --pit;
1633                         layout = layout2;
1634                 }
1635         }
1636
1637         docstring name = from_ascii(layout->latexname());
1638
1639         // for captions, we want the abbreviation of the float type
1640         if (layout->labeltype == LABEL_SENSITIVE) {
1641                 // Search for the first float or wrap inset in the iterator
1642                 for (int i = cur.depth(); --i >= 0; ) {
1643                         InsetBase * const in = &cur[i].inset();
1644                         if (in->lyxCode() == InsetBase::FLOAT_CODE
1645                             || in->lyxCode() == InsetBase::WRAP_CODE) {
1646                                 name = in->getInsetName();
1647                                 break;
1648                         }
1649                 }
1650         }
1651
1652         docstring text = name.substr(0, 3);
1653         if (name == "theorem")
1654                 text = from_ascii("thm"); // Create a correct prefix for prettyref
1655
1656         text += ':';
1657         if (layout->latextype == LATEX_PARAGRAPH || lyxrc.label_init_length < 0)
1658                 text.erase();
1659
1660         docstring par_text = pars_[pit].asString(cur.buffer(), false);
1661         for (int i = 0; i < lyxrc.label_init_length; ++i) {
1662                 if (par_text.empty())
1663                         break;
1664                 docstring head;
1665                 par_text = split(par_text, head, ' ');
1666                 // Is it legal to use spaces in labels ?
1667                 if (i > 0)
1668                         text += '-';
1669                 text += head;
1670         }
1671
1672         return text;
1673 }
1674
1675
1676 void LyXText::setCursorFromCoordinates(LCursor & cur, int const x, int const y)
1677 {
1678         BOOST_ASSERT(this == cur.text());
1679         pit_type pit = getPitNearY(cur.bv(), y);
1680
1681         TextMetrics const & tm = cur.bv().textMetrics(this);
1682         ParagraphMetrics const & pm = tm.parMetrics(pit);
1683
1684         int yy = cur.bv().coordCache().get(this, pit).y_ - pm.ascent();
1685         lyxerr[Debug::DEBUG]
1686                 << BOOST_CURRENT_FUNCTION
1687                 << ": x: " << x
1688                 << " y: " << y
1689                 << " pit: " << pit
1690                 << " yy: " << yy << endl;
1691
1692         int r = 0;
1693         BOOST_ASSERT(pm.rows().size());
1694         for (; r < int(pm.rows().size()) - 1; ++r) {
1695                 Row const & row = pm.rows()[r];
1696                 if (int(yy + row.height()) > y)
1697                         break;
1698                 yy += row.height();
1699         }
1700
1701         Row const & row = pm.rows()[r];
1702
1703         lyxerr[Debug::DEBUG]
1704                 << BOOST_CURRENT_FUNCTION
1705                 << ": row " << r
1706                 << " from pos: " << row.pos()
1707                 << endl;
1708
1709         bool bound = false;
1710         int xx = x;
1711         pos_type const pos = row.pos() 
1712                 + tm.getColumnNearX(pit, row, xx, bound);
1713
1714         lyxerr[Debug::DEBUG]
1715                 << BOOST_CURRENT_FUNCTION
1716                 << ": setting cursor pit: " << pit
1717                 << " pos: " << pos
1718                 << endl;
1719
1720         setCursor(cur, pit, pos, true, bound);
1721 }
1722
1723
1724 void LyXText::charsTranspose(LCursor & cur)
1725 {
1726         BOOST_ASSERT(this == cur.text());
1727
1728         pos_type pos = cur.pos();
1729
1730         // If cursor is at beginning or end of paragraph, do nothing.
1731         if (pos == cur.lastpos() || pos == 0)
1732                 return;
1733
1734         Paragraph & par = cur.paragraph();
1735
1736         // Get the positions of the characters to be transposed. 
1737         pos_type pos1 = pos - 1;
1738         pos_type pos2 = pos;
1739
1740         // In change tracking mode, ignore deleted characters.
1741         while (pos2 < cur.lastpos() && par.isDeleted(pos2))
1742                 ++pos2;
1743         if (pos2 == cur.lastpos())
1744                 return;
1745
1746         while (pos1 >= 0 && par.isDeleted(pos1))
1747                 --pos1;
1748         if (pos1 < 0)
1749                 return;
1750
1751         // Don't do anything if one of the "characters" is not regular text.
1752         if (par.isInset(pos1) || par.isInset(pos2))
1753                 return;
1754
1755         // Store the characters to be transposed (including font information).
1756         char_type char1 = par.getChar(pos1);
1757         LyXFont const font1 =
1758                 par.getFontSettings(cur.buffer().params(), pos1);
1759         
1760         char_type char2 = par.getChar(pos2);
1761         LyXFont const font2 =
1762                 par.getFontSettings(cur.buffer().params(), pos2);
1763
1764         // And finally, we are ready to perform the transposition.
1765         // Track the changes if Change Tracking is enabled.
1766         bool const trackChanges = cur.buffer().params().trackChanges;
1767
1768         recordUndo(cur);
1769
1770         par.eraseChar(pos2, trackChanges);
1771         par.eraseChar(pos1, trackChanges);
1772         par.insertChar(pos1, char2, font2, trackChanges);
1773         par.insertChar(pos2, char1, font1, trackChanges);
1774
1775         // After the transposition, move cursor to after the transposition.
1776         setCursor(cur, cur.pit(), pos2);
1777         cur.forwardPos();
1778 }
1779
1780
1781 } // namespace lyx