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 |
|
---|
14 | class MoleculeListClass;
|
---|
15 | class molecule;
|
---|
16 | class Vector;
|
---|
17 | class element;
|
---|
18 |
|
---|
19 | class Dialog
|
---|
20 | {
|
---|
21 | public:
|
---|
22 | Dialog();
|
---|
23 | virtual ~Dialog();
|
---|
24 |
|
---|
25 | virtual void queryInt(const char *, int *, std::string = "")=0;
|
---|
26 | virtual void queryDouble(const char*,double *, std::string = "")=0;
|
---|
27 | virtual void queryString(const char*, std::string *, std::string = "")=0;
|
---|
28 | virtual void queryMolecule(const char*,molecule**,MoleculeListClass*, std::string = "")=0;
|
---|
29 | virtual void queryVector(const char*,Vector *,const double *const,bool, std::string = "")=0;
|
---|
30 | virtual void queryElement(const char*,const element **, std::string = "")=0;
|
---|
31 |
|
---|
32 | virtual bool display();
|
---|
33 |
|
---|
34 | protected:
|
---|
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
|
---|
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, std::string _description = "");
|
---|
49 | virtual ~Query();
|
---|
50 | virtual bool handle()=0;
|
---|
51 | virtual void setResult()=0;
|
---|
52 | protected:
|
---|
53 | const std::string getTitle() const;
|
---|
54 | const std::string getDescription() const;
|
---|
55 | private:
|
---|
56 | std::string title; //!< short title of the query
|
---|
57 | std::string description; //!< longer description for tooltips or for help
|
---|
58 | };
|
---|
59 |
|
---|
60 | //Specialized classes for certain types. GUI-Types are not specialized at this time
|
---|
61 | class IntQuery : public Query {
|
---|
62 | public:
|
---|
63 | IntQuery(std::string title,int *_target, std::string _description = "");
|
---|
64 | virtual ~IntQuery();
|
---|
65 | virtual bool handle()=0;
|
---|
66 | virtual void setResult();
|
---|
67 | protected:
|
---|
68 | int tmp;
|
---|
69 | private:
|
---|
70 | int *target;
|
---|
71 | };
|
---|
72 |
|
---|
73 | class DoubleQuery : public Query {
|
---|
74 | public:
|
---|
75 | DoubleQuery(std::string title,double *_target, std::string _description = "");
|
---|
76 | virtual ~DoubleQuery();
|
---|
77 | virtual bool handle()=0;
|
---|
78 | virtual void setResult();
|
---|
79 | protected:
|
---|
80 | double tmp;
|
---|
81 | private:
|
---|
82 | double *target;
|
---|
83 | };
|
---|
84 |
|
---|
85 | class StringQuery : public Query {
|
---|
86 | public:
|
---|
87 | StringQuery(std::string title,std::string *_target, std::string _description = "");
|
---|
88 | virtual ~StringQuery();
|
---|
89 | virtual bool handle()=0;
|
---|
90 | virtual void setResult();
|
---|
91 | protected:
|
---|
92 | std::string tmp;
|
---|
93 | private:
|
---|
94 | std::string *target;
|
---|
95 | };
|
---|
96 |
|
---|
97 |
|
---|
98 | class MoleculeQuery : public Query {
|
---|
99 | public:
|
---|
100 | MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules, std::string _description = "");
|
---|
101 | virtual ~MoleculeQuery();
|
---|
102 | virtual bool handle()=0;
|
---|
103 | virtual void setResult();
|
---|
104 | protected:
|
---|
105 | molecule *tmp;
|
---|
106 | MoleculeListClass *molecules;
|
---|
107 | private:
|
---|
108 | molecule **target;
|
---|
109 | };
|
---|
110 |
|
---|
111 | class VectorQuery : public Query {
|
---|
112 | public:
|
---|
113 | VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description = "");
|
---|
114 | virtual ~VectorQuery();
|
---|
115 | virtual bool handle()=0;
|
---|
116 | virtual void setResult();
|
---|
117 | protected:
|
---|
118 | Vector *tmp;
|
---|
119 | const double *const cellSize;
|
---|
120 | bool check;
|
---|
121 | private:
|
---|
122 | Vector *target;
|
---|
123 | };
|
---|
124 |
|
---|
125 | class ElementQuery : public Query {
|
---|
126 | public:
|
---|
127 | ElementQuery(std::string title, const element**_target, std::string _description = "");
|
---|
128 | virtual ~ElementQuery();
|
---|
129 | virtual bool handle()=0;
|
---|
130 | virtual void setResult();
|
---|
131 | protected:
|
---|
132 | const element *tmp;
|
---|
133 | private:
|
---|
134 | const element **target;
|
---|
135 | };
|
---|
136 |
|
---|
137 | void registerQuery(Query* query);
|
---|
138 |
|
---|
139 | private:
|
---|
140 | std::list<Query*> queries;
|
---|
141 |
|
---|
142 | };
|
---|
143 |
|
---|
144 |
|
---|
145 | #endif /* DIALOG_HPP_ */
|
---|