]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
New methods in LaTeXFeatures specifically for collection of CSS
[lyx.git] / src / LaTeXFeatures.h
index 878b466797505646ba5c9e564c7f544416b8b1fb..3b1cc89d646233a5c202c6d48249b6083aa50df4 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
  *
  * Full author contact details are available in file CREDITS.
 #ifndef LATEXFEATURES_H
 #define LATEXFEATURES_H
 
-
 #include "OutputParams.h"
 #include "support/docstring.h"
 
 #include <set>
 #include <list>
 #include <map>
-#include <string>
 
 
 namespace lyx {
 
 class Buffer;
 class BufferParams;
+class InsetLayout;
 class Language;
 
 /** The packages and commands that a buffer needs. This class
@@ -47,14 +46,28 @@ 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
-       std::string const getMacros() const;
-       ///
-       std::string const getBabelOptions() const;
+       docstring const getMacros() const;
+       /// Extra preamble code before babel is called
+       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?
+       bool needBabelLangOptions() const;
+       /// Load AMS packages when appropriate
+       std::string const loadAMSPackages() const;
        /// 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 getTClassHTMLStyles() const;
+       ///
+       docstring const getTClassHTMLPreamble() const;
        /// The sgml definitions needed by the document (docbook)
        docstring const getLyXSGMLEntities() const;
        /// The SGML Required to include the files added with includeFile();
@@ -62,15 +75,21 @@ public:
        /// Include a file for use with the SGML entities
        void includeFile(docstring const & key, std::string const & name);
        /// The float definitions.
-       void getFloatDefinitions(std::ostream & os) const;
+       void getFloatDefinitions(odocstream & os) const;
        /// Print requirements to lyxerr
        void showStruct() const;
        ///
        void addPreambleSnippet(std::string const &);
-       /// Provide a string name-space to the requirements
+       ///
+       std::string getPreambleSnippets() const;
+       ///
+       void addCSSSnippet(std::string const &);
+       ///
+       std::string getCSSSnippets() const;
+       /// Add a feature name requirements
        void require(std::string const & name);
-       /// Which of the required packages are installed?
-       static void getAvailable();
+       /// Add a set of feature names requirements
+       void require(std::set<std::string> const & names);
        /// Is the (required) package available?
        static bool isAvailable(std::string const & name);
        /// Has the package been required?
@@ -81,18 +100,24 @@ 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 *);
        ///
        bool hasLanguages() const;
+       /// check if all used languages are supported by polyglossia
+       bool hasPolyglossiaLanguages() const;
        ///
        std::string getLanguages() const;
        ///
+       std::map<std::string, std::string> getPolyglossiaLanguages() const;
+       ///
        std::set<std::string> getEncodingSet(std::string const & doc_encoding) const;
        ///
        void useLayout(docstring const & lyt);
        ///
+       void useInsetLayout(InsetLayout const & lay);
+       ///
        Buffer const & buffer() const;
        ///
        void setBuffer(Buffer const &);
@@ -100,32 +125,46 @@ public:
        BufferParams const & bufferParams() const;
        /// the return value is dependent upon both LyXRC and LaTeXFeatures.
        bool useBabel() const;
+       ///
+       bool usePolyglossia() const;
+       /// are we in a float?
+       bool inFloat() const { return in_float_; }
+       /// are we in a float?
+       void inFloat(bool const b) { in_float_ = b; }
        /// Runparams that will be used for exporting this file.
        OutputParams const & runparams() const { return runparams_; }
+       /// Resolve alternatives like "esint|amsmath|wasysym"
+       void resolveAlternatives();
+       ///
+       void setHTMLTitle(docstring const & t) { htmltitle_ = t; }
+       ///
+       docstring const & htmlTitle() const { return htmltitle_; }
 
 private:
+       ///
        std::list<docstring> usedLayouts_;
-
-       /// Static preamble bits from the external material insets
-       typedef std::list<std::string> FeaturesList;
        ///
-       FeaturesList features_;
+       std::list<docstring> usedInsetLayouts_;
+       /// The features that are needed by the document
+       typedef std::set<std::string> Features;
+       ///
+       Features features_;
+       /// Static preamble bits, from external templates, or anywhere else
+       typedef std::list<std::string> SnippetList;
        ///
-       FeaturesList preamble_snippets_;
-       /// The available (required) packages
-       typedef std::list<std::string> PackagesList;
+       SnippetList preamble_snippets_;
        ///
-       static PackagesList packages_;
+       SnippetList css_snippets_;
        ///
        typedef std::set<Language const *> LanguageList;
        /// 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_;
        ///
-       typedef std::map<docstring , std::string> FileMap;
+       typedef std::map<docstring, std::string> FileMap;
        ///
        FileMap IncludedFiles_;
        /** Buffer of the file being processed.
@@ -140,6 +179,10 @@ private:
         *  in validate().
         */
        OutputParams const & runparams_;
+       ///
+       bool in_float_;
+       ///
+       docstring htmltitle_;
 };