]> git.lyx.org Git - lyx.git/blobdiff - src/Layout.cpp
Remove the bogus fixme.
[lyx.git] / src / Layout.cpp
index 85fe11a8abebe336c26f44a022d08418ece50c29..c9abc0e04eff8cae7d204c828adf5e1fa36ba1f2 100644 (file)
@@ -103,6 +103,8 @@ enum LayoutTags {
        LT_HTMLSTYLE,
        LT_HTMLFORCECSS,
        LT_INPREAMBLE,
+       LT_HTMLTITLE,
+       LT_SPELLCHECK,
        LT_INTITLE // keep this last!
 };
 
@@ -144,6 +146,8 @@ Layout::Layout()
        commanddepth = 0;
        htmllabelfirst_ = false;
        htmlforcecss_ = false;
+       htmltitle_ = false;
+       spellcheck = true;
 }
 
 
@@ -176,6 +180,7 @@ bool Layout::read(Lexer & lex, TextClass const & tclass)
                { "htmlpremable",   LT_HTMLPREAMBLE },
                { "htmlstyle",      LT_HTMLSTYLE },
                { "htmltag",        LT_HTMLTAG },
+               { "htmltitle",      LT_HTMLTITLE },
                { "innertag",       LT_INNERTAG },
                { "inpreamble",     LT_INPREAMBLE },
                { "intitle",        LT_INTITLE },
@@ -210,6 +215,7 @@ bool Layout::read(Lexer & lex, TextClass const & tclass)
                { "requires",       LT_REQUIRES },
                { "rightmargin",    LT_RIGHTMARGIN },
                { "spacing",        LT_SPACING },
+               { "spellcheck",     LT_SPELLCHECK },
                { "textfont",       LT_TEXTFONT },
                { "toclevel",       LT_TOCLEVEL },
                { "topsep",         LT_TOPSEP }
@@ -530,7 +536,14 @@ bool Layout::read(Lexer & lex, TextClass const & tclass)
                case LT_HTMLPREAMBLE:
                        htmlpreamble_ = from_utf8(lex.getLongString("EndPreamble"));
                        break;
+               
+               case LT_HTMLTITLE:
+                       lex >> htmltitle_;
+                       break;
 
+               case LT_SPELLCHECK:
+                       lex >> spellcheck;
+                       break;
                }
        }
        lex.popTable();