X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfootlike.C;h=fcbe711ba726fd024de2623296a59d577c1a6703;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=527dc644c64dd4feb00109ce8d1586aad680cd99;hpb=8ed9dbabde30b31a6a14e032fa42f682a196ef7a;p=lyx.git diff --git a/src/insets/insetfootlike.C b/src/insets/insetfootlike.C index 527dc644c6..fcbe711ba7 100644 --- a/src/insets/insetfootlike.C +++ b/src/insets/insetfootlike.C @@ -3,7 +3,7 @@ * * LyX, The Document Processor * - * Copyright 1998 The LyX Team. + * Copyright 2000-2001 The LyX Team. * * ====================================================== */ @@ -20,8 +20,9 @@ #include "lyxtext.h" #include "support/LOstream.h" + using std::ostream; -using std::endl; + InsetFootlike::InsetFootlike() : InsetCollapsable() @@ -29,14 +30,33 @@ InsetFootlike::InsetFootlike() LyXFont font(LyXFont::ALL_SANE); font.decSize(); font.decSize(); - font.setColor(LColor::footnote); + font.setColor(LColor::collapsable); + setLabelFont(font); +} + + +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); - setAutoCollapse(false); } -void InsetFootlike::Write(Buffer const * buf, ostream & os) const +void InsetFootlike::write(Buffer const * buf, ostream & os) const { os << getInsetName() << "\n"; - InsetCollapsable::Write(buf, os); + 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); }