mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
237c132c1e
- get rid of the cached Dimension. Text inset dimensions are saved in ParagraphMetrics and mathed maintain their own dimension where needed. - width(), ascent(), descent(): deleted. - dimension(): now needs a valid BufferView. - metrics(): now void. * BufferView::getCoveringInset(): simplify. * ParagraphMetrics(): now cache inset dimensions. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20420 a592a061-630c-0410-9148-cb99ea01b6c8
69 lines
1.4 KiB
C++
69 lines
1.4 KiB
C++
/**
|
|
* \file InsetFootlike.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetFootlike.h"
|
|
|
|
#include "Buffer.h"
|
|
#include "BufferView.h"
|
|
#include "BufferParams.h"
|
|
#include "MetricsInfo.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
InsetFootlike::InsetFootlike(BufferParams const & bp)
|
|
: InsetCollapsable(bp)
|
|
{}
|
|
|
|
|
|
InsetFootlike::InsetFootlike(InsetFootlike const & in)
|
|
: InsetCollapsable(in)
|
|
{}
|
|
|
|
|
|
void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
Font tmpfont = mi.base.font;
|
|
mi.base.font = mi.base.bv->buffer().params().getFont();
|
|
InsetCollapsable::metrics(mi, dim);
|
|
mi.base.font = tmpfont;
|
|
}
|
|
|
|
|
|
void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
Font 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(name()) << "\n";
|
|
InsetCollapsable::write(buf, os);
|
|
}
|
|
|
|
|
|
bool InsetFootlike::insetAllowed(Inset::Code code) const
|
|
{
|
|
if (code == Inset::FOOT_CODE || code == Inset::MARGIN_CODE
|
|
|| code == Inset::FLOAT_CODE)
|
|
return false;
|
|
return InsetCollapsable::insetAllowed(code);
|
|
}
|
|
|
|
|
|
} // namespace lyx
|