]> git.lyx.org Git - lyx.git/blobdiff - src/bufferparams.C
* src/text2.C: deleteEmptyParagraphMechanism(): fix a crash in
[lyx.git] / src / bufferparams.C
index 1af925829e9eb59f279a7c58dab23f7b347b9842..dff424a9af00d7cb4d0b5cae3fedd22f7e08c9f9 100644 (file)
@@ -174,23 +174,22 @@ SidesTranslator const & sidestranslator()
 }
 
 
+// LaTeX packages
+typedef Translator<int, BufferParams::Package> PackageTranslator;
 
-// AMS
-typedef Translator<int, BufferParams::AMS> AMSTranslator;
 
-
-AMSTranslator const init_amstranslator()
+PackageTranslator const init_packagetranslator()
 {
-       AMSTranslator translator(0, BufferParams::AMS_OFF);
-       translator.addPair(1, BufferParams::AMS_AUTO);
-       translator.addPair(2, BufferParams::AMS_ON);
+       PackageTranslator translator(0, BufferParams::package_off);
+       translator.addPair(1, BufferParams::package_auto);
+       translator.addPair(2, BufferParams::package_on);
        return translator;
 }
 
 
-AMSTranslator const & amstranslator()
+PackageTranslator const & packagetranslator()
 {
-       static AMSTranslator translator = init_amstranslator();
+       static PackageTranslator translator = init_packagetranslator();
        return translator;
 }
 
@@ -262,7 +261,8 @@ BufferParams::Impl::Impl()
        : defskip(VSpace::MEDSKIP)
 {
        // set initial author
-       authorlist.record(Author(lyxrc.user_name, lyxrc.user_email));
+       // FIXME UNICODE
+       authorlist.record(Author(from_utf8(lyxrc.user_name), from_utf8(lyxrc.user_email)));
 }
 
 
@@ -297,7 +297,8 @@ BufferParams::BufferParams()
        papersize = PAPER_DEFAULT;
        orientation = ORIENTATION_PORTRAIT;
        use_geometry = false;
-       use_amsmath = AMS_AUTO;
+       use_amsmath = package_auto;
+       use_esint = package_auto;
        cite_engine = biblio::ENGINE_BASIC;
        use_bibtopic = false;
        trackChanges = false;
@@ -482,7 +483,11 @@ string const BufferParams::readToken(LyXLex & lex, string const & token)
        } else if (token == "\\use_amsmath") {
                int use_ams;
                lex >> use_ams;
-               use_amsmath = amstranslator().find(use_ams);
+               use_amsmath = packagetranslator().find(use_ams);
+       } else if (token == "\\use_esint") {
+               int useesint;
+               lex >> useesint;
+               use_esint = packagetranslator().find(useesint);
        } else if (token == "\\cite_engine") {
                string engine;
                lex >> engine;
@@ -495,7 +500,7 @@ string const BufferParams::readToken(LyXLex & lex, string const & token)
                lex >> outputChanges;
        } else if (token == "\\branch") {
                lex.next();
-               string branch = lex.getString();
+               docstring branch = lex.getDocString();
                branchlist().add(branch);
                while (true) {
                        lex.next();
@@ -517,7 +522,8 @@ string const BufferParams::readToken(LyXLex & lex, string const & token)
                                // Update also the LColor table:
                                if (color == "none")
                                        color = lcolor.getX11Name(LColor::background);
-                               lcolor.setColor(branch, color);
+                               // FIXME UNICODE
+                               lcolor.setColor(to_utf8(branch), color);
 
                        }
                }
@@ -631,6 +637,7 @@ void BufferParams::writeFile(ostream & os) const
        os << "\\papersize " << string_papersize[papersize]
           << "\n\\use_geometry " << convert<string>(use_geometry)
           << "\n\\use_amsmath " << use_amsmath
+          << "\n\\use_esint " << use_esint
           << "\n\\cite_engine " << citeenginetranslator().find(cite_engine)
           << "\n\\use_bibtopic " << convert<string>(use_bibtopic)
           << "\n\\paperorientation " << string_orientation[orientation]
@@ -639,7 +646,7 @@ void BufferParams::writeFile(ostream & os) const
        BranchList::const_iterator it = branchlist().begin();
        BranchList::const_iterator end = branchlist().end();
        for (; it != end; ++it) {
-               os << "\\branch " << it->getBranch()
+               os << "\\branch " << to_utf8(it->getBranch())
                   << "\n\\selected " << it->getSelected()
                   << "\n\\color " << lyx::X11hexname(it->getColor())
                   << "\n\\end_branch"
@@ -844,14 +851,28 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
                std::set<string> encodings =
                        features.getEncodingSet(doc_encoding);
 
-               os << "\\usepackage[";
-               std::set<string>::const_iterator it = encodings.begin();
-               std::set<string>::const_iterator const end = encodings.end();
-               for (; it != end; ++it)
-                       os << from_ascii(*it) << ',';
-               os << from_ascii(doc_encoding) << "]{inputenc}\n";
-               texrow.newline();
-       } else if (inputenc != "default") {
+               // thailatex does not use the inputenc package, but sets up
+               // babel directly for tis620-0 encoding, therefore we must
+               // not request inputenc for tis620-0 encoding
+               if (!encodings.empty() || doc_encoding != "tis620-0") {
+                       os << "\\usepackage[";
+                       std::set<string>::const_iterator it = encodings.begin();
+                       std::set<string>::const_iterator const end = encodings.end();
+                       if (it != end) {
+                               os << from_ascii(*it);
+                               ++it;
+                       }
+                       for (; it != end; ++it)
+                               os << ',' << from_ascii(*it);
+                       if (doc_encoding != "tis620-0") {
+                               if (!encodings.empty())
+                                       os << ',';
+                               os << from_ascii(doc_encoding);
+                       }
+                       os << "]{inputenc}\n";
+                       texrow.newline();
+               }
+       } else if (inputenc != "default" && inputenc != "tis620-0") {
                os << "\\usepackage[" << from_ascii(inputenc)
                   << "]{inputenc}\n";
                texrow.newline();
@@ -977,26 +998,26 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
        if (paragraph_separation) {
                switch (getDefSkip().kind()) {
                case VSpace::SMALLSKIP:
-                       os << "\\setlength\\parskip{\\smallskipamount}\n";
+                       os << "\\setlength{\\parskip}{\\smallskipamount}\n";
                        break;
                case VSpace::MEDSKIP:
-                       os << "\\setlength\\parskip{\\medskipamount}\n";
+                       os << "\\setlength{\\parskip}{\\medskipamount}\n";
                        break;
                case VSpace::BIGSKIP:
-                       os << "\\setlength\\parskip{\\bigskipamount}\n";
+                       os << "\\setlength{\\parskip}{\\bigskipamount}\n";
                        break;
                case VSpace::LENGTH:
-                       os << "\\setlength\\parskip{"
+                       os << "\\setlength{\\parskip}{"
                           << from_utf8(getDefSkip().length().asLatexString())
                           << "}\n";
                        break;
                default: // should never happen // Then delete it.
-                       os << "\\setlength\\parskip{\\medskipamount}\n";
+                       os << "\\setlength{\\parskip}{\\medskipamount}\n";
                        break;
                }
                texrow.newline();
 
-               os << "\\setlength\\parindent{0pt}\n";
+               os << "\\setlength{\\parindent}{0pt}\n";
                texrow.newline();
        }
 
@@ -1011,13 +1032,13 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
        // Now insert the LyX specific LaTeX commands...
 
        // The optional packages;
-       string lyxpreamble(features.getPackages());
+       docstring lyxpreamble(from_ascii(features.getPackages()));
 
        // this might be useful...
        lyxpreamble += "\n\\makeatletter\n";
 
        // Some macros LyX will need
-       string tmppreamble(features.getMacros());
+       docstring tmppreamble(from_ascii(features.getMacros()));
 
        if (!tmppreamble.empty()) {
                lyxpreamble += "\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
@@ -1035,9 +1056,10 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
 
        /* the user-defined preamble */
        if (!preamble.empty()) {
+               // FIXME UNICODE
                lyxpreamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
                        "User specified LaTeX commands.\n"
-                       + preamble + '\n';
+                       + from_utf8(preamble) + '\n';
        }
 
        // Itemize bullet settings need to be last in case the user
@@ -1046,11 +1068,11 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
        // Actually it has to be done much later than that
        // since some packages like frenchb make modifications
        // at \begin{document} time -- JMarc
-       string bullets_def;
+       docstring bullets_def;
        for (int i = 0; i < 4; ++i) {
                if (user_defined_bullet(i) != ITEMIZE_DEFAULTS[i]) {
                        if (bullets_def.empty())
-                               bullets_def="\\AtBeginDocument{\n";
+                               bullets_def += "\\AtBeginDocument{\n";
                        bullets_def += "  \\def\\labelitemi";
                        switch (i) {
                                // `i' is one less than the item to modify
@@ -1066,9 +1088,8 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
                                bullets_def += 'v';
                                break;
                        }
-                       // FIXME UNICODE
                        bullets_def += '{' +
-                               lyx::to_ascii(user_defined_bullet(i).getText())
+                               user_defined_bullet(i).getText()
                                + "}\n";
                }
        }
@@ -1080,8 +1101,9 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
        // with other packages.
        // Jurabib has to be called after babel, though.
        if (use_babel && !features.isRequired("jurabib")) {
-               lyxpreamble += babelCall(language_options.str()) + '\n';
-               lyxpreamble += features.getBabelOptions();
+               // FIXME UNICODE
+               lyxpreamble += from_utf8(babelCall(language_options.str())) + '\n';
+               lyxpreamble += from_utf8(features.getBabelOptions());
        }
 
        lyxpreamble += "\\makeatother\n";
@@ -1102,8 +1124,7 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
                texrow.newline();
        }
 
-       // FIXME UNICODE
-       os << from_utf8(lyxpreamble);
+       os << lyxpreamble;
        return use_babel;
 }
 
@@ -1443,4 +1464,17 @@ string const BufferParams::loadFonts(LaTeXFeatures & features, string const & rm
 }
 
 
+Encoding const & BufferParams::encoding() const
+{
+       if (inputenc == "auto" || inputenc == "default")
+               return *(language->encoding());
+       Encoding const * const enc =
+               encodings.getFromLaTeXName(inputenc);
+       if (enc)
+               return *enc;
+       lyxerr << "Unknown inputenc value `" << inputenc
+              << "'. Using `auto' instead." << endl;
+       return *(language->encoding());
+}
+
 } // namespace lyx