]> git.lyx.org Git - lyx.git/blobdiff - src/Counters.cpp
de.po
[lyx.git] / src / Counters.cpp
index 75c891128efa90777a0ba9a04a7164e5e14232aa..144f5abbb38c4db326fe84c618b69eb31d1aa565 100644 (file)
@@ -18,6 +18,7 @@
 #include "Lexer.h"
 
 #include "support/convert.h"
+#include "support/counter_reps.h"
 #include "support/debug.h"
 #include "support/gettext.h"
 #include "support/lassert.h"
@@ -33,15 +34,16 @@ namespace lyx {
 
 
 Counter::Counter()
-       : initial_value_(0)
+       : initial_value_(0), saved_value_(0)
 {
        reset();
 }
 
 
 Counter::Counter(docstring const & mc, docstring const & ls,
-                docstring const & lsa)
-       : initial_value_(0), master_(mc), labelstring_(ls), labelstringappendix_(lsa)
+               docstring const & lsa, docstring const & guiname)
+       : initial_value_(0), saved_value_(0), master_(mc), labelstring_(ls),
+         labelstringappendix_(lsa), guiname_(guiname)
 {
        reset();
 }
@@ -55,12 +57,14 @@ bool Counter::read(Lexer & lex)
                CT_LABELSTRING_APPENDIX,
                CT_PRETTYFORMAT,
                CT_INITIALVALUE,
+               CT_GUINAME,
                CT_END
        };
 
        LexerKeyword counterTags[] = {
                { "end", CT_END },
-         { "initialvalue", CT_INITIALVALUE},
+               { "guiname", CT_GUINAME },
+               { "initialvalue", CT_INITIALVALUE},
                { "labelstring", CT_LABELSTRING },
                { "labelstringappendix", CT_LABELSTRING_APPENDIX },
                { "prettyformat", CT_PRETTYFORMAT },
@@ -111,6 +115,10 @@ bool Counter::read(Lexer & lex)
                                lex.next();
                                labelstringappendix_ = lex.getDocString();
                                break;
+                       case CT_GUINAME:
+                               lex.next();
+                               guiname_ = lex.getDocString();
+                               break;
                        case CT_END:
                                getout = true;
                                break;
@@ -143,6 +151,18 @@ int Counter::value() const
 }
 
 
+void Counter::saveValue()
+{
+       saved_value_ = value_;
+}
+
+
+void Counter::restoreValue()
+{
+       value_ = saved_value_;
+}
+
+
 void Counter::step()
 {
        ++value_;
@@ -184,7 +204,7 @@ Counter::StringMap & Counter::flatLabelStrings(bool in_appendix) const
 
 Counters::Counters() : appendix_(false), subfloat_(false), longtable_(false)
 {
-       layout_stack_.push_back(0);
+       layout_stack_.push_back(nullptr);
        counter_stack_.push_back(from_ascii(""));
 }
 
@@ -192,7 +212,8 @@ Counters::Counters() : appendix_(false), subfloat_(false), longtable_(false)
 void Counters::newCounter(docstring const & newc,
                          docstring const & masterc,
                          docstring const & ls,
-                         docstring const & lsa)
+                         docstring const & lsa,
+                         docstring const & guiname)
 {
        if (!masterc.empty() && !hasCounter(masterc)) {
                lyxerr << "Master counter does not exist: "
@@ -200,7 +221,7 @@ void Counters::newCounter(docstring const & newc,
                       << endl;
                return;
        }
-       counterList_[newc] = Counter(masterc, ls, lsa);
+       counterList_[newc] = Counter(masterc, ls, lsa, guiname);
 }
 
 
@@ -265,14 +286,40 @@ int Counters::value(docstring const & ctr) const
 }
 
 
-void Counters::resetSlaves(docstring const & ctr)
+void Counters::saveValue(docstring const & ctr) const
 {
-       CounterList::iterator it = counterList_.begin();
-       CounterList::iterator const end = counterList_.end();
-       for (; it != end; ++it) {
-               if (it->second.master() == ctr) {
-                       it->second.reset();
-                       resetSlaves(it->first);
+       CounterList::const_iterator const cit = counterList_.find(ctr);
+       if (cit == counterList_.end()) {
+               lyxerr << "value: Counter does not exist: "
+                      << to_utf8(ctr) << endl;
+               return;
+       }
+       Counter const & cnt = cit->second;
+       Counter & ccnt = const_cast<Counter &>(cnt);
+       ccnt.saveValue();
+}
+
+
+void Counters::restoreValue(docstring const & ctr) const
+{
+       CounterList::const_iterator const cit = counterList_.find(ctr);
+       if (cit == counterList_.end()) {
+               lyxerr << "value: Counter does not exist: "
+                      << to_utf8(ctr) << endl;
+               return;
+       }
+       Counter const & cnt = cit->second;
+       Counter & ccnt = const_cast<Counter &>(cnt);
+       ccnt.restoreValue();
+}
+
+
+void Counters::resetSlaves(docstring const & count)
+{
+       for (auto & ctr : counterList_) {
+               if (ctr.second.master() == count) {
+                       ctr.second.reset();
+                       resetSlaves(ctr.first);
                }
        }
 }
@@ -310,19 +357,33 @@ void Counters::step(docstring const & ctr, UpdateType utype)
 }
 
 
+docstring const & Counters::guiName(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 & guiname = it->second.guiName();
+       if (guiname.empty())
+               return cntr;
+       return guiname;
+}
+
+
 void Counters::reset()
 {
        appendix_ = false;
        subfloat_ = false;
        current_float_.erase();
-       CounterList::iterator it = counterList_.begin();
-       CounterList::iterator const end = counterList_.end();
-       for (; it != end; ++it)
-               it->second.reset();
+       for (auto & ctr : counterList_)
+               ctr.second.reset();
        counter_stack_.clear();
        counter_stack_.push_back(from_ascii(""));
        layout_stack_.clear();
-       layout_stack_.push_back(0);
+       layout_stack_.push_back(nullptr);
 }
 
 
@@ -330,11 +391,9 @@ void Counters::reset(docstring const & match)
 {
        LASSERT(!match.empty(), return);
 
-       CounterList::iterator it = counterList_.begin();
-       CounterList::iterator end = counterList_.end();
-       for (; it != end; ++it) {
-               if (it->first.find(match) != string::npos)
-                       it->second.reset();
+       for (auto & ctr : counterList_) {
+               if (ctr.first.find(match) != string::npos)
+                       ctr.second.reset();
        }
 }
 
@@ -344,12 +403,10 @@ bool Counters::remove(docstring const & cnt)
        bool retval = counterList_.erase(cnt);
        if (!retval)
                return false;
-       CounterList::iterator it = counterList_.begin();
-       CounterList::iterator end = counterList_.end();
-       for (; it != end; ++it) {
-               if (it->second.checkAndRemoveMaster(cnt))
+       for (auto & ctr : counterList_) {
+               if (ctr.second.checkAndRemoveMaster(cnt))
                        LYXERR(Debug::TCLASS, "Removed master counter `" +
-                                       to_utf8(cnt) + "' from counter: " + to_utf8(it->first));
+                                       to_utf8(cnt) + "' from counter: " + to_utf8(ctr.first));
        }
        return retval;
 }
@@ -357,133 +414,13 @@ bool Counters::remove(docstring const & cnt)
 
 void Counters::copy(Counters & from, Counters & to, docstring const & match)
 {
-       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));
-               }
-       }
-}
-
-
-namespace {
-
-char loweralphaCounter(int const n)
-{
-       if (n < 1 || n > 26)
-               return '?';
-       return 'a' + n - 1;
-}
-
-
-char alphaCounter(int const n)
-{
-       if (n < 1 || n > 26)
-               return '?';
-       return 'A' + n - 1;
-}
-
-
-char hebrewCounter(int const n)
-{
-       static const char hebrew[22] = {
-               '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7', '\xe8',
-               '\xe9', '\xeb', '\xec', '\xee', '\xf0', '\xf1', '\xf2', '\xf4', '\xf6',
-               '\xf7', '\xf8', '\xf9', '\xfa'
-       };
-
-       if (n < 1 || n > 22)
-               return '?';
-       return hebrew[n - 1];
-}
-
-
-// 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.)
-docstring const romanCounter(int const n)
-{
-       static char const * const ones[9] = {
-               "I",   "II",  "III", "IV", "V",
-               "VI",  "VII", "VIII", "IX"
-       };
-
-       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)
-               return from_ascii("??");
-
-       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;
+       for (auto const & ctr : counterList_) {
+               if (ctr.first.find(match) != string::npos || match == "") {
+                       to.set(ctr.first, from.value(ctr.first));
                }
-               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];
        }
-       return from_ascii(roman);
-}
-
-
-docstring const lowerromanCounter(int const n)
-{
-       return lowercase(romanCounter(n));
-}
-
-
-docstring const fnsymbolCounter(int const n)
-{
-       switch(n) {
-       case 1: return docstring(1, 0x002a); //*
-       case 2: return docstring(1, 0x2020); // dagger
-       case 3: return docstring(1, 0x2021); // double dagger
-       case 4: return docstring(1, 0x00A7); // section sign
-       case 5: return docstring(1, 0x00B6); // pilcrow sign
-       case 6: return docstring(1, 0x2016); // vertical bar
-       case 7: return docstring(2, 0x002a); // two *
-       case 8: return docstring(2, 0x2020); // two daggers
-       case 9: return docstring(2, 0x2021); // two double daggers
-       default:
-               return from_ascii("?");
-       };
 }
 
-} // namespace anon
-
 
 docstring Counters::labelItem(docstring const & ctr,
                              docstring const & numbertype) const
@@ -697,4 +634,12 @@ void Counters::endEnvironment()
 }
 
 
+vector<docstring> Counters::listOfCounters() const {
+       vector<docstring> ret;
+       for(auto const & k : counterList_)
+               ret.emplace_back(k.first);
+       return ret;
+}
+
+
 } // namespace lyx