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