]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
updates to minipage inset
[lyx.git] / src / insets / insetfoot.C
index 41496c6dd51f3ab02fe39b95e413e957ce5659b0..1d942e899935ff000021ffcbbecb4bc0233b2c1f 100644 (file)
@@ -5,7 +5,8 @@
  *      
  *          Copyright 1998 The LyX Team.
  *
- *======================================================*/
+ * ======================================================
+ */
 
 #include <config.h>
 
 #include "gettext.h"
 #include "lyxfont.h"
 #include "BufferView.h"
-#include "Painter.h"
 #include "lyxtext.h"
+#include "insets/insettext.h"
 #include "support/LOstream.h"
+#include "debug.h"
 
 using std::ostream;
-using std::endl;
 
-InsetFoot::InsetFoot() : InsetCollapsable()
+
+InsetFoot::InsetFoot()
+       : InsetFootlike()
 {
     setLabel(_("foot"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.decSize();
-    font.decSize();
-    font.setColor(LColor::footnote);
-    setLabelFont(font);
-    setAutoCollapse(false);
     setInsetName("Foot");
 }
 
 
-Inset * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
     InsetFoot * result = new InsetFoot;
-    result->init(this);
+    result->inset->init(inset);
 
     result->collapsed = collapsed;
     return result;
 }
 
 
-char const * InsetFoot::EditMessage() const
+string const InsetFoot::EditMessage() const
 {
     return _("Opened Footnote Inset");
 }
 
 
-int InsetFoot::Latex(Buffer const * buf, ostream & os, bool fragile, bool fp) const
+int InsetFoot::Latex(Buffer const * buf,
+                    ostream & os, bool fragile, bool fp) const
 {
-    os << "\\footnote{%" << endl;
+    os << "\\footnote{%\n";
     
-    int i = InsetText::Latex(buf, os, fragile, fp);
-    os << "}%" << endl;
+    int const i = inset->Latex(buf, os, fragile, fp);
+    os << "}%\n";
     
     return i + 2;
 }
 
 
-bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
-{
-    if (!InsertInsetAllowed(inset))
-       return false;
-
-    return InsetText::InsertInset(bv, inset);
-}
-
-
-bool InsetFoot::InsertInsetAllowed(Inset * inset) const
+bool InsetFoot::InsertInsetAllowed(Inset * in) const
 {
-    if ((inset->LyxCode() == Inset::FOOT_CODE) ||
-       (inset->LyxCode() == Inset::MARGIN_CODE)) {
+    if ((in->LyxCode() == Inset::FOOT_CODE) ||
+       (in->LyxCode() == Inset::MARGIN_CODE)) {
        return false;
     }
     return true;
 }
-
-
-LyXFont InsetFoot::GetDrawFont(BufferView * bv,LyXParagraph * p, int pos) const
-{
-    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-    fn.decSize().decSize();
-    return fn;
-}