]> git.lyx.org Git - lyx.git/blob - src/paragraph_pimpl.C
63c72b8130f81da839c240eb8eddfb25b7997ec3
[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 #include "LaTeXFeatures.h"
15 #include "texrow.h"
16 #include "language.h"
17 #include "bufferparams.h"
18 #include "encoding.h"
19 #include "lyxrc.h"
20 #include "debug.h"
21
22 #include "support/LAssert.h"
23
24 using lyx::pos_type;
25 using std::endl;
26 using std::ostream;
27 using std::upper_bound;
28 using std::lower_bound;
29
30 // Initialize static member.
31 ShareContainer<LyXFont> Paragraph::Pimpl::FontTable::container;
32 // Initialization of the counter for the paragraph id's,
33 unsigned int Paragraph::Pimpl::paragraph_id = 0;
34
35 namespace {
36
37 struct special_phrase {
38         string phrase;
39         string macro;
40         bool builtin;
41 };
42
43 special_phrase special_phrases[] = {
44         { "LyX", "\\LyX{}", false },
45         { "TeX", "\\TeX{}", true },
46         { "LaTeX2e", "\\LaTeXe{}", true },
47         { "LaTeX", "\\LaTeX{}", true },
48 };
49
50 size_t const phrases_nr = sizeof(special_phrases)/sizeof(special_phrase);
51
52 } // namespace anon
53
54
55 Paragraph::Pimpl::Pimpl(Paragraph * owner)
56         : owner_(owner)
57 {
58         inset_owner = 0;
59         id_ = paragraph_id++;
60 }
61
62
63 Paragraph::Pimpl::Pimpl(Pimpl const & p, Paragraph * owner, bool same_ids)
64         : params(p.params), owner_(owner)
65 {
66         inset_owner = p.inset_owner;
67         text = p.text;
68         fontlist = p.fontlist;
69         if (same_ids)
70                 id_ = p.id_;
71         else
72                 id_ = paragraph_id++;
73
74         if (p.tracking())
75                 changes_.reset(new Changes(*p.changes_.get()));
76 }
77
78
79 void Paragraph::Pimpl::clear()
80 {
81         text.clear();
82 #warning changes ?
83 }
84
85
86 void Paragraph::Pimpl::setContentsFromPar(Paragraph const * par)
87 {
88         lyx::Assert(par);
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         lyx::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         //lyx::Assert(pos <= siz);
256         // This is stronger, and I belive that this is the assertion
257         // that we should really use. (Lgb)
258         lyx::Assert(pos < size());
259
260 #if 0
261         // This is in the critical path for loading!
262         pos_type const siz = size();
263
264         // Then this has no meaning. (Lgb)
265         if (!siz || pos == siz) {
266                 lyxerr << "getChar() on pos " << pos << " in par id "
267                         << owner_->id() << " of size " << siz
268                         << "  is a bit silly !" << endl;
269                 return '\0';
270         }
271 #endif
272         return text[pos];
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         lyx::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                                    Inset * inset, LyXFont const & font, Change change)
322 {
323         lyx::Assert(inset);
324         lyx::Assert(pos <= size());
325
326         insertChar(pos, META_INSET, font, change);
327         lyx::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 bool Paragraph::Pimpl::erasePos(pos_type pos)
339 {
340         lyx::Assert(pos < size());
341
342         if (tracking()) {
343                 Change::Type changetype(changes_->lookup(pos));
344                 changes_->record(Change(Change::DELETED), pos);
345
346                 // only allow the actual removal if it was /new/ text
347                 if (changetype != Change::INSERTED) {
348                         if (text[pos] == Paragraph::META_INSET) {
349                                 Inset * i(owner_->getInset(pos));
350                                 i->markErased();
351                         }
352                         return false;
353                 }
354         }
355
356         eraseIntern(pos);
357         return true;
358 }
359
360
361 void Paragraph::Pimpl::eraseIntern(pos_type pos)
362 {
363         // if it is an inset, delete the inset entry
364         if (text[pos] == Paragraph::META_INSET) {
365                 owner_->insetlist.erase(pos);
366         }
367
368         text.erase(text.begin() + pos);
369
370         // Erase entries in the tables.
371         FontTable search_font(pos, LyXFont());
372
373         FontList::iterator it =
374                 lower_bound(fontlist.begin(),
375                             fontlist.end(),
376                             search_font, matchFT());
377         if (it != fontlist.end() && it->pos() == pos &&
378             (pos == 0 ||
379              (it != fontlist.begin()
380               && boost::prior(it)->pos() == pos - 1))) {
381                 // If it is a multi-character font
382                 // entry, we just make it smaller
383                 // (see update below), otherwise we
384                 // should delete it.
385                 unsigned int const i = it - fontlist.begin();
386                 fontlist.erase(fontlist.begin() + i);
387                 it = fontlist.begin() + i;
388                 if (i > 0 && i < fontlist.size() &&
389                     fontlist[i - 1].font() == fontlist[i].font()) {
390                         fontlist.erase(fontlist.begin() + i - 1);
391                         it = fontlist.begin() + i - 1;
392                 }
393         }
394
395         // Update all other entries.
396         FontList::iterator fend = fontlist.end();
397         for (; it != fend; ++it)
398                 it->pos(it->pos() - 1);
399
400         // Update the insetlist.
401         owner_->insetlist.decreasePosAfterPos(pos);
402 }
403
404
405 void Paragraph::Pimpl::erase(pos_type pos)
406 {
407         erasePos(pos);
408 }
409
410
411 bool Paragraph::Pimpl::erase(pos_type start, pos_type end)
412 {
413         pos_type i = start;
414         pos_type count = end - start;
415         bool any_erased = false;
416
417         while (count) {
418                 if (!erasePos(i)) {
419                         ++i;
420                 } else {
421                         any_erased = true;
422                 }
423                 --count;
424         }
425         return any_erased;
426 }
427
428
429 void Paragraph::Pimpl::simpleTeXBlanks(ostream & os, TexRow & texrow,
430                                        pos_type const i,
431                                        unsigned int & column,
432                                        LyXFont const & font,
433                                        LyXLayout const & style)
434 {
435         if (style.pass_thru) return;
436         if (column > lyxrc.ascii_linelen
437             && i
438             && getChar(i - 1) != ' '
439             && (i < size() - 1)
440             // same in FreeSpacing mode
441             && !style.free_spacing
442                 && !owner_->isFreeSpacing()
443             // In typewriter mode, we want to avoid
444             // ! . ? : at the end of a line
445             && !(font.family() == LyXFont::TYPEWRITER_FAMILY
446                  && (getChar(i - 1) == '.'
447                      || getChar(i - 1) == '?'
448                      || getChar(i - 1) == ':'
449                      || getChar(i - 1) == '!'))) {
450                 os << '\n';
451                 texrow.newline();
452                 texrow.start(owner_, i + 1);
453                 column = 0;
454         } else if (style.free_spacing) {
455                 os << '~';
456         } else {
457                 os << ' ';
458         }
459 }
460
461
462 bool Paragraph::Pimpl::isTextAt(string const & str, pos_type pos) const
463 {
464         pos_type const len = str.length();
465
466         // is the paragraph large enough?
467         if (pos + len > size())
468                 return false;
469
470         // does the wanted text start at point?
471         for (string::size_type i = 0; i < str.length(); ++i) {
472                 if (str[i] != text[pos + i])
473                         return false;
474         }
475
476         // is there a font change in middle of the word?
477         FontList::const_iterator cit = fontlist.begin();
478         FontList::const_iterator end = fontlist.end();
479         for (; cit != end; ++cit) {
480                 if (cit->pos() >= pos)
481                         break;
482         }
483         if (cit != end && pos + len - 1 > cit->pos())
484                 return false;
485
486         return true;
487 }
488
489
490 void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
491                                              BufferParams const & bparams,
492                                              ostream & os,
493                                              TexRow & texrow,
494                                              bool moving_arg,
495                                              LyXFont & font,
496                                              LyXFont & running_font,
497                                              LyXFont & basefont,
498                                              bool & open_font,
499                                              Change::Type & running_change,
500                                              LyXLayout const & style,
501                                              pos_type & i,
502                                              unsigned int & column,
503                                              value_type const c)
504 {
505         if (style.pass_thru) {
506                 if (c != '\0')
507                         os << c;
508                 return;
509         }
510
511         // Two major modes:  LaTeX or plain
512         // Handle here those cases common to both modes
513         // and then split to handle the two modes separately.
514         switch (c) {
515         case Paragraph::META_INSET: {
516                 Inset * inset = owner_->getInset(i);
517
518                 // FIXME: remove this check
519                 if (!inset)
520                         break;
521
522                 // FIXME: move this to InsetNewline::latex
523                 if (inset->lyxCode() == Inset::NEWLINE_CODE) {
524                         // newlines are handled differently here than
525                         // the default in simpleTeXSpecialChars().
526                         if (!style.newline_allowed) {
527                                 os << '\n';
528                         } else {
529                                 if (open_font) {
530                                         column += running_font.latexWriteEndChanges(os, basefont, basefont);
531                                         open_font = false;
532                                 }
533                                 basefont = owner_->getLayoutFont(bparams);
534                                 running_font = basefont;
535
536                                 if (font.family() == LyXFont::TYPEWRITER_FAMILY)
537                                         os << '~';
538
539                                 if (moving_arg)
540                                         os << "\\protect ";
541
542                                 os << "\\\\\n";
543                         }
544                         texrow.newline();
545                         texrow.start(owner_, i + 1);
546                         column = 0;
547                         break;
548                 }
549
550                 if (inset->isTextInset()) {
551                         column += Changes::latexMarkChange(os, running_change,
552                                 Change::UNCHANGED);
553                         running_change = Change::UNCHANGED;
554                 }
555
556                 bool close = false;
557                 int const len = os.tellp();
558                 //ostream::pos_type const len = os.tellp();
559                 if ((inset->lyxCode() == Inset::GRAPHICS_CODE
560                      || inset->lyxCode() == Inset::MATH_CODE
561                      || inset->lyxCode() == Inset::URL_CODE)
562                     && running_font.isRightToLeft()) {
563                         os << "\\L{";
564                         close = true;
565                 }
566
567 #ifdef WITH_WARNINGS
568 #warning Bug: we can have an empty font change here!
569 // if there has just been a font change, we are going to close it
570 // right now, which means stupid latex code like \textsf{}. AFAIK,
571 // this does not harm dvi output. A minor bug, thus (JMarc)
572 #endif
573                 // some insets cannot be inside a font change command
574                 if (open_font && inset->noFontChange()) {
575                         column +=running_font.
576                                 latexWriteEndChanges(os,
577                                                      basefont,
578                                                      basefont);
579                         open_font = false;
580                         basefont = owner_->getLayoutFont(bparams);
581                         running_font = basefont;
582                 }
583
584                 int tmp = inset->latex(buf, os, moving_arg,
585                                        style.free_spacing);
586
587                 if (close)
588                         os << '}';
589
590                 if (tmp) {
591                         for (int j = 0; j < tmp; ++j) {
592                                 texrow.newline();
593                         }
594                         texrow.start(owner_, i + 1);
595                         column = 0;
596                 } else {
597                         column += int(os.tellp()) - len;
598                 }
599         }
600         break;
601
602         default:
603                 // And now for the special cases within each mode
604
605                 switch (c) {
606                 case '\\':
607                         os << "\\textbackslash{}";
608                         column += 15;
609                         break;
610
611                 case '±': case '²': case '³':
612                 case '×': case '÷': case '¹':
613                 case '¬': case 'µ':
614                         if ((bparams.inputenc == "latin1" ||
615                              bparams.inputenc == "latin9") ||
616                             (bparams.inputenc == "auto" &&
617                              (font.language()->encoding()->LatexName()
618                               == "latin1" ||
619                               font.language()->encoding()->LatexName()
620                               == "latin9"))) {
621                                 os << "\\ensuremath{"
622                                    << c
623                                    << '}';
624                                 column += 13;
625                         } else {
626                                 os << c;
627                         }
628                         break;
629
630                 case '|': case '<': case '>':
631                         // In T1 encoding, these characters exist
632                         if (lyxrc.fontenc == "T1") {
633                                 os << c;
634                                 //... but we should avoid ligatures
635                                 if ((c == '>' || c == '<')
636                                     && i <= size() - 2
637                                     && getChar(i + 1) == c) {
638                                         //os << "\\textcompwordmark{}";
639                                         // Jean-Marc, have a look at
640                                         // this. I think this works
641                                         // equally well:
642                                         os << "\\,{}";
643                                         // Lgb
644                                         column += 19;
645                                 }
646                                 break;
647                         }
648                         // Typewriter font also has them
649                         if (font.family() == LyXFont::TYPEWRITER_FAMILY) {
650                                 os << c;
651                                 break;
652                         }
653                         // Otherwise, we use what LaTeX
654                         // provides us.
655                         switch (c) {
656                         case '<':
657                                 os << "\\textless{}";
658                                 column += 10;
659                                 break;
660                         case '>':
661                                 os << "\\textgreater{}";
662                                 column += 13;
663                                 break;
664                         case '|':
665                                 os << "\\textbar{}";
666                                 column += 9;
667                                 break;
668                         }
669                         break;
670
671                 case '-': // "--" in Typewriter mode -> "-{}-"
672                         if (i <= size() - 2
673                             && getChar(i + 1) == '-'
674                             && font.family() == LyXFont::TYPEWRITER_FAMILY) {
675                                 os << "-{}";
676                                 column += 2;
677                         } else {
678                                 os << '-';
679                         }
680                         break;
681
682                 case '\"':
683                         os << "\\char`\\\"{}";
684                         column += 9;
685                         break;
686
687                 case '£':
688                         if (bparams.inputenc == "default") {
689                                 os << "\\pounds{}";
690                                 column += 8;
691                         } else {
692                                 os << c;
693                         }
694                         break;
695
696                 case '$': case '&':
697                 case '%': case '#': case '{':
698                 case '}': case '_':
699                         os << '\\' << c;
700                         column += 1;
701                         break;
702
703                 case '~':
704                         os << "\\textasciitilde{}";
705                         column += 16;
706                         break;
707
708                 case '^':
709                         os << "\\textasciicircum{}";
710                         column += 17;
711                         break;
712
713                 case '*': case '[': case ']':
714                         // avoid being mistaken for optional arguments
715                         os << '{' << c << '}';
716                         column += 2;
717                         break;
718
719                 case ' ':
720                         // Blanks are printed before font switching.
721                         // Sure? I am not! (try nice-latex)
722                         // I am sure it's correct. LyX might be smarter
723                         // in the future, but for now, nothing wrong is
724                         // written. (Asger)
725                         break;
726
727                 default:
728
729                         // I assume this is hack treating typewriter as verbatim
730                         if (font.family() == LyXFont::TYPEWRITER_FAMILY) {
731                                 if (c != '\0') {
732                                         os << c;
733                                 }
734                                 break;
735                         }
736
737                         // LyX, LaTeX etc.
738
739                         // FIXME: if we have "LaTeX" with a font
740                         // change in the middle (before the 'T', then
741                         // the "TeX" part is still special cased.
742                         // Really we should only operate this on
743                         // "words" for some definition of word
744
745                         size_t pnr = 0;
746
747                         for (; pnr < phrases_nr; ++pnr) {
748                                 if (isTextAt(special_phrases[pnr].phrase, i)) {
749                                         os << special_phrases[pnr].macro;
750                                         i += special_phrases[pnr].phrase.length() - 1;
751                                         column += special_phrases[pnr].macro.length() - 1;
752                                         break;
753                                 }
754                         }
755
756                         if (pnr == phrases_nr && c != '\0') {
757                                 os << c;
758                         }
759                         break;
760                 }
761         }
762 }
763
764
765 void Paragraph::Pimpl::validate(LaTeXFeatures & features,
766                                 LyXLayout const & layout) const
767 {
768         BufferParams const & bparams = features.bufferParams();
769
770         // check the params.
771         if (params.lineTop() || params.lineBottom())
772                 features.require("lyxline");
773         if (!params.spacing().isDefault())
774                 features.require("setspace");
775
776         // then the layouts
777         features.useLayout(layout.name());
778
779         // then the fonts
780         Language const * doc_language = bparams.language;
781
782         FontList::const_iterator fcit = fontlist.begin();
783         FontList::const_iterator fend = fontlist.end();
784         for (; fcit != fend; ++fcit) {
785                 if (fcit->font().noun() == LyXFont::ON) {
786                         lyxerr[Debug::LATEX] << "font.noun: "
787                                              << fcit->font().noun()
788                                              << endl;
789                         features.require("noun");
790                         lyxerr[Debug::LATEX] << "Noun enabled. Font: "
791                                              << fcit->font().stateText(0)
792                                              << endl;
793                 }
794                 switch (fcit->font().color()) {
795                 case LColor::none:
796                 case LColor::inherit:
797                 case LColor::ignore:
798                         // probably we should put here all interface colors used for
799                         // font displaying! For now I just add this ones I know of (Jug)
800                 case LColor::latex:
801                 case LColor::note:
802                         break;
803                 default:
804                         features.require("color");
805                         lyxerr[Debug::LATEX] << "Color enabled. Font: "
806                                              << fcit->font().stateText(0)
807                                              << endl;
808                 }
809
810                 Language const * language = fcit->font().language();
811                 if (language->babel() != doc_language->babel() &&
812                     language != ignore_language &&
813                     language != latex_language)
814                 {
815                         features.useLanguage(language);
816                         lyxerr[Debug::LATEX] << "Found language "
817                                              << language->babel() << endl;
818                 }
819         }
820
821         if (!params.leftIndent().zero())
822                 features.require("ParagraphLeftIndent");
823
824         // then the insets
825         InsetList::iterator icit = owner_->insetlist.begin();
826         InsetList::iterator iend = owner_->insetlist.end();
827         for (; icit != iend; ++icit) {
828                 if (icit.getInset()) {
829                         icit.getInset()->validate(features);
830                         if (layout.needprotect &&
831                             icit.getInset()->lyxCode() == Inset::FOOT_CODE)
832                                 features.require("NeedLyXFootnoteCode");
833                 }
834         }
835
836         // then the contents
837         for (pos_type i = 0; i < size() ; ++i) {
838                 for (size_t pnr = 0; pnr < phrases_nr; ++pnr) {
839                         if (!special_phrases[pnr].builtin
840                             && isTextAt(special_phrases[pnr].phrase, i)) {
841                                 features.require(special_phrases[pnr].phrase);
842                                 break;
843                         }
844                 }
845         }
846 }
847
848
849 LyXFont const Paragraph::Pimpl::realizeFont(LyXFont const & font,
850                                             BufferParams const & bparams) const
851 {
852         LyXFont tmpfont(font);
853
854         // check for environment font information
855         char par_depth = owner_->getDepth();
856         Paragraph const * par = owner_;
857         LyXTextClass const & tclass = bparams.getLyXTextClass();
858
859         while (par && par->getDepth() && !tmpfont.resolved()) {
860                 par = par->outerHook();
861                 if (par) {
862                         tmpfont.realize(par->layout()->font);
863                         par_depth = par->getDepth();
864                 }
865         }
866
867         tmpfont.realize(tclass.defaultfont());
868         return tmpfont;
869 }