]> 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 cd94e5c2f4ab40025c156bcf3c2d01b9a10febef..a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e 100644 (file)
@@ -24,6 +24,9 @@
 #include "debug.h"
 
 
+using std::ostream;
+
+
 InsetFoot::InsetFoot()
        : InsetFootlike()
 {
@@ -32,39 +35,33 @@ InsetFoot::InsetFoot()
 }
 
 
-Inset * InsetFoot::Clone(Buffer const &) const
+InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
+       : InsetFootlike(in, same_id)
 {
-       InsetFoot * result = new InsetFoot;
-       result->inset.init(&inset);
+       setLabel(_("foot"));
+       setInsetName("Foot");
+}
+
 
-       result->collapsed = collapsed;
-       return result;
+Inset * InsetFoot::clone(Buffer const &, bool same_id) const
+{
+       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
 }
 
 
-string const InsetFoot::EditMessage() const
+string const InsetFoot::editMessage() const
 {
        return _("Opened Footnote Inset");
 }
 
 
-int InsetFoot::Latex(Buffer const * buf,
-                    std::ostream & os, bool fragile, bool fp) const
+int InsetFoot::latex(Buffer const * buf,
+                    ostream & os, bool fragile, bool fp) const
 {
-       os << "\\footnote{%\n";
+       os << "%\n\\footnote{";
        
-       int const i = inset.Latex(buf, os, fragile, fp);
-       os << "}\n";
+       int const i = inset.latex(buf, os, fragile, fp);
+       os << "%\n}";
        
        return i + 2;
 }
-
-
-bool InsetFoot::InsertInsetAllowed(Inset * in) const
-{
-       if ((in->LyxCode() == Inset::FOOT_CODE) ||
-           (in->LyxCode() == Inset::MARGIN_CODE)) {
-               return false;
-       }
-       return true;
-}