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
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-08-22 09:44:59 +00:00
|
|
|
* \author Martin Vermeer
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pö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"
|
2010-01-20 19:03:17 +00:00
|
|
|
#include "Layout.h"
|
2008-10-06 14:37:28 +00:00
|
|
|
#include "Lexer.h"
|
|
|
|
|
2005-01-06 16:39:35 +00:00
|
|
|
#include "support/convert.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/debug.h"
|
2009-07-12 20:09:53 +00:00
|
|
|
#include "support/gettext.h"
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2009-04-19 22:44:46 +00:00
|
|
|
#include "support/lstrings.h"
|
2000-07-17 18:27:53 +00:00
|
|
|
|
2009-04-19 23:03:50 +00:00
|
|
|
#include <algorithm>
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-20 19:03:17 +00:00
|
|
|
Counter::Counter(docstring const & mc, docstring const & ls,
|
|
|
|
docstring const & lsa)
|
2007-08-16 11:07:00 +00:00
|
|
|
: master_(mc), labelstring_(ls), labelstringappendix_(lsa)
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-06 14:37:28 +00:00
|
|
|
bool Counter::read(Lexer & lex)
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
CT_WITHIN = 1,
|
|
|
|
CT_LABELSTRING,
|
|
|
|
CT_LABELSTRING_APPENDIX,
|
2010-01-20 20:33:36 +00:00
|
|
|
CT_PRETTYFORMAT,
|
2008-10-06 14:37:28 +00:00
|
|
|
CT_END
|
|
|
|
};
|
|
|
|
|
|
|
|
LexerKeyword counterTags[] = {
|
|
|
|
{ "end", CT_END },
|
|
|
|
{ "labelstring", CT_LABELSTRING },
|
|
|
|
{ "labelstringappendix", CT_LABELSTRING_APPENDIX },
|
2010-01-20 20:33:36 +00:00
|
|
|
{ "prettyformat", CT_PRETTYFORMAT },
|
2008-10-06 14:37:28 +00:00
|
|
|
{ "within", CT_WITHIN }
|
|
|
|
};
|
|
|
|
|
|
|
|
lex.pushTable(counterTags);
|
|
|
|
|
|
|
|
bool getout = false;
|
|
|
|
while (!getout && lex.isOK()) {
|
|
|
|
int le = lex.lex();
|
|
|
|
switch (le) {
|
|
|
|
case Lexer::LEX_UNDEF:
|
|
|
|
lex.printError("Unknown counter tag `$$Token'");
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (le) {
|
|
|
|
case CT_WITHIN:
|
|
|
|
lex.next();
|
|
|
|
master_ = lex.getDocString();
|
|
|
|
if (master_ == "none")
|
|
|
|
master_.erase();
|
|
|
|
break;
|
2010-01-20 20:33:36 +00:00
|
|
|
case CT_PRETTYFORMAT:
|
|
|
|
lex.next();
|
|
|
|
prettyformat_ = lex.getDocString();
|
|
|
|
break;
|
2008-10-06 14:37:28 +00:00
|
|
|
case CT_LABELSTRING:
|
|
|
|
lex.next();
|
|
|
|
labelstring_ = lex.getDocString();
|
|
|
|
labelstringappendix_ = labelstring_;
|
|
|
|
break;
|
|
|
|
case CT_LABELSTRING_APPENDIX:
|
|
|
|
lex.next();
|
|
|
|
labelstringappendix_ = lex.getDocString();
|
|
|
|
break;
|
|
|
|
case CT_END:
|
|
|
|
getout = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Here if have a full counter if getout == true
|
|
|
|
if (!getout)
|
|
|
|
LYXERR0("No End tag found for counter!");
|
|
|
|
lex.popTable();
|
|
|
|
return getout;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
docstring const & Counter::labelString(bool in_appendix) const
|
2002-08-06 22:40:59 +00:00
|
|
|
{
|
2009-04-19 20:05:26 +00:00
|
|
|
return in_appendix ? labelstringappendix_ : labelstring_;
|
2002-08-06 22:40:59 +00:00
|
|
|
}
|
|
|
|
|
2000-07-17 18:27:53 +00:00
|
|
|
|
2009-07-12 20:09:53 +00:00
|
|
|
Counter::StringMap & Counter::flatLabelStrings(bool in_appendix) const
|
2000-07-17 18:27:53 +00:00
|
|
|
{
|
2009-04-19 20:05:26 +00:00
|
|
|
return in_appendix ? flatlabelstringappendix_ : flatlabelstring_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-02 20:22:10 +00:00
|
|
|
Counters::Counters() : appendix_(false), subfloat_(false)
|
|
|
|
{
|
|
|
|
layout_stack_.push_back(0);
|
2010-12-02 21:04:01 +00:00
|
|
|
counter_stack_.push_back(from_ascii(""));
|
2010-12-02 20:22:10 +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;
|
|
|
|
}
|
2009-04-19 10:06:17 +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
|
|
|
|
{
|
2009-04-19 10:06:17 +00:00
|
|
|
return counterList_.find(c) != counterList_.end();
|
2007-08-11 18:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-12 14:50:01 +00:00
|
|
|
bool Counters::read(Lexer & lex, docstring const & name, bool makenew)
|
2008-10-06 14:37:28 +00:00
|
|
|
{
|
|
|
|
if (hasCounter(name)) {
|
|
|
|
LYXERR(Debug::TCLASS, "Reading existing counter " << to_utf8(name));
|
2009-04-19 10:06:17 +00:00
|
|
|
return counterList_[name].read(lex);
|
2008-10-06 14:37:28 +00:00
|
|
|
}
|
2009-08-12 14:50:01 +00:00
|
|
|
|
2008-10-06 14:37:28 +00:00
|
|
|
LYXERR(Debug::TCLASS, "Reading new counter " << to_utf8(name));
|
|
|
|
Counter cnt;
|
|
|
|
bool success = cnt.read(lex);
|
2009-08-12 14:50:01 +00:00
|
|
|
// if makenew is false, we will just discard what we read
|
|
|
|
if (success && makenew)
|
2009-04-19 10:06:17 +00:00
|
|
|
counterList_[name] = cnt;
|
2009-08-12 14:50:01 +00:00
|
|
|
else if (!success)
|
2008-10-06 14:37:28 +00:00
|
|
|
LYXERR0("Error reading counter `" << name << "'!");
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2009-04-19 10:06:17 +00:00
|
|
|
CounterList::iterator const it = counterList_.find(ctr);
|
|
|
|
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
|
|
|
{
|
2009-04-19 10:06:17 +00:00
|
|
|
CounterList::iterator const it = counterList_.find(ctr);
|
|
|
|
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
|
|
|
{
|
2009-04-19 10:06:17 +00:00
|
|
|
CounterList::const_iterator const cit = counterList_.find(ctr);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-20 19:42:12 +00:00
|
|
|
void Counters::step(docstring const & ctr, UpdateType utype)
|
2000-07-17 18:27:53 +00:00
|
|
|
{
|
2009-04-19 10:06:17 +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();
|
2010-01-20 19:42:12 +00:00
|
|
|
if (utype == OutputUpdate) {
|
2010-01-20 19:03:17 +00:00
|
|
|
LASSERT(!counter_stack_.empty(), /* */);
|
|
|
|
counter_stack_.pop_back();
|
|
|
|
counter_stack_.push_back(ctr);
|
|
|
|
}
|
2009-04-19 10:06:17 +00:00
|
|
|
it = counterList_.begin();
|
|
|
|
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();
|
2009-07-12 17:30:56 +00:00
|
|
|
CounterList::iterator it = counterList_.begin();
|
|
|
|
CounterList::iterator const end = counterList_.end();
|
2009-07-12 20:09:53 +00:00
|
|
|
for (; it != end; ++it)
|
2009-07-12 17:30:56 +00:00
|
|
|
it->second.reset();
|
2010-01-20 19:03:17 +00:00
|
|
|
counter_stack_.clear();
|
|
|
|
counter_stack_.push_back(from_ascii(""));
|
2010-12-02 20:22:10 +00:00
|
|
|
layout_stack_.clear();
|
2010-01-20 19:03:17 +00:00
|
|
|
layout_stack_.push_back(0);
|
2002-08-11 20:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2009-04-19 10:06:17 +00:00
|
|
|
CounterList::iterator it = counterList_.begin();
|
|
|
|
CounterList::iterator end = counterList_.end();
|
2002-08-06 22:40:59 +00:00
|
|
|
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
|
|
|
{
|
2009-04-19 10:06:17 +00:00
|
|
|
CounterList::iterator it = counterList_.begin();
|
|
|
|
CounterList::iterator end = counterList_.end();
|
2002-08-06 22:40:59 +00:00
|
|
|
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
|
|
|
|
2009-06-02 16:09:01 +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,
|
2009-04-19 10:06:17 +00:00
|
|
|
docstring const & numbertype) const
|
2002-08-06 22:40:59 +00:00
|
|
|
{
|
2009-04-19 10:06:17 +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
|
|
|
|
2009-07-12 20:09:53 +00:00
|
|
|
docstring Counters::theCounter(docstring const & counter,
|
|
|
|
string const & lang) const
|
2008-02-23 20:38:57 +00:00
|
|
|
{
|
2009-04-19 20:05:26 +00:00
|
|
|
CounterList::const_iterator it = counterList_.find(counter);
|
|
|
|
if (it == counterList_.end())
|
2010-11-29 19:11:38 +00:00
|
|
|
return from_ascii("#");
|
2009-07-12 20:09:53 +00:00
|
|
|
Counter const & ctr = it->second;
|
|
|
|
Counter::StringMap & sm = ctr.flatLabelStrings(appendix());
|
|
|
|
Counter::StringMap::iterator smit = sm.find(lang);
|
|
|
|
if (smit != sm.end())
|
|
|
|
return counterLabel(smit->second, lang);
|
|
|
|
|
2010-12-02 21:11:08 +00:00
|
|
|
deque<docstring> callers;
|
2009-07-12 20:09:53 +00:00
|
|
|
docstring const & fls = flattenLabelString(counter, appendix(),
|
|
|
|
lang, callers);
|
|
|
|
sm[lang] = fls;
|
|
|
|
return counterLabel(fls, lang);
|
2008-02-23 20:38:57 +00:00
|
|
|
}
|
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
|
2009-04-20 11:00:30 +00:00
|
|
|
docstring Counters::flattenLabelString(docstring const & counter,
|
2009-07-12 20:09:53 +00:00
|
|
|
bool in_appendix,
|
|
|
|
string const & lang,
|
2010-12-02 21:11:08 +00:00
|
|
|
deque<docstring> & callers) const
|
2007-08-16 11:07:00 +00:00
|
|
|
{
|
2008-02-23 20:38:57 +00:00
|
|
|
docstring label;
|
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
if (find(callers.begin(), callers.end(), counter) != callers.end()) {
|
|
|
|
// recursion detected
|
|
|
|
lyxerr << "Warning: Recursion in label for counter `"
|
|
|
|
<< counter << "' detected"
|
|
|
|
<< endl;
|
|
|
|
return from_ascii("??");
|
|
|
|
}
|
2008-02-23 20:38:57 +00:00
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
CounterList::const_iterator it = counterList_.find(counter);
|
|
|
|
if (it == counterList_.end())
|
2010-11-29 19:11:38 +00:00
|
|
|
return from_ascii("#");
|
2009-04-19 20:05:26 +00:00
|
|
|
Counter const & c = it->second;
|
2008-02-23 20:38:57 +00:00
|
|
|
|
2009-07-12 20:09:53 +00:00
|
|
|
docstring ls = translateIfPossible(c.labelString(in_appendix), lang);
|
2008-02-23 20:38:57 +00:00
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
callers.push_back(counter);
|
|
|
|
if (ls.empty()) {
|
|
|
|
if (!c.master().empty())
|
2009-07-12 20:09:53 +00:00
|
|
|
ls = flattenLabelString(c.master(), in_appendix, lang, callers)
|
2009-04-19 20:05:26 +00:00
|
|
|
+ from_ascii(".");
|
|
|
|
callers.pop_back();
|
|
|
|
return ls + from_ascii("\\arabic{") + counter + "}";
|
|
|
|
}
|
2008-02-23 20:38:57 +00:00
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
while (true) {
|
|
|
|
//lyxerr << "ls=" << to_utf8(ls) << endl;
|
|
|
|
size_t const i = ls.find(from_ascii("\\the"), 0);
|
|
|
|
if (i == docstring::npos)
|
|
|
|
break;
|
|
|
|
size_t const j = i + 4;
|
|
|
|
size_t k = j;
|
|
|
|
while (k < ls.size() && lowercase(ls[k]) >= 'a'
|
|
|
|
&& lowercase(ls[k]) <= 'z')
|
|
|
|
++k;
|
2009-04-20 10:00:54 +00:00
|
|
|
docstring const newc = ls.substr(j, k - j);
|
2009-07-12 20:09:53 +00:00
|
|
|
docstring const repl = flattenLabelString(newc, in_appendix,
|
|
|
|
lang, callers);
|
2009-04-19 20:05:26 +00:00
|
|
|
ls.replace(i, k - j + 4, repl);
|
2007-08-16 11:07:00 +00:00
|
|
|
}
|
2009-04-19 20:05:26 +00:00
|
|
|
callers.pop_back();
|
2008-02-23 20:38:57 +00:00
|
|
|
|
2009-04-19 20:05:26 +00:00
|
|
|
return ls;
|
2007-08-16 11:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-12 20:09:53 +00:00
|
|
|
docstring Counters::counterLabel(docstring const & format,
|
|
|
|
string const & lang) const
|
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.
|
2009-07-13 11:05:31 +00:00
|
|
|
docstring const the = from_ascii("\\the");
|
2007-08-16 11:07:00 +00:00
|
|
|
while (true) {
|
2009-07-13 11:05:31 +00:00
|
|
|
//lyxerr << "label=" << label << endl;
|
|
|
|
size_t const i = label.find(the, 0);
|
2007-08-16 11:07:00 +00:00
|
|
|
if (i == docstring::npos)
|
|
|
|
break;
|
2009-04-19 10:06:17 +00:00
|
|
|
size_t const j = i + 4;
|
2007-08-16 11:07:00 +00:00
|
|
|
size_t k = j;
|
|
|
|
while (k < label.size() && lowercase(label[k]) >= 'a'
|
|
|
|
&& lowercase(label[k]) <= 'z')
|
|
|
|
++k;
|
2009-07-13 11:05:31 +00:00
|
|
|
docstring const newc(label, j, k - j);
|
|
|
|
label.replace(i, k - i, theCounter(newc, lang));
|
2007-08-16 11:07:00 +00:00
|
|
|
}
|
2003-09-12 17:13:22 +00:00
|
|
|
while (true) {
|
2009-07-13 11:05:31 +00:00
|
|
|
//lyxerr << "label=" << 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);
|
2009-07-13 11:05:31 +00:00
|
|
|
label.replace(i, k + 1 - i, labelItem(counter, numbertype));
|
2003-09-12 17:13:22 +00:00
|
|
|
}
|
2009-07-13 11:05:31 +00:00
|
|
|
//lyxerr << "DONE! label=" << label << endl;
|
2003-09-12 17:13:22 +00:00
|
|
|
return label;
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
2010-01-20 22:28:42 +00:00
|
|
|
docstring Counters::prettyCounter(docstring const & name,
|
2010-01-20 20:33:36 +00:00
|
|
|
string const & lang) const
|
|
|
|
{
|
2010-01-20 22:28:42 +00:00
|
|
|
CounterList::const_iterator it = counterList_.find(name);
|
2010-01-20 20:33:36 +00:00
|
|
|
if (it == counterList_.end())
|
2010-11-29 19:11:38 +00:00
|
|
|
return from_ascii("#");
|
2010-01-20 20:33:36 +00:00
|
|
|
Counter const & ctr = it->second;
|
2010-01-20 22:28:42 +00:00
|
|
|
|
|
|
|
docstring const value = theCounter(name, lang);
|
2010-01-20 20:33:36 +00:00
|
|
|
docstring const & format = ctr.prettyFormat();
|
2010-01-20 22:28:42 +00:00
|
|
|
if (format.empty())
|
|
|
|
return value;
|
|
|
|
return subst(format, from_ascii("##"), value);
|
2010-01-20 20:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-20 19:03:17 +00:00
|
|
|
docstring Counters::currentCounter() const
|
|
|
|
{
|
|
|
|
LASSERT(!counter_stack_.empty(), /* */);
|
|
|
|
return counter_stack_.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Counters::setActiveLayout(Layout const & lay)
|
|
|
|
{
|
|
|
|
LASSERT(!layout_stack_.empty(), return);
|
|
|
|
Layout const * const lastlay = layout_stack_.back();
|
|
|
|
// we want to check whether the layout has changed and, if so,
|
|
|
|
// whether we are coming out of or going into an environment.
|
|
|
|
if (!lastlay) {
|
|
|
|
layout_stack_.pop_back();
|
|
|
|
layout_stack_.push_back(&lay);
|
|
|
|
if (lay.isEnvironment())
|
|
|
|
beginEnvironment();
|
|
|
|
} else if (lastlay->name() != lay.name()) {
|
|
|
|
layout_stack_.pop_back();
|
|
|
|
layout_stack_.push_back(&lay);
|
|
|
|
if (lastlay->isEnvironment()) {
|
|
|
|
// we are coming out of an environment
|
|
|
|
// LYXERR0("Out: " << lastlay->name());
|
|
|
|
endEnvironment();
|
|
|
|
}
|
|
|
|
if (lay.isEnvironment()) {
|
|
|
|
// we are going into a new environment
|
|
|
|
// LYXERR0("In: " << lay.name());
|
|
|
|
beginEnvironment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Counters::beginEnvironment()
|
|
|
|
{
|
2010-12-02 20:22:10 +00:00
|
|
|
counter_stack_.push_back(counter_stack_.back());
|
2010-01-20 19:03:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Counters::endEnvironment()
|
|
|
|
{
|
|
|
|
LASSERT(!counter_stack_.empty(), return);
|
|
|
|
counter_stack_.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|