]> git.lyx.org Git - lyx.git/blob - src/PDFOptions.cpp
664688826af18c979ca6de990577f3e3337eaeb1
[lyx.git] / src / PDFOptions.cpp
1 /**
2  * \file PDFoptions.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Pavel Sanda
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "PDFOptions.h"
15
16 #include "Encoding.h"
17 #include "Lexer.h"
18
19 #include "support/convert.h"
20 #include "support/debug.h"
21 #include "support/lstrings.h"
22
23 #include <sstream>
24 #include <string>
25 #include <algorithm>
26
27 using namespace std;
28 using namespace lyx::support;
29
30 namespace lyx {
31
32
33 const string PDFOptions::pagemode_fullscreen("FullScreen");
34
35 bool PDFOptions::empty() const
36 {
37         PDFOptions x; //implicit hyperref settings
38
39         return  author == x.author
40                 && title == x.title
41                 && subject == x.subject
42                 && keywords == x.keywords
43                 && pagemode == x.pagemode
44                 && quoted_options == x.quoted_options
45                 && bookmarks == x.bookmarks
46                 && bookmarksnumbered == x.bookmarksnumbered
47                 && bookmarksopen == x.bookmarksopen
48                 && bookmarksopenlevel == x.bookmarksopenlevel
49                 && breaklinks == x.breaklinks
50                 && pdfborder == x.pdfborder
51                 && colorlinks == x.colorlinks
52                 && backref == x.backref
53                 && pdfusetitle == x.pdfusetitle;
54 }
55
56
57 void PDFOptions::writeFile(ostream & os) const
58 {
59         os << "\\use_hyperref " << convert<string>(use_hyperref) << '\n';
60         if (!use_hyperref && empty())
61                 return;
62         
63         if (!title.empty() )
64                 os << "\\pdf_title \"" << title << "\"\n";
65         if (!author.empty())
66                 os << "\\pdf_author \"" << author << "\"\n";
67         if (!subject.empty())
68                 os << "\\pdf_subject \"" << subject << "\"\n";
69         if (!keywords.empty())
70                 os << "\\pdf_keywords \"" << keywords << "\"\n";
71         
72         
73         os << "\\pdf_bookmarks " << convert<string>(bookmarks) << '\n';
74         os << "\\pdf_bookmarksnumbered " << convert<string>(bookmarksnumbered) << '\n';
75         os << "\\pdf_bookmarksopen " << convert<string>(bookmarksopen) << '\n';
76         os << "\\pdf_bookmarksopenlevel " << bookmarksopenlevel << '\n';
77         
78         os << "\\pdf_breaklinks "  << convert<string>(breaklinks)  << '\n';
79         os << "\\pdf_pdfborder "   << convert<string>(pdfborder)   << '\n';
80         os << "\\pdf_colorlinks "  << convert<string>(colorlinks)  << '\n';
81         os << "\\pdf_backref "     << backref << '\n';
82         os << "\\pdf_pdfusetitle " << convert<string>(pdfusetitle) << '\n';
83         
84         if (!pagemode.empty())
85                 os << "\\pdf_pagemode " << pagemode << '\n';
86         
87         if (!quoted_options.empty())
88                 os << "\\pdf_quoted_options \"" << quoted_options << "\"\n";
89 }
90
91
92 void PDFOptions::writeLaTeX(OutputParams & runparams, otexstream & os,
93                             bool hyperref_already_provided) const
94 {
95         // FIXME Unicode
96         string opt;
97         string hyperset;
98         
99         // since LyX uses unicode, also set the PDF strings to unicode strings with the
100         // hyperref option "unicode"
101         opt += "unicode=true,";
102
103         // only use the hyperref settings if hyperref is enabled by the user
104         // see bug #7052
105         if (use_hyperref) {
106                 // try to extract author and title from document when none is
107                 // explicitly given
108                 if (pdfusetitle && title.empty() && author.empty())
109                         opt += "pdfusetitle,";
110                 opt += "\n ";
111                 opt += "bookmarks=" + convert<string>(bookmarks) + ',';
112                 if (bookmarks) {
113                         opt += "bookmarksnumbered=" + convert<string>(bookmarksnumbered) + ',';
114                         opt += "bookmarksopen=" + convert<string>(bookmarksopen) + ',';
115                         if (bookmarksopen)
116                                 opt += "bookmarksopenlevel="
117                                 + convert<string>(bookmarksopenlevel) + ',';
118                 }
119                 opt += "\n ";
120                 opt += "breaklinks=" + convert<string>(breaklinks) + ',';
121                 opt += "pdfborder={0 0 ";
122                 opt += (pdfborder ? '0' : '1');
123                 opt += "},";
124                 if (pdfborder)
125                         opt += "pdfborderstyle={},";
126                 opt += "backref=" + backref + ',';
127                 opt += "colorlinks=" + convert<string>(colorlinks) + ',';
128                 if (!pagemode.empty())
129                         opt += "pdfpagemode=" + pagemode + ',';
130
131                 // load the pdftitle etc. as hypersetup, otherwise you'll get
132                 // LaTeX-errors when using non-latin characters
133                 if (!title.empty())
134                         hyperset += "pdftitle={" + title + "},";
135                 if (!author.empty())                    
136                         hyperset += "\n pdfauthor={" + author + "},";
137                 if (!subject.empty())
138                         hyperset += "\n pdfsubject={" + subject + "},";
139                 if (!keywords.empty())
140                         hyperset += "\n pdfkeywords={" + keywords + "},";
141                 if (!quoted_options.empty()){
142                         hyperset += "\n ";
143                         hyperset += quoted_options;
144                 }
145                 hyperset = rtrim(hyperset,",");
146         }
147
148         // check if the hyperref settings use an encoding that exceeds
149         // ours. If so, we have to switch to utf8.
150         Encoding const * const enc = runparams.encoding;
151         docstring const hs = from_utf8(hyperset);
152         bool need_unicode = false;
153         if (enc) {
154                 for (size_t n = 0; n < hs.size(); ++n) {
155                         if (!enc->encodable(hs[n]))
156                                 need_unicode = true;
157                 }
158         }
159
160         // use in \\usepackage parameter as not all options can be handled inside \\hypersetup
161         if (!hyperref_already_provided) {
162                 opt = rtrim(opt, ",");
163                 opt = "\\usepackage[" + opt + "]\n {hyperref}\n";
164
165                 if (!hyperset.empty())
166                         opt += "\\hypersetup{" + hyperset + "}\n";
167         } else {
168                 // only in case hyperref is already loaded by the current text class
169                 // try to put it into hyperset
170                 //
171                 // FIXME: rename in this case the PDF settings dialog checkbox
172                 //  label from "Use Hyperref" to "Customize Hyperref Settings"
173                 //  as discussd in bug #6293
174                 opt = "\\hypersetup{" + rtrim(opt + hyperset, ",") + "}\n";
175         }
176
177         // hyperref expects LICR macros for non-ASCII chars. With Xe/LuaTeX utf-8 works, too.
178         // Usually, "(lua)inputenc" converts the input to LICR.
179         // As hyperref provides good coverage for \inputencoding{utf8}, we can try
180         // this if the current input encoding does not support a character.
181         // FIXME: inputenc (part 1 of 2)
182         //   Replace the "FullUnicode" check with
183         //   check for loading of inputenc or luainputenc package
184         //   (see BufferParams::writeEncodingPreamble and runparams.encoding->package()).
185         //   Otherwise \inputencoding is not defined
186         //   (e.g. if "latex-encoding" is set to "ascii").
187         //   Dont forget to keep the check below (part 2) in sync!
188         if (need_unicode && enc && enc->iconvName() != "UTF-8"
189             &&!runparams.isFullUnicode()) {
190                 os << "\\inputencoding{utf8}\n"
191                    << setEncoding("UTF-8");
192         }
193         // If hyperref is loaded by the document class, we output
194         // \hypersetup \AtBeginDocument if hypersetup is not (yet)
195         // defined. In this case, the class loads hyperref late
196         // (see bug #7048).
197         if (hyperref_already_provided && !opt.empty()) {
198                 os << "\\ifx\\hypersetup\\undefined\n"
199                    << "  \\AtBeginDocument{%\n    "
200                    << from_utf8(opt)
201                    << "  }\n"
202                    << "\\else\n  "
203                    << from_utf8(opt)
204                    << "\\fi\n";
205         } else
206                 os << from_utf8(opt);
207         // FIXME: inputenc (part 2 of 2)
208         if (need_unicode && enc && enc->iconvName() != "UTF-8"
209             &&!runparams.isFullUnicode()) {
210                 os << setEncoding(enc->iconvName())
211                    << "\\inputencoding{" << from_ascii(enc->latexName()) << "}\n";
212         }
213 }
214
215
216 string PDFOptions::readToken(Lexer &lex, string const & token)
217 {
218         if (token == "\\use_hyperref") {
219                 lex >> use_hyperref;
220         } else if (token == "\\pdf_title") {
221                 lex >> title;
222         } else if (token == "\\pdf_author") {
223                 lex >> author;
224         } else if (token == "\\pdf_subject") {
225                 lex >> subject;
226         } else if (token == "\\pdf_keywords") {
227                 lex >> keywords;
228         } else if (token == "\\pdf_bookmarks") {
229                 lex >> bookmarks;
230         } else if (token == "\\pdf_bookmarksnumbered") {
231                 lex >> bookmarksnumbered;
232         } else if (token == "\\pdf_bookmarksopen") {
233                 lex >> bookmarksopen;
234         } else if (token == "\\pdf_bookmarksopenlevel") {
235                 lex >> bookmarksopenlevel;
236         } else if (token == "\\pdf_breaklinks") {
237                 lex >> breaklinks;
238         } else if (token == "\\pdf_pdfborder") {
239                 lex >> pdfborder;
240         } else if (token == "\\pdf_colorlinks") {
241                 lex >> colorlinks;
242         } else if (token == "\\pdf_backref") {
243                 lex >> backref;
244         } else if (token == "\\pdf_pdfusetitle") {
245                 lex >> pdfusetitle;
246         } else if (token == "\\pdf_pagemode") {
247                 lex >> pagemode;
248         } else if (token == "\\pdf_quoted_options") {
249                 lex >> quoted_options;
250         } else {
251                 return token;
252         }
253         return string();
254 }
255
256
257 // check the string from UI
258 string PDFOptions::quoted_options_check(string const & str) const
259 {
260         return subst(str, "\n", "");
261 }
262
263
264 // set implicit settings for hyperref
265 void PDFOptions::clear()
266 {
267         use_hyperref            = false;
268         title.clear();
269         author.clear();
270         subject.clear();
271         keywords.clear();
272         bookmarks               = true;
273         bookmarksnumbered       = false;
274         bookmarksopen           = false;
275         bookmarksopenlevel      = 1;
276         breaklinks              = false;
277         pdfborder               = false;
278         colorlinks              = false;
279         backref                 = "false";
280         pagemode.clear();
281         quoted_options.clear();
282         pdfusetitle             = true;  //in contrast with hyperref
283 }
284
285 } // namespace lyx