]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.cpp
Improve the list of equations
[lyx.git] / src / BufferParams.cpp
index 740bb6bde6867c4ffb2c71b908e68cdb8a1beca1..fa0b7c3b92819ccb8d4beea6f64c898a71fd9487 100644 (file)
@@ -72,7 +72,8 @@ static char const * const string_paragraph_separation[] = {
 
 
 static char const * const string_quotes_style[] = {
-       "english", "swedish", "german", "polish", "french", "danish", "plain", ""
+       "english", "swedish", "german", "polish", "swiss", "danish", "plain",
+       "british", "swedishg", "french", "frenchin", "russian", "cjk", "cjkangle", ""
 };
 
 
@@ -138,9 +139,16 @@ QuotesStyleTranslator const init_quotesstyletranslator()
        translator.addPair(string_quotes_style[1], InsetQuotesParams::SwedishQuotes);
        translator.addPair(string_quotes_style[2], InsetQuotesParams::GermanQuotes);
        translator.addPair(string_quotes_style[3], InsetQuotesParams::PolishQuotes);
-       translator.addPair(string_quotes_style[4], InsetQuotesParams::FrenchQuotes);
+       translator.addPair(string_quotes_style[4], InsetQuotesParams::SwissQuotes);
        translator.addPair(string_quotes_style[5], InsetQuotesParams::DanishQuotes);
        translator.addPair(string_quotes_style[6], InsetQuotesParams::PlainQuotes);
+       translator.addPair(string_quotes_style[7], InsetQuotesParams::BritishQuotes);
+       translator.addPair(string_quotes_style[8], InsetQuotesParams::SwedishGQuotes);
+       translator.addPair(string_quotes_style[9], InsetQuotesParams::FrenchQuotes);
+       translator.addPair(string_quotes_style[10], InsetQuotesParams::FrenchINQuotes);
+       translator.addPair(string_quotes_style[11], InsetQuotesParams::RussianQuotes);
+       translator.addPair(string_quotes_style[12], InsetQuotesParams::CJKQuotes);
+       translator.addPair(string_quotes_style[13], InsetQuotesParams::CJKAngleQuotes);
        return translator;
 }
 
@@ -396,6 +404,7 @@ BufferParams::BufferParams()
        makeDocumentClass();
        paragraph_separation = ParagraphIndentSeparation;
        quotes_style = InsetQuotesParams::EnglishQuotes;
+       dynamic_quotes = false;
        fontsize = "default";
 
        /*  PaperLayout */
@@ -833,6 +842,8 @@ string BufferParams::readToken(Lexer & lex, string const & token,
                string qstyle;
                lex >> qstyle;
                quotes_style = quotesstyletranslator().find(qstyle);
+       } else if (token == "\\dynamic_quotes") {
+               lex >> dynamic_quotes;
        } else if (token == "\\papersize") {
                string ppsize;
                lex >> ppsize;
@@ -1302,6 +1313,7 @@ void BufferParams::writeFile(ostream & os, Buffer const * buf) const
                os << "\n\\defskip " << getDefSkip().asLyXCommand();
        os << "\n\\quotes_style "
           << string_quotes_style[quotes_style]
+          << "\n\\dynamic_quotes " << dynamic_quotes
           << "\n\\papercolumns " << columns
           << "\n\\papersides " << sides
           << "\n\\paperpagestyle " << pagestyle << '\n';