]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / LaTeXFeatures.h
index df071c671b2658419f439272d086eab7ae7167c7..7353f0c6b6a80ffeea8ded431191c82d47f2bef8 100644 (file)
@@ -95,7 +95,8 @@ public:
        void addPreambleSnippet(docstring const & snippet, bool allowdupes = false);
        ///
        TexString getPreambleSnippets() const;
-       ///
+       /// Adds CSS information for HTML export.
+       /// Note that addPreambleSnippet is for LaTeX-type export
        void addCSSSnippet(std::string const &);
        ///
        docstring getCSSSnippets() const;
@@ -163,6 +164,10 @@ public:
        bool inDeletedInset() const { return in_deleted_inset_; }
        /// are we in a deleted inset?
        void inDeletedInset(bool const b) { in_deleted_inset_ = b; }
+       /// set savenote environment (footnote package)
+       std::string saveNoteEnv() const { return savenote_env_; }
+       /// return savenote environment
+       void saveNoteEnv(std::string const s) { savenote_env_ = s; }
        /// Runparams that will be used for exporting this file.
        OutputParams const & runparams() const { return runparams_; }
        /// Resolve alternatives like "esint|amsmath|wasysym"
@@ -173,6 +178,8 @@ public:
        void setHTMLTitle(docstring const & t) { htmltitle_ = t; }
        ///
        docstring const & htmlTitle() const { return htmltitle_; }
+       ///
+       bool hasRTLLanguage() const;
 
 private:
        ///
@@ -221,6 +228,8 @@ private:
        bool in_deleted_inset_;
        ///
        docstring htmltitle_;
+       ///
+       std::string savenote_env_;
 };