source: molecuilder/src/UIElements/Dialog.hpp@ eb129c

Last change on this file since eb129c was f467c6, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a method to query Elements using the Dialog structure

  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[6d21bd]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
[f89c1c]14class MoleculeListClass;
[3896fc]15class molecule;
[dbd19f]16class Vector;
[f467c6]17class element;
[f89c1c]18
[6d21bd]19class Dialog
20{
21public:
22 Dialog();
23 virtual ~Dialog();
24
[f89c1c]25 virtual void queryInt(const char *, int *)=0;
[dbd19f]26 virtual void queryDouble(const char*,double *)=0;
[f89c1c]27 virtual void queryString(const char*, std::string *)=0;
[3896fc]28 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*)=0;
[dbd19f]29 virtual void queryVector(const char*,Vector *,const double *const,bool)=0;
[f467c6]30 virtual void queryElement(const char*,element **)=0;
[6d21bd]31
[f89c1c]32 virtual bool display();
[6d21bd]33
34protected:
35 // methodology for handling queries
36 // all queries are stored and then performed at appropriate times
37
38 //these queries can be handled by this dialog
[f89c1c]39
40 //TODO: Find a way to reduce complexity...
41 //needs O(N*M) query classes, where N is the number of query types and M is the number of GUIs
42 //usual approach for reducing inheritance complexity (strategy pattern) does not work,
43 //due to lack of common code for query types as well as GUI-Types (all subtypes differ a lot)
44
45 //base class for all queries
46 class Query {
47 public:
48 Query(std::string _title);
[f467c6]49 virtual ~Query();
[f89c1c]50 virtual bool handle()=0;
51 virtual void setResult()=0;
52 protected:
53 const std::string getTitle() const;
54 private:
[6d21bd]55 std::string title;
56 };
57
[f89c1c]58 //Specialized classes for certain types. GUI-Types are not specialized at this time
59 class IntQuery : public Query {
60 public:
61 IntQuery(std::string title,int *_target);
[f467c6]62 virtual ~IntQuery();
[f89c1c]63 virtual bool handle()=0;
64 virtual void setResult();
65 protected:
66 int tmp;
67 private:
68 int *target;
69 };
70
[dbd19f]71 class DoubleQuery : public Query {
72 public:
73 DoubleQuery(std::string title,double *_target);
[f467c6]74 virtual ~DoubleQuery();
[dbd19f]75 virtual bool handle()=0;
76 virtual void setResult();
77 protected:
78 double tmp;
79 private:
80 double *target;
81 };
82
[f89c1c]83 class StringQuery : public Query {
84 public:
85 StringQuery(std::string title,std::string *_target);
[f467c6]86 virtual ~StringQuery();
[f89c1c]87 virtual bool handle()=0;
88 virtual void setResult();
89 protected:
90 std::string tmp;
91 private:
92 std::string *target;
93 };
94
[dbd19f]95
[3896fc]96 class MoleculeQuery : public Query {
97 public:
98 MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules);
[f467c6]99 virtual ~MoleculeQuery();
[3896fc]100 virtual bool handle()=0;
101 virtual void setResult();
102 protected:
103 molecule *tmp;
104 MoleculeListClass *molecules;
105 private:
106 molecule **target;
107 };
108
[dbd19f]109 class VectorQuery : public Query {
110 public:
111 VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check);
[f467c6]112 virtual ~VectorQuery();
[dbd19f]113 virtual bool handle()=0;
114 virtual void setResult();
115 protected:
116 Vector *tmp;
117 const double *const cellSize;
118 bool check;
119 private:
120 Vector *target;
121 };
122
[f467c6]123 class ElementQuery : public Query {
124 public:
125 ElementQuery(std::string title, element**_target);
126 virtual ~ElementQuery();
127 virtual bool handle()=0;
128 virtual void setResult();
129 protected:
130 element *tmp;
131 private:
132 element **target;
133 };
134
[f89c1c]135void registerQuery(Query* query);
136
137private:
138 std::list<Query*> queries;
[6d21bd]139
140};
141
142#endif /* DIALOG_HPP_ */
Note: See TracBrowser for help on using the repository browser.