]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetTOC.h
index 334a0a33e0e31438b2db7f49b26674516ff11eea..b95c9c4ebbc377005a663ff3a2351399bf8db0e1 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -24,21 +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 { return TOC_CODE; }
        ///
-       InsetBase::Code lyxCode() const;
+       DisplayType display() const { return AlignCenter; }
        ///
-       bool display() const { return true; }
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, 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<InsetBase> doClone() const;
+       Inset * clone() const { return new InsetTOC(*this); }
 };