]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insettoc.h
index 1d2b34e938dde8278184ebc20c943eac35c626f0..c30cf2f777e01f17cdfa9c5c27a5b39ba0cc8d40 100644 (file)
@@ -6,43 +6,39 @@
  *
  * \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
- */
+
+/// Used to insert table of contents and similar lists
 class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC(InsetCommandParams const &);
-       ///
-       ~InsetTOC();
+       explicit InsetTOC(InsetCommandParams const &);
        ///
-       virtual InsetBase * clone() const {
-               return new InsetTOC(params());
-       }
-       ///
-       dispatch_result localDispatch(FuncRequest const & cmd);
-       ///
-       string const getScreenLabel(Buffer const *) const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       bool display() const { return true; }
+       InsetBase::Code lyxCode() const;
        ///
-       Inset::Code lyxCode() const;
+       bool display() const { return true; }
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif