]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insettoc.h
index 443ab697629e18747234f345ba68992b51f07b30..73bf1b67d32972a0109c97fc63a5c3f7988e4314 100644 (file)
@@ -6,43 +6,42 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_TOC_H
 #define INSET_TOC_H
 
-
 #include "insetcommand.h"
 
-/** Used to insert table of contents
- */
+
+namespace lyx {
+
+
+/// Used to insert table of contents and similar lists
 class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC(InsetCommandParams const &);
-       ///
-       ~InsetTOC();
-       ///
-       virtual Inset * clone(Buffer const &) const {
-               return new InsetTOC(params());
-       }
+       explicit InsetTOC(InsetCommandParams const &);
        ///
-       dispatch_result localDispatch(FuncRequest const & cmd);
-       ///
-       string const getScreenLabel(Buffer const *) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       bool display() const { return true; }
-       ///
-       Inset::Code lyxCode() const;
+       InsetBase::Code lyxCode() const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       bool display() const { return true; }
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int plaintext(Buffer const &, odocstream &,
+                 OutputParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif