]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Attempt to fix #8137 (arrived at r40862).
[lyx.git] / src / LaTeXFeatures.h
index a1164e6fef94257e3bd60b6ee980d18e85dd4e4a..3b1cc89d646233a5c202c6d48249b6083aa50df4 100644 (file)
@@ -56,7 +56,7 @@ public:
        std::string const getBabelPresettings() const;
        /// Extra preamble code after babel is called
        std::string const getBabelPostsettings() const;
-       /// Do we need to pass the languages to babel directly? 
+       /// Do we need to pass the languages to babel directly?
        bool needBabelLangOptions() const;
        /// Load AMS packages when appropriate
        std::string const loadAMSPackages() const;
@@ -82,12 +82,14 @@ public:
        void addPreambleSnippet(std::string const &);
        ///
        std::string getPreambleSnippets() const;
+       ///
+       void addCSSSnippet(std::string const &);
+       ///
+       std::string getCSSSnippets() const;
        /// Add a feature name requirements
        void require(std::string const & name);
        /// Add a set of feature names requirements
        void require(std::set<std::string> const & names);
-       /// Which of the required packages are installed?
-       static void getAvailable();
        /// Is the (required) package available?
        static bool isAvailable(std::string const & name);
        /// Has the package been required?
@@ -151,10 +153,8 @@ private:
        typedef std::list<std::string> SnippetList;
        ///
        SnippetList preamble_snippets_;
-       /// The available (required) packages
-       typedef std::set<std::string> Packages;
        ///
-       static Packages packages_;
+       SnippetList css_snippets_;
        ///
        typedef std::set<Language const *> LanguageList;
        /// used languages (only those that are supported by babel)