mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
3f27f951cb
preparatory to fixing #7080. Note that mathed uses the same routine, but for a completely different purpose, so I did not rename it there. I have seen no difference in behavior after testing, e.g., opening and exporting Math.lyx, and also re-saving it and looking at the diff. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38109 a592a061-630c-0410-9148-cb99ea01b6c8
67 lines
1.3 KiB
C++
67 lines
1.3 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 "Font.h"
|
|
#include "MetricsInfo.h"
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
|
|
InsetFootlike::InsetFootlike(Buffer * buf)
|
|
: InsetCollapsable(buf)
|
|
{}
|
|
|
|
|
|
void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
FontInfo tmpfont = mi.base.font;
|
|
mi.base.font = mi.base.bv->buffer().params().getFont().fontInfo();
|
|
InsetCollapsable::metrics(mi, dim);
|
|
mi.base.font = tmpfont;
|
|
}
|
|
|
|
|
|
void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
FontInfo tmpfont = pi.base.font;
|
|
pi.base.font = pi.base.bv->buffer().params().getFont().fontInfo();
|
|
InsetCollapsable::draw(pi, x, y);
|
|
pi.base.font = tmpfont;
|
|
}
|
|
|
|
|
|
void InsetFootlike::write(ostream & os) const
|
|
{
|
|
os << to_utf8(layoutName()) << "\n";
|
|
InsetCollapsable::write(os);
|
|
}
|
|
|
|
|
|
bool InsetFootlike::insetAllowed(InsetCode code) const
|
|
{
|
|
if (code == FOOT_CODE || code == MARGIN_CODE || code == FLOAT_CODE)
|
|
return false;
|
|
return InsetCollapsable::insetAllowed(code);
|
|
}
|
|
|
|
|
|
} // namespace lyx
|