]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.C
reformatting and remove using delc
[lyx.git] / src / insets / insetmarginal.C
index 889743d2a5cdc9a12e4a77729e1cc3926e39148e..4a631bd8ccef46150748636aa2542e3fd76bb1d5 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"
+#include "debug.h"
 
-using std::ostream;
-using std::endl;
 
-InsetMarginal::InsetMarginal() : InsetCollapsable()
+InsetMarginal::InsetMarginal()
+       : InsetFootlike()
 {
-    setLabel(_("margin"));
-    LyXFont font(LyXFont::ALL_SANE);
-    font.decSize();
-    font.decSize();
-    font.setColor(LColor::footnote);
-    setLabelFont(font);
-    setAutoCollapse(false);
-    setInsetName("Marginal");
+       setLabel(_("margin"));
+       setInsetName("Marginal");
 }
 
 
-void InsetMarginal::Write(Buffer const * buf, ostream & os) const
+Inset * InsetMarginal::Clone(Buffer const &) const
 {
-    os << getInsetName() << "\n";
-    InsetCollapsable::Write(buf, os);
+       InsetMarginal * result = new InsetMarginal;
+       result->inset.init(&inset);
+       
+       result->collapsed = collapsed;
+       return result;
 }
 
 
-Inset * InsetMarginal::Clone() const
+string const InsetMarginal::EditMessage() const
 {
-    InsetMarginal * result = new InsetMarginal;
-    result->init(this);
-    
-    result->collapsed = collapsed;
-    return result;
-}
-
-
-char const * InsetMarginal::EditMessage() const
-{
-    return _("Opened Marginal Note Inset");
+       return _("Opened Marginal Note Inset");
 }
 
 
 int InsetMarginal::Latex(Buffer const * buf,
-                        ostream & os, bool fragile, bool fp) const
-{
-    os << "\\marginpar{%\n";
-    
-    int i = InsetText::Latex(buf, os, fragile, fp);
-    os << "}%\n";
-    
-    return i + 2;
-}
-
-
-bool InsetMarginal::InsertInset(BufferView * bv, Inset * inset)
-{
-    if (!InsertInsetAllowed(inset))
-       return false;
-
-    return InsetText::InsertInset(bv, inset);
-}
-
-
-bool InsetMarginal::InsertInsetAllowed(Inset * inset) const
+                        std::ostream & os, bool fragile, bool fp) const
 {
-    if ((inset->LyxCode() == Inset::FOOT_CODE) ||
-       (inset->LyxCode() == Inset::MARGIN_CODE)) {
-       return false;
-    }
-    return true;
+       os << "\\marginpar{%\n";
+       
+       int const i = inset.Latex(buf, os, fragile, fp);
+       os << "}%\n";
+       
+       return i + 2;
 }
 
 
-LyXFont InsetMarginal::GetDrawFont(BufferView * bv,
-                                  LyXParagraph * p, int pos) const
+bool InsetMarginal::InsertInsetAllowed(Inset * in) const
 {
-    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-    fn.decSize().decSize();
-    return fn;
+       if ((in->LyxCode() == Inset::FOOT_CODE) ||
+           (in->LyxCode() == Inset::MARGIN_CODE)) {
+               return false;
+       }
+       return true;
 }