]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListingsParams.h
Merge branch 'master' into biblatex2
[lyx.git] / src / insets / InsetListingsParams.h
index 452f363fcd06852b1b5fd5392f9fbda63641ad04..7388acd3c42554fca8218400f573e7b42da265b0 100644 (file)
 #ifndef INSETLISTINGSPARAMS_H
 #define INSETLISTINGSPARAMS_H
 
+#include "InsetCaptionable.h"
+
 #include <map>
-#include <exception>
-#include "Lexer.h"
-#include "InsetCollapsable.h"
 
 namespace lyx {
 
@@ -36,13 +35,15 @@ public:
 
        /// valid parameter string
        std::string params(std::string const & sep=",") const;
-       
-       /// add key=value to params_
-       void addParam(std::string const & key, std::string const & value);
+
+       /// add key=value to params_. key_=value will be used if key=value already exists
+       /// unless replace=true.
+       void addParam(std::string const & key, std::string const & value, 
+                       bool replace = false);
 
        /// 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);
 
@@ -57,7 +58,7 @@ public:
        /// get parameter from encoded string
        void fromEncodedString(std::string const & par);
 
-       /// 
+       ///
        bool isInline() const { return inline_; }
 
        ///
@@ -74,35 +75,29 @@ public:
 
        ///
        void clear() { params_.clear(); }
+       
+       /// validate parameter, return an error message
+       docstring validate() const;
 
 private:
        /// inline or normal listings
        bool inline_;
 
-       /// key-value pairs of the parameters 
-       std::map<std::string, std::string> params_;
+       /// Do we have a param with the given \c key?
+       bool hasParam(std::string const & key) const;
+       /// return the value for the given \c key, if avaible, else empty string
+       std::string getValue(std::string const & key) const;
+
+       /// key-value pairs of the parameters
+       // Use a vector of pairs in order to maintain the order of insertion.
+       typedef std::vector<std::pair<std::string, std::string> > keyValuePair;
+       keyValuePair params_;
 
        /// collapsable status
        InsetCollapsable::CollapseStatus status_;
 };
 
 
-class invalidParam : public std::exception {
-public:
-       invalidParam(docstring const & details)
-                                       : details_(to_utf8(details))
-       {}
-
-       virtual const char * what() const throw() {
-               return details_.c_str();
-       }
-
-       virtual ~invalidParam() throw() {}
-private:
-       std::string const details_;
-};
-
-
 } // namespace lyx
 
 #endif