]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
ws changes only
[lyx.git] / src / insets / insettoc.h
index bb3b5ca00312a66069270ec69679279b6e371806..b41bc6110bcd60867d6cc4eb1ff251102773858a 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \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
@@ -15,6 +15,9 @@
 
 #include "insetcommand.h"
 
+class MetricsInfo;
+
+
 /** Used to insert table of contents
  */
 class InsetTOC : public InsetCommand {
@@ -24,25 +27,27 @@ public:
        ///
        ~InsetTOC();
        ///
-       virtual Inset * clone() const {
-               return new InsetTOC(params());
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetTOC(params()));
        }
        ///
+       void metrics(MetricsInfo &, Dimension &) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
+       ///
        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; }
-       ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
 };
 
 #endif