]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetlist.C
index 4610b5557733c11850291e25d349ff49d9a4828b..15c98b4e245881425544e35ef7cfb193f05fea28 100644 (file)
@@ -1,17 +1,14 @@
-/* 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 "gettext.h"
@@ -45,51 +42,33 @@ InsetList::InsetList()
        font.decSize();
        font.setColor(LColor::collapsable);
        setLabelFont(font);
+#if 0
        setAutoCollapse(false);
+#endif
        setInsetName("List");
 }
 
 
-void InsetList::Write(Buffer const * buf, ostream & os) const
+void InsetList::write(Buffer const * buf, ostream & os) const
 {
        os << getInsetName() << "\n";
-       InsetCollapsable::Write(buf, os);
-}
-
-
-Inset * InsetList::Clone(Buffer const &) const
-{
-       InsetList * result = new InsetList;
-       result->inset.init(&inset);
-       
-       result->collapsed = collapsed;
-       return result;
+       InsetCollapsable::write(buf, os);
 }
 
 
-string const InsetList::EditMessage() const
+string const InsetList::editMessage() const
 {
        return _("Opened List Inset");
 }
 
 
-int InsetList::Latex(Buffer const * buf,
-                    ostream & os, bool fragile, bool fp) const
+int InsetList::latex(Buffer const * buf, ostream & os,
+                    LatexRunParams const & runparams) const
 {
        os << "\\footnote{%\n";
-       
-       int i = inset.Latex(buf, os, fragile, fp);
-       os << "}%\n";
-       
-       return i + 2;
-}
 
+       int i = inset.latex(buf, os, runparams);
+       os << "}%\n";
 
-bool InsetList::InsertInsetAllowed(Inset * in) const
-{
-       if ((in->LyxCode() == Inset::FOOT_CODE) ||
-           (in->LyxCode() == Inset::MARGIN_CODE)) {
-               return false;
-       }
-       return true;
+       return i + 2;
 }