]> 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 7489f7ce90f4478ec466fca09673e74e411890e1..9733467679e0d8c2ba355f15abc659ca76f6e8f9 100644 (file)
 #include "sgml.h"
 #include "TocBackend.h"
 
+#include "support/docstream.h"
 #include "support/gettext.h"
+#include "support/lstrings.h"
 
 #include <ostream>
 
 using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
+/////////////////////////////////////////////////////////////////////
+//
+// InsetIndex
+//
+///////////////////////////////////////////////////////////////////////
+
 
 InsetIndex::InsetIndex(Buffer const & buf)
        : InsetCollapsable(buf)
 {}
 
 
-InsetIndex::InsetIndex(InsetIndex const & in)
-       : InsetCollapsable(in)
-{}
+int InsetIndex::latex(odocstream & os,
+                         OutputParams const & runparams) const
+{
+       os << "\\index";
+       os << '{';
+       odocstringstream ods;
+       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(), '@')) {
+               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;
+               }
+       }
+       // 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;
+}
 
 
 int InsetIndex::docbook(odocstream & os, OutputParams const & runparams) const
@@ -48,12 +86,6 @@ int InsetIndex::docbook(odocstream & os, OutputParams const & runparams) const
 }
 
 
-Inset * InsetIndex::clone() const
-{
-       return new InsetIndex(*this);
-}
-
-
 void InsetIndex::write(ostream & os) const
 {
        os << to_utf8(name()) << "\n";
@@ -61,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;
@@ -73,6 +105,12 @@ void InsetIndex::addToToc(ParConstIterator const & cpit) const
 }
 
 
+/////////////////////////////////////////////////////////////////////
+//
+// InsetPrintIndex
+//
+///////////////////////////////////////////////////////////////////////
+
 InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p)
        : InsetCommand(p, string())
 {}
@@ -81,9 +119,8 @@ InsetPrintIndex::InsetPrintIndex(InsetCommandParams const & p)
 ParamInfo const & InsetPrintIndex::findInfo(string const & /* cmdName */)
 {
        static ParamInfo param_info_;
-       if (param_info_.empty()) {
+       if (param_info_.empty())
                param_info_.add("name", ParamInfo::LATEX_REQUIRED);
-       }
        return param_info_;
 }