mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 12:26:59 +00:00
59252c1f8f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18279 a592a061-630c-0410-9148-cb99ea01b6c8
107 lines
2.3 KiB
C++
107 lines
2.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetListingsParams.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Bo Peng
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETLISTINGSPARAMS_H
|
|
#define INSETLISTINGSPARAMS_H
|
|
|
|
#include <vector>
|
|
#include <exception>
|
|
#include "Lexer.h"
|
|
#include "InsetCollapsable.h"
|
|
|
|
namespace lyx {
|
|
|
|
class InsetListingsParams {
|
|
public:
|
|
///
|
|
InsetListingsParams();
|
|
|
|
///
|
|
InsetListingsParams(std::string const &, bool in=false,
|
|
InsetCollapsable::CollapseStatus s = InsetCollapsable::Open);
|
|
|
|
/// write parameters to an ostream
|
|
void write(std::ostream &) const;
|
|
|
|
/// read parameters from an ostream
|
|
void read(Lexer &);
|
|
|
|
/// valid parameter string
|
|
std::string params() const { return params_; }
|
|
|
|
/// add key=value to params_
|
|
void addParam(std::string const & key, std::string const & value);
|
|
|
|
/// add a few parameters
|
|
void addParams(std::string const & par);
|
|
|
|
/// set params_ with par, throw an exception if par is valid
|
|
void setParams(std::string const & par);
|
|
|
|
/// generate a parameter string that can be safely save and restored
|
|
/// by lyx' lexer
|
|
std::string encodedString() const;
|
|
|
|
/// newline (\n) separated parameters. comma can be removed.
|
|
/// One possible complication is that , may appear in option value.
|
|
std::string separatedParams(bool keepComma = false) const;
|
|
|
|
/// get parameter from encoded string
|
|
void fromEncodedString(std::string const & par);
|
|
|
|
///
|
|
bool isInline() const { return inline_; }
|
|
|
|
///
|
|
InsetCollapsable::CollapseStatus status() const { return status_; }
|
|
|
|
///
|
|
void setInline(bool i) { inline_ = i; }
|
|
|
|
///
|
|
void clear() { params_.clear(); }
|
|
|
|
private:
|
|
/// inline or normal listings
|
|
bool inline_;
|
|
|
|
/// listing parameters, this will always be a *valid* string
|
|
/// that can be passed to listing packages.
|
|
std::string params_;
|
|
|
|
/// keys defined in params_
|
|
std::vector<std::string> keys_;
|
|
|
|
/// collapsable status
|
|
InsetCollapsable::CollapseStatus status_;
|
|
};
|
|
|
|
|
|
class invalidParam : public std::exception {
|
|
public:
|
|
invalidParam(std::string const & details) :
|
|
details_(details)
|
|
{}
|
|
|
|
virtual const char * what() const throw() {
|
|
return details_.c_str();
|
|
}
|
|
|
|
virtual ~invalidParam() throw() {}
|
|
private:
|
|
std::string const details_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|