2003-08-22 09:44:59 +00:00
|
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
|
* \file Counters.cpp
|
2003-08-22 09:44:59 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-22 09:44:59 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Martin Vermeer
|
2003-09-12 17:13:22 +00:00
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2007-08-08 15:10:55 +00:00
|
|
|
|
* \author Richard Heck (roman numerals)
|
2000-07-24 13:53:19 +00:00
|
|
|
|
*
|
2003-08-22 09:44:59 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2000-07-17 18:27:53 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
|
#include "Counters.h"
|
2002-09-06 14:48:01 +00:00
|
|
|
|
|
2005-01-06 16:39:35 +00:00
|
|
|
|
#include "support/convert.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
|
#include "support/debug.h"
|
|
|
|
|
#include "support/lstrings.h"
|
2003-09-09 17:25:35 +00:00
|
|
|
|
|
2008-04-10 21:49:34 +00:00
|
|
|
|
#include "support/assert.h"
|
2000-07-17 18:27:53 +00:00
|
|
|
|
|
2004-07-24 10:55:30 +00:00
|
|
|
|
#include <sstream>
|
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
|
using namespace lyx::support;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
|
2007-07-17 17:40:44 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 18:27:53 +00:00
|
|
|
|
Counter::Counter()
|
|
|
|
|
{
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-16 11:07:00 +00:00
|
|
|
|
Counter::Counter(docstring const & mc, docstring const & ls,
|
|
|
|
|
docstring const & lsa)
|
|
|
|
|
: master_(mc), labelstring_(ls), labelstringappendix_(lsa)
|
|
|
|
|
{
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-17 18:27:53 +00:00
|
|
|
|
void Counter::set(int v)
|
|
|
|
|
{
|
|
|
|
|
value_ = v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Counter::addto(int v)
|
|
|
|
|
{
|
|
|
|
|
value_ += v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Counter::value() const
|
|
|
|
|
{
|
|
|
|
|
return value_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Counter::step()
|
|
|
|
|
{
|
|
|
|
|
++value_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Counter::reset()
|
|
|
|
|
{
|
|
|
|
|
value_ = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-06 14:48:01 +00:00
|
|
|
|
|
2007-01-11 22:38:37 +00:00
|
|
|
|
docstring const & Counter::master() const
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
|
|
|
|
return master_;
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-06 14:48:01 +00:00
|
|
|
|
|
2007-08-16 11:07:00 +00:00
|
|
|
|
docstring const & Counter::labelString() const
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
2007-08-16 11:07:00 +00:00
|
|
|
|
return labelstring_;
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-17 18:27:53 +00:00
|
|
|
|
|
2007-08-16 11:07:00 +00:00
|
|
|
|
docstring const & Counter::labelStringAppendix() const
|
2000-07-17 18:27:53 +00:00
|
|
|
|
{
|
2007-08-16 11:07:00 +00:00
|
|
|
|
return labelstringappendix_;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
void Counters::newCounter(docstring const & newc,
|
2007-08-16 11:07:00 +00:00
|
|
|
|
docstring const & masterc,
|
|
|
|
|
docstring const & ls,
|
|
|
|
|
docstring const & lsa)
|
2000-07-17 18:27:53 +00:00
|
|
|
|
{
|
2007-08-16 11:07:00 +00:00
|
|
|
|
if (!masterc.empty() && !hasCounter(masterc)) {
|
2006-10-20 20:30:00 +00:00
|
|
|
|
lyxerr << "Master counter does not exist: "
|
2006-10-21 00:16:43 +00:00
|
|
|
|
<< to_utf8(masterc)
|
2006-10-20 20:30:00 +00:00
|
|
|
|
<< endl;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2007-08-16 11:07:00 +00:00
|
|
|
|
counterList[newc] = Counter(masterc, ls, lsa);
|
2000-07-17 18:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-11 18:23:30 +00:00
|
|
|
|
bool Counters::hasCounter(docstring const & c) const
|
|
|
|
|
{
|
|
|
|
|
return counterList.find(c) != counterList.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
void Counters::set(docstring const & ctr, int const val)
|
2000-07-17 18:27:53 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
CounterList::iterator const it = counterList.find(ctr);
|
2000-07-17 18:27:53 +00:00
|
|
|
|
if (it == counterList.end()) {
|
2006-10-20 20:30:00 +00:00
|
|
|
|
lyxerr << "set: Counter does not exist: "
|
2006-10-21 00:16:43 +00:00
|
|
|
|
<< to_utf8(ctr) << endl;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-08-06 22:40:59 +00:00
|
|
|
|
it->second.set(val);
|
2000-07-17 18:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
void Counters::addto(docstring const & ctr, int const val)
|
2000-07-17 18:27:53 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
CounterList::iterator const it = counterList.find(ctr);
|
2000-07-17 18:27:53 +00:00
|
|
|
|
if (it == counterList.end()) {
|
2006-10-20 20:30:00 +00:00
|
|
|
|
lyxerr << "addto: Counter does not exist: "
|
2006-10-21 00:16:43 +00:00
|
|
|
|
<< to_utf8(ctr) << endl;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-08-06 22:40:59 +00:00
|
|
|
|
it->second.addto(val);
|
2000-07-17 18:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
int Counters::value(docstring const & ctr) const
|
2000-07-17 18:27:53 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
CounterList::const_iterator const cit = counterList.find(ctr);
|
2000-07-17 18:27:53 +00:00
|
|
|
|
if (cit == counterList.end()) {
|
2006-10-20 20:30:00 +00:00
|
|
|
|
lyxerr << "value: Counter does not exist: "
|
2006-10-21 00:16:43 +00:00
|
|
|
|
<< to_utf8(ctr) << endl;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-06 22:40:59 +00:00
|
|
|
|
return cit->second.value();
|
2000-07-17 18:27:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
void Counters::step(docstring const & ctr)
|
2000-07-17 18:27:53 +00:00
|
|
|
|
{
|
|
|
|
|
CounterList::iterator it = counterList.find(ctr);
|
|
|
|
|
if (it == counterList.end()) {
|
2006-10-20 20:30:00 +00:00
|
|
|
|
lyxerr << "step: Counter does not exist: "
|
2006-10-21 00:16:43 +00:00
|
|
|
|
<< to_utf8(ctr) << endl;
|
2000-07-17 18:27:53 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-08-06 22:40:59 +00:00
|
|
|
|
|
|
|
|
|
it->second.step();
|
|
|
|
|
it = counterList.begin();
|
2005-01-05 20:21:27 +00:00
|
|
|
|
CounterList::iterator const end = counterList.end();
|
2002-08-06 22:40:59 +00:00
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
if (it->second.master() == ctr) {
|
|
|
|
|
it->second.reset();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-11 20:34:20 +00:00
|
|
|
|
|
|
|
|
|
void Counters::reset()
|
|
|
|
|
{
|
2007-07-11 12:52:50 +00:00
|
|
|
|
appendix_ = false;
|
2008-03-02 11:30:50 +00:00
|
|
|
|
subfloat_ = false;
|
2007-08-16 11:07:00 +00:00
|
|
|
|
current_float_.erase();
|
2002-08-11 20:34:20 +00:00
|
|
|
|
CounterList::iterator it = counterList.begin();
|
2005-01-05 20:21:27 +00:00
|
|
|
|
CounterList::iterator const end = counterList.end();
|
2002-08-11 20:34:20 +00:00
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
it->second.reset();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
void Counters::reset(docstring const & match)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
|
LASSERT(!match.empty(), /**/);
|
2002-08-11 20:34:20 +00:00
|
|
|
|
|
2002-08-06 22:40:59 +00:00
|
|
|
|
CounterList::iterator it = counterList.begin();
|
|
|
|
|
CounterList::iterator end = counterList.end();
|
|
|
|
|
for (; it != end; ++it) {
|
2002-08-11 20:34:20 +00:00
|
|
|
|
if (it->first.find(match) != string::npos)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
it->second.reset();
|
2002-08-09 12:14:54 +00:00
|
|
|
|
}
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-12 20:24:10 +00:00
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
void Counters::copy(Counters & from, Counters & to, docstring const & match)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
|
|
|
|
CounterList::iterator it = counterList.begin();
|
|
|
|
|
CounterList::iterator end = counterList.end();
|
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
if (it->first.find(match) != string::npos || match == "") {
|
|
|
|
|
to.set(it->first, from.value(it->first));
|
2002-08-09 12:14:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
2002-08-09 12:14:54 +00:00
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
char loweralphaCounter(int const n)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
2003-09-15 11:00:00 +00:00
|
|
|
|
if (n < 1 || n > 26)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
return '?';
|
2003-09-12 17:13:22 +00:00
|
|
|
|
return 'a' + n - 1;
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-12 20:24:10 +00:00
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
char alphaCounter(int const n)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
|
|
|
|
if (n < 1 || n > 26)
|
|
|
|
|
return '?';
|
2003-09-12 17:13:22 +00:00
|
|
|
|
return 'A' + n - 1;
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-12 20:24:10 +00:00
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
char hebrewCounter(int const n)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
|
|
|
|
static const char hebrew[22] = {
|
2007-05-10 10:35:57 +00:00
|
|
|
|
'\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7', '\xe8',
|
|
|
|
|
'\xe9', '\xeb', '\xec', '\xee', '\xf0', '\xf1', '\xf2', '\xf4', '\xf6',
|
|
|
|
|
'\xf7', '\xf8', '\xf9', '\xfa'
|
2002-08-06 22:40:59 +00:00
|
|
|
|
};
|
2003-09-12 17:13:22 +00:00
|
|
|
|
|
2002-08-06 22:40:59 +00:00
|
|
|
|
if (n < 1 || n > 22)
|
|
|
|
|
return '?';
|
2003-09-12 17:13:22 +00:00
|
|
|
|
return hebrew[n - 1];
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-12 20:24:10 +00:00
|
|
|
|
|
2007-08-08 15:10:55 +00:00
|
|
|
|
|
|
|
|
|
//On the special cases, see http://mathworld.wolfram.com/RomanNumerals.html
|
|
|
|
|
//and for a list of roman numerals up to and including 3999, see
|
|
|
|
|
//http://www.research.att.com/~njas/sequences/a006968.txt. (Thanks to Joost
|
|
|
|
|
//for this info.)
|
2007-08-08 16:23:59 +00:00
|
|
|
|
docstring const romanCounter(int const n)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
2007-08-08 15:10:55 +00:00
|
|
|
|
static char const * const ones[9] = {
|
|
|
|
|
"I", "II", "III", "IV", "V",
|
|
|
|
|
"VI", "VII", "VIII", "IX"
|
2002-08-06 22:40:59 +00:00
|
|
|
|
};
|
2007-08-08 15:10:55 +00:00
|
|
|
|
|
|
|
|
|
static char const * const tens[9] = {
|
|
|
|
|
"X", "XX", "XXX", "XL", "L",
|
|
|
|
|
"LX", "LXX", "LXXX", "XC"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static char const * const hunds[9] = {
|
|
|
|
|
"C", "CC", "CCC", "CD", "D",
|
|
|
|
|
"DC", "DCC", "DCCC", "CM"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (n > 1000 || n < 1)
|
2006-10-21 00:16:43 +00:00
|
|
|
|
return from_ascii("??");
|
2007-08-08 15:10:55 +00:00
|
|
|
|
|
|
|
|
|
int val = n;
|
|
|
|
|
string roman;
|
|
|
|
|
switch (n) {
|
|
|
|
|
//special cases
|
|
|
|
|
case 900:
|
|
|
|
|
roman = "CM";
|
|
|
|
|
break;
|
|
|
|
|
case 400:
|
|
|
|
|
roman = "CD";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (val >= 100) {
|
|
|
|
|
int hundreds = val / 100;
|
|
|
|
|
roman = hunds[hundreds - 1];
|
|
|
|
|
val = val % 100;
|
|
|
|
|
}
|
|
|
|
|
if (val >= 10) {
|
|
|
|
|
switch (val) {
|
|
|
|
|
//special case
|
|
|
|
|
case 90:
|
|
|
|
|
roman = roman + "XC";
|
|
|
|
|
val = 0; //skip next
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
int tensnum = val / 10;
|
|
|
|
|
roman = roman + tens[tensnum - 1];
|
|
|
|
|
val = val % 10;
|
|
|
|
|
} // end switch
|
|
|
|
|
} // end tens
|
|
|
|
|
if (val > 0)
|
|
|
|
|
roman = roman + ones[val -1];
|
|
|
|
|
}
|
2007-08-08 16:23:59 +00:00
|
|
|
|
return from_ascii(roman);
|
2003-09-12 17:13:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-08 15:10:55 +00:00
|
|
|
|
docstring const lowerromanCounter(int const n)
|
2003-09-12 17:13:22 +00:00
|
|
|
|
{
|
2007-12-12 20:10:20 +00:00
|
|
|
|
return lowercase(romanCounter(n));
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2002-08-12 20:24:10 +00:00
|
|
|
|
|
2006-10-20 20:30:00 +00:00
|
|
|
|
docstring Counters::labelItem(docstring const & ctr,
|
|
|
|
|
docstring const & numbertype)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
2007-01-11 22:56:21 +00:00
|
|
|
|
CounterList::const_iterator const cit = counterList.find(ctr);
|
|
|
|
|
if (cit == counterList.end()) {
|
2006-10-20 20:30:00 +00:00
|
|
|
|
lyxerr << "Counter "
|
2006-10-21 00:16:43 +00:00
|
|
|
|
<< to_utf8(ctr)
|
2006-10-20 20:30:00 +00:00
|
|
|
|
<< " does not exist." << endl;
|
|
|
|
|
return docstring();
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
2002-09-05 12:58:10 +00:00
|
|
|
|
|
2007-01-11 22:56:21 +00:00
|
|
|
|
int val = cit->second.value();
|
|
|
|
|
|
2003-09-12 17:13:22 +00:00
|
|
|
|
if (numbertype == "hebrew")
|
2007-01-11 22:56:21 +00:00
|
|
|
|
return docstring(1, hebrewCounter(val));
|
2003-09-12 17:13:22 +00:00
|
|
|
|
|
|
|
|
|
if (numbertype == "alph")
|
2007-01-11 22:56:21 +00:00
|
|
|
|
return docstring(1, loweralphaCounter(val));
|
2003-09-12 17:13:22 +00:00
|
|
|
|
|
|
|
|
|
if (numbertype == "Alph")
|
2007-01-11 22:56:21 +00:00
|
|
|
|
return docstring(1, alphaCounter(val));
|
2003-09-12 17:13:22 +00:00
|
|
|
|
|
|
|
|
|
if (numbertype == "roman")
|
2007-01-11 22:56:21 +00:00
|
|
|
|
return lowerromanCounter(val);
|
2002-11-04 02:12:42 +00:00
|
|
|
|
|
2003-09-12 17:13:22 +00:00
|
|
|
|
if (numbertype == "Roman")
|
2007-01-11 22:56:21 +00:00
|
|
|
|
return romanCounter(val);
|
2003-09-12 17:13:22 +00:00
|
|
|
|
|
2007-01-11 22:56:21 +00:00
|
|
|
|
return convert<docstring>(val);
|
2002-08-06 22:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-12 20:24:10 +00:00
|
|
|
|
|
2007-08-16 11:07:00 +00:00
|
|
|
|
docstring Counters::theCounter(docstring const & counter)
|
2008-02-23 20:38:57 +00:00
|
|
|
|
{
|
|
|
|
|
std::set<docstring> callers;
|
|
|
|
|
return theCounter(counter, callers);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
docstring Counters::theCounter(docstring const & counter,
|
|
|
|
|
std::set<docstring> & callers)
|
2007-08-16 11:07:00 +00:00
|
|
|
|
{
|
|
|
|
|
if (!hasCounter(counter))
|
|
|
|
|
return from_ascii("??");
|
|
|
|
|
|
2008-02-23 20:38:57 +00:00
|
|
|
|
docstring label;
|
|
|
|
|
|
|
|
|
|
if (callers.find(counter) == callers.end()) {
|
|
|
|
|
|
|
|
|
|
pair<std::set<docstring>::iterator, bool> result = callers.insert(counter);
|
|
|
|
|
|
|
|
|
|
Counter const & c = counterList[counter];
|
|
|
|
|
docstring ls = appendix() ? c.labelStringAppendix() : c.labelString();
|
|
|
|
|
|
|
|
|
|
if (ls.empty()) {
|
|
|
|
|
if (!c.master().empty())
|
|
|
|
|
ls = from_ascii("\\the") + c.master() + from_ascii(".");
|
|
|
|
|
ls += from_ascii("\\arabic{") + counter + "}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label = counterLabel(ls, &callers);
|
2007-08-16 11:07:00 +00:00
|
|
|
|
|
2008-02-23 20:38:57 +00:00
|
|
|
|
callers.erase(result.first);
|
|
|
|
|
} else {
|
|
|
|
|
// recursion detected
|
|
|
|
|
lyxerr << "Warning: Recursion in label for counter `"
|
|
|
|
|
<< counter << "' detected"
|
|
|
|
|
<< endl;
|
2007-08-16 11:07:00 +00:00
|
|
|
|
}
|
2008-02-23 20:38:57 +00:00
|
|
|
|
|
|
|
|
|
return label;
|
2007-08-16 11:07:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-02-23 20:38:57 +00:00
|
|
|
|
docstring Counters::counterLabel(docstring const & format,
|
|
|
|
|
std::set<docstring> * callers)
|
2002-08-06 22:40:59 +00:00
|
|
|
|
{
|
2006-10-20 20:30:00 +00:00
|
|
|
|
docstring label = format;
|
2007-08-16 11:07:00 +00:00
|
|
|
|
|
|
|
|
|
// FIXME: Using regexps would be better, but we compile boost without
|
|
|
|
|
// wide regexps currently.
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
//lyxerr << "label=" << to_utf8(label) << endl;
|
|
|
|
|
size_t const i = label.find(from_ascii("\\the"), 0);
|
|
|
|
|
if (i == docstring::npos)
|
|
|
|
|
break;
|
|
|
|
|
size_t j = i + 4;
|
|
|
|
|
size_t k = j;
|
|
|
|
|
while (k < label.size() && lowercase(label[k]) >= 'a'
|
|
|
|
|
&& lowercase(label[k]) <= 'z')
|
|
|
|
|
++k;
|
|
|
|
|
docstring counter = label.substr(j, k - j);
|
2008-02-23 20:38:57 +00:00
|
|
|
|
docstring repl = callers? theCounter(counter, *callers):
|
|
|
|
|
theCounter(counter);
|
2007-08-16 11:07:00 +00:00
|
|
|
|
label.replace(i, k - j + 4, repl);
|
|
|
|
|
}
|
2008-02-23 20:38:57 +00:00
|
|
|
|
|
2003-09-12 17:13:22 +00:00
|
|
|
|
while (true) {
|
2007-08-16 11:07:00 +00:00
|
|
|
|
//lyxerr << "label=" << to_utf8(label) << endl;
|
2003-09-15 11:00:00 +00:00
|
|
|
|
|
2003-09-12 17:13:22 +00:00
|
|
|
|
size_t const i = label.find('\\', 0);
|
2006-10-20 20:30:00 +00:00
|
|
|
|
if (i == docstring::npos)
|
2003-09-12 17:13:22 +00:00
|
|
|
|
break;
|
|
|
|
|
size_t const j = label.find('{', i + 1);
|
2006-10-20 20:30:00 +00:00
|
|
|
|
if (j == docstring::npos)
|
2003-09-12 17:13:22 +00:00
|
|
|
|
break;
|
|
|
|
|
size_t const k = label.find('}', j + 1);
|
2007-01-11 22:38:37 +00:00
|
|
|
|
if (k == docstring::npos)
|
2003-09-12 17:13:22 +00:00
|
|
|
|
break;
|
2006-10-20 20:30:00 +00:00
|
|
|
|
docstring const numbertype(label, i + 1, j - i - 1);
|
|
|
|
|
docstring const counter(label, j + 1, k - j - 1);
|
|
|
|
|
docstring const rep = labelItem(counter, numbertype);
|
2007-05-28 22:27:45 +00:00
|
|
|
|
label = docstring(label, 0, i) + rep
|
2007-01-11 22:38:37 +00:00
|
|
|
|
+ docstring(label, k + 1, docstring::npos);
|
2003-09-12 17:13:22 +00:00
|
|
|
|
}
|
2007-08-16 11:07:00 +00:00
|
|
|
|
//lyxerr << "DONE! label=" << to_utf8(label) << endl;
|
2003-09-12 17:13:22 +00:00
|
|
|
|
return label;
|
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|