1 | /*
|
---|
2 | * Dialog.cpp
|
---|
3 | *
|
---|
4 | * Created on: Jan 5, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "Helpers/MemDebug.hpp"
|
---|
9 |
|
---|
10 | #include "Dialog.hpp"
|
---|
11 | #include "ValueStorage.hpp"
|
---|
12 |
|
---|
13 | #include "verbose.hpp"
|
---|
14 | #include "atom.hpp"
|
---|
15 | #include "element.hpp"
|
---|
16 | #include "molecule.hpp"
|
---|
17 | #include "vector.hpp"
|
---|
18 | #include "Matrix.hpp"
|
---|
19 | #include "Box.hpp"
|
---|
20 |
|
---|
21 | using namespace std;
|
---|
22 |
|
---|
23 | Dialog::Dialog()
|
---|
24 | {
|
---|
25 | }
|
---|
26 |
|
---|
27 | Dialog::~Dialog()
|
---|
28 | {
|
---|
29 | list<Query*>::iterator iter;
|
---|
30 | for(iter=queries.begin();iter!=queries.end();iter++){
|
---|
31 | delete (*iter);
|
---|
32 | }
|
---|
33 | }
|
---|
34 |
|
---|
35 | void Dialog::registerQuery(Query *query){
|
---|
36 | queries.push_back(query);
|
---|
37 | }
|
---|
38 |
|
---|
39 | bool Dialog::display(){
|
---|
40 | if(checkAll()){
|
---|
41 | setAll();
|
---|
42 | return true;
|
---|
43 | }
|
---|
44 | else{
|
---|
45 | return false;
|
---|
46 | }
|
---|
47 | }
|
---|
48 |
|
---|
49 | bool Dialog::checkAll(){
|
---|
50 | list<Query*>::iterator iter;
|
---|
51 | bool retval = true;
|
---|
52 | for(iter=queries.begin(); iter!=queries.end(); iter++){
|
---|
53 | retval &= (*iter)->handle();
|
---|
54 | // if any query fails (is canceled), we can end the handling process
|
---|
55 | if(!retval) {
|
---|
56 | DoeLog(1) && (eLog() << Verbose(1) << "The following query failed: " << (**iter).getTitle() << "." << endl);
|
---|
57 | break;
|
---|
58 | }
|
---|
59 | }
|
---|
60 | return retval;
|
---|
61 | }
|
---|
62 |
|
---|
63 | void Dialog::setAll(){
|
---|
64 | list<Query*>::iterator iter;
|
---|
65 | for(iter=queries.begin(); iter!=queries.end(); iter++) {
|
---|
66 | (*iter)->setResult();
|
---|
67 | }
|
---|
68 | }
|
---|
69 |
|
---|
70 | /****************** Query types Infrastructure **************************/
|
---|
71 |
|
---|
72 | // Base class
|
---|
73 | Dialog::Query::Query(string _title, string _description) :
|
---|
74 | title(_title),
|
---|
75 | description(_description)
|
---|
76 | {}
|
---|
77 |
|
---|
78 | Dialog::Query::~Query() {}
|
---|
79 |
|
---|
80 | const std::string Dialog::Query::getTitle() const{
|
---|
81 | return title;
|
---|
82 | }
|
---|
83 |
|
---|
84 | const std::string Dialog::Query::getDescription() const{
|
---|
85 | return description;
|
---|
86 | }
|
---|
87 | // empty Queries
|
---|
88 |
|
---|
89 | Dialog::EmptyQuery::EmptyQuery(string title, std::string description) :
|
---|
90 | Query(title, description)
|
---|
91 | {}
|
---|
92 |
|
---|
93 | Dialog::EmptyQuery::~EmptyQuery() {}
|
---|
94 |
|
---|
95 | void Dialog::EmptyQuery::setResult() {
|
---|
96 | }
|
---|
97 |
|
---|
98 | // Int Queries
|
---|
99 |
|
---|
100 | Dialog::IntQuery::IntQuery(string title, std::string description) :
|
---|
101 | Query(title, description)
|
---|
102 | {}
|
---|
103 |
|
---|
104 | Dialog::IntQuery::~IntQuery() {}
|
---|
105 |
|
---|
106 | void Dialog::IntQuery::setResult() {
|
---|
107 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
108 | }
|
---|
109 |
|
---|
110 | // Ints Queries
|
---|
111 |
|
---|
112 | Dialog::IntsQuery::IntsQuery(string title, std::string description) :
|
---|
113 | Query(title, description)
|
---|
114 | {}
|
---|
115 |
|
---|
116 | Dialog::IntsQuery::~IntsQuery() {}
|
---|
117 |
|
---|
118 | void Dialog::IntsQuery::setResult() {
|
---|
119 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
120 | }
|
---|
121 |
|
---|
122 | // Bool Queries
|
---|
123 |
|
---|
124 | Dialog::BooleanQuery::BooleanQuery(string title,std::string description) :
|
---|
125 | Query(title, description)
|
---|
126 | {}
|
---|
127 |
|
---|
128 | Dialog::BooleanQuery::~BooleanQuery() {}
|
---|
129 |
|
---|
130 | void Dialog::BooleanQuery::setResult() {
|
---|
131 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
132 | }
|
---|
133 |
|
---|
134 | // String Queries
|
---|
135 |
|
---|
136 | Dialog::StringQuery::StringQuery(string title,std::string _description) :
|
---|
137 | Query(title, _description)
|
---|
138 | {}
|
---|
139 |
|
---|
140 | Dialog::StringQuery::~StringQuery() {};
|
---|
141 |
|
---|
142 | void Dialog::StringQuery::setResult() {
|
---|
143 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
144 | }
|
---|
145 |
|
---|
146 | // Strings Queries
|
---|
147 |
|
---|
148 | Dialog::StringsQuery::StringsQuery(string title,std::string _description) :
|
---|
149 | Query(title, _description)
|
---|
150 | {}
|
---|
151 |
|
---|
152 | Dialog::StringsQuery::~StringsQuery() {};
|
---|
153 |
|
---|
154 | void Dialog::StringsQuery::setResult() {
|
---|
155 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
156 | }
|
---|
157 |
|
---|
158 | // Double Queries
|
---|
159 |
|
---|
160 | Dialog::DoubleQuery::DoubleQuery(string title, std::string _description) :
|
---|
161 | Query(title, _description)
|
---|
162 | {}
|
---|
163 |
|
---|
164 | Dialog::DoubleQuery::~DoubleQuery() {};
|
---|
165 |
|
---|
166 | void Dialog::DoubleQuery::setResult() {
|
---|
167 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
168 | }
|
---|
169 |
|
---|
170 | // Doubles Queries
|
---|
171 |
|
---|
172 | Dialog::DoublesQuery::DoublesQuery(string title, std::string _description) :
|
---|
173 | Query(title, _description)
|
---|
174 | {}
|
---|
175 |
|
---|
176 | Dialog::DoublesQuery::~DoublesQuery() {};
|
---|
177 |
|
---|
178 | void Dialog::DoublesQuery::setResult() {
|
---|
179 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
180 | }
|
---|
181 |
|
---|
182 |
|
---|
183 | // Atom Queries
|
---|
184 |
|
---|
185 | Dialog::AtomQuery::AtomQuery(string title, std::string _description) :
|
---|
186 | Query(title, _description),
|
---|
187 | tmp(0)
|
---|
188 | {}
|
---|
189 |
|
---|
190 | Dialog::AtomQuery::~AtomQuery() {}
|
---|
191 |
|
---|
192 | void Dialog::AtomQuery::setResult() {
|
---|
193 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
194 | }
|
---|
195 |
|
---|
196 | // Atoms Queries
|
---|
197 |
|
---|
198 | Dialog::AtomsQuery::AtomsQuery(string title, std::string _description) :
|
---|
199 | Query(title, _description),
|
---|
200 | tmp(0)
|
---|
201 | {}
|
---|
202 |
|
---|
203 | Dialog::AtomsQuery::~AtomsQuery() {}
|
---|
204 |
|
---|
205 | void Dialog::AtomsQuery::setResult() {
|
---|
206 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
207 | }
|
---|
208 |
|
---|
209 | // Molecule Queries
|
---|
210 |
|
---|
211 | Dialog::MoleculeQuery::MoleculeQuery(string title, std::string _description) :
|
---|
212 | Query(title, _description),
|
---|
213 | tmp(0)
|
---|
214 | {}
|
---|
215 |
|
---|
216 | Dialog::MoleculeQuery::~MoleculeQuery() {}
|
---|
217 |
|
---|
218 | void Dialog::MoleculeQuery::setResult() {
|
---|
219 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
220 | }
|
---|
221 |
|
---|
222 | // Molecules Queries
|
---|
223 |
|
---|
224 | Dialog::MoleculesQuery::MoleculesQuery(string title, std::string _description) :
|
---|
225 | Query(title, _description),
|
---|
226 | tmp(0)
|
---|
227 | {}
|
---|
228 |
|
---|
229 | Dialog::MoleculesQuery::~MoleculesQuery() {}
|
---|
230 |
|
---|
231 | void Dialog::MoleculesQuery::setResult() {
|
---|
232 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
233 | }
|
---|
234 |
|
---|
235 | // Vector Queries
|
---|
236 |
|
---|
237 | Dialog::VectorQuery::VectorQuery(std::string title,bool _check, std::string _description) :
|
---|
238 | Query(title, _description),
|
---|
239 | check(_check)
|
---|
240 | {}
|
---|
241 |
|
---|
242 | Dialog::VectorQuery::~VectorQuery()
|
---|
243 | {}
|
---|
244 |
|
---|
245 | void Dialog::VectorQuery::setResult() {
|
---|
246 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
247 | }
|
---|
248 |
|
---|
249 | // Vectors Queries
|
---|
250 |
|
---|
251 | Dialog::VectorsQuery::VectorsQuery(std::string title,bool _check, std::string _description) :
|
---|
252 | Query(title, _description),
|
---|
253 | check(_check)
|
---|
254 | {}
|
---|
255 |
|
---|
256 | Dialog::VectorsQuery::~VectorsQuery()
|
---|
257 | {}
|
---|
258 |
|
---|
259 | void Dialog::VectorsQuery::setResult() {
|
---|
260 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
261 | }
|
---|
262 |
|
---|
263 | // Box Queries
|
---|
264 |
|
---|
265 | Dialog::BoxQuery::BoxQuery(std::string title, std::string _description) :
|
---|
266 | Query(title, _description)
|
---|
267 | {}
|
---|
268 |
|
---|
269 | Dialog::BoxQuery::~BoxQuery()
|
---|
270 | {}
|
---|
271 |
|
---|
272 | void Dialog::BoxQuery::setResult() {
|
---|
273 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
274 | }
|
---|
275 |
|
---|
276 | // Element Queries
|
---|
277 | Dialog::ElementQuery::ElementQuery(std::string title, std::string _description) :
|
---|
278 | Query(title, _description)
|
---|
279 | {}
|
---|
280 |
|
---|
281 | Dialog::ElementQuery::~ElementQuery(){}
|
---|
282 |
|
---|
283 | void Dialog::ElementQuery::setResult(){
|
---|
284 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
285 | }
|
---|
286 |
|
---|
287 | // Elements Queries
|
---|
288 | Dialog::ElementsQuery::ElementsQuery(std::string title, std::string _description) :
|
---|
289 | Query(title, _description)
|
---|
290 | {}
|
---|
291 |
|
---|
292 | Dialog::ElementsQuery::~ElementsQuery(){}
|
---|
293 |
|
---|
294 | void Dialog::ElementsQuery::setResult(){
|
---|
295 | ValueStorage::getInstance().setCurrentValue(title.c_str(), tmp);
|
---|
296 | }
|
---|