]> 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 37b4457ea08e50ef95d109480fa5cf78695eb216..c30cf2f777e01f17cdfa9c5c27a5b39ba0cc8d40 100644 (file)
@@ -6,47 +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
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #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 & p, bool same_id = false)
-                       : InsetCommand(p, same_id) {}
-       ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetTOC(params(), same_id);
-       }
+       explicit InsetTOC(InsetCommandParams const &);
        ///
-       string const getScreenLabel(Buffer const *) const;
-       ///
-       void edit(BufferView * bv, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
+       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