]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetfoot.C
index e9f56e6785f7f11ac8ae169ba563f94a47188312..a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e 100644 (file)
 #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()
-{
-    setLabel(_("foot"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.decSize();
-    font.decSize();
-    font.setColor(LColor::footnote);
-    setLabelFont(font);
-    setAutoCollapse(false);
-    setInsetName("Foot");
-}
 
-
-void InsetFoot::Write(Buffer const * buf, ostream & os) const 
-{
-    os << getInsetName() << "\n";
-    InsetCollapsable::Write(buf, os);
-}
+using std::ostream;
 
 
-Inset * InsetFoot::Clone() const
+InsetFoot::InsetFoot()
+       : InsetFootlike()
 {
-    InsetFoot * result = new InsetFoot;
-    result->inset->init(inset);
-
-    result->collapsed = collapsed;
-    return result;
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-char const * InsetFoot::EditMessage() const
+InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
+       : InsetFootlike(in, same_id)
 {
-    return _("Opened Footnote Inset");
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-int InsetFoot::Latex(Buffer const * buf,
-                    ostream & os, bool fragile, bool fp) const
+Inset * InsetFoot::clone(Buffer const &, bool same_id) const
 {
-    os << "\\footnote{%\n";
-    
-    int i = inset->Latex(buf, os, fragile, fp);
-    os << "}%\n";
-    
-    return i + 2;
+       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
 }
 
 
-bool InsetFoot::InsertInset(BufferView * bv, Inset * in)
+string const InsetFoot::editMessage() const
 {
-    if (!InsertInsetAllowed(in))
-       return false;
-
-    return inset->InsertInset(bv, in);
+       return _("Opened Footnote Inset");
 }
 
 
-bool InsetFoot::InsertInsetAllowed(Inset * in) const
-{
-    if ((in->LyxCode() == Inset::FOOT_CODE) ||
-       (in->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return true;
-}
-
-#if 0
-LyXFont InsetFoot::GetDrawFont(BufferView * bv,
-                              LyXParagraph * p, int pos) const
+int InsetFoot::latex(Buffer const * buf,
+                    ostream & os, bool fragile, bool fp) const
 {
-    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-    fn.decSize().decSize();
-    return fn;
+       os << "%\n\\footnote{";
+       
+       int const i = inset.latex(buf, os, fragile, fp);
+       os << "%\n}";
+       
+       return i + 2;
 }
-#endif