X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCounters.cpp;h=519cb2734668e9a39c440bec0236d5208cde0919;hb=21eb2c4f74c5665e6516cf900acf4f5acba21c69;hp=9d7cc23d6da59de339500f885b632b323001d8da;hpb=196d9caeb0b9f74d02750f774de1ca63a483803f;p=lyx.git diff --git a/src/Counters.cpp b/src/Counters.cpp index 9d7cc23d6d..519cb27346 100644 --- a/src/Counters.cpp +++ b/src/Counters.cpp @@ -6,7 +6,7 @@ * \author Lars Gullik Bjønnes * \author Martin Vermeer * \author André Pönitz - * \author Richard Heck (roman numerals) + * \author Richard Kimberly Heck (roman numerals) * * Full author contact details are available in file CREDITS. */ @@ -43,7 +43,7 @@ Counter::Counter() Counter::Counter(docstring const & mc, docstring const & ls, docstring const & lsa, docstring const & guiname) - : initial_value_(0), saved_value_(0), master_(mc), labelstring_(ls), + : initial_value_(0), saved_value_(0), parent_(mc), labelstring_(ls), labelstringappendix_(lsa), guiname_(guiname) { reset(); @@ -59,6 +59,7 @@ bool Counter::read(Lexer & lex) CT_PRETTYFORMAT, CT_INITIALVALUE, CT_GUINAME, + CT_LATEXNAME, CT_END }; @@ -68,6 +69,7 @@ bool Counter::read(Lexer & lex) { "initialvalue", CT_INITIALVALUE}, { "labelstring", CT_LABELSTRING }, { "labelstringappendix", CT_LABELSTRING_APPENDIX }, + { "latexname", CT_LATEXNAME }, { "prettyformat", CT_PRETTYFORMAT }, { "within", CT_WITHIN } }; @@ -87,9 +89,9 @@ bool Counter::read(Lexer & lex) switch (le) { case CT_WITHIN: lex.next(); - master_ = lex.getDocString(); - if (master_ == "none") - master_.erase(); + parent_ = lex.getDocString(); + if (parent_ == "none") + parent_.erase(); break; case CT_INITIALVALUE: lex.next(); @@ -120,6 +122,10 @@ bool Counter::read(Lexer & lex) lex.next(); guiname_ = lex.getDocString(); break; + case CT_LATEXNAME: + lex.next(); + latexname_ = lex.getDocString(); + break; case CT_END: getout = true; break; @@ -176,17 +182,17 @@ void Counter::reset() } -docstring const & Counter::master() const +docstring const & Counter::parent() const { - return master_; + return parent_; } -bool Counter::checkAndRemoveMaster(docstring const & cnt) +bool Counter::checkAndRemoveParent(docstring const & cnt) { - if (master_ != cnt) + if (parent_ != cnt) return false; - master_ = docstring(); + parent_ = docstring(); return true; } @@ -211,18 +217,18 @@ Counters::Counters() : appendix_(false), subfloat_(false), longtable_(false) void Counters::newCounter(docstring const & newc, - docstring const & masterc, + docstring const & parentc, docstring const & ls, docstring const & lsa, docstring const & guiname) { - if (!masterc.empty() && !hasCounter(masterc)) { - lyxerr << "Master counter does not exist: " - << to_utf8(masterc) + if (!parentc.empty() && !hasCounter(parentc)) { + lyxerr << "Parent counter does not exist: " + << to_utf8(parentc) << endl; return; } - counterList_[newc] = Counter(masterc, ls, lsa, guiname); + counterList_[newc] = Counter(parentc, ls, lsa, guiname); } @@ -315,18 +321,18 @@ void Counters::restoreValue(docstring const & ctr) const } -void Counters::resetSlaves(docstring const & count) +void Counters::resetChildren(docstring const & count) { for (auto & ctr : counterList_) { - if (ctr.second.master() == count) { + if (ctr.second.parent() == count) { ctr.second.reset(); - resetSlaves(ctr.first); + resetChildren(ctr.first); } } } -void Counters::stepMaster(docstring const & ctr, UpdateType utype) +void Counters::stepParent(docstring const & ctr, UpdateType utype) { CounterList::iterator it = counterList_.find(ctr); if (it == counterList_.end()) { @@ -334,7 +340,7 @@ void Counters::stepMaster(docstring const & ctr, UpdateType utype) << to_utf8(ctr) << endl; return; } - step(it->second.master(), utype); + step(it->second.parent(), utype); } @@ -354,7 +360,7 @@ void Counters::step(docstring const & ctr, UpdateType utype) counter_stack_.push_back(ctr); } - resetSlaves(ctr); + resetChildren(ctr); } @@ -374,6 +380,22 @@ docstring const & Counters::guiName(docstring const & cntr) const } +docstring const & Counters::latexName(docstring const & cntr) const +{ + CounterList::const_iterator it = counterList_.find(cntr); + if (it == counterList_.end()) { + lyxerr << "step: Counter does not exist: " + << to_utf8(cntr) << endl; + return empty_docstring(); + } + + docstring const & latexname = it->second.latexName(); + if (latexname.empty()) + return cntr; + return latexname; +} + + void Counters::reset() { appendix_ = false; @@ -405,24 +427,14 @@ bool Counters::remove(docstring const & cnt) if (!retval) return false; for (auto & ctr : counterList_) { - if (ctr.second.checkAndRemoveMaster(cnt)) - LYXERR(Debug::TCLASS, "Removed master counter `" + + if (ctr.second.checkAndRemoveParent(cnt)) + LYXERR(Debug::TCLASS, "Removed parent counter `" + to_utf8(cnt) + "' from counter: " + to_utf8(ctr.first)); } return retval; } -void Counters::copy(Counters const & from, Counters & to, docstring const & match) -{ - for (auto const & ctr : counterList_) { - if (ctr.first.find(match) != string::npos || match == "") { - to.set(ctr.first, from.value(ctr.first)); - } - } -} - - docstring Counters::labelItem(docstring const & ctr, docstring const & numbertype) const { @@ -500,8 +512,8 @@ docstring Counters::flattenLabelString(docstring const & counter, callers.push_back(counter); if (ls.empty()) { - if (!c.master().empty()) - ls = flattenLabelString(c.master(), in_appendix, lang, callers) + if (!c.parent().empty()) + ls = flattenLabelString(c.parent(), in_appendix, lang, callers) + from_ascii("."); callers.pop_back(); return ls + from_ascii("\\arabic{") + counter + "}";