]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Angus insetindex patch + protect patch from Dekel
[lyx.git] / src / LaTeXFeatures.h
index d5d6424e08e86b90381c8f2bb2adeb0a6228981f..cee55913a121baf94785f6acbfc916483df0c751 100644 (file)
@@ -33,28 +33,35 @@ struct Language;
   in buffer.C and paragraph.C when you do so. */
 struct LaTeXFeatures {
        ///
-       LaTeXFeatures(int n) ;
+       LaTeXFeatures(BufferParams const &, int n) ;
        /// The packaes needed by the document
-       string getPackages(BufferParams const & params);
+       string getPackages();
        /// The macros definitions needed by the document
-       string getMacros(BufferParams const & params);
+       string getMacros();
        /// The definitions needed by the document's textclass
-       string getTClassPreamble(BufferParams const & params);
+       string getTClassPreamble();
+       ///
+       string getIncludedFiles();
 
        ///
-       void showStruct(BufferParams const & params);
+       void showStruct();
+
+       /// Provide a string name-space to the requirements
+       void require(string const & name);
+
+       /// Static preamble bits from the external material insets
+       string externalPreambles;
 
        //@Man: Packages
        //@{
        ///
+       bool array;
+       ///
        bool color;     // color.sty
-#ifdef USE_GRAPHICX
        ///
        bool graphicx; // graphicx.sty
-#else
        ///
        bool graphics;  // graphics.sty
-#endif
        ///
        bool setspace;  // setspace.sty
        ///
@@ -79,6 +86,12 @@ struct LaTeXFeatures {
        bool floatflt;  // floatflt.sty
        ///
        bool url;       // url.sty
+       ///
+       bool varioref;  // varioref.sty
+       ///
+       bool prettyref; // prettyref.sty
+       ///
+       bool chess;     // chess.sty
        //@}
 
        
@@ -136,7 +149,18 @@ struct LaTeXFeatures {
        typedef std::set<Language const *> LanguageList;
        ///
        LanguageList UsedLanguages;
+       ///
+       typedef std::set<string> FloatList;
+       ///
+       FloatList usedFloats;
+       ///
+       typedef std::map<string , string> FileMap;
+       ///
+       FileMap IncludedFiles;
        //@}
+       BufferParams const & bufferParams() const;
+private:
+       BufferParams const & params;
 };
 
 #endif