X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfootlike.C;h=fcbe711ba726fd024de2623296a59d577c1a6703;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=09639ba8ee0bc0260b3504062abd502e4631689c;hpb=85a5ea7bfc80e179a61a99f2955455e84d3384cc;p=lyx.git diff --git a/src/insets/insetfootlike.C b/src/insets/insetfootlike.C index 09639ba8ee..fcbe711ba7 100644 --- a/src/insets/insetfootlike.C +++ b/src/insets/insetfootlike.C @@ -21,6 +21,9 @@ #include "support/LOstream.h" +using std::ostream; + + InsetFootlike::InsetFootlike() : InsetCollapsable() { @@ -29,12 +32,31 @@ InsetFootlike::InsetFootlike() font.decSize(); font.setColor(LColor::collapsable); setLabelFont(font); - setAutoCollapse(false); } -void InsetFootlike::write(Buffer const * buf, std::ostream & os) const +InsetFootlike::InsetFootlike(InsetFootlike const & in, bool same_id) + : InsetCollapsable(in, same_id) +{ + LyXFont font(LyXFont::ALL_SANE); + font.decSize(); + font.decSize(); + font.setColor(LColor::collapsable); + setLabelFont(font); +} + + +void InsetFootlike::write(Buffer const * buf, ostream & os) const { os << getInsetName() << "\n"; InsetCollapsable::write(buf, os); } + + +bool InsetFootlike::insetAllowed(Inset::Code code) const +{ + if ((code == Inset::FOOT_CODE) || (code == Inset::MARGIN_CODE) + || (code ==Inset::FLOAT_CODE)) + return false; + return InsetCollapsable::insetAllowed(code); +}