[f5a86a] | 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>
|
---|
[104524] | 13 | #include<vector>
|
---|
[f5a86a] | 14 |
|
---|
[97ebf8] | 15 | class atom;
|
---|
| 16 | class element;
|
---|
[7aa000] | 17 | class molecule;
|
---|
[2ededc2] | 18 | class Vector;
|
---|
[45f5d6] | 19 |
|
---|
[f5a86a] | 20 | class Dialog
|
---|
| 21 | {
|
---|
| 22 | public:
|
---|
| 23 | Dialog();
|
---|
| 24 | virtual ~Dialog();
|
---|
| 25 |
|
---|
[86466e] | 26 | virtual void queryEmpty(const char *, std::string = "")=0;
|
---|
[97ebf8] | 27 | virtual void queryBoolean(const char *, bool *, std::string = "")=0;
|
---|
[a2ab15] | 28 | virtual void queryInt(const char *, int *, std::string = "")=0;
|
---|
| 29 | virtual void queryDouble(const char*,double *, std::string = "")=0;
|
---|
| 30 | virtual void queryString(const char*, std::string *, std::string = "")=0;
|
---|
[97ebf8] | 31 | virtual void queryAtom(const char*,atom**,std::string = "")=0;
|
---|
| 32 | virtual void queryMolecule(const char*,molecule**, std::string = "")=0;
|
---|
[a2ab15] | 33 | virtual void queryVector(const char*,Vector *,const double *const,bool, std::string = "")=0;
|
---|
[97ebf8] | 34 | virtual void queryBox(const char*,double ** const, std::string = "")=0;
|
---|
[104524] | 35 | virtual void queryElement(const char*, std::vector<element *> *, std::string = "")=0;
|
---|
[f5a86a] | 36 |
|
---|
[45f5d6] | 37 | virtual bool display();
|
---|
[f5a86a] | 38 |
|
---|
| 39 | protected:
|
---|
| 40 | // methodology for handling queries
|
---|
| 41 | // all queries are stored and then performed at appropriate times
|
---|
| 42 |
|
---|
| 43 | //these queries can be handled by this dialog
|
---|
[45f5d6] | 44 |
|
---|
| 45 | //TODO: Find a way to reduce complexity...
|
---|
| 46 | //needs O(N*M) query classes, where N is the number of query types and M is the number of GUIs
|
---|
| 47 | //usual approach for reducing inheritance complexity (strategy pattern) does not work,
|
---|
| 48 | //due to lack of common code for query types as well as GUI-Types (all subtypes differ a lot)
|
---|
| 49 |
|
---|
| 50 | //base class for all queries
|
---|
| 51 | class Query {
|
---|
[94d131] | 52 | friend class Dialog;
|
---|
[45f5d6] | 53 | public:
|
---|
[a2ab15] | 54 | Query(std::string _title, std::string _description = "");
|
---|
[5a7243] | 55 | virtual ~Query();
|
---|
[45f5d6] | 56 | virtual bool handle()=0;
|
---|
| 57 | virtual void setResult()=0;
|
---|
| 58 | protected:
|
---|
| 59 | const std::string getTitle() const;
|
---|
[a2ab15] | 60 | const std::string getDescription() const;
|
---|
[45f5d6] | 61 | private:
|
---|
[a2ab15] | 62 | std::string title; //!< short title of the query
|
---|
| 63 | std::string description; //!< longer description for tooltips or for help
|
---|
[f5a86a] | 64 | };
|
---|
| 65 |
|
---|
[86466e] | 66 | // Empty Query is just meant for showing text, such as version, help, initial message or alike
|
---|
| 67 | class EmptyQuery : public Query {
|
---|
| 68 | public:
|
---|
| 69 | EmptyQuery(std::string title, std::string _description = "");
|
---|
| 70 | virtual ~EmptyQuery();
|
---|
| 71 | virtual bool handle()=0;
|
---|
| 72 | virtual void setResult();
|
---|
| 73 | };
|
---|
| 74 |
|
---|
[45f5d6] | 75 | //Specialized classes for certain types. GUI-Types are not specialized at this time
|
---|
[97ebf8] | 76 | class BooleanQuery : public Query {
|
---|
| 77 | public:
|
---|
| 78 | BooleanQuery(std::string title,bool *_target, std::string _description = "");
|
---|
| 79 | virtual ~BooleanQuery();
|
---|
| 80 | virtual bool handle()=0;
|
---|
| 81 | virtual void setResult();
|
---|
| 82 | protected:
|
---|
| 83 | bool tmp;
|
---|
| 84 | private:
|
---|
| 85 | bool *target;
|
---|
| 86 | };
|
---|
| 87 |
|
---|
[45f5d6] | 88 | class IntQuery : public Query {
|
---|
| 89 | public:
|
---|
[a2ab15] | 90 | IntQuery(std::string title,int *_target, std::string _description = "");
|
---|
[5a7243] | 91 | virtual ~IntQuery();
|
---|
[45f5d6] | 92 | virtual bool handle()=0;
|
---|
| 93 | virtual void setResult();
|
---|
| 94 | protected:
|
---|
| 95 | int tmp;
|
---|
| 96 | private:
|
---|
| 97 | int *target;
|
---|
| 98 | };
|
---|
| 99 |
|
---|
[2ededc2] | 100 | class DoubleQuery : public Query {
|
---|
| 101 | public:
|
---|
[a2ab15] | 102 | DoubleQuery(std::string title,double *_target, std::string _description = "");
|
---|
[5a7243] | 103 | virtual ~DoubleQuery();
|
---|
[2ededc2] | 104 | virtual bool handle()=0;
|
---|
| 105 | virtual void setResult();
|
---|
| 106 | protected:
|
---|
| 107 | double tmp;
|
---|
| 108 | private:
|
---|
| 109 | double *target;
|
---|
| 110 | };
|
---|
| 111 |
|
---|
[45f5d6] | 112 | class StringQuery : public Query {
|
---|
| 113 | public:
|
---|
[a2ab15] | 114 | StringQuery(std::string title,std::string *_target, std::string _description = "");
|
---|
[5a7243] | 115 | virtual ~StringQuery();
|
---|
[45f5d6] | 116 | virtual bool handle()=0;
|
---|
| 117 | virtual void setResult();
|
---|
| 118 | protected:
|
---|
| 119 | std::string tmp;
|
---|
| 120 | private:
|
---|
| 121 | std::string *target;
|
---|
| 122 | };
|
---|
| 123 |
|
---|
[7aa000] | 124 | class MoleculeQuery : public Query {
|
---|
| 125 | public:
|
---|
[97ebf8] | 126 | MoleculeQuery(std::string title, molecule **_target, std::string _description = "");
|
---|
[5a7243] | 127 | virtual ~MoleculeQuery();
|
---|
[7aa000] | 128 | virtual bool handle()=0;
|
---|
| 129 | virtual void setResult();
|
---|
| 130 | protected:
|
---|
| 131 | molecule *tmp;
|
---|
| 132 | private:
|
---|
| 133 | molecule **target;
|
---|
| 134 | };
|
---|
| 135 |
|
---|
[97ebf8] | 136 | class AtomQuery : public Query {
|
---|
| 137 | public:
|
---|
| 138 | AtomQuery(std::string title, atom **_target, std::string _description = "");
|
---|
| 139 | virtual ~AtomQuery();
|
---|
| 140 | virtual bool handle()=0;
|
---|
| 141 | virtual void setResult();
|
---|
| 142 | protected:
|
---|
| 143 | atom *tmp;
|
---|
| 144 | private:
|
---|
| 145 | atom **target;
|
---|
| 146 | };
|
---|
| 147 |
|
---|
[2ededc2] | 148 | class VectorQuery : public Query {
|
---|
| 149 | public:
|
---|
[a2ab15] | 150 | VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description = "");
|
---|
[5a7243] | 151 | virtual ~VectorQuery();
|
---|
[2ededc2] | 152 | virtual bool handle()=0;
|
---|
| 153 | virtual void setResult();
|
---|
| 154 | protected:
|
---|
| 155 | Vector *tmp;
|
---|
| 156 | const double *const cellSize;
|
---|
| 157 | bool check;
|
---|
| 158 | private:
|
---|
| 159 | Vector *target;
|
---|
| 160 | };
|
---|
| 161 |
|
---|
[97ebf8] | 162 | class BoxQuery : public Query {
|
---|
| 163 | public:
|
---|
| 164 | BoxQuery(std::string title,double ** const _cellSize, std::string _description = "");
|
---|
| 165 | virtual ~BoxQuery();
|
---|
| 166 | virtual bool handle()=0;
|
---|
| 167 | virtual void setResult();
|
---|
| 168 | protected:
|
---|
| 169 | double *tmp;
|
---|
| 170 | private:
|
---|
| 171 | double **target;
|
---|
| 172 | };
|
---|
| 173 |
|
---|
[5a7243] | 174 | class ElementQuery : public Query {
|
---|
| 175 | public:
|
---|
[104524] | 176 | ElementQuery(std::string title, std::vector<element *> *_target, std::string _description = "");
|
---|
[5a7243] | 177 | virtual ~ElementQuery();
|
---|
| 178 | virtual bool handle()=0;
|
---|
| 179 | virtual void setResult();
|
---|
| 180 | protected:
|
---|
[104524] | 181 | std::vector<element *> elements;
|
---|
[5a7243] | 182 | private:
|
---|
[104524] | 183 | std::vector<element *> * const target;
|
---|
[5a7243] | 184 | };
|
---|
| 185 |
|
---|
[45f5d6] | 186 | void registerQuery(Query* query);
|
---|
| 187 |
|
---|
| 188 | private:
|
---|
| 189 | std::list<Query*> queries;
|
---|
[f5a86a] | 190 |
|
---|
| 191 | };
|
---|
| 192 |
|
---|
[a2ab15] | 193 |
|
---|
[f5a86a] | 194 | #endif /* DIALOG_HPP_ */
|
---|