X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FPDFOptions.h;h=d74caf430e638c65cd353970b6bdc0f2554113df;hb=670efa8f646218f2a378f0cc614c4c37a9f6b89a;hp=47e4c4136c07072340ed9eb29616d3ee147b118e;hpb=110090e43596eb974d987d5370fba1b4b74f3774;p=lyx.git diff --git a/src/PDFOptions.h b/src/PDFOptions.h index 47e4c4136c..d74caf430e 100644 --- a/src/PDFOptions.h +++ b/src/PDFOptions.h @@ -12,6 +12,8 @@ #ifndef PDFOPTIONS_H #define PDFOPTIONS_H +#include "OutputParams.h" + #include "support/strfwd.h" #include @@ -20,6 +22,10 @@ namespace lyx { class Lexer; +// FIXME UNICODE +// Write functions need to use odostream instead of ostream before +// we can use docstring instead of string. + /// Options for PDF generation class PDFOptions { public: @@ -30,7 +36,8 @@ public: /// output to lyx header void writeFile(std::ostream &) const; /// output to tex header - void writeLaTeX(odocstream &, bool hyperref_already_provided) const; + void writeLaTeX(OutputParams &, otexstream &, + bool hyperref_already_provided) const; /// read tokens from lyx header std::string readToken(Lexer &lex, std::string const & token); /// set implicit settings for hyperref @@ -92,18 +99,14 @@ public: bool colorlinks; /** * Adds backlink text to the end of each item in the bibliography, - * as a list of section numbers. + * as a list of section/slide/page numbers. * This can only work properly if there is a blank line after each * \bibitem. - * backref boolean false - */ - bool backref; - /** - * Adds backlink text to the end of each item in the bibliography, - * as a list of page numbers. - * pagebackref boolean false + * backref string empty(="section"), "false", "section", "slide", "page" + * + * Internally we use false/section/slide/pages. See also bug 5340. */ - bool pagebackref; + std::string backref; /** * Determines how the file is opening in Acrobat; * the possibilities are None, UseThumbs (show thumbnails), UseOutlines @@ -138,15 +141,7 @@ public: * Returns repaired string. For the time being only newlines * are checked. */ - std::string quoted_options_check(std::string const str) const; - - - /** - * Flag indicating whether user made some input into PDF preferences. - * We want to save options, when user decide to switch off PDF support - * for a while. - */ - bool store_options; + std::string quoted_options_check(std::string const & str) const; }; } // namespace lyx