]> git.lyx.org Git - lyx.git/blob - src/BufferParams.cpp
7a527a75927e35bb79b897edd2cc2c213b0d4645
[lyx.git] / src / BufferParams.cpp
1 /**
2  * \file BufferParams.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author André Pönitz
11  * \author Martin Vermeer
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "BufferParams.h"
19
20 #include "Author.h"
21 #include "LayoutFile.h"
22 #include "BranchList.h"
23 #include "buffer_funcs.h"
24 #include "Bullet.h"
25 #include "Color.h"
26 #include "ColorSet.h"
27 #include "Converter.h"
28 #include "Encoding.h"
29 #include "HSpace.h"
30 #include "IndicesList.h"
31 #include "Language.h"
32 #include "LaTeXFeatures.h"
33 #include "LaTeXFonts.h"
34 #include "ModuleList.h"
35 #include "Font.h"
36 #include "Lexer.h"
37 #include "LyXRC.h"
38 #include "OutputParams.h"
39 #include "Spacing.h"
40 #include "TexRow.h"
41 #include "VSpace.h"
42 #include "PDFOptions.h"
43
44 #include "frontends/alert.h"
45
46 #include "insets/InsetListingsParams.h"
47
48 #include "support/convert.h"
49 #include "support/debug.h"
50 #include "support/docstream.h"
51 #include "support/FileName.h"
52 #include "support/filetools.h"
53 #include "support/gettext.h"
54 #include "support/Messages.h"
55 #include "support/mutex.h"
56 #include "support/Translator.h"
57 #include "support/lstrings.h"
58
59 #include <algorithm>
60 #include <sstream>
61
62 using namespace std;
63 using namespace lyx::support;
64
65
66 static char const * const string_paragraph_separation[] = {
67         "indent", "skip", ""
68 };
69
70
71 static char const * const string_quotes_language[] = {
72         "english", "swedish", "german", "polish", "french", "danish", ""
73 };
74
75
76 static char const * const string_papersize[] = {
77         "default", "custom", "letterpaper", "legalpaper", "executivepaper",
78         "a0paper", "a1paper", "a2paper", "a3paper",     "a4paper", "a5paper",
79         "a6paper", "b0paper", "b1paper", "b2paper","b3paper", "b4paper",
80         "b5paper", "b6paper", "c0paper", "c1paper", "c2paper", "c3paper",
81         "c4paper", "c5paper", "c6paper", "b0j", "b1j", "b2j", "b3j", "b4j", "b5j",
82         "b6j", ""
83 };
84
85
86 static char const * const string_orientation[] = {
87         "portrait", "landscape", ""
88 };
89
90
91 static char const * const tex_graphics[] = {
92         "default", "dvialw", "dvilaser", "dvipdf", "dvipdfm", "dvipdfmx",
93         "dvips", "dvipsone", "dvitops", "dviwin", "dviwindo", "dvi2ps", "emtex",
94         "ln", "oztex", "pctexhp", "pctexps", "pctexwin", "pctex32", "pdftex",
95         "psprint", "pubps", "tcidvi", "textures", "truetex", "vtex", "xdvi",
96         "xetex", "none", ""
97 };
98
99
100
101 namespace lyx {
102
103 // Local translators
104 namespace {
105
106 // Paragraph separation
107 typedef Translator<string, BufferParams::ParagraphSeparation> ParSepTranslator;
108
109
110 ParSepTranslator const init_parseptranslator()
111 {
112         ParSepTranslator translator
113                 (string_paragraph_separation[0], BufferParams::ParagraphIndentSeparation);
114         translator.addPair(string_paragraph_separation[1], BufferParams::ParagraphSkipSeparation);
115         return translator;
116 }
117
118
119 ParSepTranslator const & parseptranslator()
120 {
121         static ParSepTranslator const translator =
122                 init_parseptranslator();
123         return translator;
124 }
125
126
127 // Quotes language
128 typedef Translator<string, InsetQuotes::QuoteLanguage> QuotesLangTranslator;
129
130
131 QuotesLangTranslator const init_quoteslangtranslator()
132 {
133         QuotesLangTranslator translator
134                 (string_quotes_language[0], InsetQuotes::EnglishQuotes);
135         translator.addPair(string_quotes_language[1], InsetQuotes::SwedishQuotes);
136         translator.addPair(string_quotes_language[2], InsetQuotes::GermanQuotes);
137         translator.addPair(string_quotes_language[3], InsetQuotes::PolishQuotes);
138         translator.addPair(string_quotes_language[4], InsetQuotes::FrenchQuotes);
139         translator.addPair(string_quotes_language[5], InsetQuotes::DanishQuotes);
140         return translator;
141 }
142
143
144 QuotesLangTranslator const & quoteslangtranslator()
145 {
146         static QuotesLangTranslator const translator =
147                 init_quoteslangtranslator();
148         return translator;
149 }
150
151
152 // Paper size
153 typedef Translator<string, PAPER_SIZE> PaperSizeTranslator;
154
155
156 static PaperSizeTranslator initPaperSizeTranslator()
157 {
158         PaperSizeTranslator translator(string_papersize[0], PAPER_DEFAULT);
159         translator.addPair(string_papersize[1], PAPER_CUSTOM);
160         translator.addPair(string_papersize[2], PAPER_USLETTER);
161         translator.addPair(string_papersize[3], PAPER_USLEGAL);
162         translator.addPair(string_papersize[4], PAPER_USEXECUTIVE);
163         translator.addPair(string_papersize[5], PAPER_A0);
164         translator.addPair(string_papersize[6], PAPER_A1);
165         translator.addPair(string_papersize[7], PAPER_A2);
166         translator.addPair(string_papersize[8], PAPER_A3);
167         translator.addPair(string_papersize[9], PAPER_A4);
168         translator.addPair(string_papersize[10], PAPER_A5);
169         translator.addPair(string_papersize[11], PAPER_A6);
170         translator.addPair(string_papersize[12], PAPER_B0);
171         translator.addPair(string_papersize[13], PAPER_B1);
172         translator.addPair(string_papersize[14], PAPER_B2);
173         translator.addPair(string_papersize[15], PAPER_B3);
174         translator.addPair(string_papersize[16], PAPER_B4);
175         translator.addPair(string_papersize[17], PAPER_B5);
176         translator.addPair(string_papersize[18], PAPER_B6);
177         translator.addPair(string_papersize[19], PAPER_C0);
178         translator.addPair(string_papersize[20], PAPER_C1);
179         translator.addPair(string_papersize[21], PAPER_C2);
180         translator.addPair(string_papersize[22], PAPER_C3);
181         translator.addPair(string_papersize[23], PAPER_C4);
182         translator.addPair(string_papersize[24], PAPER_C5);
183         translator.addPair(string_papersize[25], PAPER_C6);
184         translator.addPair(string_papersize[26], PAPER_JISB0);
185         translator.addPair(string_papersize[27], PAPER_JISB1);
186         translator.addPair(string_papersize[28], PAPER_JISB2);
187         translator.addPair(string_papersize[29], PAPER_JISB3);
188         translator.addPair(string_papersize[30], PAPER_JISB4);
189         translator.addPair(string_papersize[31], PAPER_JISB5);
190         translator.addPair(string_papersize[32], PAPER_JISB6);
191         return translator;
192 }
193
194
195 PaperSizeTranslator const & papersizetranslator()
196 {
197         static PaperSizeTranslator const translator =
198                 initPaperSizeTranslator();
199         return translator;
200 }
201
202
203 // Paper orientation
204 typedef Translator<string, PAPER_ORIENTATION> PaperOrientationTranslator;
205
206
207 PaperOrientationTranslator const init_paperorientationtranslator()
208 {
209         PaperOrientationTranslator translator(string_orientation[0], ORIENTATION_PORTRAIT);
210         translator.addPair(string_orientation[1], ORIENTATION_LANDSCAPE);
211         return translator;
212 }
213
214
215 PaperOrientationTranslator const & paperorientationtranslator()
216 {
217         static PaperOrientationTranslator const translator =
218             init_paperorientationtranslator();
219         return translator;
220 }
221
222
223 // Page sides
224 typedef Translator<int, PageSides> SidesTranslator;
225
226
227 SidesTranslator const init_sidestranslator()
228 {
229         SidesTranslator translator(1, OneSide);
230         translator.addPair(2, TwoSides);
231         return translator;
232 }
233
234
235 SidesTranslator const & sidestranslator()
236 {
237         static SidesTranslator const translator = init_sidestranslator();
238         return translator;
239 }
240
241
242 // LaTeX packages
243 typedef Translator<int, BufferParams::Package> PackageTranslator;
244
245
246 PackageTranslator const init_packagetranslator()
247 {
248         PackageTranslator translator(0, BufferParams::package_off);
249         translator.addPair(1, BufferParams::package_auto);
250         translator.addPair(2, BufferParams::package_on);
251         return translator;
252 }
253
254
255 PackageTranslator const & packagetranslator()
256 {
257         static PackageTranslator const translator =
258                 init_packagetranslator();
259         return translator;
260 }
261
262
263 // Cite engine
264 typedef Translator<string, CiteEngineType> CiteEngineTypeTranslator;
265
266
267 CiteEngineTypeTranslator const init_citeenginetypetranslator()
268 {
269         CiteEngineTypeTranslator translator("authoryear", ENGINE_TYPE_AUTHORYEAR);
270         translator.addPair("numerical", ENGINE_TYPE_NUMERICAL);
271         translator.addPair("default", ENGINE_TYPE_DEFAULT);
272         return translator;
273 }
274
275
276 CiteEngineTypeTranslator const & citeenginetypetranslator()
277 {
278         static CiteEngineTypeTranslator const translator =
279                 init_citeenginetypetranslator();
280         return translator;
281 }
282
283
284 // Spacing
285 typedef Translator<string, Spacing::Space> SpaceTranslator;
286
287
288 SpaceTranslator const init_spacetranslator()
289 {
290         SpaceTranslator translator("default", Spacing::Default);
291         translator.addPair("single", Spacing::Single);
292         translator.addPair("onehalf", Spacing::Onehalf);
293         translator.addPair("double", Spacing::Double);
294         translator.addPair("other", Spacing::Other);
295         return translator;
296 }
297
298
299 SpaceTranslator const & spacetranslator()
300 {
301         static SpaceTranslator const translator = init_spacetranslator();
302         return translator;
303 }
304
305 } // anon namespace
306
307
308 class BufferParams::Impl
309 {
310 public:
311         Impl();
312
313         AuthorList authorlist;
314         BranchList branchlist;
315         Bullet temp_bullets[4];
316         Bullet user_defined_bullets[4];
317         IndicesList indiceslist;
318         Spacing spacing;
319         /** This is the amount of space used for paragraph_separation "skip",
320          * and for detached paragraphs in "indented" documents.
321          */
322         HSpace indentation;
323         VSpace defskip;
324         PDFOptions pdfoptions;
325         LayoutFileIndex baseClass_;
326 };
327
328
329 BufferParams::Impl::Impl()
330         : defskip(VSpace::MEDSKIP), baseClass_(string(""))
331 {
332         // set initial author
333         // FIXME UNICODE
334         authorlist.record(Author(from_utf8(lyxrc.user_name), from_utf8(lyxrc.user_email)));
335 }
336
337
338 BufferParams::Impl *
339 BufferParams::MemoryTraits::clone(BufferParams::Impl const * ptr)
340 {
341         LBUFERR(ptr);
342         return new BufferParams::Impl(*ptr);
343 }
344
345
346 void BufferParams::MemoryTraits::destroy(BufferParams::Impl * ptr)
347 {
348         delete ptr;
349 }
350
351
352 BufferParams::BufferParams()
353         : pimpl_(new Impl)
354 {
355         setBaseClass(defaultBaseclass());
356         makeDocumentClass();
357         paragraph_separation = ParagraphIndentSeparation;
358         quotes_language = InsetQuotes::EnglishQuotes;
359         fontsize = "default";
360
361         /*  PaperLayout */
362         papersize = PAPER_DEFAULT;
363         orientation = ORIENTATION_PORTRAIT;
364         use_geometry = false;
365         cite_engine_.push_back("basic");
366         cite_engine_type_ = ENGINE_TYPE_DEFAULT;
367         biblio_style = "plain";
368         use_bibtopic = false;
369         use_indices = false;
370         track_changes = false;
371         output_changes = false;
372         use_default_options = true;
373         maintain_unincluded_children = false;
374         secnumdepth = 3;
375         tocdepth = 3;
376         language = default_language;
377         fontenc = "global";
378         fonts_roman = "default";
379         fonts_sans = "default";
380         fonts_typewriter = "default";
381         fonts_math = "auto";
382         fonts_default_family = "default";
383         useNonTeXFonts = false;
384         fonts_expert_sc = false;
385         fonts_old_figures = false;
386         fonts_sans_scale = 100;
387         fonts_typewriter_scale = 100;
388         inputenc = "auto";
389         lang_package = "default";
390         graphics_driver = "default";
391         default_output_format = "default";
392         bibtex_command = "default";
393         index_command = "default";
394         sides = OneSide;
395         columns = 1;
396         listings_params = string();
397         pagestyle = "default";
398         suppress_date = false;
399         justification = true;
400         // no color is the default (white)
401         backgroundcolor = lyx::rgbFromHexName("#ffffff");
402         isbackgroundcolor = false;
403         // no color is the default (black)
404         fontcolor = lyx::rgbFromHexName("#000000");
405         isfontcolor = false;
406         // light gray is the default font color for greyed-out notes
407         notefontcolor = lyx::rgbFromHexName("#cccccc");
408         boxbgcolor = lyx::rgbFromHexName("#ff0000");
409         compressed = lyxrc.save_compressed;
410         for (int iter = 0; iter < 4; ++iter) {
411                 user_defined_bullet(iter) = ITEMIZE_DEFAULTS[iter];
412                 temp_bullet(iter) = ITEMIZE_DEFAULTS[iter];
413         }
414         // default index
415         indiceslist().addDefault(B_("Index"));
416         html_be_strict = false;
417         html_math_output = MathML;
418         html_math_img_scale = 1.0;
419         html_css_as_file = false;
420         display_pixel_ratio = 1.0;
421
422         output_sync = false;
423         use_refstyle = true;
424 }
425
426
427 docstring BufferParams::B_(string const & l10n) const
428 {
429         LASSERT(language, return from_utf8(l10n));
430         return getMessages(language->code()).get(l10n);
431 }
432
433
434 BufferParams::Package BufferParams::use_package(std::string const & p) const
435 {
436         PackageMap::const_iterator it = use_packages.find(p);
437         if (it == use_packages.end())
438                 return package_auto;
439         return it->second;
440 }
441
442
443 void BufferParams::use_package(std::string const & p, BufferParams::Package u)
444 {
445         use_packages[p] = u;
446 }
447
448
449 map<string, string> const & BufferParams::auto_packages()
450 {
451         static map<string, string> packages;
452         if (packages.empty()) {
453                 // We could have a race condition here that two threads
454                 // discover an empty map at the same time and want to fill
455                 // it, but that is no problem, since the same contents is
456                 // filled in twice then. Having the locker inside the
457                 // packages.empty() condition has the advantage that we
458                 // don't need the mutex overhead for simple reading.
459                 static Mutex mutex;
460                 Mutex::Locker locker(&mutex);
461                 // adding a package here implies a file format change!
462                 packages["amsmath"] =
463                         N_("The LaTeX package amsmath is only used if AMS formula types or symbols from the AMS math toolbars are inserted into formulas");
464                 packages["amssymb"] =
465                         N_("The LaTeX package amssymb is only used if symbols from the AMS math toolbars are inserted into formulas");
466                 packages["cancel"] =
467                         N_("The LaTeX package cancel is only used if \\cancel commands are used in formulas");
468                 packages["esint"] =
469                         N_("The LaTeX package esint is only used if special integral symbols are inserted into formulas");
470                 packages["mathdots"] =
471                         N_("The LaTeX package mathdots is only used if the command \\iddots is inserted into formulas");
472                 packages["mathtools"] =
473                         N_("The LaTeX package mathtools is only used if some mathematical relations are inserted into formulas");
474                 packages["mhchem"] =
475                         N_("The LaTeX package mhchem is only used if either the command \\ce or \\cf is inserted into formulas");
476                 packages["stackrel"] =
477                         N_("The LaTeX package stackrel is only used if the command \\stackrel with subscript is inserted into formulas");
478                 packages["stmaryrd"] =
479                         N_("The LaTeX package stmaryrd is only used if symbols from the St Mary's Road symbol font for theoretical computer science are inserted into formulas");
480                 packages["undertilde"] =
481                         N_("The LaTeX package undertilde is only used if you use the math frame decoration 'utilde'");
482         }
483         return packages;
484 }
485
486
487 AuthorList & BufferParams::authors()
488 {
489         return pimpl_->authorlist;
490 }
491
492
493 AuthorList const & BufferParams::authors() const
494 {
495         return pimpl_->authorlist;
496 }
497
498
499 BranchList & BufferParams::branchlist()
500 {
501         return pimpl_->branchlist;
502 }
503
504
505 BranchList const & BufferParams::branchlist() const
506 {
507         return pimpl_->branchlist;
508 }
509
510
511 IndicesList & BufferParams::indiceslist()
512 {
513         return pimpl_->indiceslist;
514 }
515
516
517 IndicesList const & BufferParams::indiceslist() const
518 {
519         return pimpl_->indiceslist;
520 }
521
522
523 Bullet & BufferParams::temp_bullet(lyx::size_type const index)
524 {
525         LASSERT(index < 4, return pimpl_->temp_bullets[0]);
526         return pimpl_->temp_bullets[index];
527 }
528
529
530 Bullet const & BufferParams::temp_bullet(lyx::size_type const index) const
531 {
532         LASSERT(index < 4, return pimpl_->temp_bullets[0]);
533         return pimpl_->temp_bullets[index];
534 }
535
536
537 Bullet & BufferParams::user_defined_bullet(lyx::size_type const index)
538 {
539         LASSERT(index < 4, return pimpl_->temp_bullets[0]);
540         return pimpl_->user_defined_bullets[index];
541 }
542
543
544 Bullet const & BufferParams::user_defined_bullet(lyx::size_type const index) const
545 {
546         LASSERT(index < 4, return pimpl_->temp_bullets[0]);
547         return pimpl_->user_defined_bullets[index];
548 }
549
550
551 Spacing & BufferParams::spacing()
552 {
553         return pimpl_->spacing;
554 }
555
556
557 Spacing const & BufferParams::spacing() const
558 {
559         return pimpl_->spacing;
560 }
561
562
563 PDFOptions & BufferParams::pdfoptions()
564 {
565         return pimpl_->pdfoptions;
566 }
567
568
569 PDFOptions const & BufferParams::pdfoptions() const
570 {
571         return pimpl_->pdfoptions;
572 }
573
574
575 HSpace const & BufferParams::getIndentation() const
576 {
577         return pimpl_->indentation;
578 }
579
580
581 void BufferParams::setIndentation(HSpace const & indent)
582 {
583         pimpl_->indentation = indent;
584 }
585
586
587 VSpace const & BufferParams::getDefSkip() const
588 {
589         return pimpl_->defskip;
590 }
591
592
593 void BufferParams::setDefSkip(VSpace const & vs)
594 {
595         // DEFSKIP will cause an infinite loop
596         LASSERT(vs.kind() != VSpace::DEFSKIP, return);
597         pimpl_->defskip = vs;
598 }
599
600
601 string BufferParams::readToken(Lexer & lex, string const & token,
602         FileName const & filepath)
603 {
604         if (token == "\\textclass") {
605                 lex.next();
606                 string const classname = lex.getString();
607                 // if there exists a local layout file, ignore the system one
608                 // NOTE: in this case, the textclass (.cls file) is assumed to
609                 // be available.
610                 string tcp;
611                 LayoutFileList & bcl = LayoutFileList::get();
612                 if (!filepath.empty())
613                         tcp = bcl.addLocalLayout(classname, filepath.absFileName());
614                 // that returns non-empty if a "local" layout file is found.
615                 if (!tcp.empty())
616                         setBaseClass(tcp);
617                 else
618                         setBaseClass(classname);
619                 // We assume that a tex class exists for local or unknown
620                 // layouts so this warning, will only be given for system layouts.
621                 if (!baseClass()->isTeXClassAvailable()) {
622                         docstring const desc =
623                                 translateIfPossible(from_utf8(baseClass()->description()));
624                         docstring const prereqs =
625                                 from_utf8(baseClass()->prerequisites());
626                         docstring const msg =
627                                 bformat(_("The selected document class\n"
628                                                  "\t%1$s\n"
629                                                  "requires external files that are not available.\n"
630                                                  "The document class can still be used, but the\n"
631                                                  "document cannot be compiled until the following\n"
632                                                  "prerequisites are installed:\n"
633                                                  "\t%2$s\n"
634                                                  "See section 3.1.2.2 (Class Availability) of the\n"
635                                                  "User's Guide for more information."), desc, prereqs);
636                         frontend::Alert::warning(_("Document class not available"),
637                                        msg);
638                 }
639         } else if (token == "\\begin_preamble") {
640                 readPreamble(lex);
641         } else if (token == "\\begin_local_layout") {
642                 readLocalLayout(lex, false);
643         } else if (token == "\\begin_forced_local_layout") {
644                 readLocalLayout(lex, true);
645         } else if (token == "\\begin_modules") {
646                 readModules(lex);
647         } else if (token == "\\begin_removed_modules") {
648                 readRemovedModules(lex);
649         } else if (token == "\\begin_includeonly") {
650                 readIncludeonly(lex);
651         } else if (token == "\\maintain_unincluded_children") {
652                 lex >> maintain_unincluded_children;
653         } else if (token == "\\options") {
654                 lex.eatLine();
655                 options = lex.getString();
656         } else if (token == "\\use_default_options") {
657                 lex >> use_default_options;
658         } else if (token == "\\master") {
659                 lex.eatLine();
660                 master = lex.getString();
661         } else if (token == "\\suppress_date") {
662                 lex >> suppress_date;
663         } else if (token == "\\justification") {
664                 lex >> justification;
665         } else if (token == "\\language") {
666                 readLanguage(lex);
667         } else if (token == "\\language_package") {
668                 lex.eatLine();
669                 lang_package = lex.getString();
670         } else if (token == "\\inputencoding") {
671                 lex >> inputenc;
672         } else if (token == "\\graphics") {
673                 readGraphicsDriver(lex);
674         } else if (token == "\\default_output_format") {
675                 lex >> default_output_format;
676         } else if (token == "\\bibtex_command") {
677                 lex.eatLine();
678                 bibtex_command = lex.getString();
679         } else if (token == "\\index_command") {
680                 lex.eatLine();
681                 index_command = lex.getString();
682         } else if (token == "\\fontencoding") {
683                 lex.eatLine();
684                 fontenc = lex.getString();
685         } else if (token == "\\font_roman") {
686                 lex.eatLine();
687                 fonts_roman = lex.getString();
688         } else if (token == "\\font_sans") {
689                 lex.eatLine();
690                 fonts_sans = lex.getString();
691         } else if (token == "\\font_typewriter") {
692                 lex.eatLine();
693                 fonts_typewriter = lex.getString();
694         } else if (token == "\\font_math") {
695                 lex.eatLine();
696                 fonts_math = lex.getString();
697         } else if (token == "\\font_default_family") {
698                 lex >> fonts_default_family;
699         } else if (token == "\\use_non_tex_fonts") {
700                 lex >> useNonTeXFonts;
701         } else if (token == "\\font_sc") {
702                 lex >> fonts_expert_sc;
703         } else if (token == "\\font_osf") {
704                 lex >> fonts_old_figures;
705         } else if (token == "\\font_sf_scale") {
706                 lex >> fonts_sans_scale;
707         } else if (token == "\\font_tt_scale") {
708                 lex >> fonts_typewriter_scale;
709         } else if (token == "\\font_cjk") {
710                 lex >> fonts_cjk;
711         } else if (token == "\\paragraph_separation") {
712                 string parsep;
713                 lex >> parsep;
714                 paragraph_separation = parseptranslator().find(parsep);
715         } else if (token == "\\paragraph_indentation") {
716                 lex.next();
717                 string indentation = lex.getString();
718                 pimpl_->indentation = HSpace(indentation);
719         } else if (token == "\\defskip") {
720                 lex.next();
721                 string const defskip = lex.getString();
722                 pimpl_->defskip = VSpace(defskip);
723                 if (pimpl_->defskip.kind() == VSpace::DEFSKIP)
724                         // that is invalid
725                         pimpl_->defskip = VSpace(VSpace::MEDSKIP);
726         } else if (token == "\\quotes_language") {
727                 string quotes_lang;
728                 lex >> quotes_lang;
729                 quotes_language = quoteslangtranslator().find(quotes_lang);
730         } else if (token == "\\papersize") {
731                 string ppsize;
732                 lex >> ppsize;
733                 papersize = papersizetranslator().find(ppsize);
734         } else if (token == "\\use_geometry") {
735                 lex >> use_geometry;
736         } else if (token == "\\use_package") {
737                 string package;
738                 int use;
739                 lex >> package;
740                 lex >> use;
741                 use_package(package, packagetranslator().find(use));
742         } else if (token == "\\cite_engine") {
743                 lex.eatLine();
744                 vector<string> engine = getVectorFromString(lex.getString());
745                 setCiteEngine(engine);
746         } else if (token == "\\cite_engine_type") {
747                 string engine_type;
748                 lex >> engine_type;
749                 cite_engine_type_ = citeenginetypetranslator().find(engine_type);
750         } else if (token == "\\biblio_style") {
751                 lex.eatLine();
752                 biblio_style = lex.getString();
753         } else if (token == "\\use_bibtopic") {
754                 lex >> use_bibtopic;
755         } else if (token == "\\use_indices") {
756                 lex >> use_indices;
757         } else if (token == "\\tracking_changes") {
758                 lex >> track_changes;
759         } else if (token == "\\output_changes") {
760                 lex >> output_changes;
761         } else if (token == "\\branch") {
762                 lex.eatLine();
763                 docstring branch = lex.getDocString();
764                 branchlist().add(branch);
765                 while (true) {
766                         lex.next();
767                         string const tok = lex.getString();
768                         if (tok == "\\end_branch")
769                                 break;
770                         Branch * branch_ptr = branchlist().find(branch);
771                         if (tok == "\\selected") {
772                                 lex.next();
773                                 if (branch_ptr)
774                                         branch_ptr->setSelected(lex.getInteger());
775                         }
776                         if (tok == "\\filename_suffix") {
777                                 lex.next();
778                                 if (branch_ptr)
779                                         branch_ptr->setFileNameSuffix(lex.getInteger());
780                         }
781                         if (tok == "\\color") {
782                                 lex.eatLine();
783                                 string color = lex.getString();
784                                 if (branch_ptr)
785                                         branch_ptr->setColor(color);
786                                 // Update also the Color table:
787                                 if (color == "none")
788                                         color = lcolor.getX11Name(Color_background);
789                                 // FIXME UNICODE
790                                 lcolor.setColor(to_utf8(branch), color);
791                         }
792                 }
793         } else if (token == "\\index") {
794                 lex.eatLine();
795                 docstring index = lex.getDocString();
796                 docstring shortcut;
797                 indiceslist().add(index);
798                 while (true) {
799                         lex.next();
800                         string const tok = lex.getString();
801                         if (tok == "\\end_index")
802                                 break;
803                         Index * index_ptr = indiceslist().find(index);
804                         if (tok == "\\shortcut") {
805                                 lex.next();
806                                 shortcut = lex.getDocString();
807                                 if (index_ptr)
808                                         index_ptr->setShortcut(shortcut);
809                         }
810                         if (tok == "\\color") {
811                                 lex.eatLine();
812                                 string color = lex.getString();
813                                 if (index_ptr)
814                                         index_ptr->setColor(color);
815                                 // Update also the Color table:
816                                 if (color == "none")
817                                         color = lcolor.getX11Name(Color_background);
818                                 // FIXME UNICODE
819                                 if (!shortcut.empty())
820                                         lcolor.setColor(to_utf8(shortcut), color);
821                         }
822                 }
823         } else if (token == "\\author") {
824                 lex.eatLine();
825                 istringstream ss(lex.getString());
826                 Author a;
827                 ss >> a;
828                 author_map[a.bufferId()] = pimpl_->authorlist.record(a);
829         } else if (token == "\\paperorientation") {
830                 string orient;
831                 lex >> orient;
832                 orientation = paperorientationtranslator().find(orient);
833         } else if (token == "\\backgroundcolor") {
834                 lex.eatLine();
835                 backgroundcolor = lyx::rgbFromHexName(lex.getString());
836                 isbackgroundcolor = true;
837         } else if (token == "\\fontcolor") {
838                 lex.eatLine();
839                 fontcolor = lyx::rgbFromHexName(lex.getString());
840                 isfontcolor = true;
841         } else if (token == "\\notefontcolor") {
842                 lex.eatLine();
843                 string color = lex.getString();
844                 notefontcolor = lyx::rgbFromHexName(color);
845                 lcolor.setColor("notefontcolor", color);
846         } else if (token == "\\boxbgcolor") {
847                 lex.eatLine();
848                 string color = lex.getString();
849                 boxbgcolor = lyx::rgbFromHexName(color);
850                 lcolor.setColor("boxbgcolor", color);
851         } else if (token == "\\paperwidth") {
852                 lex >> paperwidth;
853         } else if (token == "\\paperheight") {
854                 lex >> paperheight;
855         } else if (token == "\\leftmargin") {
856                 lex >> leftmargin;
857         } else if (token == "\\topmargin") {
858                 lex >> topmargin;
859         } else if (token == "\\rightmargin") {
860                 lex >> rightmargin;
861         } else if (token == "\\bottommargin") {
862                 lex >> bottommargin;
863         } else if (token == "\\headheight") {
864                 lex >> headheight;
865         } else if (token == "\\headsep") {
866                 lex >> headsep;
867         } else if (token == "\\footskip") {
868                 lex >> footskip;
869         } else if (token == "\\columnsep") {
870                 lex >> columnsep;
871         } else if (token == "\\paperfontsize") {
872                 lex >> fontsize;
873         } else if (token == "\\papercolumns") {
874                 lex >> columns;
875         } else if (token == "\\listings_params") {
876                 string par;
877                 lex >> par;
878                 listings_params = InsetListingsParams(par).params();
879         } else if (token == "\\papersides") {
880                 int psides;
881                 lex >> psides;
882                 sides = sidestranslator().find(psides);
883         } else if (token == "\\paperpagestyle") {
884                 lex >> pagestyle;
885         } else if (token == "\\bullet") {
886                 readBullets(lex);
887         } else if (token == "\\bulletLaTeX") {
888                 readBulletsLaTeX(lex);
889         } else if (token == "\\secnumdepth") {
890                 lex >> secnumdepth;
891         } else if (token == "\\tocdepth") {
892                 lex >> tocdepth;
893         } else if (token == "\\spacing") {
894                 string nspacing;
895                 lex >> nspacing;
896                 string tmp_val;
897                 if (nspacing == "other") {
898                         lex >> tmp_val;
899                 }
900                 spacing().set(spacetranslator().find(nspacing), tmp_val);
901         } else if (token == "\\float_placement") {
902                 lex >> float_placement;
903
904         } else if (prefixIs(token, "\\pdf_") || token == "\\use_hyperref") {
905                 string toktmp = pdfoptions().readToken(lex, token);
906                 if (!toktmp.empty()) {
907                         lyxerr << "PDFOptions::readToken(): Unknown token: " <<
908                                 toktmp << endl;
909                         return toktmp;
910                 }
911         } else if (token == "\\html_math_output") {
912                 int temp;
913                 lex >> temp;
914                 html_math_output = static_cast<MathOutput>(temp);
915         } else if (token == "\\html_be_strict") {
916                 lex >> html_be_strict;
917         } else if (token == "\\html_css_as_file") {
918                 lex >> html_css_as_file;
919         } else if (token == "\\html_math_img_scale") {
920                 lex >> html_math_img_scale;
921         } else if (token == "\\html_latex_start") {
922                 lex.eatLine();
923                 html_latex_start = lex.getString();
924         } else if (token == "\\html_latex_end") {
925                 lex.eatLine();
926                 html_latex_end = lex.getString();
927         } else if (token == "\\output_sync") {
928                 lex >> output_sync;
929         } else if (token == "\\output_sync_macro") {
930                 lex >> output_sync_macro;
931         } else if (token == "\\use_refstyle") {
932                 lex >> use_refstyle;
933         } else {
934                 lyxerr << "BufferParams::readToken(): Unknown token: " <<
935                         token << endl;
936                 return token;
937         }
938
939         return string();
940 }
941
942
943 void BufferParams::writeFile(ostream & os) const
944 {
945         // The top of the file is written by the buffer.
946         // Prints out the buffer info into the .lyx file given by file
947
948         // the textclass
949         os << "\\textclass " << baseClass()->name() << '\n';
950
951         // then the preamble
952         if (!preamble.empty()) {
953                 // remove '\n' from the end of preamble
954                 string const tmppreamble = rtrim(preamble, "\n");
955                 os << "\\begin_preamble\n"
956                    << tmppreamble
957                    << "\n\\end_preamble\n";
958         }
959
960         // the options
961         if (!options.empty()) {
962                 os << "\\options " << options << '\n';
963         }
964
965         // use the class options defined in the layout?
966         os << "\\use_default_options "
967            << convert<string>(use_default_options) << "\n";
968
969         // the master document
970         if (!master.empty()) {
971                 os << "\\master " << master << '\n';
972         }
973
974         // removed modules
975         if (!removed_modules_.empty()) {
976                 os << "\\begin_removed_modules" << '\n';
977                 list<string>::const_iterator it = removed_modules_.begin();
978                 list<string>::const_iterator en = removed_modules_.end();
979                 for (; it != en; ++it)
980                         os << *it << '\n';
981                 os << "\\end_removed_modules" << '\n';
982         }
983
984         // the modules
985         if (!layout_modules_.empty()) {
986                 os << "\\begin_modules" << '\n';
987                 LayoutModuleList::const_iterator it = layout_modules_.begin();
988                 LayoutModuleList::const_iterator en = layout_modules_.end();
989                 for (; it != en; ++it)
990                         os << *it << '\n';
991                 os << "\\end_modules" << '\n';
992         }
993
994         // includeonly
995         if (!included_children_.empty()) {
996                 os << "\\begin_includeonly" << '\n';
997                 list<string>::const_iterator it = included_children_.begin();
998                 list<string>::const_iterator en = included_children_.end();
999                 for (; it != en; ++it)
1000                         os << *it << '\n';
1001                 os << "\\end_includeonly" << '\n';
1002         }
1003         os << "\\maintain_unincluded_children "
1004            << convert<string>(maintain_unincluded_children) << '\n';
1005
1006         // local layout information
1007         string const local_layout = getLocalLayout(false);
1008         if (!local_layout.empty()) {
1009                 // remove '\n' from the end
1010                 string const tmplocal = rtrim(local_layout, "\n");
1011                 os << "\\begin_local_layout\n"
1012                    << tmplocal
1013                    << "\n\\end_local_layout\n";
1014         }
1015         string const forced_local_layout = getLocalLayout(true);
1016         if (!forced_local_layout.empty()) {
1017                 // remove '\n' from the end
1018                 string const tmplocal = rtrim(forced_local_layout, "\n");
1019                 os << "\\begin_forced_local_layout\n"
1020                    << tmplocal
1021                    << "\n\\end_forced_local_layout\n";
1022         }
1023
1024         // then the text parameters
1025         if (language != ignore_language)
1026                 os << "\\language " << language->lang() << '\n';
1027         os << "\\language_package " << lang_package
1028            << "\n\\inputencoding " << inputenc
1029            << "\n\\fontencoding " << fontenc
1030            << "\n\\font_roman " << fonts_roman
1031            << "\n\\font_sans " << fonts_sans
1032            << "\n\\font_typewriter " << fonts_typewriter
1033            << "\n\\font_math " << fonts_math
1034            << "\n\\font_default_family " << fonts_default_family
1035            << "\n\\use_non_tex_fonts " << convert<string>(useNonTeXFonts)
1036            << "\n\\font_sc " << convert<string>(fonts_expert_sc)
1037            << "\n\\font_osf " << convert<string>(fonts_old_figures)
1038            << "\n\\font_sf_scale " << fonts_sans_scale
1039            << "\n\\font_tt_scale " << fonts_typewriter_scale
1040            << '\n';
1041         if (!fonts_cjk.empty()) {
1042                 os << "\\font_cjk " << fonts_cjk << '\n';
1043         }
1044         os << "\\graphics " << graphics_driver << '\n';
1045         os << "\\default_output_format " << default_output_format << '\n';
1046         os << "\\output_sync " << output_sync << '\n';
1047         if (!output_sync_macro.empty())
1048                 os << "\\output_sync_macro \"" << output_sync_macro << "\"\n";
1049         os << "\\bibtex_command " << bibtex_command << '\n';
1050         os << "\\index_command " << index_command << '\n';
1051
1052         if (!float_placement.empty()) {
1053                 os << "\\float_placement " << float_placement << '\n';
1054         }
1055         os << "\\paperfontsize " << fontsize << '\n';
1056
1057         spacing().writeFile(os);
1058         pdfoptions().writeFile(os);
1059
1060         os << "\\papersize " << string_papersize[papersize]
1061            << "\n\\use_geometry " << convert<string>(use_geometry);
1062         map<string, string> const & packages = auto_packages();
1063         for (map<string, string>::const_iterator it = packages.begin();
1064              it != packages.end(); ++it)
1065                 os << "\n\\use_package " << it->first << ' '
1066                    << use_package(it->first);
1067
1068         os << "\n\\cite_engine ";
1069
1070         if (!cite_engine_.empty()) {
1071                 LayoutModuleList::const_iterator be = cite_engine_.begin();
1072                 LayoutModuleList::const_iterator en = cite_engine_.end();
1073                 for (LayoutModuleList::const_iterator it = be; it != en; ++it) {
1074                         if (it != be)
1075                                 os << ',';
1076                         os << *it;
1077                 }
1078         } else {
1079                 os << "basic";
1080         }
1081
1082         os << "\n\\cite_engine_type " << citeenginetypetranslator().find(cite_engine_type_)
1083            << "\n\\biblio_style " << biblio_style
1084            << "\n\\use_bibtopic " << convert<string>(use_bibtopic)
1085            << "\n\\use_indices " << convert<string>(use_indices)
1086            << "\n\\paperorientation " << string_orientation[orientation]
1087            << "\n\\suppress_date " << convert<string>(suppress_date)
1088            << "\n\\justification " << convert<string>(justification)
1089            << "\n\\use_refstyle " << use_refstyle
1090            << '\n';
1091         if (isbackgroundcolor == true)
1092                 os << "\\backgroundcolor " << lyx::X11hexname(backgroundcolor) << '\n';
1093         if (isfontcolor == true)
1094                 os << "\\fontcolor " << lyx::X11hexname(fontcolor) << '\n';
1095         if (notefontcolor != lyx::rgbFromHexName("#cccccc"))
1096                 os << "\\notefontcolor " << lyx::X11hexname(notefontcolor) << '\n';
1097         if (boxbgcolor != lyx::rgbFromHexName("#ff0000"))
1098                 os << "\\boxbgcolor " << lyx::X11hexname(boxbgcolor) << '\n';
1099
1100         BranchList::const_iterator it = branchlist().begin();
1101         BranchList::const_iterator end = branchlist().end();
1102         for (; it != end; ++it) {
1103                 os << "\\branch " << to_utf8(it->branch())
1104                    << "\n\\selected " << it->isSelected()
1105                    << "\n\\filename_suffix " << it->hasFileNameSuffix()
1106                    << "\n\\color " << lyx::X11hexname(it->color())
1107                    << "\n\\end_branch"
1108                    << "\n";
1109         }
1110
1111         IndicesList::const_iterator iit = indiceslist().begin();
1112         IndicesList::const_iterator iend = indiceslist().end();
1113         for (; iit != iend; ++iit) {
1114                 os << "\\index " << to_utf8(iit->index())
1115                    << "\n\\shortcut " << to_utf8(iit->shortcut())
1116                    << "\n\\color " << lyx::X11hexname(iit->color())
1117                    << "\n\\end_index"
1118                    << "\n";
1119         }
1120
1121         if (!paperwidth.empty())
1122                 os << "\\paperwidth "
1123                    << VSpace(paperwidth).asLyXCommand() << '\n';
1124         if (!paperheight.empty())
1125                 os << "\\paperheight "
1126                    << VSpace(paperheight).asLyXCommand() << '\n';
1127         if (!leftmargin.empty())
1128                 os << "\\leftmargin "
1129                    << VSpace(leftmargin).asLyXCommand() << '\n';
1130         if (!topmargin.empty())
1131                 os << "\\topmargin "
1132                    << VSpace(topmargin).asLyXCommand() << '\n';
1133         if (!rightmargin.empty())
1134                 os << "\\rightmargin "
1135                    << VSpace(rightmargin).asLyXCommand() << '\n';
1136         if (!bottommargin.empty())
1137                 os << "\\bottommargin "
1138                    << VSpace(bottommargin).asLyXCommand() << '\n';
1139         if (!headheight.empty())
1140                 os << "\\headheight "
1141                    << VSpace(headheight).asLyXCommand() << '\n';
1142         if (!headsep.empty())
1143                 os << "\\headsep "
1144                    << VSpace(headsep).asLyXCommand() << '\n';
1145         if (!footskip.empty())
1146                 os << "\\footskip "
1147                    << VSpace(footskip).asLyXCommand() << '\n';
1148         if (!columnsep.empty())
1149                 os << "\\columnsep "
1150                          << VSpace(columnsep).asLyXCommand() << '\n';
1151         os << "\\secnumdepth " << secnumdepth
1152            << "\n\\tocdepth " << tocdepth
1153            << "\n\\paragraph_separation "
1154            << string_paragraph_separation[paragraph_separation];
1155         if (!paragraph_separation)
1156                 os << "\n\\paragraph_indentation " << getIndentation().asLyXCommand();
1157         else
1158                 os << "\n\\defskip " << getDefSkip().asLyXCommand();
1159         os << "\n\\quotes_language "
1160            << string_quotes_language[quotes_language]
1161            << "\n\\papercolumns " << columns
1162            << "\n\\papersides " << sides
1163            << "\n\\paperpagestyle " << pagestyle << '\n';
1164         if (!listings_params.empty())
1165                 os << "\\listings_params \"" <<
1166                         InsetListingsParams(listings_params).encodedString() << "\"\n";
1167         for (int i = 0; i < 4; ++i) {
1168                 if (user_defined_bullet(i) != ITEMIZE_DEFAULTS[i]) {
1169                         if (user_defined_bullet(i).getFont() != -1) {
1170                                 os << "\\bullet " << i << " "
1171                                    << user_defined_bullet(i).getFont() << " "
1172                                    << user_defined_bullet(i).getCharacter() << " "
1173                                    << user_defined_bullet(i).getSize() << "\n";
1174                         }
1175                         else {
1176                                 // FIXME UNICODE
1177                                 os << "\\bulletLaTeX " << i << " \""
1178                                    << lyx::to_ascii(user_defined_bullet(i).getText())
1179                                    << "\"\n";
1180                         }
1181                 }
1182         }
1183
1184         os << "\\tracking_changes " << convert<string>(track_changes) << '\n'
1185            << "\\output_changes " << convert<string>(output_changes) << '\n'
1186            << "\\html_math_output " << html_math_output << '\n'
1187            << "\\html_css_as_file " << html_css_as_file << '\n'
1188            << "\\html_be_strict " << convert<string>(html_be_strict) << '\n';
1189
1190         if (html_math_img_scale != 1.0)
1191                 os << "\\html_math_img_scale " << convert<string>(html_math_img_scale) << '\n';
1192         if (!html_latex_start.empty())
1193                 os << "\\html_latex_start " << html_latex_start << '\n';
1194         if (!html_latex_end.empty())
1195                  os << "\\html_latex_end " << html_latex_end << '\n';
1196
1197         os << pimpl_->authorlist;
1198 }
1199
1200
1201 void BufferParams::validate(LaTeXFeatures & features) const
1202 {
1203         features.require(documentClass().requires());
1204
1205         if (columns > 1 && language->rightToLeft())
1206                 features.require("rtloutputdblcol");
1207
1208         if (output_changes) {
1209                 bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
1210                 bool xcolorulem = LaTeXFeatures::isAvailable("ulem") &&
1211                                   LaTeXFeatures::isAvailable("xcolor");
1212
1213                 switch (features.runparams().flavor) {
1214                 case OutputParams::LATEX:
1215                 case OutputParams::DVILUATEX:
1216                         if (dvipost) {
1217                                 features.require("ct-dvipost");
1218                                 features.require("dvipost");
1219                         } else if (xcolorulem) {
1220                                 features.require("ct-xcolor-ulem");
1221                                 features.require("ulem");
1222                                 features.require("xcolor");
1223                         } else {
1224                                 features.require("ct-none");
1225                         }
1226                         break;
1227                 case OutputParams::LUATEX:
1228                 case OutputParams::PDFLATEX:
1229                 case OutputParams::XETEX:
1230                         if (xcolorulem) {
1231                                 features.require("ct-xcolor-ulem");
1232                                 features.require("ulem");
1233                                 features.require("xcolor");
1234                                 // improves color handling in PDF output
1235                                 features.require("pdfcolmk");
1236                         } else {
1237                                 features.require("ct-none");
1238                         }
1239                         break;
1240                 default:
1241                         break;
1242                 }
1243         }
1244
1245         // Floats with 'Here definitely' as default setting.
1246         if (float_placement.find('H') != string::npos)
1247                 features.require("float");
1248
1249         for (PackageMap::const_iterator it = use_packages.begin();
1250              it != use_packages.end(); ++it) {
1251                 if (it->first == "amsmath") {
1252                         // AMS Style is at document level
1253                         if (it->second == package_on ||
1254                             features.isProvided("amsmath"))
1255                                 features.require(it->first);
1256                 } else if (it->second == package_on)
1257                         features.require(it->first);
1258         }
1259
1260         // Document-level line spacing
1261         if (spacing().getSpace() != Spacing::Single && !spacing().isDefault())
1262                 features.require("setspace");
1263
1264         // the bullet shapes are buffer level not paragraph level
1265         // so they are tested here
1266         for (int i = 0; i < 4; ++i) {
1267                 if (user_defined_bullet(i) == ITEMIZE_DEFAULTS[i])
1268                         continue;
1269                 int const font = user_defined_bullet(i).getFont();
1270                 if (font == 0) {
1271                         int const c = user_defined_bullet(i).getCharacter();
1272                         if (c == 16
1273                             || c == 17
1274                             || c == 25
1275                             || c == 26
1276                             || c == 31) {
1277                                 features.require("latexsym");
1278                         }
1279                 } else if (font == 1) {
1280                         features.require("amssymb");
1281                 } else if (font >= 2 && font <= 5) {
1282                         features.require("pifont");
1283                 }
1284         }
1285
1286         if (pdfoptions().use_hyperref) {
1287                 features.require("hyperref");
1288                 // due to interferences with babel and hyperref, the color package has to
1289                 // be loaded after hyperref when hyperref is used with the colorlinks
1290                 // option, see http://www.lyx.org/trac/ticket/5291
1291                 if (pdfoptions().colorlinks)
1292                         features.require("color");
1293         }
1294         if (!listings_params.empty()) {
1295                 // do not test validity because listings_params is
1296                 // supposed to be valid
1297                 string par =
1298                         InsetListingsParams(listings_params).separatedParams(true);
1299                 // we can't support all packages, but we should load the color package
1300                 if (par.find("\\color", 0) != string::npos)
1301                         features.require("color");
1302         }
1303
1304         // some languages are only available via polyglossia
1305         if (features.runparams().flavor == OutputParams::XETEX
1306             && (features.hasPolyglossiaExclusiveLanguages()
1307                 || useNonTeXFonts))
1308                 features.require("polyglossia");
1309
1310         if (useNonTeXFonts && fonts_math != "auto")
1311                 features.require("unicode-math");
1312
1313         if (!language->requires().empty())
1314                 features.require(language->requires());
1315 }
1316
1317
1318 bool BufferParams::writeLaTeX(otexstream & os, LaTeXFeatures & features,
1319                               FileName const & filepath) const
1320 {
1321         // http://www.tug.org/texmf-dist/doc/latex/base/fixltx2e.pdf
1322         // !! To use the Fix-cm package, load it before \documentclass, and use the command
1323         // \RequirePackage to do so, rather than the normal \usepackage
1324         // Do not try to load any other package before the document class, unless you
1325         // have a thorough understanding of the LATEX internals and know exactly what you
1326         // are doing!
1327         if (features.mustProvide("fix-cm"))
1328                 os << "\\RequirePackage{fix-cm}\n";
1329
1330         os << "\\documentclass";
1331
1332         DocumentClass const & tclass = documentClass();
1333
1334         ostringstream clsoptions; // the document class options.
1335
1336         if (tokenPos(tclass.opt_fontsize(),
1337                      '|', fontsize) >= 0) {
1338                 // only write if existing in list (and not default)
1339                 clsoptions << fontsize << "pt,";
1340         }
1341
1342         // all paper sizes except of A4, A5, B5 and the US sizes need the
1343         // geometry package
1344         bool nonstandard_papersize = papersize != PAPER_DEFAULT
1345                 && papersize != PAPER_USLETTER
1346                 && papersize != PAPER_USLEGAL
1347                 && papersize != PAPER_USEXECUTIVE
1348                 && papersize != PAPER_A4
1349                 && papersize != PAPER_A5
1350                 && papersize != PAPER_B5;
1351
1352         if (!use_geometry) {
1353                 switch (papersize) {
1354                 case PAPER_A4:
1355                         clsoptions << "a4paper,";
1356                         break;
1357                 case PAPER_USLETTER:
1358                         clsoptions << "letterpaper,";
1359                         break;
1360                 case PAPER_A5:
1361                         clsoptions << "a5paper,";
1362                         break;
1363                 case PAPER_B5:
1364                         clsoptions << "b5paper,";
1365                         break;
1366                 case PAPER_USEXECUTIVE:
1367                         clsoptions << "executivepaper,";
1368                         break;
1369                 case PAPER_USLEGAL:
1370                         clsoptions << "legalpaper,";
1371                         break;
1372                 case PAPER_DEFAULT:
1373                 case PAPER_A0:
1374                 case PAPER_A1:
1375                 case PAPER_A2:
1376                 case PAPER_A3:
1377                 case PAPER_A6:
1378                 case PAPER_B0:
1379                 case PAPER_B1:
1380                 case PAPER_B2:
1381                 case PAPER_B3:
1382                 case PAPER_B4:
1383                 case PAPER_B6:
1384                 case PAPER_C0:
1385                 case PAPER_C1:
1386                 case PAPER_C2:
1387                 case PAPER_C3:
1388                 case PAPER_C4:
1389                 case PAPER_C5:
1390                 case PAPER_C6:
1391                 case PAPER_JISB0:
1392                 case PAPER_JISB1:
1393                 case PAPER_JISB2:
1394                 case PAPER_JISB3:
1395                 case PAPER_JISB4:
1396                 case PAPER_JISB5:
1397                 case PAPER_JISB6:
1398                 case PAPER_CUSTOM:
1399                         break;
1400                 }
1401         }
1402
1403         // if needed
1404         if (sides != tclass.sides()) {
1405                 switch (sides) {
1406                 case OneSide:
1407                         clsoptions << "oneside,";
1408                         break;
1409                 case TwoSides:
1410                         clsoptions << "twoside,";
1411                         break;
1412                 }
1413         }
1414
1415         // if needed
1416         if (columns != tclass.columns()) {
1417                 if (columns == 2)
1418                         clsoptions << "twocolumn,";
1419                 else
1420                         clsoptions << "onecolumn,";
1421         }
1422
1423         if (!use_geometry
1424             && orientation == ORIENTATION_LANDSCAPE)
1425                 clsoptions << "landscape,";
1426
1427         // language should be a parameter to \documentclass
1428         if (language->babel() == "hebrew"
1429             && default_language->babel() != "hebrew")
1430                 // This seems necessary
1431                 features.useLanguage(default_language);
1432
1433         ostringstream language_options;
1434         bool const use_babel = features.useBabel() && !features.isProvided("babel");
1435         bool const use_polyglossia = features.usePolyglossia();
1436         bool const global = lyxrc.language_global_options;
1437         if (use_babel || (use_polyglossia && global)) {
1438                 language_options << features.getBabelLanguages();
1439                 if (!language->babel().empty()) {
1440                         if (!language_options.str().empty())
1441                                 language_options << ',';
1442                         language_options << language->babel();
1443                 }
1444                 if (global && !features.needBabelLangOptions()
1445                     && !language_options.str().empty())
1446                         clsoptions << language_options.str() << ',';
1447         }
1448
1449         // the predefined options from the layout
1450         if (use_default_options && !tclass.options().empty())
1451                 clsoptions << tclass.options() << ',';
1452
1453         // the user-defined options
1454         if (!options.empty()) {
1455                 clsoptions << options << ',';
1456         }
1457
1458         string strOptions(clsoptions.str());
1459         if (!strOptions.empty()) {
1460                 strOptions = rtrim(strOptions, ",");
1461                 // FIXME UNICODE
1462                 os << '[' << from_utf8(strOptions) << ']';
1463         }
1464
1465         os << '{' << from_ascii(tclass.latexname()) << "}\n";
1466         // end of \documentclass defs
1467
1468         // if we use fontspec or newtxmath, we have to load the AMS packages here
1469         string const ams = features.loadAMSPackages();
1470         bool const ot1 = (font_encoding() == "default" || font_encoding() == "OT1");
1471         bool const use_newtxmath =
1472                 theLaTeXFonts().getLaTeXFont(from_ascii(fonts_math)).getUsedPackage(
1473                         ot1, false, false) == "newtxmath";
1474         if ((useNonTeXFonts || use_newtxmath) && !ams.empty())
1475                 os << from_ascii(ams);
1476
1477         if (useNonTeXFonts) {
1478                 os << "\\usepackage{fontspec}\n";
1479                 if (features.mustProvide("unicode-math")
1480                     && features.isAvailable("unicode-math"))
1481                         os << "\\usepackage{unicode-math}\n";
1482         }
1483
1484         // font selection must be done before loading fontenc.sty
1485         string const fonts = loadFonts(features);
1486         if (!fonts.empty())
1487                 os << from_utf8(fonts);
1488
1489         if (fonts_default_family != "default")
1490                 os << "\\renewcommand{\\familydefault}{\\"
1491                    << from_ascii(fonts_default_family) << "}\n";
1492
1493         // set font encoding
1494         // XeTeX and LuaTeX (with OS fonts) do not need fontenc
1495         if (!useNonTeXFonts && !features.isProvided("fontenc")
1496             && font_encoding() != "default") {
1497                 vector<string> fontencs;
1498                 // primary language font encoding and default encoding
1499                 if (ascii_lowercase(language->fontenc()) != "none") {
1500                         vector<string> fencs = getVectorFromString(font_encoding());
1501                         fontencs.insert(fontencs.end(), fencs.begin(), fencs.end());
1502                         fencs = getVectorFromString(language->fontenc());
1503                         vector<string>::const_iterator fit = fencs.begin();
1504                         for (; fit != fencs.end(); ++fit) {
1505                                 if (find(fontencs.begin(), fontencs.end(), *fit) == fontencs.end())
1506                                         fontencs.push_back(*fit);
1507                         }
1508                 }
1509                 // get font encodings of secondary languages
1510                 features.getFontEncodings(fontencs);
1511                 if (!fontencs.empty()) {
1512                         os << "\\usepackage["
1513                            << from_ascii(getStringFromVector(fontencs))
1514                            << "]{fontenc}\n";
1515                 }
1516         }
1517
1518         // handle inputenc etc.
1519         writeEncodingPreamble(os, features);
1520
1521         // includeonly
1522         if (!features.runparams().includeall && !included_children_.empty()) {
1523                 os << "\\includeonly{";
1524                 list<string>::const_iterator it = included_children_.begin();
1525                 list<string>::const_iterator en = included_children_.end();
1526                 bool first = true;
1527                 for (; it != en; ++it) {
1528                         string incfile = *it;
1529                         FileName inc = makeAbsPath(incfile, filepath.absFileName());
1530                         string mangled = DocFileName(changeExtension(inc.absFileName(), ".tex")).
1531                         mangledFileName();
1532                         if (!features.runparams().nice)
1533                                 incfile = mangled;
1534                         // \includeonly doesn't want an extension
1535                         incfile = changeExtension(incfile, string());
1536                         incfile = support::latex_path(incfile);
1537                         if (!incfile.empty()) {
1538                                 if (!first)
1539                                         os << ",";
1540                                 os << from_utf8(incfile);
1541                         }
1542                         first = false;
1543                 }
1544                 os << "}\n";
1545         }
1546
1547         if (!features.isProvided("geometry")
1548             && (use_geometry || nonstandard_papersize)) {
1549                 odocstringstream ods;
1550                 if (!getGraphicsDriver("geometry").empty())
1551                         ods << getGraphicsDriver("geometry");
1552                 if (orientation == ORIENTATION_LANDSCAPE)
1553                         ods << ",landscape";
1554                 switch (papersize) {
1555                 case PAPER_CUSTOM:
1556                         if (!paperwidth.empty())
1557                                 ods << ",paperwidth="
1558                                    << from_ascii(paperwidth);
1559                         if (!paperheight.empty())
1560                                 ods << ",paperheight="
1561                                    << from_ascii(paperheight);
1562                         break;
1563                 case PAPER_USLETTER:
1564                         ods << ",letterpaper";
1565                         break;
1566                 case PAPER_USLEGAL:
1567                         ods << ",legalpaper";
1568                         break;
1569                 case PAPER_USEXECUTIVE:
1570                         ods << ",executivepaper";
1571                         break;
1572                 case PAPER_A0:
1573                         ods << ",a0paper";
1574                         break;
1575                 case PAPER_A1:
1576                         ods << ",a1paper";
1577                         break;
1578                 case PAPER_A2:
1579                         ods << ",a2paper";
1580                         break;
1581                 case PAPER_A3:
1582                         ods << ",a3paper";
1583                         break;
1584                 case PAPER_A4:
1585                         ods << ",a4paper";
1586                         break;
1587                 case PAPER_A5:
1588                         ods << ",a5paper";
1589                         break;
1590                 case PAPER_A6:
1591                         ods << ",a6paper";
1592                         break;
1593                 case PAPER_B0:
1594                         ods << ",b0paper";
1595                         break;
1596                 case PAPER_B1:
1597                         ods << ",b1paper";
1598                         break;
1599                 case PAPER_B2:
1600                         ods << ",b2paper";
1601                         break;
1602                 case PAPER_B3:
1603                         ods << ",b3paper";
1604                         break;
1605                 case PAPER_B4:
1606                         ods << ",b4paper";
1607                         break;
1608                 case PAPER_B5:
1609                         ods << ",b5paper";
1610                         break;
1611                 case PAPER_B6:
1612                         ods << ",b6paper";
1613                         break;
1614                 case PAPER_C0:
1615                         ods << ",c0paper";
1616                         break;
1617                 case PAPER_C1:
1618                         ods << ",c1paper";
1619                         break;
1620                 case PAPER_C2:
1621                         ods << ",c2paper";
1622                         break;
1623                 case PAPER_C3:
1624                         ods << ",c3paper";
1625                         break;
1626                 case PAPER_C4:
1627                         ods << ",c4paper";
1628                         break;
1629                 case PAPER_C5:
1630                         ods << ",c5paper";
1631                         break;
1632                 case PAPER_C6:
1633                         ods << ",c6paper";
1634                         break;
1635                 case PAPER_JISB0:
1636                         ods << ",b0j";
1637                         break;
1638                 case PAPER_JISB1:
1639                         ods << ",b1j";
1640                         break;
1641                 case PAPER_JISB2:
1642                         ods << ",b2j";
1643                         break;
1644                 case PAPER_JISB3:
1645                         ods << ",b3j";
1646                         break;
1647                 case PAPER_JISB4:
1648                         ods << ",b4j";
1649                         break;
1650                 case PAPER_JISB5:
1651                         ods << ",b5j";
1652                         break;
1653                 case PAPER_JISB6:
1654                         ods << ",b6j";
1655                         break;
1656                 case PAPER_DEFAULT:
1657                         break;
1658                 }
1659                 docstring const g_options = trim(ods.str(), ",");
1660                 os << "\\usepackage";
1661                 if (!g_options.empty())
1662                         os << '[' << g_options << ']';
1663                 os << "{geometry}\n";
1664                 // output this only if use_geometry is true
1665                 if (use_geometry) {
1666                         os << "\\geometry{verbose";
1667                         if (!topmargin.empty())
1668                                 os << ",tmargin=" << from_ascii(Length(topmargin).asLatexString());
1669                         if (!bottommargin.empty())
1670                                 os << ",bmargin=" << from_ascii(Length(bottommargin).asLatexString());
1671                         if (!leftmargin.empty())
1672                                 os << ",lmargin=" << from_ascii(Length(leftmargin).asLatexString());
1673                         if (!rightmargin.empty())
1674                                 os << ",rmargin=" << from_ascii(Length(rightmargin).asLatexString());
1675                         if (!headheight.empty())
1676                                 os << ",headheight=" << from_ascii(Length(headheight).asLatexString());
1677                         if (!headsep.empty())
1678                                 os << ",headsep=" << from_ascii(Length(headsep).asLatexString());
1679                         if (!footskip.empty())
1680                                 os << ",footskip=" << from_ascii(Length(footskip).asLatexString());
1681                         if (!columnsep.empty())
1682                                 os << ",columnsep=" << from_ascii(Length(columnsep).asLatexString());
1683                         os << "}\n";
1684                 }
1685         } else if (orientation == ORIENTATION_LANDSCAPE
1686                    || papersize != PAPER_DEFAULT) {
1687                 features.require("papersize");
1688         }
1689
1690         if (tokenPos(tclass.opt_pagestyle(), '|', pagestyle) >= 0) {
1691                 if (pagestyle == "fancy")
1692                         os << "\\usepackage{fancyhdr}\n";
1693                 os << "\\pagestyle{" << from_ascii(pagestyle) << "}\n";
1694         }
1695
1696         // only output when the background color is not default
1697         if (isbackgroundcolor == true) {
1698                 // only require color here, the background color will be defined
1699                 // in LaTeXFeatures.cpp to avoid interferences with the LaTeX
1700                 // package pdfpages
1701                 features.require("color");
1702                 features.require("pagecolor");
1703         }
1704
1705         // only output when the font color is not default
1706         if (isfontcolor == true) {
1707                 // only require color here, the font color will be defined
1708                 // in LaTeXFeatures.cpp to avoid interferences with the LaTeX
1709                 // package pdfpages
1710                 features.require("color");
1711                 features.require("fontcolor");
1712         }
1713
1714         // Only if class has a ToC hierarchy
1715         if (tclass.hasTocLevels()) {
1716                 if (secnumdepth != tclass.secnumdepth()) {
1717                         os << "\\setcounter{secnumdepth}{"
1718                            << secnumdepth
1719                            << "}\n";
1720                 }
1721                 if (tocdepth != tclass.tocdepth()) {
1722                         os << "\\setcounter{tocdepth}{"
1723                            << tocdepth
1724                            << "}\n";
1725                 }
1726         }
1727
1728         if (paragraph_separation) {
1729                 // when skip separation
1730                 switch (getDefSkip().kind()) {
1731                 case VSpace::SMALLSKIP:
1732                         os << "\\setlength{\\parskip}{\\smallskipamount}\n";
1733                         break;
1734                 case VSpace::MEDSKIP:
1735                         os << "\\setlength{\\parskip}{\\medskipamount}\n";
1736                         break;
1737                 case VSpace::BIGSKIP:
1738                         os << "\\setlength{\\parskip}{\\bigskipamount}\n";
1739                         break;
1740                 case VSpace::LENGTH:
1741                         os << "\\setlength{\\parskip}{"
1742                            << from_utf8(getDefSkip().length().asLatexString())
1743                            << "}\n";
1744                         break;
1745                 default: // should never happen // Then delete it.
1746                         os << "\\setlength{\\parskip}{\\medskipamount}\n";
1747                         break;
1748                 }
1749                 os << "\\setlength{\\parindent}{0pt}\n";
1750         } else {
1751                 // when separation by indentation
1752                 // only output something when a width is given
1753                 if (getIndentation().asLyXCommand() != "default") {
1754                         os << "\\setlength{\\parindent}{"
1755                            << from_utf8(getIndentation().asLatexCommand())
1756                            << "}\n";
1757                 }
1758         }
1759
1760         // Now insert the LyX specific LaTeX commands...
1761         docstring lyxpreamble;
1762         features.resolveAlternatives();
1763
1764         if (output_sync) {
1765                 if (!output_sync_macro.empty())
1766                         lyxpreamble += from_utf8(output_sync_macro) +"\n";
1767                 else if (features.runparams().flavor == OutputParams::LATEX)
1768                         lyxpreamble += "\\usepackage[active]{srcltx}\n";
1769                 else if (features.runparams().flavor == OutputParams::PDFLATEX)
1770                         lyxpreamble += "\\synctex=-1\n";
1771         }
1772
1773         // The package options (via \PassOptionsToPackage)
1774         lyxpreamble += from_ascii(features.getPackageOptions());
1775
1776         // due to interferences with babel and hyperref, the color package has to
1777         // be loaded (when it is not already loaded) before babel when hyperref
1778         // is used with the colorlinks option, see
1779         // http://www.lyx.org/trac/ticket/5291
1780         // we decided therefore to load color always before babel, see
1781         // http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg144349.html
1782         lyxpreamble += from_ascii(features.getColorOptions());
1783
1784         // If we use hyperref, jurabib, japanese, varioref or vietnamese,
1785         // we have to call babel before
1786         if (use_babel
1787             && (features.isRequired("jurabib")
1788                 || features.isRequired("hyperref")
1789                 || features.isRequired("varioref")
1790                 || features.isRequired("vietnamese")
1791                 || features.isRequired("japanese"))) {
1792                         // FIXME UNICODE
1793                         lyxpreamble += from_utf8(features.getBabelPresettings());
1794                         lyxpreamble += from_utf8(babelCall(language_options.str(),
1795                                                            features.needBabelLangOptions())) + '\n';
1796                         lyxpreamble += from_utf8(features.getBabelPostsettings());
1797         }
1798
1799         // The optional packages;
1800         lyxpreamble += from_ascii(features.getPackages());
1801
1802         // Additional Indices
1803         if (features.isRequired("splitidx")) {
1804                 IndicesList::const_iterator iit = indiceslist().begin();
1805                 IndicesList::const_iterator iend = indiceslist().end();
1806                 for (; iit != iend; ++iit) {
1807                         pair<docstring, docstring> indexname_latex =
1808                                 features.runparams().encoding->latexString(iit->index(),
1809                                                                            features.runparams().dryrun);
1810                         if (!indexname_latex.second.empty()) {
1811                                 // issue a warning about omitted characters
1812                                 // FIXME: should be passed to the error dialog
1813                                 frontend::Alert::warning(_("Uncodable characters"),
1814                                         bformat(_("The following characters that are used in an index name are not\n"
1815                                                   "representable in the current encoding and therefore have been omitted:\n%1$s."),
1816                                                 indexname_latex.second));
1817                         }
1818                         lyxpreamble += "\\newindex[";
1819                         lyxpreamble += indexname_latex.first;
1820                         lyxpreamble += "]{";
1821                         lyxpreamble += escape(iit->shortcut());
1822                         lyxpreamble += "}\n";
1823                 }
1824         }
1825
1826         // Line spacing
1827         lyxpreamble += from_utf8(spacing().writePreamble(features.isProvided("SetSpace")));
1828
1829         // PDF support.
1830         // * Hyperref manual: "Make sure it comes last of your loaded
1831         //   packages, to give it a fighting chance of not being over-written,
1832         //   since its job is to redefine many LaTeX commands."
1833         // * Email from Heiko Oberdiek: "It is usually better to load babel
1834         //   before hyperref. Then hyperref has a chance to detect babel.
1835         // * Has to be loaded before the "LyX specific LaTeX commands" to
1836         //   avoid errors with algorithm floats.
1837         // use hyperref explicitly if it is required
1838         if (features.isRequired("hyperref")) {
1839                 // pass what we have to stream here, since we need
1840                 // to access the stream itself in PDFOptions.
1841                 os << lyxpreamble;
1842
1843                 OutputParams tmp_params = features.runparams();
1844                 pdfoptions().writeLaTeX(tmp_params, os,
1845                                         features.isProvided("hyperref"));
1846                 // set back for the rest
1847                 lyxpreamble.clear();
1848                 // correctly break URLs with hyperref and dvi output
1849                 if (features.runparams().flavor == OutputParams::LATEX
1850                     && features.isAvailable("breakurl"))
1851                         lyxpreamble += "\\usepackage{breakurl}\n";
1852         } else if (features.isRequired("nameref"))
1853                 // hyperref loads this automatically
1854                 lyxpreamble += "\\usepackage{nameref}\n";
1855
1856         // bibtopic needs to be loaded after hyperref.
1857         // the dot provides the aux file naming which LyX can detect.
1858         if (features.mustProvide("bibtopic"))
1859                 lyxpreamble += "\\usepackage[dot]{bibtopic}\n";
1860
1861         // Will be surrounded by \makeatletter and \makeatother when not empty
1862         docstring atlyxpreamble;
1863
1864         // Some macros LyX will need
1865         docstring tmppreamble(features.getMacros());
1866
1867         if (!tmppreamble.empty())
1868                 atlyxpreamble += "\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
1869                         "LyX specific LaTeX commands.\n"
1870                         + tmppreamble + '\n';
1871
1872         // the text class specific preamble
1873         tmppreamble = features.getTClassPreamble();
1874         if (!tmppreamble.empty())
1875                 atlyxpreamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
1876                         "Textclass specific LaTeX commands.\n"
1877                         + tmppreamble + '\n';
1878
1879         // suppress date if selected
1880         // use \@ifundefined because we cannot be sure that every document class
1881         // has a \date command
1882         if (suppress_date)
1883                 atlyxpreamble += "\\@ifundefined{date}{}{\\date{}}\n";
1884
1885         /* the user-defined preamble */
1886         if (!containsOnly(preamble, " \n\t"))
1887                 // FIXME UNICODE
1888                 atlyxpreamble += "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "
1889                         "User specified LaTeX commands.\n"
1890                         + from_utf8(preamble) + '\n';
1891
1892         // footmisc must be loaded after setspace
1893         // Load it here to avoid clashes with footmisc loaded in the user
1894         // preamble. For that reason we also pass the options via
1895         // \PassOptionsToPackage in getPreamble() and not here.
1896         if (features.mustProvide("footmisc"))
1897                 atlyxpreamble += "\\usepackage{footmisc}\n";
1898
1899         // subfig loads internally the LaTeX package "caption". As
1900         // caption is a very popular package, users will load it in
1901         // the preamble. Therefore we must load subfig behind the
1902         // user-defined preamble and check if the caption package was
1903         // loaded or not. For the case that caption is loaded before
1904         // subfig, there is the subfig option "caption=false". This
1905         // option also works when a koma-script class is used and
1906         // koma's own caption commands are used instead of caption. We
1907         // use \PassOptionsToPackage here because the user could have
1908         // already loaded subfig in the preamble.
1909         if (features.isRequired("subfig")) {
1910                 atlyxpreamble += "\\@ifundefined{showcaptionsetup}{}{%\n"
1911                         " \\PassOptionsToPackage{caption=false}{subfig}}\n"
1912                         "\\usepackage{subfig}\n";
1913         }
1914
1915         // Itemize bullet settings need to be last in case the user
1916         // defines their own bullets that use a package included
1917         // in the user-defined preamble -- ARRae
1918         // Actually it has to be done much later than that
1919         // since some packages like frenchb make modifications
1920         // at \begin{document} time -- JMarc
1921         docstring bullets_def;
1922         for (int i = 0; i < 4; ++i) {
1923                 if (user_defined_bullet(i) != ITEMIZE_DEFAULTS[i]) {
1924                         if (bullets_def.empty())
1925                                 bullets_def += "\\AtBeginDocument{\n";
1926                         bullets_def += "  \\def\\labelitemi";
1927                         switch (i) {
1928                                 // `i' is one less than the item to modify
1929                         case 0:
1930                                 break;
1931                         case 1:
1932                                 bullets_def += 'i';
1933                                 break;
1934                         case 2:
1935                                 bullets_def += "ii";
1936                                 break;
1937                         case 3:
1938                                 bullets_def += 'v';
1939                                 break;
1940                         }
1941                         bullets_def += '{' +
1942                                 user_defined_bullet(i).getText()
1943                                 + "}\n";
1944                 }
1945         }
1946
1947         if (!bullets_def.empty())
1948                 atlyxpreamble += bullets_def + "}\n\n";
1949
1950         if (!atlyxpreamble.empty())
1951                 lyxpreamble += "\n\\makeatletter\n"
1952                         + atlyxpreamble + "\\makeatother\n\n";
1953
1954         // We try to load babel late, in case it interferes with other packages.
1955         // Jurabib, hyperref, varioref and listings (bug 8995) have to be
1956         // called after babel, though.
1957         if (use_babel && !features.isRequired("jurabib")
1958             && !features.isRequired("hyperref")
1959                 && !features.isRequired("varioref")
1960             && !features.isRequired("vietnamese")
1961             && !features.isRequired("japanese")) {
1962                 // FIXME UNICODE
1963                 lyxpreamble += from_utf8(features.getBabelPresettings());
1964                 lyxpreamble += from_utf8(babelCall(language_options.str(),
1965                                                    features.needBabelLangOptions())) + '\n';
1966                 lyxpreamble += from_utf8(features.getBabelPostsettings());
1967         }
1968         if (!listings_params.empty() || features.isRequired("listings"))
1969                 lyxpreamble += "\\usepackage{listings}\n";
1970         if (!listings_params.empty()) {
1971                 lyxpreamble += "\\lstset{";
1972                 // do not test validity because listings_params is
1973                 // supposed to be valid
1974                 string par =
1975                         InsetListingsParams(listings_params).separatedParams(true);
1976                 lyxpreamble += from_utf8(par);
1977                 lyxpreamble += "}\n";
1978         }
1979
1980         // xunicode needs to be loaded at least after amsmath, amssymb,
1981         // esint and the other packages that provide special glyphs
1982         if (features.runparams().flavor == OutputParams::XETEX
1983             && useNonTeXFonts)
1984                 lyxpreamble += "\\usepackage{xunicode}\n";
1985
1986         // Polyglossia must be loaded last
1987         if (use_polyglossia) {
1988                 // call the package
1989                 lyxpreamble += "\\usepackage{polyglossia}\n";
1990                 // set the main language
1991                 lyxpreamble += "\\setdefaultlanguage";
1992                 if (!language->polyglossiaOpts().empty())
1993                         lyxpreamble += "[" + from_ascii(language->polyglossiaOpts()) + "]";
1994                 lyxpreamble += "{" + from_ascii(language->polyglossia()) + "}\n";
1995                 // now setup the other languages
1996                 std::map<std::string, std::string> const polylangs =
1997                         features.getPolyglossiaLanguages();
1998                 for (std::map<std::string, std::string>::const_iterator mit = polylangs.begin();
1999                      mit != polylangs.end() ; ++mit) {
2000                         lyxpreamble += "\\setotherlanguage";
2001                         if (!mit->second.empty())
2002                                 lyxpreamble += "[" + from_ascii(mit->second) + "]";
2003                         lyxpreamble += "{" + from_ascii(mit->first) + "}\n";
2004                 }
2005         }
2006
2007         // Load custom language package here
2008         if (features.langPackage() == LaTeXFeatures::LANG_PACK_CUSTOM) {
2009                 if (lang_package == "default")
2010                         lyxpreamble += from_utf8(lyxrc.language_custom_package);
2011                 else
2012                         lyxpreamble += from_utf8(lang_package);
2013                 lyxpreamble += '\n';
2014         }
2015
2016         docstring const i18npreamble =
2017                 features.getTClassI18nPreamble(use_babel, use_polyglossia);
2018         if (!i18npreamble.empty())
2019                 lyxpreamble += i18npreamble + '\n';
2020
2021         os << lyxpreamble;
2022
2023         return use_babel;
2024 }
2025
2026
2027 void BufferParams::useClassDefaults()
2028 {
2029         DocumentClass const & tclass = documentClass();
2030
2031         sides = tclass.sides();
2032         columns = tclass.columns();
2033         pagestyle = tclass.pagestyle();
2034         use_default_options = true;
2035         // Only if class has a ToC hierarchy
2036         if (tclass.hasTocLevels()) {
2037                 secnumdepth = tclass.secnumdepth();
2038                 tocdepth = tclass.tocdepth();
2039         }
2040 }
2041
2042
2043 bool BufferParams::hasClassDefaults() const
2044 {
2045         DocumentClass const & tclass = documentClass();
2046
2047         return sides == tclass.sides()
2048                 && columns == tclass.columns()
2049                 && pagestyle == tclass.pagestyle()
2050                 && use_default_options
2051                 && secnumdepth == tclass.secnumdepth()
2052                 && tocdepth == tclass.tocdepth();
2053 }
2054
2055
2056 DocumentClass const & BufferParams::documentClass() const
2057 {
2058         return *doc_class_.get();
2059 }
2060
2061
2062 DocumentClassConstPtr BufferParams::documentClassPtr() const
2063 {
2064         return doc_class_;
2065 }
2066
2067
2068 void BufferParams::setDocumentClass(DocumentClassConstPtr tc)
2069 {
2070         // evil, but this function is evil
2071         doc_class_ = const_pointer_cast<DocumentClass>(tc);
2072 }
2073
2074
2075 bool BufferParams::setBaseClass(string const & classname)
2076 {
2077         LYXERR(Debug::TCLASS, "setBaseClass: " << classname);
2078         LayoutFileList & bcl = LayoutFileList::get();
2079         if (!bcl.haveClass(classname)) {
2080                 docstring s =
2081                         bformat(_("The layout file:\n"
2082                                 "%1$s\n"
2083                                 "could not be found. A default textclass with default\n"
2084                                 "layouts will be used. LyX will not be able to produce\n"
2085                                 "correct output."),
2086                         from_utf8(classname));
2087                 frontend::Alert::error(_("Document class not found"), s);
2088                 bcl.addEmptyClass(classname);
2089         }
2090
2091         bool const success = bcl[classname].load();
2092         if (!success) {
2093                 docstring s =
2094                         bformat(_("Due to some error in it, the layout file:\n"
2095                                 "%1$s\n"
2096                                 "could not be loaded. A default textclass with default\n"
2097                                 "layouts will be used. LyX will not be able to produce\n"
2098                                 "correct output."),
2099                         from_utf8(classname));
2100                 frontend::Alert::error(_("Could not load class"), s);
2101                 bcl.addEmptyClass(classname);
2102         }
2103
2104         pimpl_->baseClass_ = classname;
2105         layout_modules_.adaptToBaseClass(baseClass(), removed_modules_);
2106         return true;
2107 }
2108
2109
2110 LayoutFile const * BufferParams::baseClass() const
2111 {
2112         if (LayoutFileList::get().haveClass(pimpl_->baseClass_))
2113                 return &(LayoutFileList::get()[pimpl_->baseClass_]);
2114         else
2115                 return 0;
2116 }
2117
2118
2119 LayoutFileIndex const & BufferParams::baseClassID() const
2120 {
2121         return pimpl_->baseClass_;
2122 }
2123
2124
2125 void BufferParams::makeDocumentClass(bool const clone)
2126 {
2127         if (!baseClass())
2128                 return;
2129
2130         LayoutModuleList mods;
2131         LayoutModuleList::iterator it = layout_modules_.begin();
2132         LayoutModuleList::iterator en = layout_modules_.end();
2133         for (; it != en; ++it)
2134                 mods.push_back(*it);
2135
2136         it = cite_engine_.begin();
2137         en = cite_engine_.end();
2138         for (; it != en; ++it)
2139                 mods.push_back(*it);
2140
2141         doc_class_ = getDocumentClass(*baseClass(), mods, clone);
2142
2143         TextClass::ReturnValues success = TextClass::OK;
2144         if (!forced_local_layout_.empty())
2145                 success = doc_class_->read(forced_local_layout_, TextClass::MODULE);
2146         if (!local_layout_.empty() &&
2147             (success == TextClass::OK || success == TextClass::OK_OLDFORMAT))
2148                 success = doc_class_->read(local_layout_, TextClass::MODULE);
2149         if (success != TextClass::OK && success != TextClass::OK_OLDFORMAT) {
2150                 docstring const msg = _("Error reading internal layout information");
2151                 frontend::Alert::warning(_("Read Error"), msg);
2152         }
2153 }
2154
2155
2156 bool BufferParams::layoutModuleCanBeAdded(string const & modName) const
2157 {
2158         return layout_modules_.moduleCanBeAdded(modName, baseClass());
2159 }
2160
2161
2162 bool BufferParams::citationModuleCanBeAdded(string const & modName) const
2163 {
2164         return cite_engine_.moduleCanBeAdded(modName, baseClass());
2165 }
2166
2167
2168 std::string BufferParams::getLocalLayout(bool forced) const
2169 {
2170         if (forced)
2171                 return doc_class_->forcedLayouts();
2172         else
2173                 return local_layout_;
2174 }
2175
2176
2177 void BufferParams::setLocalLayout(string const & layout, bool forced)
2178 {
2179         if (forced)
2180                 forced_local_layout_ = layout;
2181         else
2182                 local_layout_ = layout;
2183 }
2184
2185
2186 bool BufferParams::addLayoutModule(string const & modName)
2187 {
2188         LayoutModuleList::const_iterator it = layout_modules_.begin();
2189         LayoutModuleList::const_iterator end = layout_modules_.end();
2190         for (; it != end; ++it)
2191                 if (*it == modName)
2192                         return false;
2193         layout_modules_.push_back(modName);
2194         return true;
2195 }
2196
2197
2198 string BufferParams::bufferFormat() const
2199 {
2200         string format = documentClass().outputFormat();
2201         if (format == "latex") {
2202                 if (useNonTeXFonts)
2203                         return "xetex";
2204                 if (encoding().package() == Encoding::japanese)
2205                         return "platex";
2206         }
2207         return format;
2208 }
2209
2210
2211 bool BufferParams::isExportable(string const & format) const
2212 {
2213         vector<string> backs = backends();
2214         for (vector<string>::const_iterator it = backs.begin();
2215              it != backs.end(); ++it)
2216                 if (theConverters().isReachable(*it, format))
2217                         return true;
2218         return false;
2219 }
2220
2221
2222 vector<Format const *> BufferParams::exportableFormats(bool only_viewable) const
2223 {
2224         vector<string> const backs = backends();
2225         set<string> excludes;
2226         if (useNonTeXFonts) {
2227                 excludes.insert("latex");
2228                 excludes.insert("pdflatex");
2229         }
2230         vector<Format const *> result =
2231                 theConverters().getReachable(backs[0], only_viewable, true, excludes);
2232         for (vector<string>::const_iterator it = backs.begin() + 1;
2233              it != backs.end(); ++it) {
2234                 vector<Format const *>  r =
2235                         theConverters().getReachable(*it, only_viewable, false, excludes);
2236                 result.insert(result.end(), r.begin(), r.end());
2237         }
2238         return result;
2239 }
2240
2241
2242 bool BufferParams::isExportableFormat(string const & format) const
2243 {
2244         typedef vector<Format const *> Formats;
2245         Formats formats;
2246         formats = exportableFormats(true);
2247         Formats::const_iterator fit = formats.begin();
2248         Formats::const_iterator end = formats.end();
2249         for (; fit != end ; ++fit) {
2250                 if ((*fit)->name() == format)
2251                         return true;
2252         }
2253         return false;
2254 }
2255
2256
2257 vector<string> BufferParams::backends() const
2258 {
2259         vector<string> v;
2260         string const buffmt = bufferFormat();
2261
2262         // FIXME: Don't hardcode format names here, but use a flag
2263         if (buffmt == "latex") {
2264                 if (!useNonTeXFonts) {
2265                         v.push_back("pdflatex");
2266                         v.push_back("latex");
2267                 }
2268                 v.push_back("luatex");
2269                 v.push_back("dviluatex");
2270                 v.push_back("xetex");
2271         } else if (buffmt == "xetex") {
2272                 v.push_back("xetex");
2273                 // FIXME: need to test all languages (bug 8205)
2274                 if (!language || !language->isPolyglossiaExclusive()) {
2275                         v.push_back("luatex");
2276                         v.push_back("dviluatex");
2277                 }
2278         } else
2279                 v.push_back(buffmt);
2280
2281         v.push_back("xhtml");
2282         v.push_back("text");
2283         v.push_back("lyx");
2284         return v;
2285 }
2286
2287
2288 OutputParams::FLAVOR BufferParams::getOutputFlavor(string const & format) const
2289 {
2290         string const dformat = (format.empty() || format == "default") ?
2291                 getDefaultOutputFormat() : format;
2292         DefaultFlavorCache::const_iterator it =
2293                 default_flavors_.find(dformat);
2294
2295         if (it != default_flavors_.end())
2296                 return it->second;
2297
2298         OutputParams::FLAVOR result = OutputParams::LATEX;
2299
2300         // FIXME It'd be better not to hardcode this, but to do
2301         //       something with formats.
2302         if (dformat == "xhtml")
2303                 result = OutputParams::HTML;
2304         else if (dformat == "text")
2305                 result = OutputParams::TEXT;
2306         else if (dformat == "lyx")
2307                 result = OutputParams::LYX;
2308         else if (dformat == "pdflatex")
2309                 result = OutputParams::PDFLATEX;
2310         else if (dformat == "xetex")
2311                 result = OutputParams::XETEX;
2312         else if (dformat == "luatex")
2313                 result = OutputParams::LUATEX;
2314         else if (dformat == "dviluatex")
2315                 result = OutputParams::DVILUATEX;
2316         else {
2317                 // Try to determine flavor of default output format
2318                 vector<string> backs = backends();
2319                 if (find(backs.begin(), backs.end(), dformat) == backs.end()) {
2320                         // Get shortest path to format
2321                         Graph::EdgePath path;
2322                         for (vector<string>::const_iterator it = backs.begin();
2323                             it != backs.end(); ++it) {
2324                                 Graph::EdgePath p = theConverters().getPath(*it, dformat);
2325                                 if (!p.empty() && (path.empty() || p.size() < path.size())) {
2326                                         path = p;
2327                                 }
2328                         }
2329                         if (!path.empty())
2330                                 result = theConverters().getFlavor(path);
2331                 }
2332         }
2333         // cache this flavor
2334         default_flavors_[dformat] = result;
2335         return result;
2336 }
2337
2338
2339 string BufferParams::getDefaultOutputFormat() const
2340 {
2341         if (!default_output_format.empty()
2342             && default_output_format != "default")
2343                 return default_output_format;
2344         if (isDocBook()
2345             || encoding().package() == Encoding::japanese) {
2346                 vector<Format const *> const formats = exportableFormats(true);
2347                 if (formats.empty())
2348                         return string();
2349                 // return the first we find
2350                 return formats.front()->name();
2351         }
2352         if (useNonTeXFonts)
2353                 return lyxrc.default_otf_view_format;
2354         return lyxrc.default_view_format;
2355 }
2356
2357 Font const BufferParams::getFont() const
2358 {
2359         FontInfo f = documentClass().defaultfont();
2360         if (fonts_default_family == "rmdefault")
2361                 f.setFamily(ROMAN_FAMILY);
2362         else if (fonts_default_family == "sfdefault")
2363                 f.setFamily(SANS_FAMILY);
2364         else if (fonts_default_family == "ttdefault")
2365                 f.setFamily(TYPEWRITER_FAMILY);
2366         return Font(f, language);
2367 }
2368
2369
2370 InsetQuotes::QuoteLanguage BufferParams::getQuoteStyle(string const & qs) const
2371 {
2372         return quoteslangtranslator().find(qs);
2373 }
2374
2375
2376 bool BufferParams::isLatex() const
2377 {
2378         return documentClass().outputType() == LATEX;
2379 }
2380
2381
2382 bool BufferParams::isLiterate() const
2383 {
2384         return documentClass().outputType() == LITERATE;
2385 }
2386
2387
2388 bool BufferParams::isDocBook() const
2389 {
2390         return documentClass().outputType() == DOCBOOK;
2391 }
2392
2393
2394 void BufferParams::readPreamble(Lexer & lex)
2395 {
2396         if (lex.getString() != "\\begin_preamble")
2397                 lyxerr << "Error (BufferParams::readPreamble):"
2398                         "consistency check failed." << endl;
2399
2400         preamble = lex.getLongString("\\end_preamble");
2401 }
2402
2403
2404 void BufferParams::readLocalLayout(Lexer & lex, bool forced)
2405 {
2406         string const expected = forced ? "\\begin_forced_local_layout" :
2407                                          "\\begin_local_layout";
2408         if (lex.getString() != expected)
2409                 lyxerr << "Error (BufferParams::readLocalLayout):"
2410                         "consistency check failed." << endl;
2411
2412         if (forced)
2413                 forced_local_layout_ =
2414                         lex.getLongString("\\end_forced_local_layout");
2415         else
2416                 local_layout_ = lex.getLongString("\\end_local_layout");
2417 }
2418
2419
2420 bool BufferParams::setLanguage(string const & lang)
2421 {
2422         Language const *new_language = languages.getLanguage(lang);
2423         if (!new_language) {
2424                 // Language lang was not found
2425                 return false;
2426         }
2427         language = new_language;
2428         return true;
2429 }
2430
2431
2432 void BufferParams::readLanguage(Lexer & lex)
2433 {
2434         if (!lex.next()) return;
2435
2436         string const tmptok = lex.getString();
2437
2438         // check if tmptok is part of tex_babel in tex-defs.h
2439         if (!setLanguage(tmptok)) {
2440                 // Language tmptok was not found
2441                 language = default_language;
2442                 lyxerr << "Warning: Setting language `"
2443                        << tmptok << "' to `" << language->lang()
2444                        << "'." << endl;
2445         }
2446 }
2447
2448
2449 void BufferParams::readGraphicsDriver(Lexer & lex)
2450 {
2451         if (!lex.next())
2452                 return;
2453
2454         string const tmptok = lex.getString();
2455         // check if tmptok is part of tex_graphics in tex_defs.h
2456         int n = 0;
2457         while (true) {
2458                 string const test = tex_graphics[n++];
2459
2460                 if (test == tmptok) {
2461                         graphics_driver = tmptok;
2462                         break;
2463                 }
2464                 if (test.empty()) {
2465                         lex.printError(
2466                                 "Warning: graphics driver `$$Token' not recognized!\n"
2467                                 "         Setting graphics driver to `default'.\n");
2468                         graphics_driver = "default";
2469                         break;
2470                 }
2471         }
2472 }
2473
2474
2475 void BufferParams::readBullets(Lexer & lex)
2476 {
2477         if (!lex.next())
2478                 return;
2479
2480         int const index = lex.getInteger();
2481         lex.next();
2482         int temp_int = lex.getInteger();
2483         user_defined_bullet(index).setFont(temp_int);
2484         temp_bullet(index).setFont(temp_int);
2485         lex >> temp_int;
2486         user_defined_bullet(index).setCharacter(temp_int);
2487         temp_bullet(index).setCharacter(temp_int);
2488         lex >> temp_int;
2489         user_defined_bullet(index).setSize(temp_int);
2490         temp_bullet(index).setSize(temp_int);
2491 }
2492
2493
2494 void BufferParams::readBulletsLaTeX(Lexer & lex)
2495 {
2496         // The bullet class should be able to read this.
2497         if (!lex.next())
2498                 return;
2499         int const index = lex.getInteger();
2500         lex.next(true);
2501         docstring const temp_str = lex.getDocString();
2502
2503         user_defined_bullet(index).setText(temp_str);
2504         temp_bullet(index).setText(temp_str);
2505 }
2506
2507
2508 void BufferParams::readModules(Lexer & lex)
2509 {
2510         if (!lex.eatLine()) {
2511                 lyxerr << "Error (BufferParams::readModules):"
2512                                 "Unexpected end of input." << endl;
2513                 return;
2514         }
2515         while (true) {
2516                 string mod = lex.getString();
2517                 if (mod == "\\end_modules")
2518                         break;
2519                 addLayoutModule(mod);
2520                 lex.eatLine();
2521         }
2522 }
2523
2524
2525 void BufferParams::readRemovedModules(Lexer & lex)
2526 {
2527         if (!lex.eatLine()) {
2528                 lyxerr << "Error (BufferParams::readRemovedModules):"
2529                                 "Unexpected end of input." << endl;
2530                 return;
2531         }
2532         while (true) {
2533                 string mod = lex.getString();
2534                 if (mod == "\\end_removed_modules")
2535                         break;
2536                 removed_modules_.push_back(mod);
2537                 lex.eatLine();
2538         }
2539         // now we want to remove any removed modules that were previously
2540         // added. normally, that will be because default modules were added in
2541         // setBaseClass(), which gets called when \textclass is read at the
2542         // start of the read.
2543         list<string>::const_iterator rit = removed_modules_.begin();
2544         list<string>::const_iterator const ren = removed_modules_.end();
2545         for (; rit != ren; ++rit) {
2546                 LayoutModuleList::iterator const mit = layout_modules_.begin();
2547                 LayoutModuleList::iterator const men = layout_modules_.end();
2548                 LayoutModuleList::iterator found = find(mit, men, *rit);
2549                 if (found == men)
2550                         continue;
2551                 layout_modules_.erase(found);
2552         }
2553 }
2554
2555
2556 void BufferParams::readIncludeonly(Lexer & lex)
2557 {
2558         if (!lex.eatLine()) {
2559                 lyxerr << "Error (BufferParams::readIncludeonly):"
2560                                 "Unexpected end of input." << endl;
2561                 return;
2562         }
2563         while (true) {
2564                 string child = lex.getString();
2565                 if (child == "\\end_includeonly")
2566                         break;
2567                 included_children_.push_back(child);
2568                 lex.eatLine();
2569         }
2570 }
2571
2572
2573 string BufferParams::paperSizeName(PapersizePurpose purpose) const
2574 {
2575         switch (papersize) {
2576         case PAPER_DEFAULT:
2577                 // could be anything, so don't guess
2578                 return string();
2579         case PAPER_CUSTOM: {
2580                 if (purpose == XDVI && !paperwidth.empty() &&
2581                     !paperheight.empty()) {
2582                         // heightxwidth<unit>
2583                         string first = paperwidth;
2584                         string second = paperheight;
2585                         if (orientation == ORIENTATION_LANDSCAPE)
2586                                 first.swap(second);
2587                         // cut off unit.
2588                         return first.erase(first.length() - 2)
2589                                 + "x" + second;
2590                 }
2591                 return string();
2592         }
2593         case PAPER_A0:
2594                 // dvips and dvipdfm do not know this
2595                 if (purpose == DVIPS || purpose == DVIPDFM)
2596                         return string();
2597                 return "a0";
2598         case PAPER_A1:
2599                 if (purpose == DVIPS || purpose == DVIPDFM)
2600                         return string();
2601                 return "a1";
2602         case PAPER_A2:
2603                 if (purpose == DVIPS || purpose == DVIPDFM)
2604                         return string();
2605                 return "a2";
2606         case PAPER_A3:
2607                 return "a3";
2608         case PAPER_A4:
2609                 return "a4";
2610         case PAPER_A5:
2611                 return "a5";
2612         case PAPER_A6:
2613                 if (purpose == DVIPS || purpose == DVIPDFM)
2614                         return string();
2615                 return "a6";
2616         case PAPER_B0:
2617                 if (purpose == DVIPS || purpose == DVIPDFM)
2618                         return string();
2619                 return "b0";
2620         case PAPER_B1:
2621                 if (purpose == DVIPS || purpose == DVIPDFM)
2622                         return string();
2623                 return "b1";
2624         case PAPER_B2:
2625                 if (purpose == DVIPS || purpose == DVIPDFM)
2626                         return string();
2627                 return "b2";
2628         case PAPER_B3:
2629                 if (purpose == DVIPS || purpose == DVIPDFM)
2630                         return string();
2631                 return "b3";
2632         case PAPER_B4:
2633                 // dvipdfm does not know this
2634                 if (purpose == DVIPDFM)
2635                         return string();
2636                 return "b4";
2637         case PAPER_B5:
2638                 if (purpose == DVIPDFM)
2639                         return string();
2640                 return "b5";
2641         case PAPER_B6:
2642                 if (purpose == DVIPS || purpose == DVIPDFM)
2643                         return string();
2644                 return "b6";
2645         case PAPER_C0:
2646                 if (purpose == DVIPS || purpose == DVIPDFM)
2647                         return string();
2648                 return "c0";
2649         case PAPER_C1:
2650                 if (purpose == DVIPS || purpose == DVIPDFM)
2651                         return string();
2652                 return "c1";
2653         case PAPER_C2:
2654                 if (purpose == DVIPS || purpose == DVIPDFM)
2655                         return string();
2656                 return "c2";
2657         case PAPER_C3:
2658                 if (purpose == DVIPS || purpose == DVIPDFM)
2659                         return string();
2660                 return "c3";
2661         case PAPER_C4:
2662                 if (purpose == DVIPS || purpose == DVIPDFM)
2663                         return string();
2664                 return "c4";
2665         case PAPER_C5:
2666                 if (purpose == DVIPS || purpose == DVIPDFM)
2667                         return string();
2668                 return "c5";
2669         case PAPER_C6:
2670                 if (purpose == DVIPS || purpose == DVIPDFM)
2671                         return string();
2672                 return "c6";
2673         case PAPER_JISB0:
2674                 if (purpose == DVIPS || purpose == DVIPDFM)
2675                         return string();
2676                 return "jisb0";
2677         case PAPER_JISB1:
2678                 if (purpose == DVIPS || purpose == DVIPDFM)
2679                         return string();
2680                 return "jisb1";
2681         case PAPER_JISB2:
2682                 if (purpose == DVIPS || purpose == DVIPDFM)
2683                         return string();
2684                 return "jisb2";
2685         case PAPER_JISB3:
2686                 if (purpose == DVIPS || purpose == DVIPDFM)
2687                         return string();
2688                 return "jisb3";
2689         case PAPER_JISB4:
2690                 if (purpose == DVIPS || purpose == DVIPDFM)
2691                         return string();
2692                 return "jisb4";
2693         case PAPER_JISB5:
2694                 if (purpose == DVIPS || purpose == DVIPDFM)
2695                         return string();
2696                 return "jisb5";
2697         case PAPER_JISB6:
2698                 if (purpose == DVIPS || purpose == DVIPDFM)
2699                         return string();
2700                 return "jisb6";
2701         case PAPER_USEXECUTIVE:
2702                 // dvipdfm does not know this
2703                 if (purpose == DVIPDFM)
2704                         return string();
2705                 return "foolscap";
2706         case PAPER_USLEGAL:
2707                 return "legal";
2708         case PAPER_USLETTER:
2709         default:
2710                 if (purpose == XDVI)
2711                         return "us";
2712                 return "letter";
2713         }
2714 }
2715
2716
2717 string const BufferParams::dvips_options() const
2718 {
2719         string result;
2720
2721         // If the class loads the geometry package, we do not know which
2722         // paper size is used, since we do not set it (bug 7013).
2723         // Therefore we must not specify any argument here.
2724         // dvips gets the correct paper size via DVI specials in this case
2725         // (if the class uses the geometry package correctly).
2726         if (documentClass().provides("geometry"))
2727                 return result;
2728
2729         if (use_geometry
2730             && papersize == PAPER_CUSTOM
2731             && !lyxrc.print_paper_dimension_flag.empty()
2732             && !paperwidth.empty()
2733             && !paperheight.empty()) {
2734                 // using a custom papersize
2735                 result = lyxrc.print_paper_dimension_flag;
2736                 result += ' ' + paperwidth;
2737                 result += ',' + paperheight;
2738         } else {
2739                 string const paper_option = paperSizeName(DVIPS);
2740                 if (!paper_option.empty() && (paper_option != "letter" ||
2741                     orientation != ORIENTATION_LANDSCAPE)) {
2742                         // dvips won't accept -t letter -t landscape.
2743                         // In all other cases, include the paper size
2744                         // explicitly.
2745                         result = lyxrc.print_paper_flag;
2746                         result += ' ' + paper_option;
2747                 }
2748         }
2749         if (orientation == ORIENTATION_LANDSCAPE &&
2750             papersize != PAPER_CUSTOM)
2751                 result += ' ' + lyxrc.print_landscape_flag;
2752         return result;
2753 }
2754
2755
2756 string const BufferParams::font_encoding() const
2757 {
2758         return (fontenc == "global") ? lyxrc.fontenc : fontenc;
2759 }
2760
2761
2762 string BufferParams::babelCall(string const & lang_opts, bool const langoptions) const
2763 {
2764         // suppress the babel call if there is no BabelName defined
2765         // for the document language in the lib/languages file and if no
2766         // other languages are used (lang_opts is then empty)
2767         if (lang_opts.empty())
2768                 return string();
2769         // either a specific language (AsBabelOptions setting in
2770         // lib/languages) or the prefs require the languages to
2771         // be submitted to babel itself (not the class).
2772         if (langoptions)
2773                 return "\\usepackage[" + lang_opts + "]{babel}";
2774         return "\\usepackage{babel}";
2775 }
2776
2777
2778 docstring BufferParams::getGraphicsDriver(string const & package) const
2779 {
2780         docstring result;
2781
2782         if (package == "geometry") {
2783                 if (graphics_driver == "dvips"
2784                     || graphics_driver == "dvipdfm"
2785                     || graphics_driver == "pdftex"
2786                     || graphics_driver == "vtex")
2787                         result = from_ascii(graphics_driver);
2788                 else if (graphics_driver == "dvipdfmx")
2789                         result = from_ascii("dvipdfm");
2790         }
2791
2792         return result;
2793 }
2794
2795
2796 void BufferParams::writeEncodingPreamble(otexstream & os,
2797                                          LaTeXFeatures & features) const
2798 {
2799         // XeTeX does not need this
2800         if (features.runparams().flavor == OutputParams::XETEX)
2801                 return;
2802         // LuaTeX neither, but with tex fonts, we need to load
2803         // the luainputenc package.
2804         if (features.runparams().flavor == OutputParams::LUATEX
2805                 || features.runparams().flavor == OutputParams::DVILUATEX) {
2806                 if (!useNonTeXFonts && inputenc != "default"
2807                     && ((inputenc == "auto" && language->encoding()->package() == Encoding::inputenc)
2808                         || (inputenc != "auto" && encoding().package() == Encoding::inputenc))) {
2809                         os << "\\usepackage[utf8]{luainputenc}\n";
2810                 }
2811                 return;
2812         }
2813         if (inputenc == "auto") {
2814                 string const doc_encoding =
2815                         language->encoding()->latexName();
2816                 Encoding::Package const package =
2817                         language->encoding()->package();
2818
2819                 // Create a list with all the input encodings used
2820                 // in the document
2821                 set<string> encodings =
2822                         features.getEncodingSet(doc_encoding);
2823
2824                 // If the "japanese" package (i.e. pLaTeX) is used,
2825                 // inputenc must be omitted.
2826                 // see http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg129680.html
2827                 if ((!encodings.empty() || package == Encoding::inputenc)
2828                     && !features.isRequired("japanese")) {
2829                         os << "\\usepackage[";
2830                         set<string>::const_iterator it = encodings.begin();
2831                         set<string>::const_iterator const end = encodings.end();
2832                         if (it != end) {
2833                                 os << from_ascii(*it);
2834                                 ++it;
2835                         }
2836                         for (; it != end; ++it)
2837                                 os << ',' << from_ascii(*it);
2838                         if (package == Encoding::inputenc) {
2839                                 if (!encodings.empty())
2840                                         os << ',';
2841                                 os << from_ascii(doc_encoding);
2842                         }
2843                         os << "]{inputenc}\n";
2844                 }
2845                 if (package == Encoding::CJK || features.mustProvide("CJK")) {
2846                         if (language->encoding()->name() == "utf8-cjk"
2847                             && LaTeXFeatures::isAvailable("CJKutf8"))
2848                                 os << "\\usepackage{CJKutf8}\n";
2849                         else
2850                                 os << "\\usepackage{CJK}\n";
2851                 }
2852         } else if (inputenc != "default") {
2853                 switch (encoding().package()) {
2854                 case Encoding::none:
2855                 case Encoding::japanese:
2856                         break;
2857                 case Encoding::inputenc:
2858                         // do not load inputenc if japanese is used
2859                         if (features.isRequired("japanese"))
2860                                 break;
2861                         os << "\\usepackage[" << from_ascii(encoding().latexName())
2862                            << "]{inputenc}\n";
2863                         break;
2864                 case Encoding::CJK:
2865                         if (encoding().name() == "utf8-cjk"
2866                             && LaTeXFeatures::isAvailable("CJKutf8"))
2867                                 os << "\\usepackage{CJKutf8}\n";
2868                         else
2869                                 os << "\\usepackage{CJK}\n";
2870                         break;
2871                 }
2872                 // Load the CJK package if needed by a secondary language.
2873                 // If the main encoding is some variant of UTF8, use CJKutf8.
2874                 if (encoding().package() != Encoding::CJK && features.mustProvide("CJK")) {
2875                         if (encoding().iconvName() == "UTF-8"
2876                             && LaTeXFeatures::isAvailable("CJKutf8"))
2877                                 os << "\\usepackage{CJKutf8}\n";
2878                         else
2879                                 os << "\\usepackage{CJK}\n";
2880                 }
2881         }
2882 }
2883
2884
2885 string const BufferParams::parseFontName(string const & name) const
2886 {
2887         string mangled = name;
2888         size_t const idx = mangled.find('[');
2889         if (idx == string::npos || idx == 0)
2890                 return mangled;
2891         else
2892                 return mangled.substr(0, idx - 1);
2893 }
2894
2895
2896 string const BufferParams::loadFonts(LaTeXFeatures & features) const
2897 {
2898         if (fonts_roman == "default" && fonts_sans == "default"
2899             && fonts_typewriter == "default"
2900             && (fonts_math == "default" || fonts_math == "auto"))
2901                 //nothing to do
2902                 return string();
2903
2904         ostringstream os;
2905
2906         /* Fontspec (XeTeX, LuaTeX): we provide GUI support for oldstyle
2907          * numbers (Numbers=OldStyle) and sf/tt scaling. The Ligatures=TeX/
2908          * Mapping=tex-text option assures TeX ligatures (such as "--")
2909          * are resolved. Note that tt does not use these ligatures.
2910          * TODO:
2911          *    -- add more GUI options?
2912          *    -- add more fonts (fonts for other scripts)
2913          *    -- if there's a way to find out if a font really supports
2914          *       OldStyle, enable/disable the widget accordingly.
2915         */
2916         if (useNonTeXFonts && features.isAvailable("fontspec")) {
2917                 // "Mapping=tex-text" and "Ligatures=TeX" are equivalent.
2918                 // However, until v.2 (2010/07/11) fontspec only knew
2919                 // Mapping=tex-text (for XeTeX only); then "Ligatures=TeX"
2920                 // was introduced for both XeTeX and LuaTeX (LuaTeX
2921                 // didn't understand "Mapping=tex-text", while XeTeX
2922                 // understood both. With most recent versions, both
2923                 // variants are understood by both engines. However,
2924                 // we want to provide support for at least TeXLive 2009
2925                 // (for XeTeX; LuaTeX is only supported as of v.2)
2926                 string const texmapping =
2927                         (features.runparams().flavor == OutputParams::XETEX) ?
2928                         "Mapping=tex-text" : "Ligatures=TeX";
2929                 if (fonts_roman != "default") {
2930                         os << "\\setmainfont[" << texmapping;
2931                         if (fonts_old_figures)
2932                                 os << ",Numbers=OldStyle";
2933                         os << "]{" << parseFontName(fonts_roman) << "}\n";
2934                 }
2935                 if (fonts_sans != "default") {
2936                         string const sans = parseFontName(fonts_sans);
2937                         if (fonts_sans_scale != 100)
2938                                 os << "\\setsansfont[Scale="
2939                                    << float(fonts_sans_scale) / 100
2940                                    << "," << texmapping << "]{"
2941                                    << sans << "}\n";
2942                         else
2943                                 os << "\\setsansfont[" << texmapping << "]{"
2944                                    << sans << "}\n";
2945                 }
2946                 if (fonts_typewriter != "default") {
2947                         string const mono = parseFontName(fonts_typewriter);
2948                         if (fonts_typewriter_scale != 100)
2949                                 os << "\\setmonofont[Scale="
2950                                    << float(fonts_typewriter_scale) / 100
2951                                    << "]{"
2952                                    << mono << "}\n";
2953                         else
2954                                 os << "\\setmonofont{"
2955                                    << mono << "}\n";
2956                 }
2957                 return os.str();
2958         }
2959
2960         // Tex Fonts
2961         bool const ot1 = (font_encoding() == "default" || font_encoding() == "OT1");
2962         bool const dryrun = features.runparams().dryrun;
2963         bool const complete = (fonts_sans == "default" && fonts_typewriter == "default");
2964         bool const nomath = (fonts_math == "default");
2965
2966         // ROMAN FONTS
2967         os << theLaTeXFonts().getLaTeXFont(from_ascii(fonts_roman)).getLaTeXCode(
2968                 dryrun, ot1, complete, fonts_expert_sc, fonts_old_figures,
2969                 nomath);
2970
2971         // SANS SERIF
2972         os << theLaTeXFonts().getLaTeXFont(from_ascii(fonts_sans)).getLaTeXCode(
2973                 dryrun, ot1, complete, fonts_expert_sc, fonts_old_figures,
2974                 nomath, fonts_sans_scale);
2975
2976         // MONOSPACED/TYPEWRITER
2977         os << theLaTeXFonts().getLaTeXFont(from_ascii(fonts_typewriter)).getLaTeXCode(
2978                 dryrun, ot1, complete, fonts_expert_sc, fonts_old_figures,
2979                 nomath, fonts_typewriter_scale);
2980
2981         // MATH
2982         os << theLaTeXFonts().getLaTeXFont(from_ascii(fonts_math)).getLaTeXCode(
2983                 dryrun, ot1, complete, fonts_expert_sc, fonts_old_figures,
2984                 nomath);
2985
2986         return os.str();
2987 }
2988
2989
2990 Encoding const & BufferParams::encoding() const
2991 {
2992         // FIXME: actually, we should check for the flavor
2993         // or runparams.isFullyUnicode() here:
2994         // This check will not work with XeTeX/LuaTeX and tex fonts.
2995         // Thus we have to reset the encoding in Buffer::makeLaTeXFile.
2996         if (useNonTeXFonts)
2997                 return *(encodings.fromLyXName("utf8-plain"));
2998         if (inputenc == "auto" || inputenc == "default")
2999                 return *language->encoding();
3000         Encoding const * const enc = encodings.fromLyXName(inputenc);
3001         if (enc)
3002                 return *enc;
3003         LYXERR0("Unknown inputenc value `" << inputenc
3004                << "'. Using `auto' instead.");
3005         return *language->encoding();
3006 }
3007
3008
3009 bool BufferParams::addCiteEngine(string const & engine)
3010 {
3011         LayoutModuleList::const_iterator it = cite_engine_.begin();
3012         LayoutModuleList::const_iterator en = cite_engine_.end();
3013         for (; it != en; ++it)
3014                 if (*it == engine)
3015                         return false;
3016         cite_engine_.push_back(engine);
3017         return true;
3018 }
3019
3020
3021 bool BufferParams::addCiteEngine(vector<string> const & engine)
3022 {
3023         vector<string>::const_iterator it = engine.begin();
3024         vector<string>::const_iterator en = engine.end();
3025         bool ret = true;
3026         for (; it != en; ++it)
3027                 if (!addCiteEngine(*it))
3028                         ret = false;
3029         return ret;
3030 }
3031
3032
3033 string const & BufferParams::defaultBiblioStyle() const
3034 {
3035         return documentClass().defaultBiblioStyle();
3036 }
3037
3038
3039 bool const & BufferParams::fullAuthorList() const
3040 {
3041         return documentClass().fullAuthorList();
3042 }
3043
3044
3045 void BufferParams::setCiteEngine(string const & engine)
3046 {
3047         clearCiteEngine();
3048         addCiteEngine(engine);
3049 }
3050
3051
3052 void BufferParams::setCiteEngine(vector<string> const & engine)
3053 {
3054         clearCiteEngine();
3055         addCiteEngine(engine);
3056 }
3057
3058
3059 vector<string> BufferParams::citeCommands() const
3060 {
3061         static CitationStyle const default_style;
3062         vector<string> commands =
3063                 documentClass().citeCommands(citeEngineType());
3064         if (commands.empty())
3065                 commands.push_back(default_style.cmd);
3066         return commands;
3067 }
3068
3069
3070 vector<CitationStyle> BufferParams::citeStyles() const
3071 {
3072         static CitationStyle const default_style;
3073         vector<CitationStyle> styles =
3074                 documentClass().citeStyles(citeEngineType());
3075         if (styles.empty())
3076                 styles.push_back(default_style);
3077         return styles;
3078 }
3079
3080 } // namespace lyx