]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
updates to minipage inset
[lyx.git] / src / insets / insetfoot.C
index d86d7267ca35c3a74b15b20589d87531808062ca..1d942e899935ff000021ffcbbecb4bc0233b2c1f 100644 (file)
@@ -3,9 +3,10 @@
  * 
  *           LyX, The Document Processor
  *      
- *          Copyright (C) 1998 The LyX Team.
+ *          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;
 
 
-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
+Inset * InsetFoot::Clone(Buffer const &) const
 {
-    Inset * result = new InsetFoot(buffer);
+    InsetFoot * result = new InsetFoot;
+    result->inset->init(inset);
+
+    result->collapsed = collapsed;
     return result;
 }
 
 
-const char * InsetFoot::EditMessage() const
+string const InsetFoot::EditMessage() const
 {
     return _("Opened Footnote Inset");
 }
 
-#ifndef USE_OSTREAM_ONLY
-int InsetFoot::Latex(string & l, signed char fragile) const
-{
-    int i;
-    
-    if (fragile) 
-       l += "\\footnotetext{";
-    else 
-       l += "\\footnote{";
-
-    i = InsetText::Latex(l, fragile);
-    l += "}";
-
-    return i;
-}
-#endif
 
-int InsetFoot::Latex(ostream & os, signed char fragile, bool fp) const
+int InsetFoot::Latex(Buffer const * buf,
+                    ostream & os, bool fragile, bool fp) const
 {
-    int i;
+    os << "\\footnote{%\n";
     
-    if (fragile) 
-       os << "\\footnotetext{";
-    else 
-       os << "\\footnote{";
-
-    i = InsetText::Latex(os, fragile, fp);
-    os << "}";
-
-    return i;
-}
-
-void InsetFoot::Write(ostream & os) const
-{
-    os << "Foot\n";
-    os << "\ncollapsed ";
-    if (display())
-       os << "false";
-    else
-       os << "true";
-    os << "\n";
-    WriteParagraphData(os);
+    int const i = inset->Latex(buf, os, fragile, fp);
+    os << "}%\n";
+    
+    return i + 2;
 }
 
-void InsetFoot::Read(LyXLex & lex)
-{
-    if (lex.IsOK()) {
-       string token, tmptok;
-        
-       lex.next();
-        token = lex.GetString();
-       if (token == "collapsed") {
-           lex.next();
-           collapsed = lex.GetBool();
-       }
-    }
-    InsetText::Read(lex);
-}
 
-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;
 }