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 queryEmpty(const char *, std::string = "")=0;
|
---|
26 | virtual void queryInt(const char *, int *, std::string = "")=0;
|
---|
27 | virtual void queryDouble(const char*,double *, std::string = "")=0;
|
---|
28 | virtual void queryString(const char*, std::string *, std::string = "")=0;
|
---|
29 | virtual void queryMolecule(const char*,molecule**,MoleculeListClass*, std::string = "")=0;
|
---|
30 | virtual void queryVector(const char*,Vector *,const double *const,bool, std::string = "")=0;
|
---|
31 | virtual void queryElement(const char*,const element **, std::string = "")=0;
|
---|
32 |
|
---|
33 | virtual bool display();
|
---|
34 |
|
---|
35 | protected:
|
---|
36 | // methodology for handling queries
|
---|
37 | // all queries are stored and then performed at appropriate times
|
---|
38 |
|
---|
39 | //these queries can be handled by this dialog
|
---|
40 |
|
---|
41 | //TODO: Find a way to reduce complexity...
|
---|
42 | //needs O(N*M) query classes, where N is the number of query types and M is the number of GUIs
|
---|
43 | //usual approach for reducing inheritance complexity (strategy pattern) does not work,
|
---|
44 | //due to lack of common code for query types as well as GUI-Types (all subtypes differ a lot)
|
---|
45 |
|
---|
46 | //base class for all queries
|
---|
47 | class Query {
|
---|
48 | public:
|
---|
49 | Query(std::string _title, std::string _description = "");
|
---|
50 | virtual ~Query();
|
---|
51 | virtual bool handle()=0;
|
---|
52 | virtual void setResult()=0;
|
---|
53 | protected:
|
---|
54 | const std::string getTitle() const;
|
---|
55 | const std::string getDescription() const;
|
---|
56 | private:
|
---|
57 | std::string title; //!< short title of the query
|
---|
58 | std::string description; //!< longer description for tooltips or for help
|
---|
59 | };
|
---|
60 |
|
---|
61 | // Empty Query is just meant for showing text, such as version, help, initial message or alike
|
---|
62 | class EmptyQuery : public Query {
|
---|
63 | public:
|
---|
64 | EmptyQuery(std::string title, std::string _description = "");
|
---|
65 | virtual ~EmptyQuery();
|
---|
66 | virtual bool handle()=0;
|
---|
67 | virtual void setResult();
|
---|
68 | };
|
---|
69 |
|
---|
70 | //Specialized classes for certain types. GUI-Types are not specialized at this time
|
---|
71 | class IntQuery : public Query {
|
---|
72 | public:
|
---|
73 | IntQuery(std::string title,int *_target, std::string _description = "");
|
---|
74 | virtual ~IntQuery();
|
---|
75 | virtual bool handle()=0;
|
---|
76 | virtual void setResult();
|
---|
77 | protected:
|
---|
78 | int tmp;
|
---|
79 | private:
|
---|
80 | int *target;
|
---|
81 | };
|
---|
82 |
|
---|
83 | class DoubleQuery : public Query {
|
---|
84 | public:
|
---|
85 | DoubleQuery(std::string title,double *_target, std::string _description = "");
|
---|
86 | virtual ~DoubleQuery();
|
---|
87 | virtual bool handle()=0;
|
---|
88 | virtual void setResult();
|
---|
89 | protected:
|
---|
90 | double tmp;
|
---|
91 | private:
|
---|
92 | double *target;
|
---|
93 | };
|
---|
94 |
|
---|
95 | class StringQuery : public Query {
|
---|
96 | public:
|
---|
97 | StringQuery(std::string title,std::string *_target, std::string _description = "");
|
---|
98 | virtual ~StringQuery();
|
---|
99 | virtual bool handle()=0;
|
---|
100 | virtual void setResult();
|
---|
101 | protected:
|
---|
102 | std::string tmp;
|
---|
103 | private:
|
---|
104 | std::string *target;
|
---|
105 | };
|
---|
106 |
|
---|
107 |
|
---|
108 | class MoleculeQuery : public Query {
|
---|
109 | public:
|
---|
110 | MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules, std::string _description = "");
|
---|
111 | virtual ~MoleculeQuery();
|
---|
112 | virtual bool handle()=0;
|
---|
113 | virtual void setResult();
|
---|
114 | protected:
|
---|
115 | molecule *tmp;
|
---|
116 | MoleculeListClass *molecules;
|
---|
117 | private:
|
---|
118 | molecule **target;
|
---|
119 | };
|
---|
120 |
|
---|
121 | class VectorQuery : public Query {
|
---|
122 | public:
|
---|
123 | VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description = "");
|
---|
124 | virtual ~VectorQuery();
|
---|
125 | virtual bool handle()=0;
|
---|
126 | virtual void setResult();
|
---|
127 | protected:
|
---|
128 | Vector *tmp;
|
---|
129 | const double *const cellSize;
|
---|
130 | bool check;
|
---|
131 | private:
|
---|
132 | Vector *target;
|
---|
133 | };
|
---|
134 |
|
---|
135 | class ElementQuery : public Query {
|
---|
136 | public:
|
---|
137 | ElementQuery(std::string title, const element**_target, std::string _description = "");
|
---|
138 | virtual ~ElementQuery();
|
---|
139 | virtual bool handle()=0;
|
---|
140 | virtual void setResult();
|
---|
141 | protected:
|
---|
142 | const element *tmp;
|
---|
143 | private:
|
---|
144 | const element **target;
|
---|
145 | };
|
---|
146 |
|
---|
147 | void registerQuery(Query* query);
|
---|
148 |
|
---|
149 | private:
|
---|
150 | std::list<Query*> queries;
|
---|
151 |
|
---|
152 | };
|
---|
153 |
|
---|
154 |
|
---|
155 | #endif /* DIALOG_HPP_ */
|
---|