mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
remove duplicate methods moved to TextMetrics.C.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16438 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
10f5ccaab8
commit
53ce526058
56
src/text.C
56
src/text.C
@ -97,62 +97,6 @@ using frontend::FontMetrics;
|
||||
|
||||
namespace {
|
||||
|
||||
int numberOfSeparators(Paragraph const & par, Row const & row)
|
||||
{
|
||||
pos_type const first = max(row.pos(), par.beginOfBody());
|
||||
pos_type const last = row.endpos() - 1;
|
||||
int n = 0;
|
||||
for (pos_type p = first; p < last; ++p) {
|
||||
if (par.isSeparator(p))
|
||||
++n;
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
|
||||
int numberOfLabelHfills(Paragraph const & par, Row const & row)
|
||||
{
|
||||
pos_type last = row.endpos() - 1;
|
||||
pos_type first = row.pos();
|
||||
|
||||
// hfill *DO* count at the beginning of paragraphs!
|
||||
if (first) {
|
||||
while (first < last && par.isHfill(first))
|
||||
++first;
|
||||
}
|
||||
|
||||
last = min(last, par.beginOfBody());
|
||||
int n = 0;
|
||||
for (pos_type p = first; p < last; ++p) {
|
||||
if (par.isHfill(p))
|
||||
++n;
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
|
||||
int numberOfHfills(Paragraph const & par, Row const & row)
|
||||
{
|
||||
pos_type const last = row.endpos();
|
||||
pos_type first = row.pos();
|
||||
|
||||
// hfill *DO* count at the beginning of paragraphs!
|
||||
if (first) {
|
||||
while (first < last && par.isHfill(first))
|
||||
++first;
|
||||
}
|
||||
|
||||
first = max(first, par.beginOfBody());
|
||||
|
||||
int n = 0;
|
||||
for (pos_type p = first; p < last; ++p) {
|
||||
if (par.isHfill(p))
|
||||
++n;
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
|
||||
void readParToken(Buffer const & buf, Paragraph & par, LyXLex & lex,
|
||||
string const & token, LyXFont & font, Change & change, ErrorList & errorList)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user