]> git.lyx.org Git - features.git/blob - src/insets/InsetListingsParams.cpp
Adjust minted options
[features.git] / src / insets / InsetListingsParams.cpp
1 /**
2  * \file InsetListingsParams.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Bo Peng
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12 #include <algorithm>
13
14 #include "InsetListingsParams.h"
15
16 #include "Length.h"
17 #include "Lexer.h"
18
19 #include "support/convert.h"
20 #include "support/gettext.h"
21 #include "support/lstrings.h"
22 #include "support/textutils.h"
23
24 #include <sstream>
25
26 using namespace std;
27 using namespace lyx::support;
28
29 namespace lyx {
30
31 namespace {
32
33 enum param_type {
34         ALL,  // accept all
35         TRUEFALSE, // accept 'true' or 'false'
36         INTEGER, // accept an integer
37         LENGTH,  // accept a latex length
38         SKIP,    // accept a skip or a length
39         ONEOF,  // accept one of a few values
40         SUBSETOF // accept a string composed of given characters
41 };
42
43
44 /// Listings package parameter information.
45 // FIXME: make this class visible outside of this file so that
46 // FIXME: it can be used directly in the frontend and in the LyX format
47 // FIXME: parsing.
48 class ListingsParam {
49 public:
50         /// Default ctor for STL containers.
51         ListingsParam(): onoff_(false), type_(ALL)
52         {}
53         /// Main ctor.
54         ListingsParam(string const & v, bool o, param_type t,
55                 string const & i, docstring const & h)
56                 : value_(v), onoff_(o), type_(t), info_(i), hint_(h)
57         {}
58         /// Validate a paramater.
59         /// \retval an empty string if \c par is valid.
60         /// \retval otherwise an explanation WRT to \c par invalidity.
61         docstring validate(string const & par) const;
62 private:
63         /// default value
64         string value_;
65 public:
66         /// for option with value "true", "false".
67         /// if onoff is true,
68         ///   "true":  option
69         ///   "false":
70         ///   "other": option="other"
71         /// onoff is false,
72         ///   "true":  option=true
73         ///   "false": option=false
74         // FIXME: this is public because of InsetListingParam::addParam()
75         bool onoff_;
76 private:
77         /// validator type.
78         /// ALL:
79         /// TRUEFALSE:
80         /// INTEGER:
81         /// LENGTH:
82         ///     info is ignored.
83         /// ONEOF
84         ///     info is a \n separated string with allowed values
85         /// SUBSETOF
86         ///     info is a string from which par is composed of
87         ///     (e.g. floatplacement can be one or more of *tbph)
88         param_type type_;
89         /// information which meaning depends on parameter type.
90         /// \sa type_
91         string info_;
92         /// a help message that is displayed in the gui.
93         docstring hint_;
94 };
95
96
97 char const * allowed_skips = "\\smallskipamount,\\medskipamount,\\bigskipamount";
98
99
100 docstring ListingsParam::validate(string const & par) const
101 {
102         bool unclosed = false;
103         string par2 = par;
104         // braces are allowed
105         if (prefixIs(par, "{") && suffixIs(par, "}") && !suffixIs(par, "\\}"))  
106                 par2 = par.substr(1, par.size() - 2);
107
108         // check for unmatched braces
109         int braces = 0;
110         for (size_t i = 0; i < par2.size(); ++i) {
111                 if (par2[i] == '{' && (i == 0 || par2[i-1] != '\\'))
112                         ++braces;
113                 else if (par2[i] == '}' && (i == 0 || par2[i-1] != '\\'))
114                         --braces;
115         }
116         unclosed = braces != 0;
117         
118         switch (type_) {
119
120         case ALL:
121                 if (par2.empty() && !onoff_) {
122                         if (!hint_.empty())
123                                 return hint_;
124                         else
125                                 return _("A value is expected.");
126                 }
127                 if (unclosed)
128                         return _("Unbalanced braces!");
129                 return docstring();
130
131         case TRUEFALSE:
132                 if (par2.empty() && !onoff_) {
133                         if (!hint_.empty())
134                                 return hint_;
135                         else
136                                 return _("Please specify true or false.");
137                 }
138                 if (par2 != "true" && par2 != "false")
139                         return _("Only true or false is allowed.");
140                 if (unclosed)
141                         return _("Unbalanced braces!");
142                 return docstring();
143
144         case INTEGER:
145                 if (!isStrInt(par2)) {
146                         if (!hint_.empty())
147                                 return hint_;
148                         else
149                                 return _("Please specify an integer value.");
150                 }
151                 if (convert<int>(par2) == 0 && par2[0] != '0')
152                         return _("An integer is expected.");
153                 if (unclosed)
154                         return _("Unbalanced braces!");
155                 return docstring();
156
157         case LENGTH:
158                 if (par2.empty() && !onoff_) {
159                         if (!hint_.empty())
160                                 return hint_;
161                         else
162                                 return _("Please specify a LaTeX length expression.");
163                 }
164                 if (!isValidLength(par2))
165                         return _("Invalid LaTeX length expression.");
166                 if (unclosed)
167                         return _("Unbalanced braces!");
168                 return docstring();
169
170         case SKIP:
171                 if (par2.empty() && !onoff_) {
172                         if (!hint_.empty())
173                                 return hint_;
174                         else
175                                 return bformat(_("Please specify a LaTeX length expression or a skip amount (%1$s)"),
176                                                from_ascii(subst(allowed_skips, ",", ", ")));
177                 }
178                 if (!isValidLength(par2) && tokenPos(allowed_skips, ',', par2) == -1)
179                         return _("Not a valid LaTeX length expression or skip amount.");
180                 if (unclosed)
181                         return _("Unbalanced braces!");
182                 return docstring();
183
184         case ONEOF: {
185                 if (par2.empty() && !onoff_) {
186                         if (!hint_.empty())
187                                 return hint_;
188                         else
189                                 return bformat(_("Please specify one of %1$s."),
190                                                            from_utf8(info_));
191                 }
192                 // break value to allowed strings
193                 vector<string> lists;
194                 string v;
195                 for (size_t i = 0; i != info_.size(); ++i) {
196                         if (info_[i] == '\n') {
197                                 lists.push_back(v);
198                                 v = string();
199                         } else
200                                 v += info_[i];
201                 }
202                 if (!v.empty())
203                         lists.push_back(v);
204
205                 // good, find the string
206                 if (find(lists.begin(), lists.end(), par2) != lists.end()) {
207                         if (unclosed)
208                                 return _("Unbalanced braces!");
209                         return docstring();
210                 }
211                 // otherwise, produce a meaningful error message.
212                 string matching_names;
213                 for (vector<string>::iterator it = lists.begin();
214                         it != lists.end(); ++it) {
215                         if (it->size() >= par2.size() && it->substr(0, par2.size()) == par2) {
216                                 if (matching_names.empty())
217                                         matching_names += *it;
218                                 else
219                                         matching_names += ", " + *it;
220                         }
221                 }
222                 if (matching_names.empty())
223                         return bformat(_("Try one of %1$s."), from_utf8(info_));
224                 else
225                         return bformat(_("I guess you mean %1$s."), from_utf8(matching_names));
226         }
227         case SUBSETOF:
228                 if (par2.empty() && !onoff_) {
229                         if (!hint_.empty())
230                                 return hint_;
231                         else
232                                 return bformat(_("Please specify one or more of '%1$s'."),
233                                                            from_utf8(info_));
234                 }
235                 for (size_t i = 0; i < par2.size(); ++i)
236                         if (info_.find(par2[i], 0) == string::npos)
237                                 return bformat(_("Should be composed of one or more of %1$s."),
238                                                 from_utf8(info_));
239                 if (unclosed)
240                         return _("Unbalanced braces!");
241                 return docstring();
242         }
243         return docstring();
244 }
245
246
247 /// languages and language/dialect combinations
248 char const * allowed_languages =
249         "no language\nABAP\n[R/2 4.3]ABAP\n[R/2 5.0]ABAP\n[R/3 3.1]ABAP\n"
250         "[R/3 4.6C]ABAP\n[R/3 6.10]ABAP\nACSL\nAda\n[2005]Ada\n[83]Ada\n"
251         "[95]Ada\nALGOL\n[60]ALGOL\n[68]ALGOL\nAssembler\n"
252         "[Motorola68k]Assembler\n[x86masm]Assembler\nAwk\n[gnu]Awk\n[POSIX]Awk\n"
253         "bash\nBasic\n[Visual]Basic\nC\n[ANSI]C\n[Handel]C\n[Objective]C\n"
254         "[Sharp]C\nC++\n[ANSI]C++\n[GNU]C++\n[ISO]C++\n[Visual]C++\nCaml\n"
255         "[light]Caml\n[Objective]Caml\nClean\nCobol\n[1974]Cobol\n[1985]Cobol\n"
256         "[ibm]Cobol\nComal 80\ncommand.com\n[WinXP]command.com\nComsol\ncsh\n"
257         "Delphi\nEiffel\nElan\nerlang\nEuphoria\nFortran\n[77]Fortran\n[90]Fortran\n"
258         "[95]Fortran\nGCL\nGnuplot\nHaskell\nHTML\nIDL\n[CORBA]IDL\ninform\n"
259         "Java\n[AspectJ]Java\nJVMIS\nksh\nLingo\nLisp\n[Auto]Lisp\nLogo\n"
260         "make\n[gnu]make\nMathematica\n[1.0]Mathematica\n[3.0]Mathematica\n"
261         "[5.2]Mathematica\nMatlab\nMercury\nMetaPost\nMiranda\nMizar\nML\n"
262         "Modula-2\nMuPAD\nNASTRAN\nOberon-2\nOCL\n[decorative]OCL\n[OMG]OCL\n"
263         "Octave\nOz\nPascal\n[Borland6]Pascal\n[Standard]Pascal\n[XSC]Pascal\n"
264         "Perl\nPHP\nPL/I\nPlasm\nPostScript\nPOV\nProlog\nPromela\nPSTricks\n"
265         "Python\nR\nReduce\nRexx\nRSL\nRuby\nS\n[PLUS]S\nSAS\nScilab\nsh\n"
266         "SHELXL\nSimula\n[67]Simula\n[CII]Simula\n[DEC]Simula\n[IBM]Simula\n"
267         "SPARQL\nSQL\ntcl\n[tk]tcl\nTeX\n[AlLaTeX]TeX\n[common]TeX\n[LaTeX]TeX\n"
268         "[plain]TeX\n[primitive]TeX\nVBScript\nVerilog\nVHDL\n[AMS]VHDL\nVRML\n"
269         "[97]VRML\nXML\nXSLT";
270
271
272 /// ListingsParam Validator.
273 /// This class is aimed to be a singleton which is instantiated in
274 /// \c InsetListingsParams::addParam().
275 // FIXME: transfer this validator to the frontend.
276 // FIXME: avoid the use of exception.
277 class ParValidator
278 {
279 public:
280         ParValidator();
281
282         /// validate a parameter for a given name.
283         /// return an error message if \c par is an invalid parameter.
284         docstring validate(string const & name, string const & par) const;
285
286         /// return the onoff status of a parameter \c key, if \c key is not found
287         /// return false
288         bool onoff(string const & key) const;
289
290 private:
291         /// key is the name of the parameter
292         typedef map<string, ListingsParam> ListingsParams;
293         ListingsParams all_params_[2];
294 };
295
296
297 ParValidator::ParValidator()
298 {
299         docstring const empty_hint;
300         docstring const style_hint = _("Use \\footnotesize, \\small, \\itshape, "
301                 "\\ttfamily or something like that");
302         docstring const frame_hint_mint =
303                 _("none, leftline, topline, bottomline, lines, single");
304         docstring const frame_hint_lst =
305                 _("none, leftline, topline, bottomline, lines, "
306                 "single, shadowbox or subset of trblTRBL");
307         docstring const frameround_hint = _("Enter four letters (either t = round "
308                 "or f = square) for top right, bottom "
309                 "right, bottom left and top left corner.");
310         docstring const color_hint_mint =
311                         _("Previously defined color name as a string");
312         docstring const color_hint_lst =
313                         _("Enter something like \\color{white}");
314
315         // Listings package
316
317         /// options copied from page 26 of listings manual
318         // FIXME: add default parameters ... (which is not used now)
319         all_params_[0]["float"] =
320                 ListingsParam("false", true, SUBSETOF, "*tbph", empty_hint);
321         all_params_[0]["floatplacement"] =
322                 ListingsParam("tbp", false, SUBSETOF, "tbp", empty_hint);
323         all_params_[0]["aboveskip"] =
324                 ListingsParam("\\medskipamount", false, SKIP, "", empty_hint);
325         all_params_[0]["belowskip"] =
326                 ListingsParam("\\medskipamount", false, SKIP, "", empty_hint);
327         all_params_[0]["lineskip"] =
328                 ListingsParam("", false, SKIP, "", empty_hint);
329         all_params_[0]["boxpos"] =
330                 ListingsParam("", false, SUBSETOF, "bct", empty_hint);
331         all_params_[0]["print"] =
332                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
333         all_params_[0]["firstline"] =
334                 ListingsParam("", false, INTEGER, "", empty_hint);
335         all_params_[0]["lastline"] =
336                 ListingsParam("", false, INTEGER, "", empty_hint);
337         all_params_[0]["linerange"] =
338                 ListingsParam("", false, ALL, "", empty_hint);
339         all_params_[0]["showlines"] =
340                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
341         all_params_[0]["emptylines"] =
342                 ListingsParam("", false, ALL, "", _(
343                 "Expect a number with an optional * before it"));
344         all_params_[0]["gobble"] =
345                 ListingsParam("", false, INTEGER, "", empty_hint);
346         all_params_[0]["style"] =
347                 ListingsParam("", false, ALL, "", empty_hint);
348         all_params_[0]["language"] =
349                 ListingsParam("", false, ONEOF, allowed_languages, empty_hint);
350         all_params_[0]["alsolanguage"] =
351                 ListingsParam("", false, ONEOF, allowed_languages, empty_hint);
352         all_params_[0]["defaultdialect"] =
353                 ListingsParam("", false, ONEOF, allowed_languages, empty_hint);
354         all_params_[0]["printpod"] =
355                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
356         all_params_[0]["usekeywordsintag"] =
357                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
358         all_params_[0]["tagstyle"] =
359                 ListingsParam("", false, ALL, "", style_hint);
360         all_params_[0]["markfirstintag"] =
361                 ListingsParam("", false, ALL, "", style_hint);
362         all_params_[0]["makemacrouse"] =
363                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
364         all_params_[0]["basicstyle"] =
365                 ListingsParam("", false, ALL, "", style_hint);
366         all_params_[0]["identifierstyle"] =
367                 ListingsParam("", false, ALL, "", style_hint);
368         all_params_[0]["commentstyle"] =
369                 ListingsParam("", false, ALL, "", style_hint);
370         all_params_[0]["stringstyle"] =
371                 ListingsParam("", false, ALL, "", style_hint);
372         all_params_[0]["keywordstyle"] =
373                 ListingsParam("", false, ALL, "", style_hint);
374         all_params_[0]["ndkeywordstyle"] =
375                 ListingsParam("", false, ALL, "", style_hint);
376         all_params_[0]["classoffset"] =
377                 ListingsParam("", false, INTEGER, "", empty_hint);
378         all_params_[0]["texcsstyle"] =
379                 ListingsParam("", false, ALL, "", style_hint);
380         all_params_[0]["directivestyle"] =
381                 ListingsParam("", false, ALL, "", style_hint);
382         all_params_[0]["emph"] =
383                 ListingsParam("", false, ALL, "", empty_hint);
384         all_params_[0]["moreemph"] =
385                 ListingsParam("", false, ALL, "", empty_hint);
386         all_params_[0]["deleteemph"] =
387                 ListingsParam("", false, ALL, "", empty_hint);
388         all_params_[0]["emphstyle"] =
389                 ListingsParam("", false, ALL, "", empty_hint);
390         all_params_[0]["delim"] =
391                 ListingsParam("", false, ALL, "", empty_hint);
392         all_params_[0]["moredelim"] =
393                 ListingsParam("", false, ALL, "", empty_hint);
394         all_params_[0]["deletedelim"] =
395                 ListingsParam("", false, ALL, "", empty_hint);
396         all_params_[0]["extendedchars"] =
397                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
398         all_params_[0]["inputencoding"] =
399                 ListingsParam("", false, ALL, "", empty_hint);
400         all_params_[0]["upquote"] =
401                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
402         all_params_[0]["tabsize"] =
403                 ListingsParam("", false, INTEGER, "", empty_hint);
404         all_params_[0]["showtabs"] =
405                 ListingsParam("", false, ALL, "", empty_hint);
406         all_params_[0]["tab"] =
407                 ListingsParam("", false, ALL, "", empty_hint);
408         all_params_[0]["showspaces"] =
409                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
410         all_params_[0]["showstringspaces"] =
411                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
412         all_params_[0]["formfeed"] =
413                 ListingsParam("", false, ALL, "", empty_hint);
414         all_params_[0]["numbers"] =
415                 ListingsParam("", false, ONEOF, "none\nleft\nright", empty_hint);
416         all_params_[0]["stepnumber"] =
417                 ListingsParam("", false, INTEGER, "", empty_hint);
418         all_params_[0]["numberfirstline"] =
419                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
420         all_params_[0]["numberstyle"] =
421                 ListingsParam("", false, ALL, "", style_hint);
422         all_params_[0]["numbersep"] =
423                 ListingsParam("", false, LENGTH, "", empty_hint);
424         all_params_[0]["numberblanklines"] =
425                 ListingsParam("", false, ALL, "", empty_hint);
426         all_params_[0]["firstnumber"] =
427                 ListingsParam("", false, ALL, "", _("auto, last or a number"));
428         all_params_[0]["name"] =
429                 ListingsParam("", false, ALL, "", empty_hint);
430         all_params_[0]["thelstnumber"] =
431                 ListingsParam("", false, ALL, "", empty_hint);
432         all_params_[0]["title"] =
433                 ListingsParam("", false, ALL, "", empty_hint);
434         // this option is not handled in the parameter box
435         all_params_[0]["caption"] =
436                 ListingsParam("", false, ALL, "", _(
437                 "This parameter should not be entered here. Please use the caption "
438                 "edit box (when using the child document dialog) or "
439                 "menu Insert->Caption (when defining a listing inset)"));
440         // this option is not handled in the parameter box
441         all_params_[0]["label"] =
442                 ListingsParam("", false, ALL, "",_(
443                 "This parameter should not be entered here. Please use the label "
444                 "edit box (when using the child document dialog) or "
445                 "menu Insert->Label (when defining a listing inset)"));
446         all_params_[0]["nolol"] =
447                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
448         all_params_[0]["captionpos"] =
449                 ListingsParam("", false, SUBSETOF, "tb", empty_hint);
450         all_params_[0]["abovecaptionskip"] =
451                 ListingsParam("", false, SKIP, "", empty_hint);
452         all_params_[0]["belowcaptionskip"] =
453                 ListingsParam("", false, SKIP, "", empty_hint);
454         all_params_[0]["linewidth"] =
455                 ListingsParam("", false, LENGTH, "", empty_hint);
456         all_params_[0]["xleftmargin"] =
457                 ListingsParam("", false, LENGTH, "", empty_hint);
458         all_params_[0]["xrightmargin"] =
459                 ListingsParam("", false, LENGTH, "", empty_hint);
460         all_params_[0]["resetmargins"] =
461                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
462         all_params_[0]["breaklines"] =
463                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
464         all_params_[0]["breakatwhitespace"] =
465                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
466         all_params_[0]["prebreak"] =
467                 ListingsParam("", false, ALL, "", empty_hint);
468         all_params_[0]["postbreak"] =
469                 ListingsParam("", false, ALL, "", empty_hint);
470         all_params_[0]["breakindent"] =
471                 ListingsParam("", false, LENGTH, "", empty_hint);
472         all_params_[0]["breakautoindent"] =
473                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
474         all_params_[0]["frame"] =
475                 ListingsParam("", false, ALL, "", frame_hint_lst);
476         all_params_[0]["frameround"] =
477                 ListingsParam("", false, SUBSETOF, "tf", frameround_hint);
478         all_params_[0]["framesep"] =
479                 ListingsParam("", false, LENGTH, "", empty_hint);
480         all_params_[0]["rulesep"] =
481                 ListingsParam("", false, LENGTH, "", empty_hint);
482         all_params_[0]["framerule"] =
483                 ListingsParam("", false, LENGTH, "", empty_hint);
484         all_params_[0]["framexleftmargin"] =
485                 ListingsParam("", false, LENGTH, "", empty_hint);
486         all_params_[0]["framexrightmargin"] =
487                 ListingsParam("", false, LENGTH, "", empty_hint);
488         all_params_[0]["framextopmargin"] =
489                 ListingsParam("", false, LENGTH, "", empty_hint);
490         all_params_[0]["framexbottommargin"] =
491                 ListingsParam("", false, LENGTH, "", empty_hint);
492         all_params_[0]["backgroundcolor"] =
493                 ListingsParam("", false, ALL, "", color_hint_lst);
494         all_params_[0]["rulecolor"] =
495                 ListingsParam("", false, ALL, "", color_hint_lst);
496         all_params_[0]["fillcolor"] =
497                 ListingsParam("", false, ALL, "", color_hint_lst);
498         all_params_[0]["rulesepcolor"] =
499                 ListingsParam("", false, ALL, "", color_hint_lst);
500         all_params_[0]["frameshape"] =
501                 ListingsParam("", false, ALL, "", empty_hint);
502         all_params_[0]["index"] =
503                 ListingsParam("", false, ALL, "", empty_hint);
504         all_params_[0]["moreindex"] =
505                 ListingsParam("", false, ALL, "", empty_hint);
506         all_params_[0]["deleteindex"] =
507                 ListingsParam("", false, ALL, "", empty_hint);
508         all_params_[0]["indexstyle"] =
509                 ListingsParam("", false, ALL, "", empty_hint);
510         all_params_[0]["columns"] =
511                 ListingsParam("", false, ALL, "", empty_hint);
512         all_params_[0]["flexiblecolumns"] =
513                 ListingsParam("", false, ALL, "", empty_hint);
514         all_params_[0]["keepspaces"] =
515                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
516         all_params_[0]["basewidth"] =
517                 ListingsParam("", false, LENGTH, "", empty_hint);
518         all_params_[0]["fontadjust"] =
519                 ListingsParam("", true, TRUEFALSE, "", empty_hint);
520         all_params_[0]["texcl"] =
521                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
522         all_params_[0]["mathescape"] =
523                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
524         all_params_[0]["escapechar"] =
525                 ListingsParam("", false, ALL, "", empty_hint);
526         all_params_[0]["escapeinside"] =
527                 ListingsParam("", false, ALL, "", empty_hint);
528         all_params_[0]["escapebegin"] =
529                 ListingsParam("", false, ALL, "", empty_hint);
530         all_params_[0]["escapeend"] =
531                 ListingsParam("", false, ALL, "", empty_hint);
532         all_params_[0]["fancyvrb"] =
533                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
534         all_params_[0]["fvcmdparams"] =
535                 ListingsParam("", false, ALL, "", empty_hint);
536         all_params_[0]["morefvcmdparams"] =
537                 ListingsParam("", false, ALL, "", empty_hint);
538         all_params_[0]["keywordsprefix"] =
539                 ListingsParam("", false, ALL, "", empty_hint);
540         all_params_[0]["keywords"] =
541                 ListingsParam("", false, ALL, "", empty_hint);
542         all_params_[0]["morekeywords"] =
543                 ListingsParam("", false, ALL, "", empty_hint);
544         all_params_[0]["deletekeywords"] =
545                 ListingsParam("", false, ALL, "", empty_hint);
546         all_params_[0]["ndkeywords"] =
547                 ListingsParam("", false, ALL, "", empty_hint);
548         all_params_[0]["morendkeywords"] =
549                 ListingsParam("", false, ALL, "", empty_hint);
550         all_params_[0]["deletendkeywords"] =
551                 ListingsParam("", false, ALL, "", empty_hint);
552         all_params_[0]["texcs"] =
553                 ListingsParam("", false, ALL, "", empty_hint);
554         all_params_[0]["moretexcs"] =
555                 ListingsParam("", false, ALL, "", empty_hint);
556         all_params_[0]["deletetexcs"] =
557                 ListingsParam("", false, ALL, "", empty_hint);
558         all_params_[0]["directives"] =
559                 ListingsParam("", false, ALL, "", empty_hint);
560         all_params_[0]["moredirectives"] =
561                 ListingsParam("", false, ALL, "", empty_hint);
562         all_params_[0]["deletedirectives"] =
563                 ListingsParam("", false, ALL, "", empty_hint);
564         all_params_[0]["sensitive"] =
565                 ListingsParam("", false, ALL, "", empty_hint);
566         all_params_[0]["alsoletter"] =
567                 ListingsParam("", false, ALL, "", empty_hint);
568         all_params_[0]["alsodigit"] =
569                 ListingsParam("", false, ALL, "", empty_hint);
570         all_params_[0]["alsoother"] =
571                 ListingsParam("", false, ALL, "", empty_hint);
572         all_params_[0]["otherkeywords"] =
573                 ListingsParam("", false, ALL, "", empty_hint);
574         all_params_[0]["tag"] =
575                 ListingsParam("", false, ALL, "", empty_hint);
576         all_params_[0]["string"] =
577                 ListingsParam("", false, ALL, "", empty_hint);
578         all_params_[0]["morestring"] =
579                 ListingsParam("", false, ALL, "", empty_hint);
580         all_params_[0]["deletestring"] =
581                 ListingsParam("", false, ALL, "", empty_hint);
582         all_params_[0]["comment"] =
583                 ListingsParam("", false, ALL, "", empty_hint);
584         all_params_[0]["morecomment"] =
585                 ListingsParam("", false, ALL, "", empty_hint);
586         all_params_[0]["deletecomment"] =
587                 ListingsParam("", false, ALL, "", empty_hint);
588         all_params_[0]["keywordcomment"] =
589                 ListingsParam("", false, ALL, "", empty_hint);
590         all_params_[0]["morekeywordcomment"] =
591                 ListingsParam("", false, ALL, "", empty_hint);
592         all_params_[0]["deletekeywordcomment"] =
593                 ListingsParam("", false, ALL, "", empty_hint);
594         all_params_[0]["keywordcommentsemicolon"] =
595                 ListingsParam("", false, ALL, "", empty_hint);
596         all_params_[0]["podcomment"] =
597                 ListingsParam("", false, ALL, "", empty_hint);
598         // the following are experimental listings features
599         all_params_[0]["procnamekeys"] =
600                 ListingsParam("", false, ALL, "", empty_hint);
601         all_params_[0]["moreprocnamekeys"] =
602                 ListingsParam("", false, ALL, "", empty_hint);
603         all_params_[0]["deleteprocnamekeys"] =
604                 ListingsParam("", false, ALL, "", empty_hint);
605         all_params_[0]["procnamestyle"] =
606                 ListingsParam("", false, ALL, "", style_hint);
607         all_params_[0]["indexprocnames"] =
608                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
609         all_params_[0]["hyperref"] =
610                 ListingsParam("", false, ALL, "", empty_hint);
611         all_params_[0]["morehyperref"] =
612                 ListingsParam("", false, ALL, "", empty_hint);
613         all_params_[0]["deletehyperref"] =
614                 ListingsParam("", false, ALL, "", empty_hint);
615         all_params_[0]["hyperanchor"] =
616                 ListingsParam("", false, ALL, "", empty_hint);
617         all_params_[0]["hyperlink"] =
618                 ListingsParam("", false, ALL, "", empty_hint);
619         all_params_[0]["literate"] =
620                 ListingsParam("", false, ALL, "", empty_hint);
621         all_params_[0]["lgrindef"] =
622                 ListingsParam("", false, ALL, "", empty_hint);
623         all_params_[0]["rangebeginprefix"] =
624                 ListingsParam("", false, ALL, "", empty_hint);
625         all_params_[0]["rangebeginsuffix"] =
626                 ListingsParam("", false, ALL, "", empty_hint);
627         all_params_[0]["rangeendprefix"] =
628                 ListingsParam("", false, ALL, "", empty_hint);
629         all_params_[0]["rangeendsuffix"] =
630                 ListingsParam("", false, ALL, "", empty_hint);
631         all_params_[0]["rangeprefix"] =
632                 ListingsParam("", false, ALL, "", empty_hint);
633         all_params_[0]["rangesuffix"] =
634                 ListingsParam("", false, ALL, "", empty_hint);
635         all_params_[0]["includerangemarker"] =
636                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
637         all_params_[0]["multicols"] =
638                 ListingsParam("", false, INTEGER, "", empty_hint);
639
640         // Minted package
641
642         // This is not a real minted option and its only purpose
643         // is to get a caption for a floating listing.
644         all_params_[1]["caption"] =
645                 ListingsParam("", false, ALL, "", _(
646                 "This parameter should not be entered here. Please use the caption "
647                 "edit box (when using the child document dialog) or "
648                 "menu Insert->Caption (when defining a listing inset)"));
649         // The "label" minted option is being subverted here for the
650         // sake of getting a label for a floating listing.
651         all_params_[1]["label"] =
652                 ListingsParam("", false, ALL, "",_(
653                 "This parameter should not be entered here. Please use the label "
654                 "edit box (when using the child document dialog) or "
655                 "menu Insert->Label (when defining a listing inset)"));
656         // This is not a real minted option and its only purpose
657         // is to signal that this is a floating listing.
658         all_params_[1]["float"] =
659                 ListingsParam("false", true, SUBSETOF, "*tbph", empty_hint);
660         all_params_[1]["cache"] =
661                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
662         all_params_[1]["cachedir"] =
663                 ListingsParam("", false, ALL, "", _(
664                                         "default: _minted-<jobname>"));
665         all_params_[1]["finalizecache"] =
666                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
667         all_params_[1]["frozencache"] =
668                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
669         all_params_[1]["draft"] =
670                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
671         all_params_[1]["final"] =
672                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
673         all_params_[1]["kpsewhich"] =
674                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
675         all_params_[1]["langlinenos"] =
676                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
677         all_params_[1]["newfloat"] =
678                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
679         all_params_[1]["outputdir"] =
680                 ListingsParam("", false, ALL, "", empty_hint);
681         all_params_[1]["autogobble"] =
682                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
683         all_params_[1]["baselinestretch"] =
684                 ListingsParam("", false, ALL, "", empty_hint);
685         all_params_[1]["breakafter"] =
686                 ListingsParam("", false, ALL, "", empty_hint);
687         all_params_[1]["breakaftergroup"] =
688                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
689         all_params_[1]["breakaftersymbolpre"] =
690                 ListingsParam("", false, ALL, "", empty_hint);
691         all_params_[1]["breakaftersymbolpost"] =
692                 ListingsParam("", false, ALL, "", empty_hint);
693         all_params_[1]["breakanywhere"] =
694                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
695         all_params_[1]["breakanywheresymbolpre"] =
696                 ListingsParam("", false, ALL, "", empty_hint);
697         all_params_[1]["breakanywheresymbolpost"] =
698                 ListingsParam("", false, ALL, "", empty_hint);
699         all_params_[1]["breakautoindent"] =
700                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
701         all_params_[1]["breakbefore"] =
702                 ListingsParam("", false, ALL, "", empty_hint);
703         all_params_[1]["breakbeforegroup"] =
704                 ListingsParam("", true, ALL, "", empty_hint);
705         all_params_[1]["breakbeforesymbolpre"] =
706                 ListingsParam("", false, ALL, "", empty_hint);
707         all_params_[1]["breakbeforesymbolpost"] =
708                 ListingsParam("", false, ALL, "", empty_hint);
709         all_params_[1]["breakbytoken"] =
710                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
711         all_params_[1]["breakbytokenanywhere"] =
712                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
713         all_params_[1]["breakindent"] =
714                 ListingsParam("", false, LENGTH, "", empty_hint);
715         all_params_[1]["breaklines"] =
716                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
717         all_params_[1]["breaksymbol"] =
718                 ListingsParam("", false, ALL, "", empty_hint);
719         all_params_[1]["breaksymbolleft"] =
720                 ListingsParam("", false, ALL, "", empty_hint);
721         all_params_[1]["breaksymbolright"] =
722                 ListingsParam("", false, ALL, "", empty_hint);
723         all_params_[1]["breaksymbolindent"] =
724                 ListingsParam("", false, LENGTH, "", empty_hint);
725         all_params_[1]["breaksymbolindentleft"] =
726                 ListingsParam("", false, LENGTH, "", empty_hint);
727         all_params_[1]["breaksymbolindentright"] =
728                 ListingsParam("", false, LENGTH, "", empty_hint);
729         all_params_[1]["breaksymbolsep"] =
730                 ListingsParam("", false, LENGTH, "", empty_hint);
731         all_params_[1]["breaksymbolsepleft"] =
732                 ListingsParam("", false, LENGTH, "", empty_hint);
733         all_params_[1]["breaksymbolsepright"] =
734                 ListingsParam("", false, LENGTH, "", empty_hint);
735         all_params_[1]["bgcolor"] =
736                 ListingsParam("", false, ALL, "", color_hint_mint);
737         all_params_[1]["codetagify"] =
738                 ListingsParam("", false, ALL, "", empty_hint);
739         all_params_[1]["curlyquotes"] =
740                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
741         all_params_[1]["encoding"] =
742                 ListingsParam("", false, ALL, "", _(
743                                 "Sets encoding expected by Pygments"));
744         all_params_[1]["escapeinside"] =
745                 ListingsParam("", false, ALL, "", empty_hint);
746         all_params_[1]["firstline"] =
747                 ListingsParam("", false, INTEGER, "", empty_hint);
748         all_params_[1]["firstnumber"] =
749                 ListingsParam("", false, ALL, "", _(
750                                         "auto, last or a number"));
751         all_params_[1]["fontfamily"] =
752                 ListingsParam("", false, ALL, "", _(
753                                 "A latex family such as tt, sf, rm"));
754         all_params_[1]["fontseries"] =
755                 ListingsParam("", false, ALL, "", _(
756                                 "A latex series such as m, b, c, bx, sb"));
757         all_params_[1]["fontsize"] =
758                 ListingsParam("", false, ALL, "", _(
759                                 "A latex name such as \\small"));
760         all_params_[1]["fontshape"] =
761                 ListingsParam("", false, ALL, "", _(
762                                 "A latex shape such as n, it, sl, sc"));
763         all_params_[1]["formatcom"] =
764                 ListingsParam("", false, ALL, "", empty_hint);
765         all_params_[1]["frame"] =
766                 ListingsParam("", false, ONEOF,
767                   "none\nleftline\ntopline\nbottomline\nlines\nsingle",
768                   frame_hint_mint);
769         all_params_[1]["framerule"] =
770                 ListingsParam("", false, LENGTH, "", empty_hint);
771         all_params_[1]["framesep"] =
772                 ListingsParam("", false, LENGTH, "", empty_hint);
773         all_params_[1]["funcnamehighlighting"] =
774                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
775         all_params_[1]["gobble"] =
776                 ListingsParam("", false, INTEGER, "", empty_hint);
777         all_params_[1]["highlightcolor"] =
778                 ListingsParam("", false, ALL, "", color_hint_mint);
779         all_params_[1]["highlightlines"] =
780                 ListingsParam("", false, ALL, "", _(
781                                 "A range of lines such as {1,3-4}"));
782         all_params_[1]["keywordcase"] =
783                 ListingsParam("", false, ONEOF,
784                                 "lower\nupper\ncapitalize", empty_hint);
785         all_params_[1]["labelposition"] =
786                 ListingsParam("", false, ONEOF,
787                         "none\ntopline\nbottomline\nall", empty_hint);
788         all_params_[1]["language"] =
789                 ListingsParam("", false, ALL, "", _(
790                 "Enter one of the supported languages. However, if you "
791                 "are defining a listing inset, it is better using the  "
792                 "language combo box, unless you need to enter a language not "
793                 "offered there, otherwise the combo box will be disabled."));
794         all_params_[1]["lastline"] =
795                 ListingsParam("", false, INTEGER, "", empty_hint);
796         all_params_[1]["linenos"] =
797                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
798         all_params_[1]["numberfirstline"] =
799                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
800         all_params_[1]["numbers"] =
801                 ListingsParam("", false, ONEOF,
802                                 "left\nright\nboth\nnone", empty_hint);
803         all_params_[1]["mathescape"] =
804                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
805         all_params_[1]["numberblanklines"] =
806                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
807         all_params_[1]["numbersep"] =
808                 ListingsParam("", false, LENGTH, "", empty_hint);
809         all_params_[1]["obeytabs"] =
810                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
811         all_params_[1]["outencoding"] =
812                 ListingsParam("", false, ALL, "", _(
813                   "File encoding used by Pygments for highlighting"));
814         all_params_[1]["python3"] =
815                 ListingsParam("", false, TRUEFALSE, "", _(
816                                         "Apply Python 3 highlighting"));
817         all_params_[1]["resetmargins"] =
818                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
819         all_params_[1]["rulecolor"] =
820                 ListingsParam("", false, ALL, "", color_hint_mint);
821         all_params_[1]["samepage"] =
822                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
823         all_params_[1]["showspaces"] =
824                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
825         all_params_[1]["showtabs"] =
826                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
827         all_params_[1]["space"] =
828                 ListingsParam("", false, ALL, "", _(
829                                 "A macro. Default: \\textvisiblespace"));
830         all_params_[1]["spacecolor"] =
831                 ListingsParam("", false, ALL, "", color_hint_mint);
832         all_params_[1]["startinline"] =
833                 ListingsParam("", false, TRUEFALSE, "", _("For PHP only"));
834         all_params_[1]["style"] =
835                 ListingsParam("", false, ALL, "", _(
836                                         "The style used by Pygments"));
837         all_params_[1]["stepnumber"] =
838                 ListingsParam("", false, INTEGER, "", empty_hint);
839         all_params_[1]["stepnumberfromfirst"] =
840                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
841         all_params_[1]["stepnumberoffsetvalues"] =
842                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
843         all_params_[1]["stripall"] =
844                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
845         all_params_[1]["stripnl"] =
846                 ListingsParam("", false, TRUEFALSE, "", empty_hint);
847         all_params_[1]["tab"] =
848                 ListingsParam("", false, ALL, "", _(
849                                 "A macro to redefine visible tabs"));
850         all_params_[1]["tabcolor"] =
851                 ListingsParam("", false, ALL, "", color_hint_mint);
852         all_params_[1]["tabsize"] =
853                 ListingsParam("", false, INTEGER, "", empty_hint);
854         all_params_[1]["texcl"] =
855                 ListingsParam("", false, TRUEFALSE, "", _(
856                                 "Enables latex code in comments"));
857         all_params_[1]["texcomments"] =
858                 ListingsParam("", false, TRUEFALSE, "", _(
859                                 "Enables latex code in comments"));
860         all_params_[1]["xleftmargin"] =
861                 ListingsParam("", false, LENGTH, "", empty_hint);
862         all_params_[1]["xrightmargin"] =
863                 ListingsParam("", false, LENGTH, "", empty_hint);
864 }
865
866
867 docstring ParValidator::validate(string const & name,
868                 string const & par) const
869 {
870         int p = InsetListingsParams::package();
871
872         if (name.empty())
873                 return _("Invalid (empty) listing parameter name.");
874
875         if (name[0] == '?') {
876                 string suffix = trim(string(name, 1));
877                 string param_names;
878                 ListingsParams::const_iterator it = all_params_[p].begin();
879                 ListingsParams::const_iterator end = all_params_[p].end();
880                 for (; it != end; ++it) {
881                         if (suffix.empty() || contains(it->first, suffix)) {
882                                 if (!param_names.empty())
883                                         param_names += ", ";
884                                 param_names += it->first;
885                         }
886                 }
887                 if (suffix.empty())
888                         return bformat(
889                                         _("Available listing parameters are %1$s"), from_ascii(param_names));
890                 else
891                         return bformat(
892                                         _("Available listings parameters containing string \"%1$s\" are %2$s"), 
893                                                 from_utf8(suffix), from_utf8(param_names));
894         }
895  
896         // locate name in parameter table
897         ListingsParams::const_iterator it = all_params_[p].find(name);
898         if (it != all_params_[p].end()) {
899                 docstring msg = it->second.validate(par);
900                 if (msg.empty())
901                         return msg;
902                 else
903                         return bformat(_("Parameter %1$s: "), from_utf8(name)) + msg;
904         } else {
905                 // otherwise, produce a meaningful error message.
906                 string matching_names;
907                 ListingsParams::const_iterator end = all_params_[p].end();
908                 for (it = all_params_[p].begin(); it != end; ++it) {
909                         if (prefixIs(it->first, name)) {
910                                 if (!matching_names.empty())
911                                         matching_names += ", ";
912                                 matching_names += it->first;
913                         }
914                 }
915                 if (matching_names.empty())
916                         return bformat(_("Unknown listing parameter name: %1$s"),
917                                                                 from_utf8(name));
918                 else
919                         return bformat(_("Parameters starting with '%1$s': %2$s"),
920                                                                 from_utf8(name), from_utf8(matching_names));
921         }
922 }
923
924
925 bool ParValidator::onoff(string const & name) const
926 {
927         int p = InsetListingsParams::package();
928
929         // locate name in parameter table
930         ListingsParams::const_iterator it = all_params_[p].find(name);
931         if (it != all_params_[p].end())
932                 return it->second.onoff_;
933         else
934                 return false;
935 }
936
937 } // namespace anon.
938
939 // define a global ParValidator
940 ParValidator * par_validator = 0;
941
942 // The package to be used by the global ParValidator
943 // (0 for listings, 1 for minted)
944 int InsetListingsParams::package_ = 0;
945
946 InsetListingsParams::InsetListingsParams()
947         : inline_(false), params_(), status_(InsetCollapsable::Open)
948 {
949 }
950
951
952 InsetListingsParams::InsetListingsParams(string const & par, bool in,
953                 InsetCollapsable::CollapseStatus s)
954         : inline_(in), params_(), status_(s)
955 {
956         // this will activate parameter validation.
957         fromEncodedString(par);
958 }
959
960
961 void InsetListingsParams::write(ostream & os) const
962 {
963         if (inline_)
964                 os << "true ";
965         else
966                 os << "false ";
967         os << status_ << " \""  << encodedString() << "\"";
968 }
969
970
971 void InsetListingsParams::read(Lexer & lex)
972 {
973         lex >> inline_;
974         int s = InsetCollapsable::Collapsed;
975         lex >> s;
976         status_ = static_cast<InsetCollapsable::CollapseStatus>(s);
977         string par;
978         lex >> par;
979         fromEncodedString(par);
980 }
981
982
983 string InsetListingsParams::params(string const & sep) const
984 {
985         string par;
986         keyValuePair::const_iterator it = params_.begin();
987         for (; it != params_.end(); ++it) {
988                 if (!par.empty())
989                         par += sep;
990                 // key=value,key=value1 is stored in params_ as key=value,key_=value1.
991                 if (it->second.empty())
992                         par += rtrim(it->first, "_");
993                 else
994                         par += rtrim(it->first, "_") + '=' + it->second;
995         }
996         return par;
997 }
998
999
1000 bool InsetListingsParams::hasParam(string const & key) const
1001 {
1002         keyValuePair::const_iterator it = params_.begin();
1003         for (; it != params_.end(); ++it) {
1004                 if (it->first == key)
1005                         return true;
1006         }
1007         return false;
1008 }
1009
1010
1011 string InsetListingsParams::getValue(string const & key) const
1012 {
1013         keyValuePair::const_iterator it = params_.begin();
1014         for (; it != params_.end(); ++it) {
1015                 if (it->first == key)
1016                         return it->second;
1017         }
1018         return string();
1019 }
1020
1021
1022 void InsetListingsParams::addParam(string const & key, 
1023                 string const & value, bool replace)
1024 {
1025         if (key.empty())
1026                 return;
1027
1028         // duplicate parameters!
1029         string keyname = key;
1030         if (!replace && hasParam(key))
1031                 // key=value,key=value1 is allowed in listings
1032                 // use key_, key__, key___ etc to avoid name conflict
1033                 while (hasParam(keyname += '_')) { }
1034         // check onoff flag
1035         // onoff parameter with value false
1036         if (!par_validator)
1037                 par_validator = new ParValidator;
1038         if (par_validator->onoff(key) && (value == "false" || value == "{false}"))
1039                 params_.push_back(make_pair(keyname, string()));
1040         // if the parameter is surrounded with {}, good
1041         else if (prefixIs(value, "{") && suffixIs(value, "}"))
1042                 params_.push_back(make_pair(keyname, value));
1043         // otherwise, check if {} is needed. Add {} to all values with
1044         // non-ascii/number characters, just to be safe
1045         else {
1046                 bool has_special_char = false;
1047                 for (size_t i = 0; i < value.size(); ++i)
1048                         if (!isAlnumASCII(value[i])) {
1049                                 has_special_char = true;
1050                                 break;
1051                         }
1052                 if (has_special_char)
1053                         params_.push_back(make_pair(keyname, "{" + value + "}"));
1054                 else
1055                         params_.push_back(make_pair(keyname, value));
1056         }
1057 }
1058
1059
1060 void InsetListingsParams::addParams(string const & par)
1061 {
1062         string key;
1063         string value;
1064         bool isValue = false;
1065         int braces = 0;
1066         for (size_t i = 0; i < par.size(); ++i) {
1067                 // end of par
1068                 if (par[i] == '\n') {
1069                         addParam(trim(key), trim(value));
1070                         key = string();
1071                         value = string();
1072                         isValue = false;
1073                         continue;
1074                 } else if (par[i] == ',' && braces == 0) {
1075                         addParam(trim(key), trim(value));
1076                         key = string();
1077                         value = string();
1078                         isValue = false;
1079                         continue;
1080                 } else if (par[i] == '=' && braces == 0) {
1081                         isValue = true;
1082                         continue;
1083                 } else if (par[i] == '{' && i > 0 && par[i-1] != '\\')
1084                         // don't count a brace in first position
1085                         ++braces;
1086                 else if (par[i] == '}' && i != par.size() - 1 
1087                          && (i == 0 || (i > 0 && par[i-1] != '\\')))
1088                         --braces;
1089
1090                 if (isValue)
1091                         value += par[i];
1092                 else
1093                         key += par[i];
1094         }
1095         if (!trim(key).empty())
1096                 addParam(trim(key), trim(value));
1097 }
1098
1099
1100 void InsetListingsParams::setParams(string const & par)
1101 {
1102         params_.clear();
1103         addParams(par);
1104 }
1105
1106
1107 string InsetListingsParams::encodedString() const
1108 {
1109         // Encode string!
1110         // '"' is handled differently because it will
1111         // terminate a lyx token.
1112         string par = params();
1113         // '"' is now &quot;  ==> '"' is now &amp;quot;
1114         par = subst(par, "&", "&amp;");
1115         // '"' is now &amp;quot; ==> '&quot;' is now &amp;quot;
1116         par = subst(par, "\"", "&quot;");
1117         return par;
1118 }
1119
1120
1121 string InsetListingsParams::separatedParams(bool keepComma) const
1122 {
1123         if (keepComma)
1124                 return params(",\n");
1125         else
1126                 return params("\n");
1127 }
1128
1129
1130 void InsetListingsParams::fromEncodedString(string const & in)
1131 {
1132         // Decode string! Reversal of encodedString
1133         string par = in;
1134         // '&quot;' is now &amp;quot; ==> '"' is now &amp;quot;
1135         par = subst(par, "&quot;", "\"");
1136         //  '"' is now &amp;quot; ==> '"' is now &quot;
1137         par = subst(par, "&amp;", "&");
1138         setParams(par);
1139 }
1140
1141
1142 bool InsetListingsParams::isFloat() const
1143 {
1144         return hasParam("float");
1145 }
1146
1147
1148 string InsetListingsParams::getParamValue(string const & param) const
1149 {
1150         string par = getValue(param);
1151         if (prefixIs(par, "{") && suffixIs(par, "}"))
1152                 return par.substr(1, par.size() - 2);
1153         else
1154                 return par;
1155 }
1156
1157
1158 docstring InsetListingsParams::validate() const
1159 {
1160         docstring msg;
1161         if (!par_validator)
1162                 par_validator = new ParValidator;
1163         // return msg for first key=value pair which is incomplete or has an error
1164         keyValuePair::const_iterator it = params_.begin();
1165         for (; it != params_.end(); ++it) {
1166                 // key trimmed
1167                 msg = par_validator->validate(rtrim(it->first, "_"), it->second);
1168                 if (!msg.empty())
1169                         return msg;
1170         }
1171         return msg;
1172 }
1173
1174 } // namespace lyx