]> git.lyx.org Git - lyx.git/blob - src/mathed/MathMacroTable.h
* output_plaintext.C: cosmetics in comment: line length cannot be < 0
[lyx.git] / src / mathed / MathMacroTable.h
1 // -*- C++ -*-
2 /**
3  * \file MathMacroTable.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_MACROTABLE_H
13 #define MATH_MACROTABLE_H
14
15 #include <map>
16 #include <vector>
17
18 #include "support/docstring.h"
19
20 namespace lyx {
21
22 class MathArray;
23
24 ///
25 class MacroData {
26 public:
27         ///
28         MacroData();
29         ///
30         MacroData(docstring const & def, int nargs, docstring const & disp, std::string const &);
31         ///
32         docstring def() const { return def_; }
33         ///
34         docstring disp() const { return disp_; }
35         ///
36         int numargs() const { return numargs_; }
37         /// replace #1,#2,... by given MathAtom 0,1,..
38         void expand(std::vector<MathArray> const & from, MathArray & to) const;
39         ///
40         std::string requires() const { return requires_; }
41         ///
42         std::string & requires() { return requires_; }
43
44 private:
45         ///
46         docstring def_;
47         ///
48         int numargs_;
49         ///
50         docstring disp_;
51         ///
52         std::string requires_;
53 };
54
55
56 // This contains a table of "global" macros that are always accessible,
57 // either because they implement a feature of standard LaTeX or some
58 // hack to display certain contents nicely.
59
60 class MacroTable : public std::map<docstring, MacroData>
61 {
62 public:
63         /// Parse full "\\def..." or "\\newcommand..." or ...
64         void insert(docstring const & definition, std::string const &);
65         /// Insert pre-digested macro definition
66         void insert(docstring const & name, MacroData const & data);
67         /// Do we have a macro by that name?
68         bool has(docstring const & name) const;
69         ///
70         MacroData const & get(docstring const & name) const;
71         ///
72         void dump();
73
74         /// the global list
75         static MacroTable & globalMacros();
76         /// the local list hack
77         //static MacroTable & localMacros();
78 };
79
80
81 } // namespace lyx
82
83 #endif