]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.cpp
Remove TextClassPtr without losing the type safety it provided.
[lyx.git] / src / insets / InsetTOC.cpp
index 51234af7cd27c2e47c914fa0c0a82c6c7293707c..83e5560cc6474821722d0b5e52216ad10d28b124 100644 (file)
 #include "Buffer.h"
 #include "DispatchResult.h"
 #include "FuncRequest.h"
-#include "gettext.h"
+#include "support/gettext.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
 #include "TocBackend.h"
 
-#include "support/std_ostream.h"
+#include <ostream>
 
+using namespace std;
 
 namespace lyx {
 
-using std::string;
-using std::ostream;
-
 
 InsetTOC::InsetTOC(InsetCommandParams const & p)
        : InsetCommand(p, "toc")
 {}
 
 
-std::auto_ptr<Inset> InsetTOC::doClone() const
+ParamInfo const & InsetTOC::findInfo(string const & /* cmdName */)
 {
-       return std::auto_ptr<Inset>(new InsetTOC(*this));
+       static ParamInfo param_info_;
+       if (param_info_.empty()) {
+               param_info_.add("type", ParamInfo::LATEX_REQUIRED);
+       }
+       return param_info_;
 }
 
 
-docstring const InsetTOC::getScreenLabel(Buffer const & buf) const
+Inset * InsetTOC::clone() const
 {
-       if (getCmdName() == "tableofcontents")
-               return buf.B_("Table of Contents");
-       return _("Unknown TOC type");
+       return new InsetTOC(*this);
 }
 
 
-Inset::Code InsetTOC::lyxCode() const
+docstring InsetTOC::screenLabel() const
 {
        if (getCmdName() == "tableofcontents")
-               return Inset::TOC_CODE;
-       return Inset::NO_CODE;
+               return buffer().B_("Table of Contents");
+       return _("Unknown TOC type");
 }
 
 
-int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
-                       OutputParams const &) const
+int InsetTOC::plaintext(odocstream & os, OutputParams const &) const
 {
-       os << getScreenLabel(buffer) << "\n\n";
-
-       buffer.tocBackend().writePlaintextTocList(getCmdName(), os);
-
+       os << screenLabel() << "\n\n";
+       buffer().tocBackend().writePlaintextTocList(getCmdName(), os);
        return PLAINTEXT_NEWLINE;
 }
 
 
-int InsetTOC::docbook(Buffer const &, odocstream & os,
-                     OutputParams const &) const
+int InsetTOC::docbook(odocstream & os, OutputParams const &) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc></toc>";