]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetIndex.cpp
Inset::addToToc(): change signature. Use DocIterator instead of ParConstIterator...
[lyx.git] / src / insets / InsetIndex.cpp
index 76d31ca26e1a81c90da8e2cea70a2ac85efbc950..9733467679e0d8c2ba355f15abc659ca76f6e8f9 100644 (file)
@@ -49,17 +49,29 @@ int InsetIndex::latex(odocstream & os,
        os << "\\index";
        os << '{';
        odocstringstream ods;
-       InsetText::latex(ods, runparams);
+       int i = InsetText::latex(ods, runparams);
+       bool sorted = false;
        // correctly sort macros and formatted strings
        // if we do find a command, prepend a plain text
        // version of the content to get sorting right,
        // e.g. \index{LyX@\LyX}, \index{text@\textbf{text}}
        // Don't do that if the user entered '@' himself, though.
        if (contains(ods.str(), '\\') && !contains(ods.str(), '@')) {
-               if (InsetText::plaintext(os, runparams) > 0)
+               odocstringstream odss;
+               if (InsetText::plaintext(odss, runparams) > 0) {
+                       // remove remaining \'s for the sorting part
+                       os << subst(odss.str(), from_ascii("\\"), docstring());
                        os << '@';
+                       sorted = true;
+               }
        }
-       int i = InsetText::latex(os, runparams);
+       // if a hierarchy tag '!' is used, ommit this in the post-@ part.
+       if (sorted && contains(ods.str(), '!')) {
+               string dummy;
+               // FIXME unicode
+               os << from_utf8(rsplit(to_utf8(ods.str()), dummy, '!'));
+       } else
+               i = InsetText::latex(os, runparams);
        os << '}';
        return i;
 }
@@ -81,10 +93,10 @@ void InsetIndex::write(ostream & os) const
 }
 
 
-void InsetIndex::addToToc(ParConstIterator const & cpit) const
+void InsetIndex::addToToc(DocIterator const & cpit)
 {
-       ParConstIterator pit = cpit;
-       pit.push_back(*this);
+       DocIterator pit = cpit;
+       pit.push_back(CursorSlice(*this));
 
        Toc & toc = buffer().tocBackend().toc("index");
        docstring str;