]> git.lyx.org Git - lyx.git/blob - src/BranchList.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / BranchList.h
1 // -*- C++ -*-
2 /**
3  * \file BranchList.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Martin Vermeer
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef BRANCHLIST_H
13 #define BRANCHLIST_H
14
15 #include "ColorCode.h"
16
17 #include "support/docstring.h"
18
19 #include <list>
20
21
22 namespace lyx {
23
24 /**
25  * \class Branch
26  *
27  * A class describing a 'branch', i.e., a named alternative for
28  * selectively outputting some parts of a document while suppressing
29  * other parts.
30  *
31  * A branch has a name, can either be selected or not, and uses a
32  * user-specifiable background colour. All these can be set and
33  * queried.
34  *
35  * \class BranchList
36  *
37  * A class containing a vector of all defined branches within a
38  * document. It has methods for selecting or deselecting branches by
39  * name, for outputting a '|'-separated string of all elements or only
40  * the selected ones, and for adding and removing elements.
41  */
42
43 class Branch {
44 public:
45         ///
46         Branch();
47         ///
48         docstring const & branch() const;
49         ///
50         void setBranch(docstring const &);
51         ///
52         bool isSelected() const;
53         /** Select/deselect the branch.
54          *  \return true if the selection status changes.
55          */
56         bool setSelected(bool);
57         /** If true, the branch name will be appended
58          *  to the output file name.
59          */
60         bool hasFileNameSuffix() const;
61         /// Select/deselect filename suffix property.
62         void setFileNameSuffix(bool);
63         ///
64         RGBColor const & color() const;
65         ///
66         void setColor(RGBColor const &);
67         /**
68          * Set color from a string "#rrggbb".
69          * Use Color:background if the string is no valid color.
70          * This ensures compatibility with LyX 1.4.0 that had the symbolic
71          * color "none" that was displayed as Color:background.
72          */
73         void setColor(std::string const &);
74
75 private:
76         ///
77         docstring branch_;
78         ///
79         bool selected_;
80         ///
81         bool filenameSuffix_;
82         ///
83         RGBColor color_;
84 };
85
86
87 class BranchList {
88         ///
89         typedef std::list<Branch> List;
90 public:
91         typedef List::const_iterator const_iterator;
92
93         ///
94         BranchList() : separator_(from_ascii("|")) {}
95
96         ///
97         docstring separator() const { return separator_; }
98
99         ///
100         bool empty() const { return list.empty(); }
101         ///
102         void clear() { list.clear(); }
103         ///
104         const_iterator begin() const { return list.begin(); }
105         const_iterator end() const { return list.end(); }
106
107         /** \returns the Branch with \c name. If not found, returns 0.
108          */
109         Branch * find(docstring const & name);
110         Branch const * find(docstring const & name) const;
111
112         /** Add (possibly multiple (separated by separator())) branches to list
113          *  \returns true if a branch is added.
114          */
115         bool add(docstring const &);
116         /** remove a branch from list by name
117          *  \returns true if a branch is removed.
118          */
119         bool remove(docstring const &);
120         /** rename an branch in list
121          *  \returns true if renaming succeeded.
122          * if \p merge is true, the branch will be removed
123          * if a branch with the newname already exists.
124          */
125         bool rename(docstring const &, docstring const &, bool const merge = false);
126         /// get the complete filename suffix
127         docstring getFileNameSuffix() const;
128
129 private:
130         ///
131         List list;
132         ///
133         docstring separator_;
134 };
135
136 } // namespace lyx
137
138 #endif // BRANCHLIST_H