]> 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 dd9a9e758d901f0b854d54e988dbfa1512f75a1e..102ff1d403d9d05a8a8504c961ba5e34f9d2ff0c 100644 (file)
@@ -24,19 +24,24 @@ public:
        ///
        explicit InsetTOC(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetCode 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 Inset * clone() const;
 };