]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetfloatlist.h
index 19b03e8dbefff46f674f66453670a66460a497c9..2e1cfa18b6440de2ca8cf5d10315c20d21880c5c 100644 (file)
@@ -1,20 +1,17 @@
 // -*- 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
+ * \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_FLOATLIST_H
 #define INSET_FLOATLIST_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
@@ -27,15 +24,15 @@ public:
        ///
        InsetFloatList(string const & type);
        ///
+       ~InsetFloatList();
+       ///
        Inset * clone(Buffer const &, bool = false) const {
                return new InsetFloatList(getCmdName());
        }
        ///
-       string const getScreenLabel(Buffer const *) 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; }
        ///
@@ -47,11 +44,12 @@ public:
        ///
        void read(Buffer const *, LyXLex &);
        ///
-       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        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;
        ///