From: Martin Vermeer Date: Sat, 20 Oct 2007 17:07:08 +0000 (+0000) Subject: Forgot this X-Git-Tag: 1.6.10~7751 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=25c75f0e3718da81705b45bc957efc66f7c6d7ba;p=lyx.git Forgot this git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21084 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/TextClass.cpp b/src/TextClass.cpp index 87a4f81713..5397227b08 100644 --- a/src/TextClass.cpp +++ b/src/TextClass.cpp @@ -618,6 +618,7 @@ enum InsetLayoutTags { IL_LYXTYPE, IL_MULTIPAR, IL_PREAMBLE, + IL_VERBATIM, IL_END }; @@ -636,7 +637,8 @@ void TextClass::readInsetLayout(Lexer & lexrc, docstring const & name) { "latextype", IL_LATEXTYPE }, { "lyxtype", IL_LYXTYPE }, { "multipar", IL_MULTIPAR }, - { "preamble", IL_PREAMBLE } + { "preamble", IL_PREAMBLE }, + { "verbatim", IL_VERBATIM } }; lexrc.pushTable(elementTags, IL_END); @@ -652,6 +654,7 @@ void TextClass::readInsetLayout(Lexer & lexrc, docstring const & name) Color::color bgcolor(Color::background); string preamble; bool multipar(false); + bool verbatim(false); bool getout = false; while (!getout && lexrc.isOK()) { @@ -695,6 +698,10 @@ void TextClass::readInsetLayout(Lexer & lexrc, docstring const & name) lexrc.next(); multipar = lexrc.getBool(); break; + case IL_VERBATIM: + lexrc.next(); + verbatim = lexrc.getBool(); + break; case IL_FONT: font.lyxRead(lexrc); font.realize(defaultfont()); @@ -728,6 +735,7 @@ void TextClass::readInsetLayout(Lexer & lexrc, docstring const & name) il.latexname = latexname; il.latexparam = latexparam; il.multipar = multipar; + il.verbatim = verbatim; il.font = font; il.labelfont = labelfont; il.bgcolor = bgcolor; diff --git a/src/TextClass.h b/src/TextClass.h index 4f50311df3..c55c1822dd 100644 --- a/src/TextClass.h +++ b/src/TextClass.h @@ -46,6 +46,7 @@ public: Color::color bgcolor; std::string preamble; bool multipar; + bool verbatim; };