]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.C
remove lowercase, better layout handling and some variable renameing
[lyx.git] / src / insets / insetfootlike.C
index 20b28ad568c6d2243827fc20d78893a8dde3e92d..f401f78bf2ca1f403dd58e857fb0425e48cb9fe9 100644 (file)
@@ -3,7 +3,7 @@
  * 
  *           LyX, The Document Processor
  *      
- *          Copyright 2000 The LyX Team.
+ *          Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
  */
 #include "lyxtext.h"
 #include "support/LOstream.h"
 
+
 using std::ostream;
-using std::endl;
 
-InsetFootlike::InsetFootlike()
-       : InsetCollapsable()
+
+InsetFootlike::InsetFootlike(BufferParams const & bp)
+       : InsetCollapsable(bp)
+{
+       LyXFont font(LyXFont::ALL_SANE);
+       font.decSize();
+       font.decSize();
+       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::footnote);
+       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);
 }