]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Disable CheckTeX while buffer is processed
[lyx.git] / src / LaTeXFeatures.h
index 9fbc134fd496d1587ca32d4fba2a3ba5731a7d84..72451ad8eeb80bc6505dba456d5f6fe7cd28ec64 100644 (file)
@@ -73,7 +73,8 @@ public:
        /// The definitions needed by the document's textclass
        docstring const getTClassPreamble() const;
        /// The language dependent definitions needed by the document's textclass
-       docstring const getTClassI18nPreamble(bool use_babel, bool use_polyglossia) const;
+       docstring const getTClassI18nPreamble(bool use_babel,
+                               bool use_polyglossia, bool use_minted) const;
        ///
        docstring const getTClassHTMLStyles() const;
        ///
@@ -131,7 +132,7 @@ public:
        ///
        std::string getBabelLanguages() const;
        ///
-       std::map<std::string, std::string> getPolyglossiaLanguages() const;
+       std::set<std::string> getPolyglossiaLanguages() const;
        ///
        std::set<std::string> getEncodingSet(std::string const & doc_encoding) const;
        ///
@@ -162,6 +163,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"
@@ -220,6 +225,8 @@ private:
        bool in_deleted_inset_;
        ///
        docstring htmltitle_;
+       ///
+       std::string savenote_env_;
 };