]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetlist.C
index 0b33ce08f77ab89e263f3b191d02b0323ce909f9..646cb86ea03868fa6621fc46800c7b368ebec213 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  * ====================================================== */
@@ -43,53 +43,35 @@ InsetList::InsetList()
        LyXFont font(LyXFont::ALL_SANE);
        font.decSize();
        font.decSize();
-       font.setColor(LColor::footnote);
+       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() const
-{
-       InsetList * result = new InsetList;
-       result->inset->init(inset);
-       
-       result->collapsed = collapsed;
-       return result;
+       InsetCollapsable::write(buf, os);
 }
 
 
-char const * InsetList::EditMessage() const
+string const InsetList::editMessage() const
 {
        return _("Opened List Inset");
 }
 
 
-int InsetList::Latex(Buffer const * buf,
+int InsetList::latex(Buffer const * buf,
                     ostream & os, bool fragile, bool fp) const
 {
        os << "\\footnote{%\n";
-       
-       int i = inset->Latex(buf, os, fragile, fp);
-       os << "}%\n";
-       
-       return i + 2;
-}
 
+       int i = inset.latex(buf, os, fragile, fp);
+       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;
 }