A bit more re-organization.
[lyx.git] / src / mathed / MacroTable.h
blob24e896c6b2403c9d3e0dfff1018be381bc5e7111
1 // -*- C++ -*-
2 /**
3 * \file MacroTable.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author André Pönitz
8 * \author Stefan Schimanski
10 * Full author contact details are available in file CREDITS.
13 #ifndef MATH_MACROTABLE_H
14 #define MATH_MACROTABLE_H
16 #include "DocIterator.h"
18 #include "support/docstring.h"
19 #include "support/types.h"
21 #include <map>
22 #include <set>
23 #include <vector>
25 namespace lyx {
27 class Buffer;
28 class MathData;
29 class MathMacroTemplate;
30 class Paragraph;
32 enum MacroType {
33 MacroTypeNewcommand,
34 MacroTypeNewcommandx,
35 MacroTypeDef
38 ///
39 class MacroData {
40 public:
41 /// Constructor to make STL containers happy
42 MacroData(Buffer * buf = 0);
43 /// Create lazy MacroData which only queries the macro template when needed
44 MacroData(Buffer * buf, DocIterator const & pos);
45 /// Create non-lazy MacroData which directly queries the macro template
46 MacroData(Buffer * buf, MathMacroTemplate const & macro);
48 ///
49 docstring const & definition() const { updateData(); return definition_; }
50 ///
51 docstring const & display() const { updateData(); return display_; }
52 /// arity including optional arguments (if there is any)
53 size_t numargs() const { updateData(); return numargs_; }
54 /// replace #1,#2,... by given MathAtom 0,1,.., _including_ the possible
55 /// optional argument
56 void expand(std::vector<MathData> const & from, MathData & to) const;
57 /// number of optional arguments
58 size_t optionals() const;
59 ///
60 std::vector<docstring> const & defaults() const;
61 ///
62 std::string const & requires() const { updateData(); return requires_; }
63 ///
64 std::string & requires() { updateData(); return requires_; }
66 /// lock while being drawn to avoid recursions
67 int lock() const { return ++lockCount_; }
68 /// is it being drawn?
69 bool locked() const { return lockCount_ != 0; }
70 ///
71 void unlock() const;
73 ///
74 bool redefinition() const { return redefinition_; }
75 ///
76 void setRedefinition(bool redefined) { redefinition_ = redefined; }
78 ///
79 MacroType type() const { return type_; }
80 ///
81 MacroType & type() { return type_; }
83 /// output as TeX macro, only works for lazy MacroData!!!
84 void write(odocstream & os, bool overwriteRedefinition) const;
86 ///
87 bool operator==(MacroData const & x) const {
88 updateData();
89 x.updateData();
90 return definition_ == x.definition_
91 && numargs_ == x.numargs_
92 && display_ == x.display_
93 && requires_ == x.requires_
94 && optionals_ == x.optionals_
95 && defaults_ == x.defaults_;
97 ///
98 bool operator!=(MacroData const & x) const { return !operator==(x); }
100 private:
102 void queryData(MathMacroTemplate const & macro) const;
104 void updateData() const;
106 Buffer const * buffer_;
107 /// The position of the definition in the buffer.
108 /// There is no guarantee it stays valid if the buffer
109 /// changes. But it (normally) exists only until the
110 /// next Buffer::updateMacros call where new MacroData
111 /// objects are created for each macro definition.
112 /// In the worst case, it is invalidated and the MacroData
113 /// returns its defaults values and the user sees unfolded
114 /// macros.
115 mutable DocIterator pos_;
117 mutable bool queried_;
119 mutable docstring definition_;
121 mutable size_t numargs_;
123 mutable docstring display_;
125 mutable std::string requires_;
127 mutable size_t optionals_;
129 mutable std::vector<docstring> defaults_;
131 mutable int lockCount_;
133 mutable bool redefinition_;
135 mutable MacroType type_;
140 class MacroNameSet : public std::set<docstring> {};
142 class MacroSet : public std::set<MacroData const *> {};
145 /// A lookup table of macro definitions.
147 * This contains a table of "global" macros that are always accessible,
148 * either because they implement a feature of standard LaTeX or some
149 * hack to display certain contents nicely.
152 class MacroTable : public std::map<docstring, MacroData>
154 public:
155 /// Parse full "\\def..." or "\\newcommand..." or ...
156 void insert(Buffer * buf, docstring const & definition, std::string const &);
157 /// Insert pre-digested macro definition
158 void insert(docstring const & name, MacroData const & data);
160 MacroData const * get(docstring const & name) const;
162 void dump();
164 void getMacroNames(std::set<docstring> & names) const;
166 /// the global list
167 static MacroTable & globalMacros();
171 /// A context to lookup macros at a certain position in a buffer.
173 * The MacroContext is used during metrics calculation to resolve
174 * macro instances according to the position of them in the buffer
175 * document. Only macro definition in front of the macro instance
176 * are visible and are resolved.
179 class MacroContext {
180 public:
181 /// construct context for the insets at pos
182 MacroContext(Buffer const * buf, DocIterator const & pos);
184 /// Lookup macro
185 MacroData const * get(docstring const & name) const;
187 private:
189 Buffer const * buf_;
191 DocIterator const & pos_;
194 } // namespace lyx
196 #endif