]> git.lyx.org Git - lyx.git/blob - src/lyxtextclass.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / lyxtextclass.h
1 // -*- C++ -*-
2 /**
3  * \file lyxtextclass.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #ifndef LYXTEXTCLASS_H
11 #define LYXTEXTCLASS_H
12
13 #include "lyxlayout.h"
14 #include "LString.h"
15 #include "lyxlayout_ptr_fwd.h"
16
17 #include "support/types.h"
18
19 #include <boost/shared_ptr.hpp>
20
21 #include <vector>
22
23 class LyXLex;
24 class Counters;
25 class FloatList;
26
27 /// Stores the layout specification of a LyX document class.
28 class LyXTextClass {
29 public:
30         /// The individual styles comprising the document class
31         typedef std::vector<LyXLayout_ptr> LayoutList;
32         /// Enumerate the paragraph styles.
33         typedef LayoutList::const_iterator const_iterator;
34         /// Construct a layout with default values. Actual values loaded later.
35         explicit
36         LyXTextClass(string const & = string(),
37                      string const & = string(),
38                      string const & = string(),
39                      bool = false);
40
41         /// check whether the TeX class is available
42         bool isTeXClassAvailable() const;
43
44         /// paragraph styles begin iterator.
45         const_iterator begin() const { return layoutlist_.begin(); }
46         /// paragraph styles end iterator
47         const_iterator end() const { return layoutlist_.end(); }
48
49         /// Performs the read of the layout file.
50         bool Read(string const & filename, bool merge = false);
51         ///
52         void readOutputType(LyXLex &);
53         ///
54         void readTitleType(LyXLex &);
55         ///
56         void readMaxCounter(LyXLex &);
57         ///
58         void readClassOptions(LyXLex &);
59         ///
60         void readFloat(LyXLex &);
61         ///
62         void readCounter(LyXLex &);
63         ///
64         bool hasLayout(string const & name) const;
65
66         ///
67         LyXLayout_ptr const & operator[](string const & vname) const;
68
69         /// Sees to that the textclass structure has been loaded
70         bool load() const;
71
72         /// the list of floats defined in the document class
73         FloatList & floats();
74         /// the list of floats defined in the document class
75         FloatList const & floats() const;
76         /// The Counters present in this document class.
77         Counters & counters() const;
78         ///
79         string const & defaultLayoutName() const;
80         ///
81         LyXLayout_ptr const & defaultLayout() const;
82         ///
83         string const & name() const;
84         ///
85         string const & latexname() const;
86         ///
87         string const & description() const;
88         ///
89         string const & opt_fontsize() const;
90         ///
91         string const & opt_pagestyle() const;
92         ///
93         string const & options() const;
94         ///
95         string const & pagestyle() const;
96         ///
97         string const & preamble() const;
98
99         /// Packages that are already loaded by the class
100         enum Provides {
101                 ///
102                 nothing = 0,
103                 ///
104                 amsmath = 1,
105                 ///
106                 makeidx = 2,
107                 ///
108                 url = 4,
109                 ///
110                 natbib = 8
111         };
112         ///
113         bool provides(Provides p) const;
114
115         ///
116         unsigned int columns() const;
117         ///
118         enum PageSides {
119                 ///
120                 OneSide,
121                 ///
122                 TwoSides
123         };
124         ///
125         PageSides sides() const;
126         ///
127         int secnumdepth() const;
128         ///
129         int tocdepth() const;
130
131         /// Can be LaTeX, LinuxDoc, etc.
132         OutputType outputType() const;
133
134         ///
135         LyXFont const & defaultfont() const;
136
137         /// Text that dictates how wide the left margin is on the screen
138         string const & leftmargin() const;
139
140         /// Text that dictates how wide the right margin is on the screen
141         string const & rightmargin() const;
142         ///
143         int maxcounter() const;
144
145         /// The type of command used to produce a title
146         LYX_TITLE_LATEX_TYPES titletype() const;
147         /// The name of the title command
148         string const & titlename() const;
149
150         ///
151         int size() const;
152 private:
153         ///
154         bool delete_layout(string const &);
155         ///
156         bool do_readStyle(LyXLex &, LyXLayout &);
157         /// Layout file name
158         string name_;
159         /// document class name
160         string latexname_;
161         /// document class description
162         string description_;
163         /// Specific class options
164         string opt_fontsize_;
165         ///
166         string opt_pagestyle_;
167         ///
168         string options_;
169         ///
170         string pagestyle_;
171         ///
172         string defaultlayout_;
173         /// preamble text to support layout styles
174         string preamble_;
175         /// latex packages loaded by document class.
176         Provides provides_;
177         ///
178         unsigned int columns_;
179         ///
180         PageSides sides_;
181         /// header depth to have numbering
182         int secnumdepth_;
183         /// header depth to appear in table of contents
184         int tocdepth_;
185         /// Can be LaTeX, LinuxDoc, etc.
186         OutputType outputType_;
187         /** Base font. The paragraph and layout fonts are resolved against
188             this font. This has to be fully instantiated. Attributes
189             LyXFont::INHERIT, LyXFont::IGNORE, and LyXFont::TOGGLE are
190             extremely illegal.
191         */
192         LyXFont defaultfont_;
193         /// Text that dictates how wide the left margin is on the screen
194         string leftmargin_;
195
196         /// Text that dictates how wide the right margin is on the screen
197         string rightmargin_;
198         /// highest header level used in this layout.
199         int maxcounter_; // add approp. signedness
200
201         /// The type of command used to produce a title
202         LYX_TITLE_LATEX_TYPES titletype_;
203         /// The name of the title command
204         string titlename_;
205
206         /// Paragraph styles used in this layout
207         LayoutList layoutlist_;
208
209         /// available types of float, eg. figure, algorithm.
210         boost::shared_ptr<FloatList> floatlist_;
211
212         /// Types of counters, eg. sections, eqns, figures, avail. in document class.
213         boost::shared_ptr<Counters> ctrs_;
214
215         /// Has this layout file been loaded yet?
216         mutable bool loaded;
217
218         /// Is the TeX class available?
219         bool texClassAvail_;
220 };
221
222
223 /// Merge two different provides flags into one bit field record
224 inline
225 void operator|=(LyXTextClass::Provides & p1, LyXTextClass::Provides p2)
226 {
227         p1 = static_cast<LyXTextClass::Provides>(p1 | p2);
228 }
229
230
231 /// convert page sides option to text 1 or 2
232 std::ostream & operator<<(std::ostream & os, LyXTextClass::PageSides p);
233
234 #endif