Use namespace.

This commit is contained in:
Juergen Spitzmueller 2015-04-26 16:49:16 +02:00
parent dfd4c93b78
commit 42ba33a53f

View File

@ -29,6 +29,8 @@ using std::string;
using std::set; using std::set;
using std::vector; using std::vector;
using namespace lyx::support;
namespace lyx { namespace lyx {
InsetLayout::InsetLayout() : InsetLayout::InsetLayout() :
@ -50,11 +52,11 @@ InsetLayout::InsetLayout() :
InsetLayout::InsetDecoration translateDecoration(std::string const & str) InsetLayout::InsetDecoration translateDecoration(std::string const & str)
{ {
if (support::compare_ascii_no_case(str, "classic") == 0) if (compare_ascii_no_case(str, "classic") == 0)
return InsetLayout::CLASSIC; return InsetLayout::CLASSIC;
if (support::compare_ascii_no_case(str, "minimalistic") == 0) if (compare_ascii_no_case(str, "minimalistic") == 0)
return InsetLayout::MINIMALISTIC; return InsetLayout::MINIMALISTIC;
if (support::compare_ascii_no_case(str, "conglomerate") == 0) if (compare_ascii_no_case(str, "conglomerate") == 0)
return InsetLayout::CONGLOMERATE; return InsetLayout::CONGLOMERATE;
return InsetLayout::DEFAULT; return InsetLayout::DEFAULT;
} }
@ -63,11 +65,11 @@ namespace {
InsetLayout::InsetLaTeXType translateLaTeXType(std::string const & str) InsetLayout::InsetLaTeXType translateLaTeXType(std::string const & str)
{ {
if (support::compare_ascii_no_case(str, "command") == 0) if (compare_ascii_no_case(str, "command") == 0)
return InsetLayout::COMMAND; return InsetLayout::COMMAND;
if (support::compare_ascii_no_case(str, "environment") == 0) if (compare_ascii_no_case(str, "environment") == 0)
return InsetLayout::ENVIRONMENT; return InsetLayout::ENVIRONMENT;
if (support::compare_ascii_no_case(str, "none") == 0) if (compare_ascii_no_case(str, "none") == 0)
return InsetLayout::NOLATEXTYPE; return InsetLayout::NOLATEXTYPE;
return InsetLayout::ILT_ERROR; return InsetLayout::ILT_ERROR;
} }
@ -244,11 +246,11 @@ bool InsetLayout::read(Lexer & lex, TextClass const & tclass)
break; break;
case IL_LATEXPARAM: case IL_LATEXPARAM:
lex >> tmp; lex >> tmp;
latexparam_ = support::subst(tmp, """, "\""); latexparam_ = subst(tmp, """, "\"");
break; break;
case IL_LEFTDELIM: case IL_LEFTDELIM:
lex >> leftdelim_; lex >> leftdelim_;
leftdelim_ = support::subst(leftdelim_, from_ascii("<br/>"), leftdelim_ = subst(leftdelim_, from_ascii("<br/>"),
from_ascii("\n")); from_ascii("\n"));
break; break;
case IL_FIXEDWIDTH_PREAMBLE_ENCODING: case IL_FIXEDWIDTH_PREAMBLE_ENCODING:
@ -259,7 +261,7 @@ bool InsetLayout::read(Lexer & lex, TextClass const & tclass)
break; break;
case IL_RIGHTDELIM: case IL_RIGHTDELIM:
lex >> rightdelim_; lex >> rightdelim_;
rightdelim_ = support::subst(rightdelim_, from_ascii("<br/>"), rightdelim_ = subst(rightdelim_, from_ascii("<br/>"),
from_ascii("\n")); from_ascii("\n"));
break; break;
case IL_LABELFONT: case IL_LABELFONT:
@ -320,7 +322,7 @@ bool InsetLayout::read(Lexer & lex, TextClass const & tclass)
// initialize with a known style // initialize with a known style
docstring style; docstring style;
lex >> style; lex >> style;
style = support::subst(style, '_', ' '); style = subst(style, '_', ' ');
// We don't want to apply the algorithm in DocumentClass::insetLayout() // We don't want to apply the algorithm in DocumentClass::insetLayout()
// here. So we do it the long way. // here. So we do it the long way.
@ -347,7 +349,7 @@ bool InsetLayout::read(Lexer & lex, TextClass const & tclass)
case IL_OBSOLETEDBY: { case IL_OBSOLETEDBY: {
docstring style; docstring style;
lex >> style; lex >> style;
style = support::subst(style, '_', ' '); style = subst(style, '_', ' ');
// We don't want to apply the algorithm in DocumentClass::insetLayout() // We don't want to apply the algorithm in DocumentClass::insetLayout()
// here. So we do it the long way. // here. So we do it the long way.
@ -439,7 +441,7 @@ bool InsetLayout::read(Lexer & lex, TextClass const & tclass)
case IL_REQUIRES: { case IL_REQUIRES: {
lex.eatLine(); lex.eatLine();
vector<string> const req vector<string> const req
= support::getVectorFromString(lex.getString()); = getVectorFromString(lex.getString());
requires_.insert(req.begin(), req.end()); requires_.insert(req.begin(), req.end());
break; break;
} }
@ -473,15 +475,15 @@ bool InsetLayout::read(Lexer & lex, TextClass const & tclass)
InsetLayout::InsetLyXType translateLyXType(std::string const & str) InsetLayout::InsetLyXType translateLyXType(std::string const & str)
{ {
if (support::compare_ascii_no_case(str, "charstyle") == 0) if (compare_ascii_no_case(str, "charstyle") == 0)
return InsetLayout::CHARSTYLE; return InsetLayout::CHARSTYLE;
if (support::compare_ascii_no_case(str, "custom") == 0) if (compare_ascii_no_case(str, "custom") == 0)
return InsetLayout::CUSTOM; return InsetLayout::CUSTOM;
if (support::compare_ascii_no_case(str, "element") == 0) if (compare_ascii_no_case(str, "element") == 0)
return InsetLayout::ELEMENT; return InsetLayout::ELEMENT;
if (support::compare_ascii_no_case(str, "end") == 0) if (compare_ascii_no_case(str, "end") == 0)
return InsetLayout::END; return InsetLayout::END;
if (support::compare_ascii_no_case(str, "standard") == 0) if (compare_ascii_no_case(str, "standard") == 0)
return InsetLayout::STANDARD; return InsetLayout::STANDARD;
return InsetLayout::NOLYXTYPE; return InsetLayout::NOLYXTYPE;
} }
@ -525,7 +527,7 @@ string InsetLayout::defaultCSSClass() const
else if (isLower(*it)) else if (isLower(*it))
d += *it; d += *it;
else else
d += support::lowercase(*it); d += lowercase(*it);
} }
// are there other characters we need to remove? // are there other characters we need to remove?
defaultcssclass_ = d; defaultcssclass_ = d;
@ -568,10 +570,10 @@ void InsetLayout::readArgument(Lexer & lex)
arg.labelfont = inherit_font; arg.labelfont = inherit_font;
string nr; string nr;
lex >> nr; lex >> nr;
bool const postcmd = support::prefixIs(nr, "post:"); bool const postcmd = prefixIs(nr, "post:");
while (!finished && lex.isOK() && !error) { while (!finished && lex.isOK() && !error) {
lex.next(); lex.next();
string const tok = support::ascii_lowercase(lex.getString()); string const tok = ascii_lowercase(lex.getString());
if (tok.empty()) { if (tok.empty()) {
continue; continue;
@ -592,12 +594,12 @@ void InsetLayout::readArgument(Lexer & lex)
} else if (tok == "leftdelim") { } else if (tok == "leftdelim") {
lex.next(); lex.next();
arg.ldelim = lex.getDocString(); arg.ldelim = lex.getDocString();
arg.ldelim = support::subst(arg.ldelim, arg.ldelim = subst(arg.ldelim,
from_ascii("<br/>"), from_ascii("\n")); from_ascii("<br/>"), from_ascii("\n"));
} else if (tok == "rightdelim") { } else if (tok == "rightdelim") {
lex.next(); lex.next();
arg.rdelim = lex.getDocString(); arg.rdelim = lex.getDocString();
arg.rdelim = support::subst(arg.rdelim, arg.rdelim = subst(arg.rdelim,
from_ascii("<br/>"), from_ascii("\n")); from_ascii("<br/>"), from_ascii("\n"));
} else if (tok == "defaultarg") { } else if (tok == "defaultarg") {
lex.next(); lex.next();