]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.C
add parOwner to Inset, optimize LyXText::workWidth, fix memory corruption with lots...
[lyx.git] / src / insets / insetfootlike.C
index e6e448052d670a31668fc4c7e2b7109a991f6210..edfd20dafbfde25e8841302eeef8e640de810b2e 100644 (file)
@@ -3,7 +3,7 @@
  * 
  *           LyX, The Document Processor
  *      
- *          Copyright 1998 The LyX Team.
+ *          Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
  */
 
 #include "insetfootlike.h"
 #include "lyxfont.h"
-#include "BufferView.h"
+#include "buffer.h"
 #include "lyxtext.h"
 #include "support/LOstream.h"
 
-using std::ostream;
-using std::endl;
 
 InsetFootlike::InsetFootlike()
        : InsetCollapsable()
@@ -29,25 +27,33 @@ InsetFootlike::InsetFootlike()
        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 
+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, std::ostream & os) const 
 {
        os << getInsetName() << "\n";
-       InsetCollapsable::Write(buf, os);
+       InsetCollapsable::write(buf, os);
 }
 
 
-#if 0
-LyXFont InsetFootlike::GetDrawFont(BufferView * bv,
-                                  LyXParagraph * p, int pos) const
+bool InsetFootlike::insetAllowed(Inset::Code code) const
 {
-       LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-       fn.decSize().decSize();
-       return fn;
+       if ((code == Inset::FOOT_CODE) || (code == Inset::MARGIN_CODE)
+           || (code ==Inset::FLOAT_CODE))
+               return false;
+       return InsetCollapsable::insetAllowed(code);
 }
-#endif