X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfootlike.C;h=8aef1d25bdb2fb26e1323ffe8dca305ee40dbecd;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=5b1960aca92baa80fbcb4183cc56864411768cec;hpb=cf216cd7fc8ec452e3147171ab6a107c88906b06;p=lyx.git diff --git a/src/insets/insetfootlike.C b/src/insets/insetfootlike.C index 5b1960aca9..8aef1d25bd 100644 --- a/src/insets/insetfootlike.C +++ b/src/insets/insetfootlike.C @@ -1,28 +1,26 @@ -/* This file is part of - * ====================================================== +/** + * \file insetfootlike.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS. */ #include -#ifdef __GNUG__ -#pragma implementation -#endif - #include "insetfootlike.h" -#include "lyxfont.h" -#include "buffer.h" -#include "lyxtext.h" -#include "support/LOstream.h" +#include "buffer.h" +#include "BufferView.h" +#include "bufferparams.h" +#include "LColor.h" +#include "metricsinfo.h" +#include "paragraph.h" -using std::ostream; +namespace lyx { InsetFootlike::InsetFootlike(BufferParams const & bp) : InsetCollapsable(bp) @@ -35,8 +33,8 @@ InsetFootlike::InsetFootlike(BufferParams const & bp) } -InsetFootlike::InsetFootlike(InsetFootlike const & in, bool same_id) - : InsetCollapsable(in, same_id) +InsetFootlike::InsetFootlike(InsetFootlike const & in) + : InsetCollapsable(in) { LyXFont font(LyXFont::ALL_SANE); font.decSize(); @@ -46,17 +44,41 @@ InsetFootlike::InsetFootlike(InsetFootlike const & in, bool same_id) } -void InsetFootlike::write(Buffer const * buf, ostream & os) const +bool InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const +{ + LyXFont tmpfont = mi.base.font; + mi.base.font = mi.base.bv->buffer()->params().getFont(); + InsetCollapsable::metrics(mi, dim); + mi.base.font = tmpfont; + bool const changed = dim_ != dim; + dim_ = dim; + return changed; +} + + +void InsetFootlike::draw(PainterInfo & pi, int x, int y) const { - os << getInsetName() << "\n"; + LyXFont tmpfont = pi.base.font; + pi.base.font = pi.base.bv->buffer()->params().getFont(); + InsetCollapsable::draw(pi, x, y); + pi.base.font = tmpfont; +} + + +void InsetFootlike::write(Buffer const & buf, std::ostream & os) const +{ + os << to_utf8(getInsetName()) << "\n"; InsetCollapsable::write(buf, os); } -bool InsetFootlike::insetAllowed(Inset::Code code) const +bool InsetFootlike::insetAllowed(InsetBase::Code code) const { - if ((code == Inset::FOOT_CODE) || (code == Inset::MARGIN_CODE) - || (code == Inset::FLOAT_CODE)) + if (code == InsetBase::FOOT_CODE || code == InsetBase::MARGIN_CODE + || code == InsetBase::FLOAT_CODE) return false; return InsetCollapsable::insetAllowed(code); } + + +} // namespace lyx