]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_pimpl.C
Alfredo's second patch
[lyx.git] / src / paragraph_pimpl.C
index b9adef80c7bd01c2fe7e017b7a72914ece48d006..f7a3a6425b5a13749f32925d3c041ec011fd7d6a 100644 (file)
@@ -18,6 +18,7 @@
 #include "encoding.h"
 #include "lyxrc.h"
 #include "debug.h"
+#include "paragraph_funcs.h"
 
 #include "support/LAssert.h"
 
@@ -83,12 +84,11 @@ void Paragraph::Pimpl::clear()
 }
 
 
-void Paragraph::Pimpl::setContentsFromPar(Paragraph const * par)
+void Paragraph::Pimpl::setContentsFromPar(Paragraph const & par)
 {
-       lyx::Assert(par);
-       text = par->pimpl_->text;
-       if (par->pimpl_->tracking()) {
-               changes_.reset(new Changes(*(par->pimpl_->changes_.get())));
+       text = par.pimpl_->text;
+       if (par.pimpl_->tracking()) {
+               changes_.reset(new Changes(*(par.pimpl_->changes_.get())));
        }
 }
 
@@ -408,21 +408,17 @@ void Paragraph::Pimpl::erase(pos_type pos)
 }
 
 
-bool Paragraph::Pimpl::erase(pos_type start, pos_type end)
+int Paragraph::Pimpl::erase(pos_type start, pos_type end)
 {
        pos_type i = start;
        pos_type count = end - start;
-       bool any_erased = false;
-
        while (count) {
                if (!erasePos(i)) {
                        ++i;
-               } else {
-                       any_erased = true;
-               }
+               } 
                --count;
        }
-       return any_erased;
+       return end - i;
 }
 
 
@@ -497,6 +493,7 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
                                             LyXFont & font,
                                             LyXFont & running_font,
                                             LyXFont & basefont,
+                                            LyXFont const & outerfont,
                                             bool & open_font,
                                             Change::Type & running_change,
                                             LyXLayout const & style,
@@ -537,7 +534,7 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
                                        column += running_font.latexWriteEndChanges(os, basefont, basefont);
                                        open_font = false;
                                }
-                               basefont = owner_->getLayoutFont(bparams);
+                               basefont = owner_->getLayoutFont(bparams, outerfont);
                                running_font = basefont;
 
                                if (font.family() == LyXFont::TYPEWRITER_FAMILY)
@@ -584,7 +581,7 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
                                                     basefont,
                                                     basefont);
                        open_font = false;
-                       basefont = owner_->getLayoutFont(bparams);
+                       basefont = owner_->getLayoutFont(bparams, outerfont);
                        running_font = basefont;
                }
 
@@ -851,26 +848,3 @@ void Paragraph::Pimpl::validate(LaTeXFeatures & features,
                }
        }
 }
-
-
-LyXFont const Paragraph::Pimpl::realizeFont(LyXFont const & font,
-                                           BufferParams const & bparams) const
-{
-       LyXFont tmpfont(font);
-
-       // check for environment font information
-       char par_depth = owner_->getDepth();
-       Paragraph const * par = owner_;
-       LyXTextClass const & tclass = bparams.getLyXTextClass();
-
-       while (par && par->getDepth() && !tmpfont.resolved()) {
-               par = par->outerHook();
-               if (par) {
-                       tmpfont.realize(par->layout()->font);
-                       par_depth = par->getDepth();
-               }
-       }
-
-       tmpfont.realize(tclass.defaultfont());
-       return tmpfont;
-}