]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetfootlike.C
index e6e448052d670a31668fc4c7e2b7109a991f6210..8254da3008498ef59c304211b70a660fdd3a94bb 100644 (file)
@@ -1,53 +1,59 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 1998 The LyX Team.
+/**
+ * \file insetfootlike.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #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()
+
+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);
 }
 
 
-#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