]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.h
fix #832
[lyx.git] / src / insets / insetlist.h
index 3c75c5f15a3e4c3a23b5ab8b605dbf83f82f6420..78bb9a2ecd5203f8b803ccab30f6d09883a9f352 100644 (file)
@@ -1,51 +1,35 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetlist.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1998 The LyX Team.
+ * \author Lars Gullik Bjønnes
  *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef InsetList_H
 #define InsetList_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcollapsable.h"
 
-class Painter;
+/** The list inset
 
-/** The footnote inset
-  
 */
 class InsetList : public InsetCollapsable {
 public:
        ///
-       explicit
        InsetList();
        ///
-       ~InsetList() {}
-       ///
-       void Write(Buffer const * buf, ostream & os) const;
-       ///
-       Inset * Clone() const;
-       ///
-       Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
-       ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
-       ///
-       const char * EditMessage() const;
+       void write(Buffer const * buf, std::ostream & os) const;
        ///
-       bool InsertInset(BufferView *, Inset * inset);
+       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
+       string const editMessage() const;
 };
 
 #endif