mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 16:18:22 +00:00
c466baaa5b
The current spelling is not strictly wrong, but flagged as unusual or historical by some authorities. It is also found fault with many spell checkers. Thus we decided to move to the more standard "-ible" form once and for all. See #10678 for discussion This part covers the most tricky part: the internal naming. Translations and layouts will follow. This will all also all be backported to 2.3.x, for the sake of backwards compatibility (cherry-picking).
71 lines
1.4 KiB
C++
71 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 "Font.h"
|
|
#include "MetricsInfo.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
using support::token;
|
|
|
|
InsetFootlike::InsetFootlike(Buffer * buf)
|
|
: InsetCollapsible(buf)
|
|
{}
|
|
|
|
|
|
void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
FontInfo tmpfont = mi.base.font;
|
|
mi.base.font = mi.base.bv->buffer().params().getFont().fontInfo();
|
|
InsetCollapsible::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();
|
|
InsetCollapsible::draw(pi, x, y);
|
|
pi.base.font = tmpfont;
|
|
}
|
|
|
|
|
|
void InsetFootlike::write(ostream & os) const
|
|
{
|
|
// The layoutName may contain a "InTitle" qualifier
|
|
os << to_utf8(token(layoutName(), char_type(':'), 0)) << "\n";
|
|
InsetCollapsible::write(os);
|
|
}
|
|
|
|
|
|
bool InsetFootlike::insetAllowed(InsetCode code) const
|
|
{
|
|
if (code == FOOT_CODE || code == MARGIN_CODE || code == FLOAT_CODE)
|
|
return false;
|
|
return InsetCollapsible::insetAllowed(code);
|
|
}
|
|
|
|
|
|
} // namespace lyx
|