X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.cpp;h=01135526e64b72f077949aa776e2f6261e30fc98;hb=7250aad280ceee21200b07c3e1e7cf52849c8e2d;hp=5ca0fd58fc62cba233dbeff99a590c311bb559a2;hpb=9abb7db46800e554f57e865a3e768602ffd9d6f1;p=lyx.git diff --git a/src/BranchList.cpp b/src/BranchList.cpp index 5ca0fd58fc..01135526e6 100644 --- a/src/BranchList.cpp +++ b/src/BranchList.cpp @@ -4,6 +4,7 @@ * Licence details can be found in the file COPYING. * * \author Martin Vermeer + * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ @@ -15,22 +16,27 @@ #include "frontends/Application.h" +#include "support/lstrings.h" + #include using namespace std; -namespace lyx { +namespace lyx { -Branch::Branch() : selected_(false) +Branch::Branch() + : selected_(false), filenameSuffix_(false) { // no theApp() with command line export if (theApp()) theApp()->getRgbColor(Color_background, color_); + else + frontend::Application::getRgbColorUncached(Color_background, color_); } -docstring const & Branch::getBranch() const +docstring const & Branch::branch() const { return branch_; } @@ -42,7 +48,7 @@ void Branch::setBranch(docstring const & s) } -bool Branch::getSelected() const +bool Branch::isSelected() const { return selected_; } @@ -57,7 +63,19 @@ bool Branch::setSelected(bool b) } -RGBColor const & Branch::getColor() const +bool Branch::hasFileNameSuffix() const +{ + return filenameSuffix_; +} + + +void Branch::setFileNameSuffix(bool b) +{ + filenameSuffix_ = b; +} + + +RGBColor const & Branch::color() const { return color_; } @@ -73,49 +91,63 @@ void Branch::setColor(string const & str) { if (str.size() == 7 && str[0] == '#') color_ = rgbFromHexName(str); - else + else { // no color set or invalid color - use normal background - theApp()->getRgbColor(Color_background, color_); + // no theApp() with command line export + if (theApp()) + theApp()->getRgbColor(Color_background, color_); + else + frontend::Application::getRgbColorUncached(Color_background, color_); + } +} + + +namespace { + +std::function BranchNameIs(docstring const & d) +{ + return [d](Branch const & b){ return b.branch() == d; }; } +} // namespace + Branch * BranchList::find(docstring const & name) { List::iterator it = - find_if(list.begin(), list.end(), BranchNamesEqual(name)); - return it == list.end() ? 0 : &*it; + find_if(list_.begin(), list_.end(), BranchNameIs(name)); + return it == list_.end() ? nullptr : &*it; } Branch const * BranchList::find(docstring const & name) const { List::const_iterator it = - find_if(list.begin(), list.end(), BranchNamesEqual(name)); - return it == list.end() ? 0 : &*it; + find_if(list_.begin(), list_.end(), BranchNameIs(name)); + return it == list_.end() ? nullptr : &*it; } bool BranchList::add(docstring const & s) { bool added = false; - docstring::size_type i = 0; + size_t i = 0; while (true) { - docstring::size_type const j = s.find_first_of(separator_, i); + size_t const j = s.find_first_of(separator_, i); docstring name; if (j == docstring::npos) name = s.substr(i); else name = s.substr(i, j - i); // Is this name already in the list? - bool const already = - find_if(list.begin(), list.end(), - BranchNamesEqual(name)) != list.end(); + bool const already = find(name); if (!already) { added = true; Branch br; br.setBranch(name); br.setSelected(false); - list.push_back(br); + br.setFileNameSuffix(false); + list_.push_back(br); } if (j == docstring::npos) break; @@ -127,10 +159,40 @@ bool BranchList::add(docstring const & s) bool BranchList::remove(docstring const & s) { - size_t const size = list.size(); - list.remove_if(BranchNamesEqual(s)); - return size != list.size(); + size_t const size = list_.size(); + list_.remove_if(BranchNameIs(s)); + return size != list_.size(); +} + + +bool BranchList::rename(docstring const & oldname, + docstring const & newname, bool const merge) +{ + if (newname.empty()) + return false; + if (find(newname)) { + // new name already taken + if (merge) + return remove(oldname); + return false; + } + + Branch * branch = find(oldname); + if (!branch) + return false; + branch->setBranch(newname); + return true; } +docstring BranchList::getFileNameSuffix() const +{ + docstring result; + for (auto const & br : list_) { + if (br.isSelected() && br.hasFileNameSuffix()) + result += "-" + br.branch(); + } + return support::subst(result, from_ascii("/"), from_ascii("_")); +} + } // namespace lyx