]> git.lyx.org Git - lyx.git/blobdiff - src/toc.C
update no.po
[lyx.git] / src / toc.C
index 7a307b0565b4d144a827cd86b1dda98e451ee771..15f2481d922546448f2c5439e619115f79adc461 100644 (file)
--- a/src/toc.C
+++ b/src/toc.C
 #include "toc.h"
 #include "buffer.h"
 #include "frontends/LyXView.h"
-#include "lyxfunc.h"
 #include "LyXAction.h"
 #include "paragraph.h"
 #include "insets/insetfloat.h"
+#include "insets/insetwrap.h"
 #include "debug.h"
+#include "iterators.h"
 
 using std::vector;
 using std::max;
 using std::endl;
 using std::ostream;
 
-extern LyXAction lyxaction;
-
 namespace toc
 {
 
@@ -44,11 +43,11 @@ string const TocItem::asString() const
        return string(4 * depth, ' ') + str;
 }
 
-       
+
 void TocItem::goTo(LyXView & lv_) const
 {
        string const tmp = tostr(par->id());
-       lv_.getLyXFunc()->dispatch(LFUN_GOTO_PARAGRAPH, tmp, false);
+       lv_.dispatch(FuncRequest(LFUN_GOTO_PARAGRAPH, tmp));
 }
 
 
@@ -74,11 +73,14 @@ TocList const getTocList(Buffer const * buf)
        TocList toclist;
        if (!buf)
                return toclist;
-       Paragraph * par = buf->paragraph;
 
        LyXTextClass const & textclass = buf->params.getLyXTextClass();
 
-       while (par) {
+       ParConstIterator pit = buf->par_iterator_begin();
+       ParConstIterator end = buf->par_iterator_end();
+       for (; pit != end; ++pit) {
+               Paragraph const * par = *pit;
+
 #ifdef WITH_WARNINGS
 #warning bogus type (Lgb)
 #endif
@@ -92,20 +94,22 @@ TocList const getTocList(Buffer const * buf)
                                           par->asString(buf, true));
                        toclist["TOC"].push_back(item);
                }
-               
+
                // For each paragraph, traverse its insets and look for
-               // FLOAT_CODE
-               Paragraph::inset_iterator it = par->inset_iterator_begin();
-               Paragraph::inset_iterator end = par->inset_iterator_end();
+               // FLOAT_CODE or WRAP_CODE
+               InsetList::iterator it = par->insetlist.begin();
+               InsetList::iterator end = par->insetlist.end();
                for (; it != end; ++it) {
-                       if ((*it)->lyxCode() == Inset::FLOAT_CODE) {
+                       if (it.getInset()->lyxCode() == Inset::FLOAT_CODE) {
                                InsetFloat * il =
-                                       static_cast<InsetFloat*>(*it);
-                               il->addToToc(toclist, buf);             
+                                       static_cast<InsetFloat*>(it.getInset());
+                               il->addToToc(toclist, buf);
+                       } else if (it.getInset()->lyxCode() == Inset::WRAP_CODE) {
+                               InsetWrap * il =
+                                       static_cast<InsetWrap*>(it.getInset());
+                               il->addToToc(toclist, buf);
                        }
-               } 
-
-               par = par->next();
+               }
        }
        return toclist;
 }
@@ -142,4 +146,3 @@ void asciiTocList(string const & type, Buffer const * buffer, ostream & os)
 
 
 } // namespace toc
-