]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insettoc.h
index 6b8d542c5a097f83826b8b802f787a120c751c23..77ce3e338ea216c3321c24b046dd3434fe279fb7 100644 (file)
@@ -1,52 +1,54 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insettoc.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Word Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1996-2001 The LyX Team.
- *
- * ====================================================== */
+ * 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"
+#include "metricsinfo.h"
 
 /** Used to insert table of contents
  */
 class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC(InsetCommandParams const & p, bool same_id = false)
-                       : InsetCommand(p, same_id) {}
+       InsetTOC(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetTOC(params(), same_id);
+       ~InsetTOC();
+       ///
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetTOC(params()));
        }
        ///
-       string const getScreenLabel(Buffer const *) const;
+       void metrics(MetricsInfo &, Dimension &) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void edit(BufferView * bv, int, int, mouse_button::state);
+       dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       void edit(BufferView * bv, bool front = true);
+       string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       bool display() const { return true; }
+       InsetOld::Code lyxCode() const;
        ///
-       Inset::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;
+private:
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       mutable unsigned int center_indent_;
 };
 
 #endif