X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlist.C;h=a0af06f20226dba2586e2505025e95cfa404054b;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=4610b5557733c11850291e25d349ff49d9a4828b;hpb=795225e72d430986ac29f4392164c4b2e69ecea0;p=lyx.git diff --git a/src/insets/insetlist.C b/src/insets/insetlist.C index 4610b55577..a0af06f202 100644 --- a/src/insets/insetlist.C +++ b/src/insets/insetlist.C @@ -45,51 +45,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, +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; -}