source: src/UIElements/Dialog.cpp@ 8c5e2a

Candidate_v1.6.1 ChemicalSpaceEvaluator Gui_displays_atomic_force_velocity PythonUI_with_named_parameters TremoloParser_IncreasedPrecision
Last change on this file since 8c5e2a was f79d65, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Vector(s) are now stored as strings in Querys intermediately.

  • they get evaluated first after being stored in a Parameter/Value on request via get().
  • Needed to change all Vector(s)..Query's of all UIs and also the general base classes inside Dialog.
  • QtQueryList need to be specialized in order to allow a QtQueryList<Vector> to actually store a vector of strings.
  • we may use setAsString() in order to set the Parameter thankfully.
  • TESTS: All regression tests on Geometry Actions are now working. Removed XFAIL from Options/Session test that use Python, i.e. the ones we marked four commits ago.
  • Property mode set to 100644
File size: 5.6 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24 * Dialog.cpp
25 *
26 * Created on: Jan 5, 2010
27 * Author: crueger
28 */
29
30// include config.h
31#ifdef HAVE_CONFIG_H
32#include <config.h>
33#endif
34
35//#include "CodePatterns/MemDebug.hpp"
36
37#include "Dialog.hpp"
38
39#include "CodePatterns/Log.hpp"
40#include "CodePatterns/Verbose.hpp"
41
42#include "Parameters/ParameterExceptions.hpp"
43
44class Atom;
45class element;
46class RealSpaceMatrix;
47class molecule;
48class Vector;
49
50using namespace std;
51
52Dialog::Dialog(const std::string &_title)
53{
54}
55
56Dialog::~Dialog()
57{
58 list<Query*>::iterator iter;
59 for(iter=queries.begin();iter!=queries.end();iter++){
60 delete (*iter);
61 }
62}
63
64void Dialog::registerQuery(Query *query){
65 queries.push_back(query);
66}
67
68bool Dialog::display(){
69 handleAll();
70 setAll();
71 return true;
72// if(checkAll()){
73// setAll();
74// return true;
75// }
76// else{
77// return false;
78// }
79}
80
81void Dialog::handleAll(){
82 list<Query*>::iterator iter;
83 for(iter=queries.begin(); iter!=queries.end(); iter++){
84 try{
85 (*iter)->handle();
86 }catch(...){
87 // if any query fails (is canceled), we can end the handling process
88 ELOG(1, "The following query failed: " << (**iter).getTitle() << ".");
89 break;
90 }
91 }
92}
93
94bool Dialog::checkAll(){
95 list<Query*>::iterator iter;
96 bool retval = true;
97 for(iter=queries.begin(); iter!=queries.end(); iter++){
98 retval &= (*iter)->isValid();
99 // if any query fails (is canceled), we can end the handling process
100 if(!retval) {
101 ELOG(1, "The following query failed: " << (**iter).getTitle() << ".");
102 break;
103 }
104 }
105 return retval;
106}
107
108void Dialog::setAll(){
109 list<Query*>::iterator iter;
110 for(iter=queries.begin(); iter!=queries.end(); iter++) {
111// try {
112 (*iter)->setResult();
113// } catch (ParameterException &e) {
114// if( const std::string *name=boost::get_error_info<ParameterName>(e) )
115// ELOG(1, "The following parameter value is not valid: " << *name << ".");
116// break;
117// }
118 }
119}
120
121bool Dialog::hasQueries(){
122 list<Query*>::iterator iter;
123 size_t nonemptyQueries = 0;
124 for(iter=queries.begin(); iter!=queries.end(); iter++) {
125 // count all queries that not EmptyQuery
126 if (dynamic_cast<Dialog::EmptyQuery *>(*iter) == NULL)
127 ++nonemptyQueries;
128 }
129 return nonemptyQueries != 0;
130}
131
132/*template <> void Dialog::query<Dialog::EmptyType>(Parameter<Dialog::EmptyType> &param, const std::string title, const std::string description)
133{
134 queryEmpty(param, title, description);
135}*/
136template <>
137void Dialog::query<Vector>(Parameter<Vector> &param, const std::string title, const std::string description)
138{
139 queryVector(param, title, description);
140}
141template <>
142void Dialog::query< std::vector<Vector> >(Parameter< std::vector<Vector> > &param, const std::string title, const std::string description)
143{
144 queryVectors(param, title, description);
145}
146
147static const std::string concatenateStrings(const std::vector<std::string> &_strings)
148{
149 std::stringstream output;
150 for (std::vector<std::string>::const_iterator iter = _strings.begin();
151 iter != _strings.end(); ++iter)
152 output << *iter << " ";
153 return output.str();
154}
155
156bool Dialog::TQuery< std::vector<Vector> >::isValid()
157{
158 return param.isValidAsString(concatenateStrings(temp));
159}
160void Dialog::TQuery< std::vector<Vector> >::setResult()
161{
162 param.setAsString(concatenateStrings(temp));
163}
164
165/** With the following boost::preprocessor code we generate template
166 * specializations for each desired query types in the abstract class Dialog.
167 */
168#include "UIElements/GlobalListOfParameterQueries.hpp"
169#include "UIElements/Dialog_impl_pre.hpp"
170
171 // print a template body
172 #define dialog_definition(z,n,TOKENLIST,TYPELIST) \
173 template <> void Dialog::query< \
174 BOOST_PP_SEQ_ELEM(n, TYPELIST) \
175 >(Parameter< \
176 BOOST_PP_SEQ_ELEM(n, TYPELIST) \
177 > &param, const std::string title, const std::string description) { \
178 BOOST_PP_CAT(query, BOOST_PP_SEQ_ELEM(n, TOKENLIST)) \
179 (param, title, description); }
180
181 // print template specialization for every query type
182 #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type
183 #define BOOST_PP_LOCAL_MACRO(n) dialog_definition(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, GLOBALLISTOFPARAMETERQUERIES_Type)
184 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMETERTOKENS-1)
185 #include BOOST_PP_LOCAL_ITERATE()
186 #endif
187
188 #undef dialog_definition
189
190#include "Dialog_impl_undef.hpp"
191/* End of preprocessor code piece */
192
193//template <> void Dialog::query< std::vector<KeyValuePair> >(Parameter< std::vector<KeyValuePair> > &param, const std::string title, const std::string description)
194//{
195// queryKeyValuePairs(param, title, description);
196//}
197
198/************************** Query Infrastructure ************************/
199/* ---> shifted to folder Query */
200/************************************************************************/
Note: See TracBrowser for help on using the repository browser.