X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.h;h=fc57d2478b16e506cd63fda85446f751431cef91;hb=32d281cba0a2e4d0e8425a34a1a8d1f5e7251412;hp=3b6b2554fe63d4e64a04eee89fa28f1c4f82f569;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/BranchList.h b/src/BranchList.h index 3b6b2554fe..fc57d2478b 100644 --- a/src/BranchList.h +++ b/src/BranchList.h @@ -1,10 +1,10 @@ -// -*- C++ -*- +// -*- C++ -*- /** - * \file BranchList.h + * \file BranchList.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * \author Martin Vermeer - * + * * Full author contact details are available in file CREDITS. * * @@ -17,7 +17,7 @@ * A branch has a name, can either be selected or not, and uses a * user-specifyable background colour. All these can be set and * queried. - * + * * \class BranchList * * A class containing a vector of all defined branches within a @@ -30,77 +30,85 @@ #ifndef BRANCHES_H #define BRANCHES_H -#include "LString.h" +#include #include + class Branch { public: /// - string const getBranch() const; + std::string const & getBranch() const; /// - void setBranch(string const &); + void setBranch(std::string const &); /// bool getSelected() const; + /** Select/deselect the branch. + * \return true if the selection status changes. + */ + bool setSelected(bool); /// - void setSelected(bool); - /// - string const getColor() const; + std::string const & getColor() const; /// - void setColor(string const &); + void setColor(std::string const &); private: /// - string branch_; + std::string branch_; /// bool selected_; /// - string color_; + std::string color_; }; class BranchList { -public: - /// - BranchList() : separator_("|") {} - /// typedef std::list List; +public: + typedef List::const_iterator const_iterator; /// - void clear(); + BranchList() : separator_("|") {} + /// bool empty() { return list.empty(); } /// - bool size() const { return list.size(); } - /// - List::const_iterator begin() const { return list.begin(); } - /// - List::const_iterator end() const { return list.end(); } - /// - string getColor(string const &) const; - /// - void setColor(string const &, string const &); - /// Select/deselect multiple branches given in '|'-separated string - void setSelected(string const &, bool); - /// Add multiple branches to list - void add(string const &); - /// remove a branch from list by name - void remove(string const &); - /// return whether this branch is selected - bool selected(string const &) const; - /// return, as a '|'-separated string, all branch names - string allBranches() const; - /// - string allSelected() const; - /// - string const separator() const; - + const_iterator begin() const { return list.begin(); } + const_iterator end() const { return list.end(); } + + /** \returns the Branch with \c name. If not found, returns 0. + */ + Branch * find(std::string const & name); + Branch const * find(std::string const & name) const; + + /** Add (possibly multiple (separated by separator())) branches to list + * \returns true if a branch is added. + */ + bool add(std::string const &); + /** remove a branch from list by name + * \returns true if a branch is removed. + */ + bool remove(std::string const &); + private: /// List list; /// - string separator_; + std::string separator_; +}; + + +class BranchNamesEqual : public std::unary_function { +public: + BranchNamesEqual(std::string const & name) + : name_(name) {} + bool operator()(Branch const & branch) const + { + return branch.getBranch() == name_; + } +private: + std::string name_; }; #endif