]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
use the new sstream return non-pods as const, use string instead of char * in a lot...
[lyx.git] / src / insets / insetfoot.C
index e4504e48b95628b64ecc2803a40494e2a4f63f2f..c806568c2eefbeb1679ae891151818aff10f2ba7 100644 (file)
@@ -5,7 +5,8 @@
  *      
  *          Copyright 1998 The LyX Team.
  *
- *======================================================*/
+ * ======================================================
+ */
 
 #include <config.h>
 
 #include "gettext.h"
 #include "lyxfont.h"
 #include "BufferView.h"
-#include "lyxscreen.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(Buffer * bf)
-               : InsetCollapsable(bf)
+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
 {
-    InsetFoot * result = new InsetFoot(buffer);
-    result->init(buffer, par);
+    InsetFoot * result = new InsetFoot;
+    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(ostream & os, signed char fragile, bool fp) const
-{
-       if (fragile) 
-               os << "\\footnotetext{";
-       else 
-               os << "\\footnote{";
-       
-       int i = InsetText::Latex(os, fragile, fp);
-       os << "}";
-       
-       return i;
-}
-
-
-void InsetFoot::Write(ostream & os) const
+int InsetFoot::Latex(Buffer const * buf,
+                    ostream & os, bool fragile, bool fp) const
 {
-       os << "Foot\n"
-          << "\ncollapsed ";
-       if (display())
-               os << "false\n";
-       else
-               os << "true\n";
-       WriteParagraphData(os);
-}
-
-
-void InsetFoot::Read(LyXLex & lex)
-{
-    if (lex.IsOK()) {
-       lex.next();
-        string token = lex.GetString();
-       if (token == "collapsed") {
-           lex.next();
-           collapsed = lex.GetBool();
-       }
-    }
-    InsetText::Read(lex);
+    os << "\\footnote{%\n";
+    
+    int i = inset->Latex(buf, os, fragile, fp);
+    os << "}%\n";
+    
+    return i + 2;
 }
 
 
-bool InsetFoot::InsertInset(BufferView * bv, Inset * inset)
+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 InsetText::InsertInset(bv, inset);
+    return true;
 }