X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.cpp;h=fc61065a4b767bf34099498466883204a2e55245;hb=dfc3db773ac79e33b828b2d2b4a008c8a37cd4e9;hp=a593c5478fc91e9b421537f6cc849b32b2590238;hpb=e5ae1a4b75ee4ac162db9d1b254968d2072938c6;p=lyx.git diff --git a/src/BranchList.cpp b/src/BranchList.cpp index a593c5478f..fc61065a4b 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. */ @@ -12,9 +13,13 @@ #include "BranchList.h" #include "Color.h" +#include "ColorSet.h" #include "frontends/Application.h" +#include "support/convert.h" +#include "support/lstrings.h" + #include using namespace std; @@ -22,31 +27,6 @@ using namespace std; namespace lyx { -namespace { - -class BranchNamesEqual : public std::unary_function -{ -public: - BranchNamesEqual(docstring const & name) : name_(name) {} - - bool operator()(Branch const & branch) const - { - return branch.branch() == name_; - } -private: - docstring name_; -}; -} - - -Branch::Branch() : selected_(false) -{ - // no theApp() with command line export - if (theApp()) - theApp()->getRgbColor(Color_background, color_); -} - - docstring const & Branch::branch() const { return branch_; @@ -74,41 +54,98 @@ bool Branch::setSelected(bool b) } -RGBColor const & Branch::color() const +bool Branch::hasFileNameSuffix() const +{ + return filenameSuffix_; +} + + +void Branch::setFileNameSuffix(bool b) +{ + filenameSuffix_ = b; +} + + +string const & Branch::color() const +{ + return (theApp() && theApp()->isInDarkMode()) + ? dmcolor_ : lmcolor_; +} + + +string const & Branch::lightModeColor() const { - return color_; + return lmcolor_; } -void Branch::setColor(RGBColor const & c) +string const & Branch::darkModeColor() const { - color_ = c; + return dmcolor_; } -void Branch::setColor(string const & str) +void Branch::setColor(string const & col) { - if (str.size() == 7 && str[0] == '#') - color_ = rgbFromHexName(str); + if (theApp() && theApp()->isInDarkMode()) + setColors(string(), col); else - // no color set or invalid color - use normal background - theApp()->getRgbColor(Color_background, color_); + setColors(col); } +void Branch::setColors(string const & lmcol, string const & dmcol) +{ + if (lmcol.empty() && lmcolor_ == "background" && support::prefixIs(dmcol, "#")) + lmcolor_ = X11hexname(inverseRGBColor(rgbFromHexName(dmcol))); + else if (!lmcol.empty()) + lmcolor_ = lmcol; + if (dmcol.empty() && dmcolor_ == "background" && support::prefixIs(lmcol, "#")) + dmcolor_ = X11hexname(inverseRGBColor(rgbFromHexName(lmcol))); + else if (!dmcol.empty()) + dmcolor_ = dmcol; + + // Update the Color table + string lmcolor = lmcolor_; + string dmcolor = dmcolor_; + if (lmcolor == "none") + lmcolor = lcolor.getX11HexName(Color_background); + else if (lmcolor.size() != 7 || lmcolor[0] != '#') + lmcolor = lcolor.getX11HexName(lcolor.getFromLyXName(lmcolor)); + if (dmcolor == "none") + dmcolor = lcolor.getX11HexName(Color_background, true); + else if (dmcolor.size() != 7 || dmcolor[0] != '#') + dmcolor = lcolor.getX11HexName(lcolor.getFromLyXName(dmcolor), true); + + // FIXME UNICODE + lcolor.setColor("branch" + convert(branch_list_id_) + + to_utf8(branch_), lmcolor, dmcolor); +} + + +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; } @@ -124,15 +161,15 @@ bool BranchList::add(docstring const & s) 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); + br.setListID(id_); + list_.push_back(br); } if (j == docstring::npos) break; @@ -144,10 +181,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