[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>
|
---|
| 13 |
|
---|
[45f5d6] | 14 | class MoleculeListClass;
|
---|
[7aa000] | 15 | class molecule;
|
---|
[2ededc2] | 16 | class Vector;
|
---|
[5a7243] | 17 | class element;
|
---|
[45f5d6] | 18 |
|
---|
[f5a86a] | 19 | class Dialog
|
---|
| 20 | {
|
---|
| 21 | public:
|
---|
| 22 | Dialog();
|
---|
| 23 | virtual ~Dialog();
|
---|
| 24 |
|
---|
[86466e] | 25 | virtual void queryEmpty(const char *, std::string = "")=0;
|
---|
[a2ab15] | 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;
|
---|
[f5a86a] | 32 |
|
---|
[45f5d6] | 33 | virtual bool display();
|
---|
[f5a86a] | 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
|
---|
[45f5d6] | 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:
|
---|
[a2ab15] | 49 | Query(std::string _title, std::string _description = "");
|
---|
[5a7243] | 50 | virtual ~Query();
|
---|
[45f5d6] | 51 | virtual bool handle()=0;
|
---|
| 52 | virtual void setResult()=0;
|
---|
| 53 | protected:
|
---|
| 54 | const std::string getTitle() const;
|
---|
[a2ab15] | 55 | const std::string getDescription() const;
|
---|
[45f5d6] | 56 | private:
|
---|
[a2ab15] | 57 | std::string title; //!< short title of the query
|
---|
| 58 | std::string description; //!< longer description for tooltips or for help
|
---|
[f5a86a] | 59 | };
|
---|
| 60 |
|
---|
[86466e] | 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 |
|
---|
[45f5d6] | 70 | //Specialized classes for certain types. GUI-Types are not specialized at this time
|
---|
| 71 | class IntQuery : public Query {
|
---|
| 72 | public:
|
---|
[a2ab15] | 73 | IntQuery(std::string title,int *_target, std::string _description = "");
|
---|
[5a7243] | 74 | virtual ~IntQuery();
|
---|
[45f5d6] | 75 | virtual bool handle()=0;
|
---|
| 76 | virtual void setResult();
|
---|
| 77 | protected:
|
---|
| 78 | int tmp;
|
---|
| 79 | private:
|
---|
| 80 | int *target;
|
---|
| 81 | };
|
---|
| 82 |
|
---|
[2ededc2] | 83 | class DoubleQuery : public Query {
|
---|
| 84 | public:
|
---|
[a2ab15] | 85 | DoubleQuery(std::string title,double *_target, std::string _description = "");
|
---|
[5a7243] | 86 | virtual ~DoubleQuery();
|
---|
[2ededc2] | 87 | virtual bool handle()=0;
|
---|
| 88 | virtual void setResult();
|
---|
| 89 | protected:
|
---|
| 90 | double tmp;
|
---|
| 91 | private:
|
---|
| 92 | double *target;
|
---|
| 93 | };
|
---|
| 94 |
|
---|
[45f5d6] | 95 | class StringQuery : public Query {
|
---|
| 96 | public:
|
---|
[a2ab15] | 97 | StringQuery(std::string title,std::string *_target, std::string _description = "");
|
---|
[5a7243] | 98 | virtual ~StringQuery();
|
---|
[45f5d6] | 99 | virtual bool handle()=0;
|
---|
| 100 | virtual void setResult();
|
---|
| 101 | protected:
|
---|
| 102 | std::string tmp;
|
---|
| 103 | private:
|
---|
| 104 | std::string *target;
|
---|
| 105 | };
|
---|
| 106 |
|
---|
[2ededc2] | 107 |
|
---|
[7aa000] | 108 | class MoleculeQuery : public Query {
|
---|
| 109 | public:
|
---|
[a2ab15] | 110 | MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules, std::string _description = "");
|
---|
[5a7243] | 111 | virtual ~MoleculeQuery();
|
---|
[7aa000] | 112 | virtual bool handle()=0;
|
---|
| 113 | virtual void setResult();
|
---|
| 114 | protected:
|
---|
| 115 | molecule *tmp;
|
---|
| 116 | MoleculeListClass *molecules;
|
---|
| 117 | private:
|
---|
| 118 | molecule **target;
|
---|
| 119 | };
|
---|
| 120 |
|
---|
[2ededc2] | 121 | class VectorQuery : public Query {
|
---|
| 122 | public:
|
---|
[a2ab15] | 123 | VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description = "");
|
---|
[5a7243] | 124 | virtual ~VectorQuery();
|
---|
[2ededc2] | 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 |
|
---|
[5a7243] | 135 | class ElementQuery : public Query {
|
---|
| 136 | public:
|
---|
[a2ab15] | 137 | ElementQuery(std::string title, const element**_target, std::string _description = "");
|
---|
[5a7243] | 138 | virtual ~ElementQuery();
|
---|
| 139 | virtual bool handle()=0;
|
---|
| 140 | virtual void setResult();
|
---|
| 141 | protected:
|
---|
[5605032] | 142 | const element *tmp;
|
---|
[5a7243] | 143 | private:
|
---|
[5605032] | 144 | const element **target;
|
---|
[5a7243] | 145 | };
|
---|
| 146 |
|
---|
[45f5d6] | 147 | void registerQuery(Query* query);
|
---|
| 148 |
|
---|
| 149 | private:
|
---|
| 150 | std::list<Query*> queries;
|
---|
[f5a86a] | 151 |
|
---|
| 152 | };
|
---|
| 153 |
|
---|
[a2ab15] | 154 |
|
---|
[f5a86a] | 155 | #endif /* DIALOG_HPP_ */
|
---|