]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetlist.C
index 0b33ce08f77ab89e263f3b191d02b0323ce909f9..a0af06f20226dba2586e2505025e95cfa404054b 100644 (file)
@@ -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);
+       int i = inset.latex(buf, os, fragile, fp);
        os << "}%\n";
        
        return i + 2;
 }
-
-
-bool InsetList::InsertInsetAllowed(Inset * in) const
-{
-       if ((in->LyxCode() == Inset::FOOT_CODE) ||
-           (in->LyxCode() == Inset::MARGIN_CODE)) {
-               return false;
-       }
-       return true;
-}