]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
Rename ascii to plaintext and LatexRunParams to OutputParams.
[lyx.git] / src / insets / insetlist.C
index 8c073dc86ab8060e375ab9752757ea167bc27031..5be21a4fa314d8f86f05f1b910fa822b4e320485 100644 (file)
@@ -1,29 +1,28 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 1998 The LyX Team.
+/**
+ * \file insetlist.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
-
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetlist.h"
+#include "insets/insettext.h"
+
+#include "BufferView.h"
+#include "debug.h"
 #include "gettext.h"
 #include "lyxfont.h"
-#include "BufferView.h"
 #include "lyxtext.h"
-#include "insets/insettext.h"
-#include "support/LOstream.h"
-#include "debug.h"
 
-using std::ostream;
+#include "support/std_ostream.h"
+
 using std::endl;
+using std::ostream;
+
 
 // This class is _far_ from finished. I hope that we can have a inset to
 // handle the different lists that we have. It should also be possible
@@ -45,7 +44,9 @@ InsetList::InsetList()
        font.decSize();
        font.setColor(LColor::collapsable);
        setLabelFont(font);
+#if 0
        setAutoCollapse(false);
+#endif
        setInsetName("List");
 }
 
@@ -63,13 +64,13 @@ string const InsetList::editMessage() const
 }
 
 
-int InsetList::latex(Buffer const * buf,
-                    ostream & os, bool fragile, bool fp) const
+int InsetList::latex(Buffer const * buf, ostream & os,
+                    OutputParams const & runparams) const
 {
        os << "\\footnote{%\n";
-       
-       int i = inset.latex(buf, os, fragile, fp);
+
+       int i = inset.latex(buf, os, runparams);
        os << "}%\n";
-       
+
        return i + 2;
 }