X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.C;h=a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=4b09114c098ee7930528626d548f36da176c1711;hpb=82fa210ea8d38d51aafb131f10d843e27e056429;p=lyx.git diff --git a/src/insets/insetfoot.C b/src/insets/insetfoot.C index 4b09114c09..a2297b6cd9 100644 --- a/src/insets/insetfoot.C +++ b/src/insets/insetfoot.C @@ -5,7 +5,8 @@ * * Copyright 1998 The LyX Team. * - *======================================================*/ + * ====================================================== + */ #include @@ -17,76 +18,50 @@ #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; -InsetFoot::InsetFoot(Buffer * bf) - : InsetCollapsable(bf) -{ - setLabel(_("foot")); - LyXFont font(LyXFont::ALL_SANE); - font.decSize(); - font.decSize(); - font.setColor(LColor::footnote); - setLabelFont(font); - setAutoCollapse(false); - setInsetName("Foot"); -} +using std::ostream; -Inset * InsetFoot::Clone() const +InsetFoot::InsetFoot() + : InsetFootlike() { - InsetFoot * result = new InsetFoot(buffer); - result->init(buffer, this); - - result->collapsed = collapsed; - return result; + setLabel(_("foot")); + setInsetName("Foot"); } -char const * InsetFoot::EditMessage() const +InsetFoot::InsetFoot(InsetFoot const & in, bool same_id) + : InsetFootlike(in, same_id) { - return _("Opened Footnote Inset"); + setLabel(_("foot")); + setInsetName("Foot"); } -int InsetFoot::Latex(ostream & os, bool fragile, bool fp) const +Inset * InsetFoot::clone(Buffer const &, bool same_id) const { - if (fragile) - os << "\\footnote{"; // was footnotemark but that won't work - else - os << "\\footnote{"; - - int i = InsetText::Latex(os, fragile, fp); - os << "}"; - - return i; + return new InsetFoot(*const_cast(this), same_id); } -bool InsetFoot::InsertInset(BufferView * bv, Inset * inset) +string const InsetFoot::editMessage() const { - if (!InsertInsetAllowed(inset)) - return false; - - return InsetText::InsertInset(bv, inset); + return _("Opened Footnote Inset"); } -bool InsetFoot::InsertInsetAllowed(Inset * inset) const -{ - if ((inset->LyxCode() == Inset::FOOT_CODE) || - (inset->LyxCode() == Inset::MARGIN_CODE)) { - return false; - } - return true; -} -LyXFont InsetFoot::GetDrawFont(LyXParagraph * par, int pos) const +int InsetFoot::latex(Buffer const * buf, + ostream & os, bool fragile, bool fp) const { - LyXFont fn = InsetCollapsable::GetDrawFont(par, pos); - fn.decSize(); - fn.decSize(); - return fn; + os << "%\n\\footnote{"; + + int const i = inset.latex(buf, os, fragile, fp); + os << "%\n}"; + + return i + 2; }