]> git.lyx.org Git - lyx.git/blob - src/insets/InsetListingsParams.h
Whitespace.
[lyx.git] / src / insets / InsetListingsParams.h
1 // -*- C++ -*-
2 /**
3  * \file InsetListingsParams.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Bo Peng
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETLISTINGSPARAMS_H
13 #define INSETLISTINGSPARAMS_H
14
15 #include "InsetCaptionable.h"
16
17 #include <map>
18
19 namespace lyx {
20
21 class InsetListingsParams {
22 public:
23         ///
24         InsetListingsParams();
25
26         ///
27         InsetListingsParams(std::string const &, bool in=false,
28                 InsetCollapsable::CollapseStatus s = InsetCollapsable::Open);
29
30         /// write parameters to an ostream
31         void write(std::ostream &) const;
32
33         /// read parameters from an ostream
34         void read(Lexer &);
35
36         /// valid parameter string
37         std::string params(std::string const & sep=",") const;
38
39         /// add key=value to params_. key_=value will be used if key=value already exists
40         /// unless replace=true.
41         void addParam(std::string const & key, std::string const & value, 
42                         bool replace = false);
43
44         /// add a few parameters
45         void addParams(std::string const & par);
46
47         /// set params_ with par, throw an exception if par is valid
48         void setParams(std::string const & par);
49
50         /// generate a parameter string that can be safely save and restored
51         /// by lyx' lexer
52         std::string encodedString() const;
53
54         /// newline (\n) separated parameters. comma can be removed.
55         /// One possible complication is that , may appear in option value.
56         std::string separatedParams(bool keepComma = false) const;
57
58         /// get parameter from encoded string
59         void fromEncodedString(std::string const & par);
60
61         ///
62         bool isInline() const { return inline_; }
63
64         ///
65         bool isFloat() const;
66
67         ///
68         InsetCollapsable::CollapseStatus status() const { return status_; }
69
70         ///
71         void setInline(bool i) { inline_ = i; }
72
73         /// get value of option \c param
74         std::string getParamValue(std::string const & param) const;
75
76         ///
77         void clear() { params_.clear(); }
78         
79         /// validate parameter, return an error message
80         docstring validate() const;
81
82 private:
83         /// inline or normal listings
84         bool inline_;
85
86         /// Do we have a param with the given \c key?
87         bool hasParam(std::string const & key) const;
88         /// return the value for the given \c key, if avaible, else empty string
89         std::string getValue(std::string const & key) const;
90
91         /// key-value pairs of the parameters
92         // Use a vector of pairs in order to maintain the order of insertion.
93         typedef std::vector<std::pair<std::string, std::string> > keyValuePair;
94         keyValuePair params_;
95
96         /// collapsable status
97         InsetCollapsable::CollapseStatus status_;
98 };
99
100
101 } // namespace lyx
102
103 #endif