source: src/UIElements/Dialog.hpp@ 0bb05a

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 0bb05a was 8bc733, checked in by Frederik Heber <heber@…>, 15 years ago

BoxQuery contains Box not double[6].

  • BUGFIX: VectorCommandLineQuery - isInside..() should have been !isInside...()
  • BoxCommandLineQuery::handle(),BoxTextQuery::handle() - use box class
  • BoxQuery has class Box as member variable
  • Property mode set to 100644
File size: 7.4 KB
Line 
1/*
2 * Dialog.hpp
3 *
4 * Created on: Jan 5, 2010
5 * Author: crueger
6 */
7
8#ifndef DIALOG_HPP_
9#define DIALOG_HPP_
10
11#include<string>
12#include<list>
13#include<vector>
14
15#include "Box.hpp"
16#include "vector.hpp"
17
18class atom;
19class Box;
20class element;
21class molecule;
22
23
24/** Dialog is one of the two main classes of the UIFactory base class.
25 *
26 * The Dialog is meant for asking the user for information needed to perform actions he
27 * desires, such as asking for a position in space or a length.
28 *
29 * For this purpose there is the base class Query and numerous specializations for each
30 * of the types to be asked. There are primitives integer, doubles and string, but also
31 * advanced types such as element, molecule or Vector. There is also an empty query for
32 * displaying text.
33 */
34class Dialog
35{
36public:
37 Dialog();
38 virtual ~Dialog();
39
40 virtual void queryEmpty(const char *, std::string = "")=0;
41 virtual void queryBoolean(const char *, std::string = "")=0;
42 virtual void queryInt(const char *, std::string = "")=0;
43 virtual void queryInts(const char *, std::string = "")=0;
44 virtual void queryDouble(const char*, std::string = "")=0;
45 virtual void queryDoubles(const char*, std::string = "")=0;
46 virtual void queryString(const char*, std::string = "")=0;
47 virtual void queryStrings(const char*, std::string = "")=0;
48 virtual void queryAtom(const char*,std::string = "")=0;
49 virtual void queryAtoms(const char*,std::string = "")=0;
50 virtual void queryMolecule(const char*, std::string = "")=0;
51 virtual void queryMolecules(const char*, std::string = "")=0;
52 virtual void queryVector(const char*,bool, std::string = "")=0;
53 virtual void queryVectors(const char*,bool, std::string = "")=0;
54 virtual void queryBox(const char*, std::string = "")=0;
55 virtual void queryElement(const char*, std::string = "")=0;
56 virtual void queryElements(const char*, std::string = "")=0;
57
58 virtual bool display();
59
60 virtual bool checkAll();
61 virtual void setAll();
62
63protected:
64 // methodology for handling queries
65 // all queries are stored and then performed at appropriate times
66
67 //these queries can be handled by this dialog
68
69 //TODO: Find a way to reduce complexity...
70 //needs O(N*M) query classes, where N is the number of query types and M is the number of GUIs
71 //usual approach for reducing inheritance complexity (strategy pattern) does not work,
72 //due to lack of common code for query types as well as GUI-Types (all subtypes differ a lot)
73
74 //base class for all queries
75 class Query {
76 friend class Dialog;
77 public:
78 Query(std::string _title, std::string _description = "");
79 virtual ~Query();
80 virtual bool handle()=0;
81 virtual void setResult()=0;
82 protected:
83 const std::string getTitle() const;
84 const std::string getDescription() const;
85 private:
86 std::string title; //!< short title of the query
87 std::string description; //!< longer description for tooltips or for help
88 };
89
90 // Empty Query is just meant for showing text, such as version, help, initial message or alike
91 class EmptyQuery : public Query {
92 public:
93 EmptyQuery(std::string title, std::string _description = "");
94 virtual ~EmptyQuery();
95 virtual bool handle()=0;
96 virtual void setResult();
97 };
98
99 //Specialized classes for certain types. GUI-Types are not specialized at this time
100 class BooleanQuery : public Query {
101 public:
102 BooleanQuery(std::string title, std::string _description = "");
103 virtual ~BooleanQuery();
104 virtual bool handle()=0;
105 virtual void setResult();
106 protected:
107 bool tmp;
108 };
109
110 class IntQuery : public Query {
111 public:
112 IntQuery(std::string title, std::string _description = "");
113 virtual ~IntQuery();
114 virtual bool handle()=0;
115 virtual void setResult();
116 protected:
117 int tmp;
118 };
119
120 class IntsQuery : public Query {
121 public:
122 IntsQuery(std::string title, std::string _description = "");
123 virtual ~IntsQuery();
124 virtual bool handle()=0;
125 virtual void setResult();
126 protected:
127 int temp;
128 std::vector<int> tmp;
129 };
130
131 class DoubleQuery : public Query {
132 public:
133 DoubleQuery(std::string title, std::string _description = "");
134 virtual ~DoubleQuery();
135 virtual bool handle()=0;
136 virtual void setResult();
137 protected:
138 double tmp;
139 };
140
141 class DoublesQuery : public Query {
142 public:
143 DoublesQuery(std::string title, std::string _description = "");
144 virtual ~DoublesQuery();
145 virtual bool handle()=0;
146 virtual void setResult();
147 protected:
148 double temp;
149 std::vector<double> tmp;
150 };
151
152 class StringQuery : public Query {
153 public:
154 StringQuery(std::string title, std::string _description = "");
155 virtual ~StringQuery();
156 virtual bool handle()=0;
157 virtual void setResult();
158 protected:
159 std::string tmp;
160 };
161
162 class StringsQuery : public Query {
163 public:
164 StringsQuery(std::string title, std::string _description = "");
165 virtual ~StringsQuery();
166 virtual bool handle()=0;
167 virtual void setResult();
168 protected:
169 std::string temp;
170 std::vector<std::string> tmp;
171 };
172
173 class MoleculeQuery : public Query {
174 public:
175 MoleculeQuery(std::string title, std::string _description = "");
176 virtual ~MoleculeQuery();
177 virtual bool handle()=0;
178 virtual void setResult();
179 protected:
180 molecule *tmp;
181 };
182
183 class MoleculesQuery : public Query {
184 public:
185 MoleculesQuery(std::string title, std::string _description = "");
186 virtual ~MoleculesQuery();
187 virtual bool handle()=0;
188 virtual void setResult();
189 protected:
190 molecule * temp;
191 std::vector<molecule *> tmp;
192 };
193
194 class AtomQuery : public Query {
195 public:
196 AtomQuery(std::string title, std::string _description = "");
197 virtual ~AtomQuery();
198 virtual bool handle()=0;
199 virtual void setResult();
200 protected:
201 atom *tmp;
202 };
203
204 class AtomsQuery : public Query {
205 public:
206 AtomsQuery(std::string title, std::string _description = "");
207 virtual ~AtomsQuery();
208 virtual bool handle()=0;
209 virtual void setResult();
210 protected:
211 atom *temp;
212 std::vector<atom *> tmp;
213 };
214
215 class VectorQuery : public Query {
216 public:
217 VectorQuery(std::string title,bool _check, std::string _description = "");
218 virtual ~VectorQuery();
219 virtual bool handle()=0;
220 virtual void setResult();
221 protected:
222 Vector tmp;
223 bool check;
224 };
225
226 class VectorsQuery : public Query {
227 public:
228 VectorsQuery(std::string title,bool _check, std::string _description = "");
229 virtual ~VectorsQuery();
230 virtual bool handle()=0;
231 virtual void setResult();
232 protected:
233 Vector temp;
234 std::vector<Vector> tmp;
235 bool check;
236 };
237
238 class BoxQuery : public Query {
239 public:
240 BoxQuery(std::string title, std::string _description = "");
241 virtual ~BoxQuery();
242 virtual bool handle()=0;
243 virtual void setResult();
244 protected:
245 Box tmp;
246 };
247
248 class ElementQuery : public Query {
249 public:
250 ElementQuery(std::string title, std::string _description = "");
251 virtual ~ElementQuery();
252 virtual bool handle()=0;
253 virtual void setResult();
254 protected:
255 element * tmp;
256 };
257
258 class ElementsQuery : public Query {
259 public:
260 ElementsQuery(std::string title, std::string _description = "");
261 virtual ~ElementsQuery();
262 virtual bool handle()=0;
263 virtual void setResult();
264 protected:
265 element *temp;
266 std::vector<element *> tmp;
267 };
268
269void registerQuery(Query* query);
270
271private:
272 std::list<Query*> queries;
273
274};
275
276
277#endif /* DIALOG_HPP_ */
Note: See TracBrowser for help on using the repository browser.