]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
inset-edit should not make a buffer dirty (it edits the external files used by the...
[lyx.git] / src / LaTeXFeatures.h
index 268f6b05b0b22acb1eecb41af29e15ed7341b9a5..1a484f730c470921b08b27ba5c96123e8de7dcf9 100644 (file)
@@ -46,6 +46,8 @@ public:
        ///
        LaTeXFeatures(Buffer const &, BufferParams const &,
                      OutputParams const &);
+       /// The color packages
+       std::string const getColorOptions() const;
        /// The packages needed by the document
        std::string const getPackages() const;
        /// The macros definitions needed by the document
@@ -82,7 +84,7 @@ public:
        */
        bool mustProvide(std::string const & name) const;
        ///
-       void useFloat(std::string const & name);
+       void useFloat(std::string const & name, bool subfloat = false);
        ///
        void useLanguage(Language const *);
        ///
@@ -124,7 +126,7 @@ private:
        /// used languages (only those that are supported by babel)
        LanguageList UsedLanguages_;
        ///
-       typedef std::set<std::string> UsedFloats;
+       typedef std::map<std::string, bool> UsedFloats;
        ///
        UsedFloats usedFloats_;
        ///