]> git.lyx.org Git - lyx.git/blob - src/LaTeXFeatures.h
* UI changes in anticipation of polyglossia support:
[lyx.git] / src / LaTeXFeatures.h
1 // -*- C++ -*-
2 /**
3  * \file LaTeXFeatures.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef LATEXFEATURES_H
14 #define LATEXFEATURES_H
15
16 #include "OutputParams.h"
17 #include "support/docstring.h"
18
19 #include <set>
20 #include <list>
21 #include <map>
22
23
24 namespace lyx {
25
26 class Buffer;
27 class BufferParams;
28 class InsetLayout;
29 class Language;
30
31 /** The packages and commands that a buffer needs. This class
32  *  contains a list<string>.  Each of the LaTeX packages that a buffer needs
33  *  should be added with void require(string const & name).
34  *
35  *  i.e require("amssymb")
36  *
37  *  To add support you should only need to require() the package name as
38  *  packages which don't have special requirements are handled automatically.
39  *  If your new package does need special consideration you'll need to alter
40  *  string const getPackages() const;
41  *  Remember to update the validate function in Buffer.cpp and Paragraph.cpp
42  *  when you do so.
43  */
44 class LaTeXFeatures {
45 public:
46         ///
47         LaTeXFeatures(Buffer const &, BufferParams const &,
48                       OutputParams const &);
49         /// The color packages
50         std::string const getColorOptions() const;
51         /// The packages needed by the document
52         std::string const getPackages() const;
53         /// The macros definitions needed by the document
54         docstring const getMacros() const;
55         /// Extra preamble code before babel is called
56         std::string const getBabelPresettings() const;
57         /// Extra preamble code after babel is called
58         std::string const getBabelPostsettings() const;
59         /// Do we need to pass the languages to babel directly? 
60         bool needBabelLangOptions() const;
61         /// The definitions needed by the document's textclass
62         docstring const getTClassPreamble() const;
63         /// The language dependent definitions needed by the document's textclass
64         docstring const getTClassI18nPreamble(bool use_babel) const;
65         ///
66         docstring const getTClassHTMLStyles() const;
67         ///
68         docstring const getTClassHTMLPreamble() const;
69         /// The sgml definitions needed by the document (docbook)
70         docstring const getLyXSGMLEntities() const;
71         /// The SGML Required to include the files added with includeFile();
72         docstring const getIncludedFiles(std::string const & fname) const;
73         /// Include a file for use with the SGML entities
74         void includeFile(docstring const & key, std::string const & name);
75         /// The float definitions.
76         void getFloatDefinitions(odocstream & os) const;
77         /// Print requirements to lyxerr
78         void showStruct() const;
79         ///
80         void addPreambleSnippet(std::string const &);
81         ///
82         std::string getPreambleSnippets() const;
83         /// Add a feature name requirements
84         void require(std::string const & name);
85         /// Add a set of feature names requirements
86         void require(std::set<std::string> const & names);
87         /// Which of the required packages are installed?
88         static void getAvailable();
89         /// Is the (required) package available?
90         static bool isAvailable(std::string const & name);
91         /// Has the package been required?
92         bool isRequired(std::string const & name) const;
93         /* Is it necessary to load the package? This is true if
94            isRequired is true and the feature is not provided by the
95            textclass.
96         */
97         bool mustProvide(std::string const & name) const;
98         ///
99         void useFloat(std::string const & name, bool subfloat = false);
100         ///
101         void useLanguage(Language const *);
102         ///
103         bool hasLanguages() const;
104         ///
105         std::string getLanguages() const;
106         ///
107         std::set<std::string> getEncodingSet(std::string const & doc_encoding) const;
108         ///
109         void useLayout(docstring const & lyt);
110         ///
111         void useInsetLayout(InsetLayout const & lay);
112         ///
113         Buffer const & buffer() const;
114         ///
115         void setBuffer(Buffer const &);
116         ///
117         BufferParams const & bufferParams() const;
118         /// the return value is dependent upon both LyXRC and LaTeXFeatures.
119         bool useBabel() const;
120         /// are we in a float?
121         bool inFloat() const { return in_float_; }
122         /// are we in a float?
123         void inFloat(bool const b) { in_float_ = b; }
124         /// Runparams that will be used for exporting this file.
125         OutputParams const & runparams() const { return runparams_; }
126         ///
127         void setHTMLTitle(docstring const & t) { htmltitle_ = t; }
128         ///
129         docstring const & htmlTitle() const { return htmltitle_; }
130
131 private:
132         ///
133         std::list<docstring> usedLayouts_;
134         ///
135         std::list<docstring> usedInsetLayouts_;
136         /// The features that are needed by the document
137         typedef std::set<std::string> Features;
138         ///
139         Features features_;
140         /// Static preamble bits, from external templates, or anywhere else
141         typedef std::list<std::string> SnippetList;
142         ///
143         SnippetList preamble_snippets_;
144         /// The available (required) packages
145         typedef std::set<std::string> Packages;
146         ///
147         static Packages packages_;
148         ///
149         typedef std::set<Language const *> LanguageList;
150         /// used languages (only those that are supported by babel)
151         LanguageList UsedLanguages_;
152         ///
153         typedef std::map<std::string, bool> UsedFloats;
154         ///
155         UsedFloats usedFloats_;
156         ///
157         typedef std::map<docstring, std::string> FileMap;
158         ///
159         FileMap IncludedFiles_;
160         /** Buffer of the file being processed.
161          *  This may be a child buffer of the to-be-exported file and
162          *  therefore may not be the buffer that belongs to params_.
163          *  Only needed by InsetInclude::validate().
164          */
165         Buffer const * buffer_;
166         ///
167         BufferParams const & params_;
168         /** Some insets need to know details about the to-be-produced file
169          *  in validate().
170          */
171         OutputParams const & runparams_;
172         ///
173         bool in_float_;
174         ///
175         docstring htmltitle_;
176 };
177
178
179 } // namespace lyx
180
181 #endif