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