X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetListingsParams.h;h=7388acd3c42554fca8218400f573e7b42da265b0;hb=858f6b6c7b630f7672001fb19b55109a89aed142;hp=76ed9613ff2c18954b0cfa714df53a4282d90c2d;hpb=b7ab77c2480f31bc39ae076d83f212674ecb63b9;p=lyx.git diff --git a/src/insets/InsetListingsParams.h b/src/insets/InsetListingsParams.h index 76ed9613ff..7388acd3c4 100644 --- a/src/insets/InsetListingsParams.h +++ b/src/insets/InsetListingsParams.h @@ -12,9 +12,9 @@ #ifndef INSETLISTINGSPARAMS_H #define INSETLISTINGSPARAMS_H +#include "InsetCaptionable.h" + #include -#include -#include "InsetCollapsable.h" namespace lyx { @@ -83,8 +83,15 @@ private: /// inline or normal listings bool inline_; + /// 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 - std::map params_; + // Use a vector of pairs in order to maintain the order of insertion. + typedef std::vector > keyValuePair; + keyValuePair params_; /// collapsable status InsetCollapsable::CollapseStatus status_;