]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.C
use more specific smart_ptr headers
[lyx.git] / src / insets / insetfootlike.C
index 09639ba8ee0bc0260b3504062abd502e4631689c..2cac4e252215c2523136992f0eefd0294c30ccd8 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
 #include "support/LOstream.h"
 
 
-InsetFootlike::InsetFootlike()
-       : InsetCollapsable()
+using std::ostream;
+
+
+InsetFootlike::InsetFootlike(BufferParams const & bp)
+       : InsetCollapsable(bp)
 {
        LyXFont font(LyXFont::ALL_SANE);
        font.decSize();
        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);
+}