]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Limit the nopassthurchars case in beamer to URL
[lyx.git] / src / BufferParams.h
index 578070eb6ce28c4780d4776e51f19b6d8d3b2256..92c1418da1f2cb5e9c58ba2413a40e9c808b25a6 100644 (file)
 
 #include "Citation.h"
 #include "ColorCode.h"
+#include "ColorSet.h"
 #include "DocumentClassPtr.h"
 #include "LayoutModuleList.h"
 #include "paper.h"
+#include "WordLangTuple.h"
 
 #include "support/copied_ptr.h"
 #include "support/types.h"
 
 namespace lyx {
 
-namespace support { class FileName; }
+namespace support {
+class FileName;
+class Lexer;
+}
 
 class Author;
 class AuthorList;
@@ -46,7 +51,7 @@ class LaTeXFeatures;
 class LayoutFile;
 class LayoutFileIndex;
 class Length;
-class Lexer;
+class OutputParams;
 class otexstream;
 class PDFOptions;
 class Spacing;
@@ -76,9 +81,9 @@ public:
        docstring B_(std::string const & l10n) const;
 
        /// read a header token, if unrecognised, return it or an unknown class name
-       std::string readToken(Lexer & lex,
+       std::string readToken(support::Lexer & lex,
                std::string const & token, ///< token to read.
-               support::FileName const & filepath);
+               support::FileName const & filename);
 
        ///
        void writeFile(std::ostream &, Buffer const *) const;
@@ -151,7 +156,7 @@ public:
        /// on to class BufferView::updateDocumentClass(). The exception, of course,
        /// is in GuiDocument, where we use a BufferParams simply to hold a copy of
        /// the parameters from the active Buffer.
-       void makeDocumentClass(bool const clone = false);
+       void makeDocumentClass(bool clone = false, bool internal = false);
        /// Returns the DocumentClass currently in use: the BaseClass as modified
        /// by modules.
        DocumentClass const & documentClass() const;
@@ -192,6 +197,12 @@ public:
        bool isLatex() const;
        /// returns \c true if the buffer contains a Wed document
        bool isLiterate() const;
+       /// Is this package option requested?
+       bool hasPackageOption(std::string const package, std::string const opt) const;
+       /// Get the options requested for a given package
+       std::string getPackageOptions(std::string const package) const;
+       /// Do we use the bidi package (which does some reordering and stuff)?
+       bool useBidiPackage(OutputParams const & rp) const;
 
        /// return the format of the buffer on a string
        std::string bufferFormat() const;
@@ -334,6 +345,10 @@ public:
        /// IndicesList:
        IndicesList & indiceslist();
        IndicesList const & indiceslist() const;
+       ///
+       WordLangTable & spellignore();
+       WordLangTable const & spellignore() const;
+       bool spellignored(WordLangTuple const & wl) const;
        /**
         * The LyX name of the input encoding for LaTeX. This can be one of
         * - \c auto: find out the input encoding from the used languages
@@ -361,6 +376,8 @@ public:
        std::string origin;
        ///
        docstring preamble;
+       /// DocumentMetadata as introduced by LaTeX 2022/06
+       docstring document_metadata;
        ///
        std::string options;
        /// use the class options defined in the layout?
@@ -396,7 +413,11 @@ public:
        ///
        RGBColor notefontcolor;
        ///
+       bool isnotefontcolor;
+       ///
        RGBColor boxbgcolor;
+       ///
+       bool isboxbgcolor;
        /// \param index should lie in the range 0 <= \c index <= 3.
        Bullet & temp_bullet(size_type index);
        Bullet const & temp_bullet(size_type index) const;
@@ -508,7 +529,7 @@ public:
        std::vector<CitationStyle> citeStyles() const;
 
        /// Return the actual bibtex command (lyxrc or buffer param)
-       std::string const bibtexCommand() const;
+       std::string const bibtexCommand(bool const warn = false) const;
 
        /// Are we using biblatex?
        bool useBiblatex() const;
@@ -572,6 +593,15 @@ public:
        /// what format to use for table output in DocBook. present choices are above
        TableOutput docbook_table_output;
 
+       // do not change these values. we rely upon them.
+       enum MathMLNameSpacePrefix {
+               NoPrefix = 0,
+               MPrefix = 1,
+               MMLPrefix = 2
+       };
+       /// what prefix to use when outputting MathML. present choices are above
+       MathMLNameSpacePrefix docbook_mathml_prefix;
+
        /// allow the LaTeX backend to run external programs
        bool shell_escape;
        /// generate output usable for reverse/forward search
@@ -580,6 +610,8 @@ public:
        std::string output_sync_macro;
        /// use refstyle? or prettyref?
        bool use_refstyle;
+       /// use formatted references in the workarea?
+       bool use_formatted_ref;
        /// use minted? or listings?
        bool use_minted;
        //output line numbering
@@ -599,23 +631,25 @@ public:
 
 private:
        ///
-       void readPreamble(Lexer &);
+       void readPreamble(support::Lexer &);
+       ///
+       void readDocumentMetadata(support::Lexer &);
        ///
-       void readLocalLayout(Lexer &, bool);
+       void readLocalLayout(support::Lexer &, bool);
        ///
-       void readLanguage(Lexer &);
+       void readLanguage(support::Lexer &);
        ///
-       void readGraphicsDriver(Lexer &);
+       void readGraphicsDriver(support::Lexer &);
        ///
-       void readBullets(Lexer &);
+       void readBullets(support::Lexer &);
        ///
-       void readBulletsLaTeX(Lexer &);
+       void readBulletsLaTeX(support::Lexer &);
        ///
-       void readModules(Lexer &);
+       void readModules(support::Lexer &);
        ///
-       void readRemovedModules(Lexer &);
+       void readRemovedModules(support::Lexer &);
        ///
-       void readIncludeonly(Lexer &);
+       void readIncludeonly(support::Lexer &);
        /// A cache for the default flavors
        typedef std::map<std::string, Flavor> DefaultFlavorCache;
        ///
@@ -632,6 +666,9 @@ private:
        std::map<std::string, std::string> bib_encodings;
        /// Split bibliography?
        bool use_bibtopic;
+       /// Return the actual or an appropriate fallback bibtex command
+       std::string const getBibtexCommand(std::string const cmd,
+                                          bool const warn) const;
        ///
        DocumentClassPtr doc_class_;
        ///
@@ -665,6 +702,10 @@ private:
        support::copied_ptr<Impl, MemoryTraits> pimpl_;
 };
 
+
+///
+BufferParams const & defaultBufferParams();
+
 } // namespace lyx
 
 #endif