]> git.lyx.org Git - lyx.git/blobdiff - src/Paragraph.cpp
do what the FIXME suggested
[lyx.git] / src / Paragraph.cpp
index 5d773ee34c48a916da1498ff866273f017253d8c..d51aa8a12924b1a9556fdd33c4d128281c94c357 100644 (file)
@@ -39,7 +39,9 @@
 #include "sgml.h"
 #include "TextClass.h"
 #include "TexRow.h"
+#include "Text.h"
 #include "VSpace.h"
+#include "WordList.h"
 
 #include "frontends/alert.h"
 
@@ -113,7 +115,7 @@ public:
                            bool) const;
 
        ///
-       void latexInset(Buffer const &, BufferParams const &,
+       void latexInset(BufferParams const &,
                                   odocstream &,
                                   TexRow & texrow, OutputParams &,
                                   Font & running_font,
@@ -196,6 +198,10 @@ public:
        typedef docstring TextContainer;
        ///
        TextContainer text_;
+       
+       typedef std::set<docstring> Words;
+       ///
+       Words words_;
 };
 
 
@@ -233,7 +239,8 @@ Paragraph::Private::Private(Paragraph * owner)
 Paragraph::Private::Private(Private const & p, Paragraph * owner)
        : owner_(owner), inset_owner_(p.inset_owner_), fontlist_(p.fontlist_), 
          params_(p.params_), changes_(p.changes_), insetlist_(p.insetlist_),
-         layout_(p.layout_), begin_of_body_(p.begin_of_body_), text_(p.text_)
+         layout_(p.layout_), begin_of_body_(p.begin_of_body_), text_(p.text_),
+         words_(p.words_)
 {
        id_ = paragraph_id++;
 }
@@ -625,7 +632,7 @@ bool Paragraph::Private::isTextAt(string const & str, pos_type pos) const
 }
 
 
-void Paragraph::Private::latexInset(Buffer const & buf,
+void Paragraph::Private::latexInset(
                                             BufferParams const & bparams,
                                             odocstream & os,
                                             TexRow & texrow,
@@ -643,7 +650,7 @@ void Paragraph::Private::latexInset(Buffer const & buf,
        BOOST_ASSERT(inset);
 
        if (style.pass_thru) {
-               inset->plaintext(buf, os, runparams);
+               inset->plaintext(os, runparams);
                return;
        }
 
@@ -736,7 +743,7 @@ void Paragraph::Private::latexInset(Buffer const & buf,
                }
        }
 
-       int tmp = inset->latex(buf, os, runparams);
+       int tmp = inset->latex(os, runparams);
 
        if (close) {
        if (running_font.language()->lang() == "farsi")
@@ -1039,6 +1046,7 @@ Paragraph::Paragraph(Paragraph const & par)
        : itemdepth(par.itemdepth),
        d(new Paragraph::Private(*par.d, this))
 {
+       registerWords();
 }
 
 
@@ -1048,8 +1056,10 @@ Paragraph & Paragraph::operator=(Paragraph const & par)
        if (&par != this) {
                itemdepth = par.itemdepth;
 
+               deregisterWords();
                delete d;
                d = new Private(*par.d, this);
+               registerWords();
        }
        return *this;
 }
@@ -1057,13 +1067,13 @@ Paragraph & Paragraph::operator=(Paragraph const & par)
 
 Paragraph::~Paragraph()
 {
+       deregisterWords();
        delete d;
 }
 
 
-void Paragraph::write(Buffer const & buf, ostream & os,
-                         BufferParams const & bparams,
-                         depth_type & dth) const
+void Paragraph::write(ostream & os, BufferParams const & bparams,
+       depth_type & dth) const
 {
        // The beginning or end of a deeper (i.e. nested) area?
        if (dth != d->params_.depth()) {
@@ -1115,12 +1125,12 @@ void Paragraph::write(Buffer const & buf, ostream & os,
                                        // international char, let it write
                                        // code directly so it's shorter in
                                        // the file
-                                       inset->write(buf, os);
+                                       inset->write(os);
                                } else {
                                        if (i)
                                                os << '\n';
                                        os << "\\begin_inset ";
-                                       inset->write(buf, os);
+                                       inset->write(os);
                                        os << "\n\\end_inset\n\n";
                                        column = 0;
                                }
@@ -1512,7 +1522,7 @@ docstring const Paragraph::translateIfPossible(docstring const & s,
 docstring Paragraph::expandLabel(LayoutPtr const & layout,
                BufferParams const & bparams, bool process_appendix) const
 {
-       TextClass const & tclass = bparams.textClass();
+       DocumentClass const & tclass = bparams.documentClass();
 
        docstring fmt;
        if (process_appendix && d->params_.appendix())
@@ -1798,8 +1808,7 @@ int Paragraph::Private::endTeXParParams(BufferParams const & bparams,
 
 
 // This one spits out the text of the paragraph
-bool Paragraph::latex(Buffer const & buf,
-                               BufferParams const & bparams,
+bool Paragraph::latex(BufferParams const & bparams,
                                Font const & outerfont,
                                odocstream & os, TexRow & texrow,
                                OutputParams const & runparams) const
@@ -1818,7 +1827,7 @@ bool Paragraph::latex(Buffer const & buf,
        bool asdefault = forceEmptyLayout();
 
        if (asdefault)
-               style = bparams.textClass().defaultLayout();
+               style = bparams.documentClass().emptyLayout();
         else
                style = d->layout_;
 
@@ -2010,7 +2019,7 @@ bool Paragraph::latex(Buffer const & buf,
                // Handle here those cases common to both modes
                // and then split to handle the two modes separately.
                if (c == META_INSET)
-                       d->latexInset(buf, bparams, os,
+                       d->latexInset(bparams, os,
                                        texrow, rp, running_font,
                                        basefont, outerfont, open_font,
                                        runningChange, *style, i, column);
@@ -2101,7 +2110,8 @@ bool Paragraph::emptyTag() const
 }
 
 
-string Paragraph::getID(Buffer const & buf, OutputParams const & runparams) const
+string Paragraph::getID(Buffer const & buf, OutputParams const & runparams)
+       const
 {
        for (pos_type i = 0; i < size(); ++i) {
                if (Inset const * inset = getInset(i)) {
@@ -2117,12 +2127,13 @@ string Paragraph::getID(Buffer const & buf, OutputParams const & runparams) cons
 }
 
 
-pos_type Paragraph::getFirstWord(Buffer const & buf, odocstream & os, OutputParams const & runparams) const
+pos_type Paragraph::firstWord(odocstream & os, OutputParams const & runparams)
+       const
 {
        pos_type i;
        for (i = 0; i < size(); ++i) {
                if (Inset const * inset = getInset(i)) {
-                       inset->docbook(buf, os, runparams);
+                       inset->docbook(os, runparams);
                } else {
                        char_type c = d->text_[i];
                        if (c == ' ')
@@ -2182,7 +2193,7 @@ void Paragraph::simpleDocBookOnePar(Buffer const & buf,
                }
 
                if (Inset const * inset = getInset(i)) {
-                       inset->docbook(buf, os, runparams);
+                       inset->docbook(os, runparams);
                } else {
                        char_type c = d->text_[i];
 
@@ -2287,16 +2298,13 @@ bool Paragraph::isMultiLingual(BufferParams const & bparams) const
 }
 
 
-// Convert the paragraph to a string.
-// Used for building the table of contents
-docstring const Paragraph::asString(Buffer const & buffer, bool label) const
+docstring Paragraph::asString(bool label) const
 {
-       return asString(buffer, 0, size(), label);
+       return asString(0, size(), label);
 }
 
 
-docstring const Paragraph::asString(Buffer const & buffer,
-                                pos_type beg, pos_type end, bool label) const
+docstring Paragraph::asString(pos_type beg, pos_type end, bool label) const
 {
 
        odocstringstream os;
@@ -2309,7 +2317,7 @@ docstring const Paragraph::asString(Buffer const & buffer,
                if (isPrintable(c))
                        os.put(c);
                else if (c == META_INSET)
-                       getInset(i)->textString(buffer, os);
+                       getInset(i)->textString(os);
        }
 
        return os.str();
@@ -2340,7 +2348,7 @@ void Paragraph::setLayout(LayoutPtr const & layout)
 }
 
 
-void Paragraph::setEmptyOrDefaultLayout(TextClass const & tclass)
+void Paragraph::setEmptyOrDefaultLayout(DocumentClass const & tclass)
 {
        if (useEmptyLayout())
                setLayout(tclass.emptyLayout());
@@ -2429,11 +2437,11 @@ char_type Paragraph::transformChar(char_type c, pos_type pos) const
 }
 
 
-int Paragraph::checkBiblio(bool track_changes)
+int Paragraph::checkBiblio(Buffer const & buffer)
 {
-       //FIXME From JS:
-       //This is getting more and more a mess. ...We really should clean
-       //up this bibitem issue for 1.6. See also bug 2743.
+       // FIXME From JS:
+       // This is getting more and more a mess. ...We really should clean
+       // up this bibitem issue for 1.6. See also bug 2743.
 
        // Add bibitem insets if necessary
        if (d->layout_->labeltype != LABEL_BIBLIO)
@@ -2444,6 +2452,8 @@ int Paragraph::checkBiblio(bool track_changes)
                && d->text_[0] == META_INSET
                && d->insetlist_.begin()->inset->lyxCode() == BIBITEM_CODE;
 
+       bool track_changes = buffer.params().trackChanges;
+
        docstring oldkey;
        docstring oldlabel;
 
@@ -2466,13 +2476,13 @@ int Paragraph::checkBiblio(bool track_changes)
                        break;
        }
 
-       //There was an InsetBibitem at the beginning, and we didn't
-       //have to erase one.
+       // There was an InsetBibitem at the beginning, and we didn't
+       // have to erase one.
        if (hasbibitem && erasedInsetPosition < 0)
                        return 0;
 
-       //There was an InsetBibitem at the beginning and we did have to
-       //erase one. So we give its properties to the beginning inset.
+       // There was an InsetBibitem at the beginning and we did have to
+       // erase one. So we give its properties to the beginning inset.
        if (hasbibitem) {
                InsetBibitem * inset =
                        static_cast<InsetBibitem *>(d->insetlist_.begin()->inset);
@@ -2482,9 +2492,10 @@ int Paragraph::checkBiblio(bool track_changes)
                return -erasedInsetPosition;
        }
 
-       //There was no inset at the beginning, so we need to create one with
-       //the key and label of the one we erased.
-       InsetBibitem * inset(new InsetBibitem(InsetCommandParams(BIBITEM_CODE)));
+       // There was no inset at the beginning, so we need to create one with
+       // the key and label of the one we erased.
+       InsetBibitem * inset = new InsetBibitem(InsetCommandParams(BIBITEM_CODE));
+       inset->setBuffer(const_cast<Buffer &>(buffer));
        // restore values of previously deleted item in this par.
        if (!oldkey.empty())
                inset->setParam("key", oldkey);
@@ -2678,4 +2689,66 @@ bool Paragraph::isSeparator(pos_type pos) const
 }
 
 
+void Paragraph::deregisterWords()
+{
+       Private::Words::const_iterator it;
+       WordList & wl = theWordList();
+       for (it = d->words_.begin(); it != d->words_.end(); ++it)
+               wl.remove(*it);
+       d->words_.clear();
+}
+
+
+void Paragraph::collectWords(CursorSlice const & sl)
+{
+       // find new words
+       bool inword = false;
+
+       //lyxerr << "Words: ";
+       pos_type n = size();
+       for (pos_type pos = 0; pos != n; ++pos) {
+               if (isDeleted(pos))
+                       continue;
+
+               if (!isLetter(pos)) {
+                       inword = false;
+                       continue;
+               }
+
+               if (inword)
+                       continue;
+
+               inword = true;
+               CursorSlice from = sl;
+               CursorSlice to = sl;
+               from.pos() = pos;
+               to.pos() = pos;
+               from.text()->getWord(from, to, WHOLE_WORD);
+               if (to.pos() - from.pos() < 6)
+                       continue;
+               docstring word = asString(from.pos(), to.pos(), false);
+               d->words_.insert(word);
+               //lyxerr << word << " ";
+       }
+       //lyxerr << std::endl;
+}
+
+
+void Paragraph::registerWords()
+{
+       Private::Words::const_iterator it;
+       WordList & wl = theWordList();
+       for (it = d->words_.begin(); it != d->words_.end(); ++it)
+               wl.insert(*it);
+}
+
+
+void Paragraph::updateWords(CursorSlice const & sl)
+{
+       BOOST_ASSERT(&sl.paragraph() == this);
+       deregisterWords();
+       collectWords(sl);
+       registerWords();
+}
+
 } // namespace lyx