mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
- Convert char * to string and docstring for the hints, thus fixing the translation.
- cleanup the header. - encapsulate local code in local namespace. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18520 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
54e26803c4
commit
398c24b8f2
@ -10,37 +10,39 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include "Lexer.h"
|
|
||||||
#include "InsetListingsParams.h"
|
#include "InsetListingsParams.h"
|
||||||
|
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
#include "Length.h"
|
#include "Length.h"
|
||||||
|
#include "Lexer.h"
|
||||||
#include <sstream>
|
|
||||||
#include <boost/assert.hpp>
|
|
||||||
|
|
||||||
#include "support/lstrings.h"
|
#include "support/lstrings.h"
|
||||||
#include "support/textutils.h"
|
#include "support/textutils.h"
|
||||||
#include "support/convert.h"
|
#include "support/convert.h"
|
||||||
|
|
||||||
|
#include <boost/assert.hpp>
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
using std::map;
|
using std::map;
|
||||||
using std::vector;
|
using std::vector;
|
||||||
using std::ostream;
|
using std::ostream;
|
||||||
using std::string;
|
using std::string;
|
||||||
using std::exception;
|
using std::exception;
|
||||||
using lyx::support::bformat;
|
|
||||||
using lyx::support::trim;
|
|
||||||
using lyx::support::subst;
|
|
||||||
using lyx::support::isStrInt;
|
|
||||||
using lyx::support::prefixIs;
|
|
||||||
using lyx::support::suffixIs;
|
|
||||||
using lyx::support::getVectorFromString;
|
|
||||||
using lyx::isAlphaASCII;
|
|
||||||
using lyx::isDigit;
|
|
||||||
|
|
||||||
namespace lyx
|
namespace lyx
|
||||||
{
|
{
|
||||||
|
|
||||||
|
using support::bformat;
|
||||||
|
using support::trim;
|
||||||
|
using support::subst;
|
||||||
|
using support::isStrInt;
|
||||||
|
using support::prefixIs;
|
||||||
|
using support::suffixIs;
|
||||||
|
using support::getVectorFromString;
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
enum param_type {
|
enum param_type {
|
||||||
ALL, // accept all
|
ALL, // accept all
|
||||||
TRUEFALSE, // accept 'true' or 'false'
|
TRUEFALSE, // accept 'true' or 'false'
|
||||||
@ -55,9 +57,9 @@ enum param_type {
|
|||||||
*/
|
*/
|
||||||
struct listings_param_info {
|
struct listings_param_info {
|
||||||
/// name of the parameter
|
/// name of the parameter
|
||||||
char const * name;
|
string name;
|
||||||
/// default value
|
/// default value
|
||||||
char const * value;
|
string value;
|
||||||
// for option with value "true", "false",
|
// for option with value "true", "false",
|
||||||
// if onoff is true,
|
// if onoff is true,
|
||||||
// "true": option
|
// "true": option
|
||||||
@ -80,13 +82,12 @@ struct listings_param_info {
|
|||||||
// (e.g. floatplacement can be one or more of *tbph)
|
// (e.g. floatplacement can be one or more of *tbph)
|
||||||
param_type type;
|
param_type type;
|
||||||
/// parameter info, meaning depending on parameter type
|
/// parameter info, meaning depending on parameter type
|
||||||
char const * info;
|
string info;
|
||||||
/// a help message that is displayed in the gui
|
/// a help message that is displayed in the gui
|
||||||
char const * hint;
|
docstring hint;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// languages and language/dialect combinations
|
/// languages and language/dialect combinations
|
||||||
char const * allowed_languages =
|
char const * allowed_languages =
|
||||||
"no language\nABAP\n[R/2 4.3]ABAP\n[R/2 5.0]ABAP\n[R/3 3.1]ABAP\n"
|
"no language\nABAP\n[R/2 4.3]ABAP\n[R/2 5.0]ABAP\n[R/3 3.1]ABAP\n"
|
||||||
@ -111,154 +112,155 @@ char const * allowed_languages =
|
|||||||
"[plain]TeX\n[primitive]TeX\nVBScript\nVerilog\nVHDL\n[AMS]VHDL\nVRML\n"
|
"[plain]TeX\n[primitive]TeX\nVBScript\nVerilog\nVHDL\n[AMS]VHDL\nVRML\n"
|
||||||
"[97]VRML\nXML\nXSLT";
|
"[97]VRML\nXML\nXSLT";
|
||||||
|
|
||||||
char const * style_hint = N_("Use \\footnotesize, \\small, \\itshape, \\ttfamily or something like that");
|
docstring empty_hint;
|
||||||
char const * frame_hint = N_("none, leftline, topline, bottomline, lines, single, shadowbox or subset of trblTRBL");
|
docstring style_hint = _("Use \\footnotesize, \\small, \\itshape, \\ttfamily or something like that");
|
||||||
char const * frameround_hint =
|
docstring frame_hint = _("none, leftline, topline, bottomline, lines, single, shadowbox or subset of trblTRBL");
|
||||||
N_("Enter four letters (either t = round or f = square) for top right, bottom right, bottom left and top left corner.");
|
docstring frameround_hint = _("Enter four letters (either t = round or f = square) for top right, bottom right, bottom left and top left corner.");
|
||||||
char const * color_hint = N_("Enter something like \\color{white}");
|
docstring color_hint = _("Enter something like \\color{white}");
|
||||||
|
|
||||||
|
|
||||||
/// options copied from page 26 of listings manual
|
/// options copied from page 26 of listings manual
|
||||||
// FIXME: add default parameters ... (which is not used now)
|
// FIXME: add default parameters ... (which is not used now)
|
||||||
listings_param_info const listings_param_table[] = {
|
listings_param_info const listings_param_table[] = {
|
||||||
{ "float", "false", true, SUBSETOF, "*tbph", "" },
|
{ "float", "false", true, SUBSETOF, "*tbph", empty_hint},
|
||||||
{ "floatplacement", "tbp", false, SUBSETOF, "tbp", "" },
|
{ "floatplacement", "tbp", false, SUBSETOF, "tbp", empty_hint},
|
||||||
{ "aboveskip", "\\medskipamount", false, LENGTH, "", "" },
|
{ "aboveskip", "\\medskipamount", false, LENGTH, "", empty_hint},
|
||||||
{ "belowskip", "\\medskipamount", false, LENGTH, "", "" },
|
{ "belowskip", "\\medskipamount", false, LENGTH, "", empty_hint},
|
||||||
{ "lineskip", "", false, LENGTH, "", "" },
|
{ "lineskip", "", false, LENGTH, "", empty_hint},
|
||||||
{ "boxpos", "", false, SUBSETOF, "bct", "" },
|
{ "boxpos", "", false, SUBSETOF, "bct", empty_hint},
|
||||||
{ "print", "", false, TRUEFALSE, "", "" },
|
{ "print", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "firstline", "", false, INTEGER, "", "" },
|
{ "firstline", "", false, INTEGER, "", empty_hint},
|
||||||
{ "lastline", "", false, INTEGER, "", "" },
|
{ "lastline", "", false, INTEGER, "", empty_hint},
|
||||||
{ "showlines", "", false, TRUEFALSE, "", "" },
|
{ "showlines", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "emptylines", "", false, ALL, "", N_("Expect a number with an optional * before it") },
|
{ "emptylines", "", false, ALL, "", from_ascii("Expect a number with an optional * before it") },
|
||||||
{ "gobble", "", false, INTEGER, "", "" },
|
{ "gobble", "", false, INTEGER, "", empty_hint},
|
||||||
{ "style", "", false, ALL, "", "" },
|
{ "style", "", false, ALL, "", empty_hint},
|
||||||
{ "language", "", false, ONEOF, allowed_languages, "" },
|
{ "language", "", false, ONEOF, allowed_languages, empty_hint},
|
||||||
{ "alsolanguage", "", false, ONEOF, allowed_languages, "" },
|
{ "alsolanguage", "", false, ONEOF, allowed_languages, empty_hint},
|
||||||
{ "defaultdialect", "", false, ONEOF, allowed_languages, "" },
|
{ "defaultdialect", "", false, ONEOF, allowed_languages, empty_hint},
|
||||||
{ "printpod", "", false, TRUEFALSE, "", "" },
|
{ "printpod", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "usekeywordsintag", "", false, TRUEFALSE, "", "" },
|
{ "usekeywordsintag", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "tagstyle", "", false, ALL, "", style_hint },
|
{ "tagstyle", "", false, ALL, "", style_hint },
|
||||||
{ "markfirstintag", "", false, ALL, "", style_hint },
|
{ "markfirstintag", "", false, ALL, "", style_hint },
|
||||||
{ "makemacrouse", "", false, TRUEFALSE, "", "" },
|
{ "makemacrouse", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "basicstyle", "", false, ALL, "", style_hint },
|
{ "basicstyle", "", false, ALL, "", style_hint },
|
||||||
{ "identifierstyle", "", false, ALL, "", style_hint },
|
{ "identifierstyle", "", false, ALL, "", style_hint },
|
||||||
{ "commentstyle", "", false, ALL, "", style_hint },
|
{ "commentstyle", "", false, ALL, "", style_hint },
|
||||||
{ "stringstyle", "", false, ALL, "", style_hint },
|
{ "stringstyle", "", false, ALL, "", style_hint },
|
||||||
{ "keywordstyle", "", false, ALL, "", style_hint },
|
{ "keywordstyle", "", false, ALL, "", style_hint },
|
||||||
{ "ndkeywordstyle", "", false, ALL, "", style_hint },
|
{ "ndkeywordstyle", "", false, ALL, "", style_hint },
|
||||||
{ "classoffset", "", false, INTEGER, "", "" },
|
{ "classoffset", "", false, INTEGER, "", empty_hint},
|
||||||
{ "texcsstyle", "", false, ALL, "", style_hint },
|
{ "texcsstyle", "", false, ALL, "", style_hint },
|
||||||
{ "directivestyle", "", false, ALL, "", style_hint },
|
{ "directivestyle", "", false, ALL, "", style_hint },
|
||||||
{ "emph", "", false, ALL, "", "" },
|
{ "emph", "", false, ALL, "", empty_hint},
|
||||||
{ "moreemph", "", false, ALL, "", "" },
|
{ "moreemph", "", false, ALL, "", empty_hint},
|
||||||
{ "deleteemph", "", false, ALL, "", "" },
|
{ "deleteemph", "", false, ALL, "", empty_hint},
|
||||||
{ "emphstyle", "", false, ALL, "", "" },
|
{ "emphstyle", "", false, ALL, "", empty_hint},
|
||||||
{ "delim", "", false, ALL, "", "" },
|
{ "delim", "", false, ALL, "", empty_hint},
|
||||||
{ "moredelim", "", false, ALL, "", "" },
|
{ "moredelim", "", false, ALL, "", empty_hint},
|
||||||
{ "deletedelim", "", false, ALL, "", "" },
|
{ "deletedelim", "", false, ALL, "", empty_hint},
|
||||||
{ "extendedchars", "", false, TRUEFALSE, "", "" },
|
{ "extendedchars", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "inputencoding", "", false, ALL, "", "" },
|
{ "inputencoding", "", false, ALL, "", empty_hint},
|
||||||
{ "upquote", "", false, TRUEFALSE, "", "" },
|
{ "upquote", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "tabsize", "", false, INTEGER, "", "" },
|
{ "tabsize", "", false, INTEGER, "", empty_hint},
|
||||||
{ "showtabs", "", false, ALL, "", "" },
|
{ "showtabs", "", false, ALL, "", empty_hint},
|
||||||
{ "tab", "", false, ALL, "", "" },
|
{ "tab", "", false, ALL, "", empty_hint},
|
||||||
{ "showspaces", "", false, TRUEFALSE, "", "" },
|
{ "showspaces", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "showstringspaces", "", false, TRUEFALSE, "", "" },
|
{ "showstringspaces", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "formfeed", "", false, ALL, "", "" },
|
{ "formfeed", "", false, ALL, "", empty_hint},
|
||||||
{ "numbers", "", false, ONEOF, "none\nleft\nright", "" },
|
{ "numbers", "", false, ONEOF, "none\nleft\nright", empty_hint},
|
||||||
{ "stepnumber", "", false, INTEGER, "", "" },
|
{ "stepnumber", "", false, INTEGER, "", empty_hint},
|
||||||
{ "numberfirstline", "", false, TRUEFALSE, "", "" },
|
{ "numberfirstline", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "numberstyle", "", false, ALL, "", style_hint },
|
{ "numberstyle", "", false, ALL, "", style_hint },
|
||||||
{ "numbersep", "", false, LENGTH, "", "" },
|
{ "numbersep", "", false, LENGTH, "", empty_hint},
|
||||||
{ "numberblanklines", "", false, ALL, "", "" },
|
{ "numberblanklines", "", false, ALL, "", empty_hint},
|
||||||
{ "firstnumber", "", false, ALL, "", N_("auto, last or a number") },
|
{ "firstnumber", "", false, ALL, "", _("auto, last or a number") },
|
||||||
{ "name", "", false, ALL, "", "" },
|
{ "name", "", false, ALL, "", empty_hint},
|
||||||
{ "thelstnumber", "", false, ALL, "", "" },
|
{ "thelstnumber", "", false, ALL, "", empty_hint},
|
||||||
{ "title", "", false, ALL, "", "" },
|
{ "title", "", false, ALL, "", empty_hint},
|
||||||
// this option is not handled in the parameter box
|
// this option is not handled in the parameter box
|
||||||
{ "caption", "", false, ALL, "", N_("This parameter should not be entered here. "
|
{ "caption", "", false, ALL, "", _("This parameter should not be entered here. "
|
||||||
"Please use caption editbox (Include dialog) or insert->caption (listings inset)") },
|
"Please use caption editbox (Include dialog) or insert->caption (listings inset)") },
|
||||||
// this option is not handled in the parameter box
|
// this option is not handled in the parameter box
|
||||||
{ "label", "", false, ALL, "", N_("This parameter should not be entered here. "
|
{ "label", "", false, ALL, "", _("This parameter should not be entered here. "
|
||||||
"Please use label editbox (Include dialog) or insert->caption (listings inset)") },
|
"Please use label editbox (Include dialog) or insert->caption (listings inset)") },
|
||||||
{ "nolol", "", false, TRUEFALSE, "", "" },
|
{ "nolol", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "captionpos", "", false, SUBSETOF, "tb", "" },
|
{ "captionpos", "", false, SUBSETOF, "tb", empty_hint},
|
||||||
{ "abovecaptionskip", "", false, LENGTH, "", "" },
|
{ "abovecaptionskip", "", false, LENGTH, "", empty_hint},
|
||||||
{ "belowcaptionskip", "", false, LENGTH, "", "" },
|
{ "belowcaptionskip", "", false, LENGTH, "", empty_hint},
|
||||||
{ "linewidth", "", false, LENGTH, "", "" },
|
{ "linewidth", "", false, LENGTH, "", empty_hint},
|
||||||
{ "xleftmargin", "", false, LENGTH, "", "" },
|
{ "xleftmargin", "", false, LENGTH, "", empty_hint},
|
||||||
{ "xrightmargin", "", false, LENGTH, "", "" },
|
{ "xrightmargin", "", false, LENGTH, "", empty_hint},
|
||||||
{ "resetmargins", "", false, TRUEFALSE, "", "" },
|
{ "resetmargins", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "breaklines", "", false, TRUEFALSE, "", "" },
|
{ "breaklines", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "prebreak", "", false, ALL, "", "" },
|
{ "prebreak", "", false, ALL, "", empty_hint},
|
||||||
{ "postbreak", "", false, ALL, "", "" },
|
{ "postbreak", "", false, ALL, "", empty_hint},
|
||||||
{ "breakindent", "", false, LENGTH, "", "" },
|
{ "breakindent", "", false, LENGTH, "", empty_hint},
|
||||||
{ "breakautoindent", "", false, TRUEFALSE, "", "" },
|
{ "breakautoindent", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "frame", "", false, ALL, "", frame_hint },
|
{ "frame", "", false, ALL, "", frame_hint },
|
||||||
{ "frameround", "", false, SUBSETOF, "tf", frameround_hint },
|
{ "frameround", "", false, SUBSETOF, "tf", frameround_hint },
|
||||||
{ "framesep", "", false, LENGTH, "", "" },
|
{ "framesep", "", false, LENGTH, "", empty_hint},
|
||||||
{ "rulesep", "", false, LENGTH, "", "" },
|
{ "rulesep", "", false, LENGTH, "", empty_hint},
|
||||||
{ "framerule", "", false, LENGTH, "", "" },
|
{ "framerule", "", false, LENGTH, "", empty_hint},
|
||||||
{ "framexleftmargin", "", false, LENGTH, "", "" },
|
{ "framexleftmargin", "", false, LENGTH, "", empty_hint},
|
||||||
{ "framexrightmargin", "", false, LENGTH, "", "" },
|
{ "framexrightmargin", "", false, LENGTH, "", empty_hint},
|
||||||
{ "framextopmargin", "", false, LENGTH, "", "" },
|
{ "framextopmargin", "", false, LENGTH, "", empty_hint},
|
||||||
{ "framexbottommargin", "", false, LENGTH, "", "" },
|
{ "framexbottommargin", "", false, LENGTH, "", empty_hint},
|
||||||
{ "backgroundcolor", "", false, ALL, "", color_hint },
|
{ "backgroundcolor", "", false, ALL, "", color_hint },
|
||||||
{ "rulecolor", "", false, ALL, "", color_hint },
|
{ "rulecolor", "", false, ALL, "", color_hint },
|
||||||
{ "fillcolor", "", false, ALL, "", color_hint },
|
{ "fillcolor", "", false, ALL, "", color_hint },
|
||||||
{ "rulesepcolor", "", false, ALL, "", color_hint },
|
{ "rulesepcolor", "", false, ALL, "", color_hint },
|
||||||
{ "frameshape", "", false, ALL, "", "" },
|
{ "frameshape", "", false, ALL, "", empty_hint},
|
||||||
{ "index", "", false, ALL, "", "" },
|
{ "index", "", false, ALL, "", empty_hint},
|
||||||
{ "moreindex", "", false, ALL, "", "" },
|
{ "moreindex", "", false, ALL, "", empty_hint},
|
||||||
{ "deleteindex", "", false, ALL, "", "" },
|
{ "deleteindex", "", false, ALL, "", empty_hint},
|
||||||
{ "indexstyle", "", false, ALL, "", "" },
|
{ "indexstyle", "", false, ALL, "", empty_hint},
|
||||||
{ "columns", "", false, ALL, "", "" },
|
{ "columns", "", false, ALL, "", empty_hint},
|
||||||
{ "flexiblecolumns", "", false, ALL, "", "" },
|
{ "flexiblecolumns", "", false, ALL, "", empty_hint},
|
||||||
{ "keepspaces", "", false, TRUEFALSE, "", "" },
|
{ "keepspaces", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "basewidth", "", false, LENGTH, "", "" },
|
{ "basewidth", "", false, LENGTH, "", empty_hint},
|
||||||
{ "fontadjust", "", true, TRUEFALSE, "", "" },
|
{ "fontadjust", "", true, TRUEFALSE, "", empty_hint},
|
||||||
{ "texcl", "", false, TRUEFALSE, "", "" },
|
{ "texcl", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "mathescape", "", false, TRUEFALSE, "", "" },
|
{ "mathescape", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "escapechar", "", false, ALL, "", "" },
|
{ "escapechar", "", false, ALL, "", empty_hint},
|
||||||
{ "escapeinside", "", false, ALL, "", "" },
|
{ "escapeinside", "", false, ALL, "", empty_hint},
|
||||||
{ "escepeinside", "", false, ALL, "", "" },
|
{ "escepeinside", "", false, ALL, "", empty_hint},
|
||||||
{ "escepebegin", "", false, ALL, "", "" },
|
{ "escepebegin", "", false, ALL, "", empty_hint},
|
||||||
{ "escepeend", "", false, ALL, "", "" },
|
{ "escepeend", "", false, ALL, "", empty_hint},
|
||||||
{ "fancyvrb", "", false, TRUEFALSE, "", "" },
|
{ "fancyvrb", "", false, TRUEFALSE, "", empty_hint},
|
||||||
{ "fvcmdparams", "", false, ALL, "", "" },
|
{ "fvcmdparams", "", false, ALL, "", empty_hint},
|
||||||
{ "morefvcmdparams", "", false, ALL, "", "" },
|
{ "morefvcmdparams", "", false, ALL, "", empty_hint},
|
||||||
{ "keywordsprefix", "", false, ALL, "", "" },
|
{ "keywordsprefix", "", false, ALL, "", empty_hint},
|
||||||
{ "keywords", "", false, ALL, "", "" },
|
{ "keywords", "", false, ALL, "", empty_hint},
|
||||||
{ "morekeywords", "", false, ALL, "", "" },
|
{ "morekeywords", "", false, ALL, "", empty_hint},
|
||||||
{ "deletekeywords", "", false, ALL, "", "" },
|
{ "deletekeywords", "", false, ALL, "", empty_hint},
|
||||||
{ "ndkeywords", "", false, ALL, "", "" },
|
{ "ndkeywords", "", false, ALL, "", empty_hint},
|
||||||
{ "morendkeywords", "", false, ALL, "", "" },
|
{ "morendkeywords", "", false, ALL, "", empty_hint},
|
||||||
{ "deletendkeywords", "", false, ALL, "", "" },
|
{ "deletendkeywords", "", false, ALL, "", empty_hint},
|
||||||
{ "texcs", "", false, ALL, "", "" },
|
{ "texcs", "", false, ALL, "", empty_hint},
|
||||||
{ "moretexcs", "", false, ALL, "", "" },
|
{ "moretexcs", "", false, ALL, "", empty_hint},
|
||||||
{ "deletetexcs", "", false, ALL, "", "" },
|
{ "deletetexcs", "", false, ALL, "", empty_hint},
|
||||||
{ "directives", "", false, ALL, "", "" },
|
{ "directives", "", false, ALL, "", empty_hint},
|
||||||
{ "moredirectives", "", false, ALL, "", "" },
|
{ "moredirectives", "", false, ALL, "", empty_hint},
|
||||||
{ "deletedirectives", "", false, ALL, "", "" },
|
{ "deletedirectives", "", false, ALL, "", empty_hint},
|
||||||
{ "sensitive", "", false, ALL, "", "" },
|
{ "sensitive", "", false, ALL, "", empty_hint},
|
||||||
{ "alsoletter", "", false, ALL, "", "" },
|
{ "alsoletter", "", false, ALL, "", empty_hint},
|
||||||
{ "alsodigit", "", false, ALL, "", "" },
|
{ "alsodigit", "", false, ALL, "", empty_hint},
|
||||||
{ "alsoother", "", false, ALL, "", "" },
|
{ "alsoother", "", false, ALL, "", empty_hint},
|
||||||
{ "otherkeywords", "", false, ALL, "", "" },
|
{ "otherkeywords", "", false, ALL, "", empty_hint},
|
||||||
{ "tag", "", false, ALL, "", "" },
|
{ "tag", "", false, ALL, "", empty_hint},
|
||||||
{ "string", "", false, ALL, "", "" },
|
{ "string", "", false, ALL, "", empty_hint},
|
||||||
{ "morestring", "", false, ALL, "", "" },
|
{ "morestring", "", false, ALL, "", empty_hint},
|
||||||
{ "deletestring", "", false, ALL, "", "" },
|
{ "deletestring", "", false, ALL, "", empty_hint},
|
||||||
{ "comment", "", false, ALL, "", "" },
|
{ "comment", "", false, ALL, "", empty_hint},
|
||||||
{ "morecomment", "", false, ALL, "", "" },
|
{ "morecomment", "", false, ALL, "", empty_hint},
|
||||||
{ "deletecomment", "", false, ALL, "", "" },
|
{ "deletecomment", "", false, ALL, "", empty_hint},
|
||||||
{ "keywordcomment", "", false, ALL, "", "" },
|
{ "keywordcomment", "", false, ALL, "", empty_hint},
|
||||||
{ "morekeywordcomment", "", false, ALL, "", "" },
|
{ "morekeywordcomment", "", false, ALL, "", empty_hint},
|
||||||
{ "deletekeywordcomment", "", false, ALL, "", "" },
|
{ "deletekeywordcomment", "", false, ALL, "", empty_hint},
|
||||||
{ "keywordcommentsemicolon", "", false, ALL, "", "" },
|
{ "keywordcommentsemicolon", "", false, ALL, "", empty_hint},
|
||||||
{ "podcomment", "", false, ALL, "", "" },
|
{ "podcomment", "", false, ALL, "", empty_hint},
|
||||||
{ "", "", false, ALL, "", ""}
|
{ "", "", false, ALL, "", empty_hint}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -302,7 +304,7 @@ parValidator::parValidator(string const & n)
|
|||||||
while (listings_param_table[idx].name != name && listings_param_table[idx].name != string())
|
while (listings_param_table[idx].name != name && listings_param_table[idx].name != string())
|
||||||
++idx;
|
++idx;
|
||||||
// found the name
|
// found the name
|
||||||
if (listings_param_table[idx].name != "") {
|
if (!listings_param_table[idx].name.empty()) {
|
||||||
info = &listings_param_table[idx];
|
info = &listings_param_table[idx];
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -342,8 +344,8 @@ void parValidator::validate(std::string const & par) const
|
|||||||
switch (info->type) {
|
switch (info->type) {
|
||||||
case ALL:
|
case ALL:
|
||||||
if (par2.empty() && !info->onoff) {
|
if (par2.empty() && !info->onoff) {
|
||||||
if (info->hint != "")
|
if (!info->hint.empty())
|
||||||
throw invalidParam(from_utf8(info->hint));
|
throw invalidParam(info->hint);
|
||||||
else
|
else
|
||||||
throw invalidParam(_("A value is expected"));
|
throw invalidParam(_("A value is expected"));
|
||||||
}
|
}
|
||||||
@ -352,8 +354,8 @@ void parValidator::validate(std::string const & par) const
|
|||||||
return;
|
return;
|
||||||
case TRUEFALSE: {
|
case TRUEFALSE: {
|
||||||
if (par2.empty() && !info->onoff) {
|
if (par2.empty() && !info->onoff) {
|
||||||
if (info->hint != "")
|
if (!info->hint.empty())
|
||||||
throw invalidParam(from_utf8(info->hint));
|
throw invalidParam(info->hint);
|
||||||
else
|
else
|
||||||
throw invalidParam(_("Please specify true or false"));
|
throw invalidParam(_("Please specify true or false"));
|
||||||
}
|
}
|
||||||
@ -366,8 +368,8 @@ void parValidator::validate(std::string const & par) const
|
|||||||
}
|
}
|
||||||
case INTEGER: {
|
case INTEGER: {
|
||||||
if (!isStrInt(par2)) {
|
if (!isStrInt(par2)) {
|
||||||
if (info->hint != "")
|
if (!info->hint.empty())
|
||||||
throw invalidParam(from_utf8(info->hint));
|
throw invalidParam(info->hint);
|
||||||
else
|
else
|
||||||
throw invalidParam(_("Please specify an integer value"));
|
throw invalidParam(_("Please specify an integer value"));
|
||||||
}
|
}
|
||||||
@ -380,8 +382,8 @@ void parValidator::validate(std::string const & par) const
|
|||||||
}
|
}
|
||||||
case LENGTH: {
|
case LENGTH: {
|
||||||
if (par2.empty() && !info->onoff) {
|
if (par2.empty() && !info->onoff) {
|
||||||
if (info->hint != "")
|
if (!info->hint.empty())
|
||||||
throw invalidParam(from_utf8(info->hint));
|
throw invalidParam(info->hint);
|
||||||
else
|
else
|
||||||
throw invalidParam(_("Please specify a latex length expression"));
|
throw invalidParam(_("Please specify a latex length expression"));
|
||||||
}
|
}
|
||||||
@ -394,8 +396,8 @@ void parValidator::validate(std::string const & par) const
|
|||||||
}
|
}
|
||||||
case ONEOF: {
|
case ONEOF: {
|
||||||
if (par2.empty() && !info->onoff) {
|
if (par2.empty() && !info->onoff) {
|
||||||
if (info->hint != "")
|
if (!info->hint.empty())
|
||||||
throw invalidParam(from_utf8(info->hint));
|
throw invalidParam(info->hint);
|
||||||
else
|
else
|
||||||
throw invalidParam(bformat(_("Please specify one of %1$s"),
|
throw invalidParam(bformat(_("Please specify one of %1$s"),
|
||||||
from_utf8(string(info->info))));
|
from_utf8(string(info->info))));
|
||||||
@ -440,8 +442,8 @@ void parValidator::validate(std::string const & par) const
|
|||||||
}
|
}
|
||||||
case SUBSETOF: {
|
case SUBSETOF: {
|
||||||
if (par2.empty() && !info->onoff) {
|
if (par2.empty() && !info->onoff) {
|
||||||
if (info->hint != "")
|
if (!info->hint.empty())
|
||||||
throw invalidParam(from_utf8(info->hint));
|
throw invalidParam(info->hint);
|
||||||
else
|
else
|
||||||
throw invalidParam(bformat(_("Please specify one or more of '%1$s'"),
|
throw invalidParam(bformat(_("Please specify one or more of '%1$s'"),
|
||||||
from_utf8(string(info->info))));
|
from_utf8(string(info->info))));
|
||||||
@ -458,6 +460,7 @@ void parValidator::validate(std::string const & par) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} // namespace anon.
|
||||||
|
|
||||||
InsetListingsParams::InsetListingsParams() :
|
InsetListingsParams::InsetListingsParams() :
|
||||||
inline_(false), params_(), status_(InsetCollapsable::Open)
|
inline_(false), params_(), status_(InsetCollapsable::Open)
|
||||||
|
Loading…
Reference in New Issue
Block a user