mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
c8faa01f4f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34653 a592a061-630c-0410-9148-cb99ea01b6c8
139 lines
3.1 KiB
C++
139 lines
3.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \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.
|
|
*/
|
|
|
|
#ifndef BRANCHLIST_H
|
|
#define BRANCHLIST_H
|
|
|
|
#include "ColorCode.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include <list>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/**
|
|
* \class Branch
|
|
*
|
|
* A class describing a 'branch', i.e., a named alternative for
|
|
* selectively outputting some parts of a document while suppressing
|
|
* other parts.
|
|
*
|
|
* A branch has a name, can either be selected or not, and uses a
|
|
* user-specifiable background colour. All these can be set and
|
|
* queried.
|
|
*
|
|
* \class BranchList
|
|
*
|
|
* A class containing a vector of all defined branches within a
|
|
* document. It has methods for selecting or deselecting branches by
|
|
* name, for outputting a '|'-separated string of all elements or only
|
|
* the selected ones, and for adding and removing elements.
|
|
*/
|
|
|
|
class Branch {
|
|
public:
|
|
///
|
|
Branch();
|
|
///
|
|
docstring const & branch() const;
|
|
///
|
|
void setBranch(docstring const &);
|
|
///
|
|
bool isSelected() const;
|
|
/** Select/deselect the branch.
|
|
* \return true if the selection status changes.
|
|
*/
|
|
bool setSelected(bool);
|
|
/** If true, the branch name will be appended
|
|
* to the output file name.
|
|
*/
|
|
bool hasFileNameSuffix() const;
|
|
/// Select/deselect filename suffix property.
|
|
void setFileNameSuffix(bool);
|
|
///
|
|
RGBColor const & color() const;
|
|
///
|
|
void setColor(RGBColor const &);
|
|
/**
|
|
* Set color from a string "#rrggbb".
|
|
* Use Color:background if the string is no valid color.
|
|
* This ensures compatibility with LyX 1.4.0 that had the symbolic
|
|
* color "none" that was displayed as Color:background.
|
|
*/
|
|
void setColor(std::string const &);
|
|
|
|
private:
|
|
///
|
|
docstring branch_;
|
|
///
|
|
bool selected_;
|
|
///
|
|
bool filenameSuffix_;
|
|
///
|
|
RGBColor color_;
|
|
};
|
|
|
|
|
|
class BranchList {
|
|
///
|
|
typedef std::list<Branch> List;
|
|
public:
|
|
typedef List::const_iterator const_iterator;
|
|
|
|
///
|
|
BranchList() : separator_(from_ascii("|")) {}
|
|
|
|
///
|
|
docstring separator() const { return separator_; }
|
|
|
|
///
|
|
bool empty() const { return list.empty(); }
|
|
///
|
|
void clear() { list.clear(); }
|
|
///
|
|
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(docstring const & name);
|
|
Branch const * find(docstring const & name) const;
|
|
|
|
/** Add (possibly multiple (separated by separator())) branches to list
|
|
* \returns true if a branch is added.
|
|
*/
|
|
bool add(docstring const &);
|
|
/** remove a branch from list by name
|
|
* \returns true if a branch is removed.
|
|
*/
|
|
bool remove(docstring const &);
|
|
/** rename an branch in list
|
|
* \returns true if renaming succeeded.
|
|
* if \p merge is true, the branch will be removed
|
|
* if a branch with the newname already exists.
|
|
*/
|
|
bool rename(docstring const &, docstring const &, bool const merge = false);
|
|
/// get the complete filename suffix
|
|
docstring getFileNameSuffix() const;
|
|
|
|
private:
|
|
///
|
|
List list;
|
|
///
|
|
docstring separator_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // BRANCHLIST_H
|