X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fcounters.C;h=087a0bd2c454d041f813df7148876b3e41cbc1e9;hb=5c00d0f48978964a576070d5950556787aa365bb;hp=3d6341c65230210a3d45f79256918a81d42adf38;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/counters.C b/src/counters.C index 3d6341c652..087a0bd2c4 100644 --- a/src/counters.C +++ b/src/counters.C @@ -5,6 +5,7 @@ * * \author Lars Gullik Bjønnes * \author Martin Vermeer + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -13,15 +14,16 @@ #include "counters.h" #include "debug.h" -#include "support/std_sstream.h" #include "support/lstrings.h" -#include "support/LAssert.h" +#include "support/std_sstream.h" +#include "support/tostr.h" -using namespace lyx::support; +#include using std::endl; -using std::vector; +using std::ostringstream; +using std::string; Counter::Counter() @@ -72,7 +74,6 @@ void Counter::setMaster(string const & m) } - void Counters::newCounter(string const & newc) { // First check if newc already exist @@ -171,7 +172,7 @@ void Counters::reset() void Counters::reset(string const & match) { - Assert(!match.empty()); + BOOST_ASSERT(!match.empty()); CounterList::iterator it = counterList.begin(); CounterList::iterator end = counterList.end(); @@ -196,27 +197,22 @@ void Counters::copy(Counters & from, Counters & to, string const & match) namespace { -inline char loweralphaCounter(int n) { if (n < 1 || n > 26) return '?'; - else - return 'a' + n - 1; + return 'a' + n - 1; } -inline char alphaCounter(int n) { if (n < 1 || n > 26) return '?'; - else - return 'A' + n - 1; + return 'A' + n - 1; } -inline char hebrewCounter(int n) { static const char hebrew[22] = { @@ -224,15 +220,14 @@ char hebrewCounter(int n) 'é', 'ë', 'ì', 'î', 'ð', 'ñ', 'ò', 'ô', 'ö', '÷', 'ø', 'ù', 'ú' }; + if (n < 1 || n > 22) return '?'; - else - return hebrew[n-1]; + return hebrew[n - 1]; } -inline -string const romanCounter(int n) +string const lowerromanCounter(int n) { static char const * roman[20] = { "i", "ii", "iii", "iv", "v", @@ -240,107 +235,108 @@ string const romanCounter(int n) "xi", "xii", "xiii", "xiv", "xv", "xvi", "xvii", "xviii", "xix", "xx" }; + if (n < 1 || n > 20) return "??"; - else - return roman[n-1]; + return roman[n - 1]; +} + + +string const romanCounter(int n) +{ + static char const * roman[20] = { + "I", "II", "III", "IV", "V", + "VI", "VII", "VIII", "IX", "X", + "XI", "XII", "XIII", "XIV", "XV", + "XVI", "XVII", "XVIII", "XIX", "XX" + }; + + if (n < 1 || n > 20) + return "??"; + return roman[n - 1]; } } // namespace anon -string Counters::labelItem(string const & ctr, - string const & numbertype, - string const & langtype, - bool first) +string Counters::labelItem(string const & ctr, string const & numbertype) { - ostringstream s; - ostringstream o; - - CounterList::iterator it = counterList.find(ctr); - if (it == counterList.end()) { - lyxerr << "Counter does not exist." << endl; + if (counterList.find(ctr) == counterList.end()) { + lyxerr << "Counter " << ctr << " does not exist." << endl; return string(); } - if (!first) { - s << '.' << value(ctr); - } else { - if (numbertype == "sectioning" || numbertype == "appendix") { - if (numbertype == "appendix") { - if (langtype == "hebrew") { - o << hebrewCounter(value(ctr)); - } else { - o << alphaCounter(value(ctr)); - } - } else o << value(ctr); - } - s << o.str(); - } + if (numbertype == "hebrew") + return string(1, hebrewCounter(value(ctr))); + + if (numbertype == "alph") + return string(1, loweralphaCounter(value(ctr))); + + if (numbertype == "Alph") + return string(1, alphaCounter(value(ctr))); + + if (numbertype == "roman") + return lowerromanCounter(value(ctr)); + + if (numbertype == "Roman") + return romanCounter(value(ctr)); - return STRCONV(s.str()); + return tostr(value(ctr)); } -string Counters::numberLabel(string const & ctr, - string const & numbertype, - string const & langtype, - int head) +string Counters::counterLabel(string const & format) { - ostringstream s; - - if (numbertype == "sectioning" || numbertype == "appendix") { - if (ctr == "chapter" && head == 0) { - s << labelItem("chapter", numbertype, langtype, true); - } else if (ctr == "section" && head <= 1) { - s << numberLabel("chapter", numbertype, langtype, head) - << labelItem("section", numbertype, langtype, head == 1); - } else if (ctr == "subsection" && head <= 2) { - s << numberLabel("section", numbertype, langtype, head) - << labelItem("subsection", numbertype, langtype, head == 2); - } else if (ctr == "subsubsection" && head <= 3) { - s << numberLabel("subsection", numbertype, langtype, head) - << labelItem("subsubsection", numbertype, langtype, head == 3); - } else if (ctr == "paragraph" && head <= 4) { - s << numberLabel("subsubsection", numbertype, langtype, head) - << labelItem("paragraph", numbertype, langtype, head == 4); - } else if (ctr == "subparagraph" && head <= 5) { - s << numberLabel("paragraph", numbertype, langtype, head) - << labelItem("subparagraph", numbertype, langtype, head == 5); - } else if (ctr == "figure" || ctr == "table") { - // figure, table, ... - lyxerr << "Counter:" << ctr << endl; - s << numberLabel("chapter", numbertype, langtype, head) - << labelItem(ctr, numbertype, langtype, head == 1); - } + string label = format; + while (true) { +#ifdef WITH_WARNINGS +#warning Using boost::regex would make this code a lot simpler... (Lgb) +#endif + + size_t const i = label.find('\\', 0); + if (i == string::npos) + break; + size_t const j = label.find('{', i + 1); + if (j == string::npos) + break; + size_t const k = label.find('}', j + 1); + if (k == string::npos) + break; + string const numbertype(label, i + 1, j - i - 1); + string const counter(label, j + 1, k - j - 1); + string const rep = labelItem(counter, numbertype); + label = string(label, 0, i) + rep + string(label, k + 1, string::npos); + //lyxerr << " : " << " (" << counter << "," + // << numbertype << ") -> " << label << endl; + } + //lyxerr << "counterLabel: " << format << " -> " << label << endl; + return label; +} - } else if (numbertype == "enumeration") { - ostringstream ei; - ostringstream eii; - ostringstream eiii; - ostringstream eiv; - - if (langtype == "hebrew") { - ei << '.' << value("enumi"); - eii << '(' << hebrewCounter(value("enumii")) << ')'; - eiii << '.' << romanCounter(value("enumiii")); - eiv << '.' << alphaCounter(value("enumiv")); - } else { - ei << value("enumi") << '.'; - eii << '(' << loweralphaCounter(value("enumii")) << ')'; - eiii << romanCounter(value("enumiii")) << '.'; - eiv << alphaCounter(value("enumiv")) << '.'; - } - if (ctr == "enumii") { - s << eii.str(); - } else if (ctr == "enumi") { - s << ei.str(); - } else if (ctr == "enumiii") { - s << eiii.str(); - } else if (ctr == "enumiv") { - s << eiv.str(); - } + +string Counters::enumLabel(string const & ctr, string const & langtype) +{ + ostringstream os; + + if (langtype == "hebrew") { + if (ctr == "enumi") + os << '.' << value("enumi"); + else if (ctr == "enumii") + os << '(' << hebrewCounter(value("enumii")) << ')'; + else if (ctr == "enumiii") + os << '.' << lowerromanCounter(value("enumiii")); + else if (ctr == "enumiv") + os << '.' << alphaCounter(value("enumiv")); + } else { + if (ctr == "enumi") + os << value("enumi") << '.'; + else if (ctr == "enumii") + os << '(' << loweralphaCounter(value("enumii")) << ')'; + else if (ctr == "enumiii") + os << lowerromanCounter(value("enumiii")) << '.'; + else if (ctr == "enumiv") + os << alphaCounter(value("enumiv")) << '.'; } - return STRCONV(s.str()); + return os.str(); }