X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.cpp;h=ec6a413c6ca08e07d0b9023eae35ac59df9bf6a3;hb=279e656d6a7c4ee3647752cba8b9aa7d6ec6e0c2;hp=8967fab12f52ca2c2f4cc7c8335c1fadffef284d;hpb=32f1dce79a791697d3fcbc8c29c723647e477727;p=lyx.git diff --git a/src/BranchList.cpp b/src/BranchList.cpp index 8967fab12f..ec6a413c6c 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,36 +16,47 @@ #include "frontends/Application.h" +#include "support/lstrings.h" + #include using namespace std; + namespace lyx { namespace { -class BranchNamesEqual : public std::unary_function { + +class BranchNamesEqual : public std::unary_function +{ public: BranchNamesEqual(docstring const & name) - : name_(name) {} + : name_(name) + {} + bool operator()(Branch const & branch) const { - return branch.getBranch() == name_; + return branch.branch() == name_; } private: docstring name_; }; -} + +} // namespace -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_; } @@ -56,7 +68,7 @@ void Branch::setBranch(docstring const & s) } -bool Branch::getSelected() const +bool Branch::isSelected() const { return selected_; } @@ -71,7 +83,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_; } @@ -87,9 +111,14 @@ 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_); + } } @@ -112,9 +141,9 @@ Branch const * BranchList::find(docstring const & name) const 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); @@ -129,6 +158,7 @@ bool BranchList::add(docstring const & s) Branch br; br.setBranch(name); br.setSelected(false); + br.setFileNameSuffix(false); list.push_back(br); } if (j == docstring::npos) @@ -147,4 +177,36 @@ bool BranchList::remove(docstring const & s) } +bool BranchList::rename(docstring const & oldname, + docstring const & newname, bool const merge) +{ + if (newname.empty()) + return false; + if (find_if(list.begin(), list.end(), + BranchNamesEqual(newname)) != list.end()) { + // 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; + List::const_iterator it = list.begin(); + for (; it != list.end(); ++it) { + if (it->isSelected() && it->hasFileNameSuffix()) + result += "-" + it->branch(); + } + return support::subst(result, from_ascii("/"), from_ascii("_")); +} + } // namespace lyx