]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.h
fix #832
[lyx.git] / src / insets / insetfloatlist.h
index bf50f8ea10e2ce6c3afff6048d09bd648164974c..f5ec613dfced1a0d3ef32b7100f4c61ad4cf9461 100644 (file)
@@ -1,42 +1,38 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetfloatlist.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Word Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1996-2001 The LyX Team.
- * 
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_FLOATLIST_H
 #define INSET_FLOATLIST_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "insetbutton.h"
+#include "insetcommand.h"
 
 /** Used to insert table of contents
  */
-class InsetFloatList : public InsetButton {
+class InsetFloatList : public InsetCommand {
 public:
        ///
-       InsetFloatList() {}
+       InsetFloatList();
        ///
-       InsetFloatList(string const & type) 
-               : float_type(type) {}
+       InsetFloatList(string const & type);
+       ///
+       ~InsetFloatList();
        ///
        Inset * clone(Buffer const &, bool = false) const {
-               return new InsetFloatList(*this);
+               return new InsetFloatList(getCmdName());
        }
        ///
-       string const getScreenLabel() const;
-       ///
-       void edit(BufferView * bv, int, int, unsigned int);
+       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; }
        ///
@@ -52,11 +48,11 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
        ///
-       int docBook(Buffer const *, std::ostream &) const { return 0; }
+       int docbook(Buffer const *, std::ostream &, bool) const { return 0; }
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
-private:
-       string float_type;
+       ///
+       void validate(LaTeXFeatures & features) const;
 };
 
 #endif