]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
Remove TextClassPtr without losing the type safety it provided.
[lyx.git] / src / insets / InsetTOC.h
index c4a6f8d99ff58311d44492edfd20b841b9ed78b7..102ff1d403d9d05a8a8504c961ba5e34f9d2ff0c 100644 (file)
@@ -24,21 +24,26 @@ public:
        ///
        explicit InsetTOC(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const;
+       InsetCode lyxCode() const { return TOC_CODE; }
        ///
        DisplayType display() const { return AlignCenter; }
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "tableofcontents"; };
+       ///
+       static bool isCompatibleCommand(std::string const & cmd)
+               {return cmd == defaultCommand(); }
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
 };