]> git.lyx.org Git - lyx.git/blob - src/paragraph_pimpl.C
cosmetic fix
[lyx.git] / src / paragraph_pimpl.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #include "paragraph_pimpl.h"
14
15 #include "bufferparams.h"
16 #include "debug.h"
17 #include "encoding.h"
18 #include "language.h"
19 #include "LaTeXFeatures.h"
20 #include "latexrunparams.h"
21 #include "lyxrc.h"
22 #include "paragraph_funcs.h"
23 #include "texrow.h"
24
25 #include "support/LAssert.h"
26
27 using namespace lyx::support;
28 using lyx::pos_type;
29 using std::endl;
30 using std::ostream;
31 using std::upper_bound;
32 using std::lower_bound;
33
34 // Initialize static member.
35 ShareContainer<LyXFont> Paragraph::Pimpl::FontTable::container;
36 // Initialization of the counter for the paragraph id's,
37 unsigned int Paragraph::Pimpl::paragraph_id = 0;
38
39 namespace {
40
41 struct special_phrase {
42         string phrase;
43         string macro;
44         bool builtin;
45 };
46
47 special_phrase special_phrases[] = {
48         { "LyX", "\\LyX{}", false },
49         { "TeX", "\\TeX{}", true },
50         { "LaTeX2e", "\\LaTeXe{}", true },
51         { "LaTeX", "\\LaTeX{}", true },
52 };
53
54 size_t const phrases_nr = sizeof(special_phrases)/sizeof(special_phrase);
55
56 } // namespace anon
57
58
59 Paragraph::Pimpl::Pimpl(Paragraph * owner)
60         : owner_(owner)
61 {
62         inset_owner = 0;
63         id_ = paragraph_id++;
64 }
65
66
67 Paragraph::Pimpl::Pimpl(Pimpl const & p, Paragraph * owner)
68         : params(p.params), owner_(owner)
69 {
70         inset_owner = p.inset_owner;
71         text = p.text;
72         fontlist = p.fontlist;
73         id_ = paragraph_id++;
74
75         if (p.tracking())
76                 changes_.reset(new Changes(*p.changes_.get()));
77 }
78
79
80 void Paragraph::Pimpl::clear()
81 {
82         text.clear();
83 #warning changes ?
84 }
85
86
87 void Paragraph::Pimpl::setContentsFromPar(Paragraph const & par)
88 {
89         text = par.pimpl_->text;
90         if (par.pimpl_->tracking()) {
91                 changes_.reset(new Changes(*(par.pimpl_->changes_.get())));
92         }
93 }
94
95
96 void Paragraph::Pimpl::trackChanges(Change::Type type)
97 {
98         if (tracking()) {
99                 lyxerr[Debug::CHANGES] << "already tracking for par " << id_ << endl;
100                 return;
101         }
102
103         lyxerr[Debug::CHANGES] << "track changes for par "
104                 << id_ << " type " << type << endl;
105         changes_.reset(new Changes(type));
106         changes_->set(type, 0, size());
107 }
108
109
110 void Paragraph::Pimpl::untrackChanges()
111 {
112         changes_.reset(0);
113 }
114
115
116 void Paragraph::Pimpl::cleanChanges()
117 {
118         // if we're not tracking, we don't want to reset...
119         if (!tracking())
120                 return;
121
122         changes_.reset(new Changes(Change::INSERTED));
123         changes_->set(Change::INSERTED, 0, size());
124 }
125
126
127 bool Paragraph::Pimpl::isChanged(pos_type start, pos_type end) const
128 {
129         if (!tracking())
130                 return false;
131
132         return changes_->isChange(start, end);
133 }
134
135
136 bool Paragraph::Pimpl::isChangeEdited(pos_type start, pos_type end) const
137 {
138         if (!tracking())
139                 return false;
140
141         return changes_->isChangeEdited(start, end);
142 }
143
144
145 void Paragraph::Pimpl::setChange(pos_type pos, Change::Type type)
146 {
147         if (!tracking())
148                 return;
149
150         changes_->set(type, pos);
151 }
152
153
154 Change::Type Paragraph::Pimpl::lookupChange(pos_type pos) const
155 {
156         if (!tracking())
157                 return Change::UNCHANGED;
158
159         return changes_->lookup(pos);
160 }
161
162
163 Change const Paragraph::Pimpl::lookupChangeFull(pos_type pos) const
164 {
165         if (!tracking())
166                 return Change(Change::UNCHANGED);
167
168         return changes_->lookupFull(pos);
169 }
170
171
172 void Paragraph::Pimpl::markErased()
173 {
174         Assert(tracking());
175
176         // FIXME: we should actually remove INSERTED chars.
177         // difficult because owning insettexts/tabulars need
178         // to update themselves when rows etc. change
179         changes_->set(Change::DELETED, 0, size());
180         changes_->reset(Change::DELETED);
181 }
182
183
184 void Paragraph::Pimpl::acceptChange(pos_type start, pos_type end)
185 {
186         if (!tracking())
187                 return;
188
189         if (!size()) {
190                 changes_.reset(new Changes(Change::UNCHANGED));
191                 return;
192         }
193
194         lyxerr << "acceptchange" << endl;
195         pos_type i = start;
196
197         for (; i < end; ++i) {
198                 switch (lookupChange(i)) {
199                         case Change::UNCHANGED:
200                                 break;
201
202                         case Change::INSERTED:
203                                 changes_->set(Change::UNCHANGED, i);
204                                 break;
205
206                         case Change::DELETED:
207                                 eraseIntern(i);
208                                 changes_->erase(i);
209                                 --end;
210                                 --i;
211                                 break;
212                 }
213         }
214
215         lyxerr << "endacceptchange" << endl;
216         changes_->reset(Change::UNCHANGED);
217 }
218
219
220 void Paragraph::Pimpl::rejectChange(pos_type start, pos_type end)
221 {
222         if (!tracking())
223                 return;
224
225         if (!size()) {
226                 changes_.reset(new Changes(Change::UNCHANGED));
227                 return;
228         }
229
230         pos_type i = start;
231
232         for (; i < end; ++i) {
233                 switch (lookupChange(i)) {
234                         case Change::UNCHANGED:
235                                 break;
236
237                         case Change::INSERTED:
238                                 eraseIntern(i);
239                                 changes_->erase(i);
240                                 --end;
241                                 --i;
242                                 break;
243
244                         case Change::DELETED:
245                                 changes_->set(Change::UNCHANGED, i);
246                                 break;
247                 }
248         }
249         changes_->reset(Change::UNCHANGED);
250 }
251
252
253 Paragraph::value_type Paragraph::Pimpl::getChar(pos_type pos) const
254 {
255 #if 1
256         // This is in the critical path for loading!
257         pos_type const siz = size();
258
259         Assert(pos <= siz);
260
261         if (pos == siz) {
262                 lyxerr << "getChar() on pos " << pos << " in par id "
263                        << owner_->id() << " of size " << siz
264                        << "  is a bit silly !" << endl;
265                 return '\0';
266         }
267
268         return text[pos];
269 #else
270         Assert(pos < size());
271         return text[pos];
272 #endif
273 }
274
275
276 void Paragraph::Pimpl::setChar(pos_type pos, value_type c)
277 {
278 #warning changes
279         text[pos] = c;
280 }
281
282
283 void Paragraph::Pimpl::insertChar(pos_type pos, value_type c,
284                                   LyXFont const & font, Change change)
285 {
286         Assert(pos <= size());
287
288         if (tracking()) {
289                 changes_->record(change, pos);
290         }
291
292         // This is actually very common when parsing buffers (and
293         // maybe inserting ascii text)
294         if (pos == size()) {
295                 // when appending characters, no need to update tables
296                 text.push_back(c);
297                 owner_->setFont(pos, font);
298                 return;
299         }
300
301         text.insert(text.begin() + pos, c);
302
303         // Update the font table.
304         FontTable search_font(pos, LyXFont());
305         for (FontList::iterator it = lower_bound(fontlist.begin(),
306                                                       fontlist.end(),
307                                                       search_font, matchFT());
308              it != fontlist.end(); ++it)
309         {
310                 it->pos(it->pos() + 1);
311         }
312
313         // Update the insets
314         owner_->insetlist.increasePosAfterPos(pos);
315
316         owner_->setFont(pos, font);
317 }
318
319
320 void Paragraph::Pimpl::insertInset(pos_type pos,
321                                    InsetOld * inset, LyXFont const & font, Change change)
322 {
323         Assert(inset);
324         Assert(pos <= size());
325
326         insertChar(pos, META_INSET, font, change);
327         Assert(text[pos] == META_INSET);
328
329         // Add a new entry in the insetlist.
330         owner_->insetlist.insert(inset, pos);
331         inset->parOwner(owner_);
332
333         if (inset_owner)
334                 inset->setOwner(inset_owner);
335 }
336
337
338 void Paragraph::Pimpl::eraseIntern(pos_type pos)
339 {
340         // if it is an inset, delete the inset entry
341         if (text[pos] == Paragraph::META_INSET) {
342                 owner_->insetlist.erase(pos);
343         }
344
345         text.erase(text.begin() + pos);
346
347         // Erase entries in the tables.
348         FontTable search_font(pos, LyXFont());
349
350         FontList::iterator it =
351                 lower_bound(fontlist.begin(),
352                             fontlist.end(),
353                             search_font, matchFT());
354         if (it != fontlist.end() && it->pos() == pos &&
355             (pos == 0 ||
356              (it != fontlist.begin()
357               && boost::prior(it)->pos() == pos - 1))) {
358                 // If it is a multi-character font
359                 // entry, we just make it smaller
360                 // (see update below), otherwise we
361                 // should delete it.
362                 unsigned int const i = it - fontlist.begin();
363                 fontlist.erase(fontlist.begin() + i);
364                 it = fontlist.begin() + i;
365                 if (i > 0 && i < fontlist.size() &&
366                     fontlist[i - 1].font() == fontlist[i].font()) {
367                         fontlist.erase(fontlist.begin() + i - 1);
368                         it = fontlist.begin() + i - 1;
369                 }
370         }
371
372         // Update all other entries.
373         FontList::iterator fend = fontlist.end();
374         for (; it != fend; ++it)
375                 it->pos(it->pos() - 1);
376
377         // Update the insetlist.
378         owner_->insetlist.decreasePosAfterPos(pos);
379 }
380
381
382 bool Paragraph::Pimpl::erase(pos_type pos)
383 {
384         Assert(pos < size());
385
386         if (tracking()) {
387                 Change::Type changetype(changes_->lookup(pos));
388                 changes_->record(Change(Change::DELETED), pos);
389
390                 // only allow the actual removal if it was /new/ text
391                 if (changetype != Change::INSERTED) {
392                         if (text[pos] == Paragraph::META_INSET) {
393                                 InsetOld * i(owner_->getInset(pos));
394                                 i->markErased();
395                         }
396                         return false;
397                 }
398         }
399
400         eraseIntern(pos);
401         return true;
402 }
403
404
405 int Paragraph::Pimpl::erase(pos_type start, pos_type end)
406 {
407         pos_type i = start;
408         pos_type count = end - start;
409         while (count) {
410                 if (!erase(i)) {
411                         ++i;
412                 }
413                 --count;
414         }
415         return end - i;
416 }
417
418
419 void Paragraph::Pimpl::simpleTeXBlanks(ostream & os, TexRow & texrow,
420                                        pos_type const i,
421                                        unsigned int & column,
422                                        LyXFont const & font,
423                                        LyXLayout const & style)
424 {
425         if (style.pass_thru)
426                 return;
427
428         if (column > lyxrc.ascii_linelen
429             && i
430             && getChar(i - 1) != ' '
431             && (i < size() - 1)
432             // same in FreeSpacing mode
433             && !owner_->isFreeSpacing()
434             // In typewriter mode, we want to avoid
435             // ! . ? : at the end of a line
436             && !(font.family() == LyXFont::TYPEWRITER_FAMILY
437                  && (getChar(i - 1) == '.'
438                      || getChar(i - 1) == '?'
439                      || getChar(i - 1) == ':'
440                      || getChar(i - 1) == '!'))) {
441                 os << '\n';
442                 texrow.newline();
443                 texrow.start(owner_->id(), i + 1);
444                 column = 0;
445         } else if (style.free_spacing) {
446                 os << '~';
447         } else {
448                 os << ' ';
449         }
450 }
451
452
453 bool Paragraph::Pimpl::isTextAt(string const & str, pos_type pos) const
454 {
455         pos_type const len = str.length();
456
457         // is the paragraph large enough?
458         if (pos + len > size())
459                 return false;
460
461         // does the wanted text start at point?
462         for (string::size_type i = 0; i < str.length(); ++i) {
463                 if (str[i] != text[pos + i])
464                         return false;
465         }
466
467         // is there a font change in middle of the word?
468         FontList::const_iterator cit = fontlist.begin();
469         FontList::const_iterator end = fontlist.end();
470         for (; cit != end; ++cit) {
471                 if (cit->pos() >= pos)
472                         break;
473         }
474         if (cit != end && pos + len - 1 > cit->pos())
475                 return false;
476
477         return true;
478 }
479
480
481 void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
482                                              BufferParams const & bparams,
483                                              ostream & os,
484                                              TexRow & texrow,
485                                              LatexRunParams const & runparams,
486                                              LyXFont & font,
487                                              LyXFont & running_font,
488                                              LyXFont & basefont,
489                                              LyXFont const & outerfont,
490                                              bool & open_font,
491                                              Change::Type & running_change,
492                                              LyXLayout const & style,
493                                              pos_type & i,
494                                              unsigned int & column,
495                                              value_type const c)
496 {
497         if (style.pass_thru) {
498                 if (c != Paragraph::META_INSET) {
499                         if (c != '\0')
500                                 os << c;
501                 } else {
502                         InsetOld const * inset = owner_->getInset(i);
503                         inset->ascii(buf, os, 0);
504                 }
505                 return;
506         }
507
508         // Two major modes:  LaTeX or plain
509         // Handle here those cases common to both modes
510         // and then split to handle the two modes separately.
511         switch (c) {
512         case Paragraph::META_INSET: {
513                 InsetOld * inset = owner_->getInset(i);
514
515                 // FIXME: remove this check
516                 if (!inset)
517                         break;
518
519                 // FIXME: move this to InsetNewline::latex
520                 if (inset->lyxCode() == InsetOld::NEWLINE_CODE) {
521                         // newlines are handled differently here than
522                         // the default in simpleTeXSpecialChars().
523                         if (!style.newline_allowed) {
524                                 os << '\n';
525                         } else {
526                                 if (open_font) {
527                                         column += running_font.latexWriteEndChanges(os, basefont, basefont);
528                                         open_font = false;
529                                 }
530                                 basefont = owner_->getLayoutFont(bparams, outerfont);
531                                 running_font = basefont;
532
533                                 if (font.family() == LyXFont::TYPEWRITER_FAMILY)
534                                         os << '~';
535
536                                 if (runparams.moving_arg)
537                                         os << "\\protect ";
538
539                                 os << "\\\\\n";
540                         }
541                         texrow.newline();
542                         texrow.start(owner_->id(), i + 1);
543                         column = 0;
544                         break;
545                 }
546
547                 if (inset->isTextInset()) {
548                         column += Changes::latexMarkChange(os, running_change,
549                                 Change::UNCHANGED);
550                         running_change = Change::UNCHANGED;
551                 }
552
553                 bool close = false;
554                 int const len = os.tellp();
555                 //ostream::pos_type const len = os.tellp();
556                 if ((inset->lyxCode() == InsetOld::GRAPHICS_CODE
557                      || inset->lyxCode() == InsetOld::MATH_CODE
558                      || inset->lyxCode() == InsetOld::URL_CODE)
559                     && running_font.isRightToLeft()) {
560                         os << "\\L{";
561                         close = true;
562                 }
563
564 #ifdef WITH_WARNINGS
565 #warning Bug: we can have an empty font change here!
566 // if there has just been a font change, we are going to close it
567 // right now, which means stupid latex code like \textsf{}. AFAIK,
568 // this does not harm dvi output. A minor bug, thus (JMarc)
569 #endif
570                 // some insets cannot be inside a font change command
571                 if (open_font && inset->noFontChange()) {
572                         column +=running_font.
573                                 latexWriteEndChanges(os,
574                                                      basefont,
575                                                      basefont);
576                         open_font = false;
577                         basefont = owner_->getLayoutFont(bparams, outerfont);
578                         running_font = basefont;
579                 }
580
581                 int tmp = inset->latex(buf, os, runparams);
582
583                 if (close)
584                         os << '}';
585
586                 if (tmp) {
587                         for (int j = 0; j < tmp; ++j) {
588                                 texrow.newline();
589                         }
590                         texrow.start(owner_->id(), i + 1);
591                         column = 0;
592                 } else {
593                         column += int(os.tellp()) - len;
594                 }
595         }
596         break;
597
598         default:
599                 // And now for the special cases within each mode
600
601                 switch (c) {
602                 case '\\':
603                         os << "\\textbackslash{}";
604                         column += 15;
605                         break;
606
607                 case '±': case '²': case '³':
608                 case '×': case '÷': case '¹':
609                 case '¬': case 'µ':
610                         if ((bparams.inputenc == "latin1" ||
611                              bparams.inputenc == "latin9") ||
612                             (bparams.inputenc == "auto" &&
613                              (font.language()->encoding()->LatexName()
614                               == "latin1" ||
615                               font.language()->encoding()->LatexName()
616                               == "latin9"))) {
617                                 os << "\\ensuremath{"
618                                    << c
619                                    << '}';
620                                 column += 13;
621                         } else {
622                                 os << c;
623                         }
624                         break;
625
626                 case '|': case '<': case '>':
627                         // In T1 encoding, these characters exist
628                         if (lyxrc.fontenc == "T1") {
629                                 os << c;
630                                 //... but we should avoid ligatures
631                                 if ((c == '>' || c == '<')
632                                     && i <= size() - 2
633                                     && getChar(i + 1) == c) {
634                                         //os << "\\textcompwordmark{}";
635                                         // Jean-Marc, have a look at
636                                         // this. I think this works
637                                         // equally well:
638                                         os << "\\,{}";
639                                         // Lgb
640                                         column += 19;
641                                 }
642                                 break;
643                         }
644                         // Typewriter font also has them
645                         if (font.family() == LyXFont::TYPEWRITER_FAMILY) {
646                                 os << c;
647                                 break;
648                         }
649                         // Otherwise, we use what LaTeX
650                         // provides us.
651                         switch (c) {
652                         case '<':
653                                 os << "\\textless{}";
654                                 column += 10;
655                                 break;
656                         case '>':
657                                 os << "\\textgreater{}";
658                                 column += 13;
659                                 break;
660                         case '|':
661                                 os << "\\textbar{}";
662                                 column += 9;
663                                 break;
664                         }
665                         break;
666
667                 case '-': // "--" in Typewriter mode -> "-{}-"
668                         if (i <= size() - 2
669                             && getChar(i + 1) == '-'
670                             && font.family() == LyXFont::TYPEWRITER_FAMILY) {
671                                 os << "-{}";
672                                 column += 2;
673                         } else {
674                                 os << '-';
675                         }
676                         break;
677
678                 case '\"':
679                         os << "\\char`\\\"{}";
680                         column += 9;
681                         break;
682
683                 case '£':
684                         if (bparams.inputenc == "default") {
685                                 os << "\\pounds{}";
686                                 column += 8;
687                         } else {
688                                 os << c;
689                         }
690                         break;
691
692                 case '$': case '&':
693                 case '%': case '#': case '{':
694                 case '}': case '_':
695                         os << '\\' << c;
696                         column += 1;
697                         break;
698
699                 case '~':
700                         os << "\\textasciitilde{}";
701                         column += 16;
702                         break;
703
704                 case '^':
705                         os << "\\textasciicircum{}";
706                         column += 17;
707                         break;
708
709                 case '*': case '[': case ']':
710                         // avoid being mistaken for optional arguments
711                         os << '{' << c << '}';
712                         column += 2;
713                         break;
714
715                 case ' ':
716                         // Blanks are printed before font switching.
717                         // Sure? I am not! (try nice-latex)
718                         // I am sure it's correct. LyX might be smarter
719                         // in the future, but for now, nothing wrong is
720                         // written. (Asger)
721                         break;
722
723                 default:
724
725                         // I assume this is hack treating typewriter as verbatim
726                         if (font.family() == LyXFont::TYPEWRITER_FAMILY) {
727                                 if (c != '\0') {
728                                         os << c;
729                                 }
730                                 break;
731                         }
732
733                         // LyX, LaTeX etc.
734
735                         // FIXME: if we have "LaTeX" with a font
736                         // change in the middle (before the 'T', then
737                         // the "TeX" part is still special cased.
738                         // Really we should only operate this on
739                         // "words" for some definition of word
740
741                         size_t pnr = 0;
742
743                         for (; pnr < phrases_nr; ++pnr) {
744                                 if (isTextAt(special_phrases[pnr].phrase, i)) {
745                                         os << special_phrases[pnr].macro;
746                                         i += special_phrases[pnr].phrase.length() - 1;
747                                         column += special_phrases[pnr].macro.length() - 1;
748                                         break;
749                                 }
750                         }
751
752                         if (pnr == phrases_nr && c != '\0') {
753                                 os << c;
754                         }
755                         break;
756                 }
757         }
758 }
759
760
761 void Paragraph::Pimpl::validate(LaTeXFeatures & features,
762                                 LyXLayout const & layout) const
763 {
764         BufferParams const & bparams = features.bufferParams();
765
766         // check the params.
767         if (params.lineTop() || params.lineBottom())
768                 features.require("lyxline");
769         if (!params.spacing().isDefault())
770                 features.require("setspace");
771
772         // then the layouts
773         features.useLayout(layout.name());
774
775         // then the fonts
776         Language const * doc_language = bparams.language;
777
778         FontList::const_iterator fcit = fontlist.begin();
779         FontList::const_iterator fend = fontlist.end();
780         for (; fcit != fend; ++fcit) {
781                 if (fcit->font().noun() == LyXFont::ON) {
782                         lyxerr[Debug::LATEX] << "font.noun: "
783                                              << fcit->font().noun()
784                                              << endl;
785                         features.require("noun");
786                         lyxerr[Debug::LATEX] << "Noun enabled. Font: "
787                                              << fcit->font().stateText(0)
788                                              << endl;
789                 }
790                 switch (fcit->font().color()) {
791                 case LColor::none:
792                 case LColor::inherit:
793                 case LColor::ignore:
794                         // probably we should put here all interface colors used for
795                         // font displaying! For now I just add this ones I know of (Jug)
796                 case LColor::latex:
797                 case LColor::note:
798                         break;
799                 default:
800                         features.require("color");
801                         lyxerr[Debug::LATEX] << "Color enabled. Font: "
802                                              << fcit->font().stateText(0)
803                                              << endl;
804                 }
805
806                 Language const * language = fcit->font().language();
807                 if (language->babel() != doc_language->babel() &&
808                     language != ignore_language &&
809                     language != latex_language)
810                 {
811                         features.useLanguage(language);
812                         lyxerr[Debug::LATEX] << "Found language "
813                                              << language->babel() << endl;
814                 }
815         }
816
817         if (!params.leftIndent().zero())
818                 features.require("ParagraphLeftIndent");
819
820         // then the insets
821         InsetList::iterator icit = owner_->insetlist.begin();
822         InsetList::iterator iend = owner_->insetlist.end();
823         for (; icit != iend; ++icit) {
824                 if (icit->inset) {
825                         icit->inset->validate(features);
826                         if (layout.needprotect &&
827                             icit->inset->lyxCode() == InsetOld::FOOT_CODE)
828                                 features.require("NeedLyXFootnoteCode");
829                 }
830         }
831
832         // then the contents
833         for (pos_type i = 0; i < size() ; ++i) {
834                 for (size_t pnr = 0; pnr < phrases_nr; ++pnr) {
835                         if (!special_phrases[pnr].builtin
836                             && isTextAt(special_phrases[pnr].phrase, i)) {
837                                 features.require(special_phrases[pnr].phrase);
838                                 break;
839                         }
840                 }
841         }
842 }