]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/TDictionary.hh
Added the completion of the macro's name.
[helm.git] / helm / DEVEL / mathml_editor / src / TDictionary.hh
1 /* This file is part of EdiTeX, an editor of mathematical
2  * expressions based on TeX syntax.
3  * 
4  * Copyright (C) 2002-2003 Luca Padovani <lpadovan@cs.unibo.it>,
5  *                    2003 Paolo Marinelli <pmarinel@cs.unibo.it>.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  * For more information, please visit the project's home page
22  * http://helm.cs.unibo.it/editex/
23  * or send an email to <lpadovan@cs.unibo.it>
24  */
25
26 #ifndef __TDictionary_hh__
27 #define __TDictionary_hh__
28
29 #include <config.h>
30
31 #include <string>
32 #include <vector>
33 #include <hash_map>
34 #include <list>
35
36 #include "dom.hh"
37 #include "TToken.hh"
38
39 class TDictionary
40 {
41 public:
42   TDictionary(class ALogger& l) : logger(l) { };
43   ~TDictionary() { };
44
45   enum Form
46     {
47       INFIX,
48       PREFIX,
49       POSTFIX
50     };
51
52   enum EntryClass
53     {
54       UNDEFINED,
55       MACRO,
56       OPERATOR,
57       IDENTIFIER,
58       NUMBER
59     };
60
61   struct Entry
62   {
63     Entry(void)
64     { 
65       cls = UNDEFINED;
66       table = delimiter = limits = embellishment = leftOpen = rightOpen = 0;
67     };
68
69     std::vector<TToken> pattern;
70     std::string value;
71
72     bool defined(void) const { return cls != UNDEFINED; };
73     bool hasArguments(void) const { return !pattern.empty(); };
74     bool paramDelimited(unsigned) const;
75     bool lastDelimiter(unsigned) const;
76     unsigned previousParam(unsigned) const;
77
78     EntryClass cls;
79     unsigned delimiter : 1;
80     unsigned limits : 1;
81     unsigned embellishment : 1;
82     unsigned leftOpen : 1;
83     unsigned rightOpen : 1;
84     unsigned table : 1;
85   };
86
87   void load(const std::string&);
88   void load(const std::string&, const std::string&);
89   void load(const DOM::Document&, const std::string& = "");
90   const Entry& find(const std::string&) const;
91   std::string complete(const std::string, std::list<std::string>&) const;
92
93 private:
94   struct StringHash : public std::unary_function< std::string, size_t >
95   { size_t operator()(const std::string& s) const { return hash<char*>()(s.c_str()); } };
96
97 #if 0
98   struct StringEq : public std::binary_function< std::string, std::string, bool >
99   { bool operator()(const std::string&, const class String*) const; };
100 #endif
101
102   class ALogger& logger;
103 #if defined(HAVE_EXT_HASH_MAP)
104   typedef __gnu_cxx::hash_map< std::string, Entry, StringHash > Dictionary;
105 #elif defined(HAVE_HASH_MAP)
106   typedef std::hash_map< std::string, Entry, StringHash > Dictionary;
107 #else
108 #error "no hash_map could be found"
109 #endif
110   Dictionary entries;
111 };
112
113 #endif // __TDictionary_hh__
114