]> 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 41496c6dd51f3ab02fe39b95e413e957ce5659b0..a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e 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"
-
-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");
-}
+#include "debug.h"
 
 
-Inset * InsetFoot::Clone() const
-{
-    InsetFoot * result = new InsetFoot;
-    result->init(this);
-
-    result->collapsed = collapsed;
-    return result;
-}
+using std::ostream;
 
 
-char const * InsetFoot::EditMessage() const
+InsetFoot::InsetFoot()
+       : InsetFootlike()
 {
-    return _("Opened Footnote Inset");
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-int InsetFoot::Latex(Buffer const * buf, ostream & os, bool fragile, bool fp) const
+InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
+       : InsetFootlike(in, same_id)
 {
-    os << "\\footnote{%" << endl;
-    
-    int i = InsetText::Latex(buf, os, fragile, fp);
-    os << "}%" << endl;
-    
-    return i + 2;
+       setLabel(_("foot"));
+       setInsetName("Foot");
 }
 
 
-bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
+Inset * InsetFoot::clone(Buffer const &, bool same_id) const
 {
-    if (!InsertInsetAllowed(inset))
-       return false;
-
-    return InsetText::InsertInset(bv, inset);
+       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
 }
 
 
-bool InsetFoot::InsertInsetAllowed(Inset * inset) const
+string const InsetFoot::editMessage() const
 {
-    if ((inset->LyxCode() == Inset::FOOT_CODE) ||
-       (inset->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return true;
+       return _("Opened Footnote Inset");
 }
 
 
-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;
 }