| 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 queryInt(const char *, int *)=0;
 | 
|---|
| 26 |   virtual void queryDouble(const char*,double *)=0;
 | 
|---|
| 27 |   virtual void queryString(const char*, std::string *)=0;
 | 
|---|
| 28 |   virtual void queryMolecule(const char*,molecule**,MoleculeListClass*)=0;
 | 
|---|
| 29 |   virtual void queryVector(const char*,Vector *,const double *const,bool)=0;
 | 
|---|
| 30 |   virtual void queryElement(const char*,const element **)=0;
 | 
|---|
| 31 | 
 | 
|---|
| 32 |   virtual bool display();
 | 
|---|
| 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
 | 
|---|
| 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:
 | 
|---|
| 48 |     Query(std::string _title);
 | 
|---|
| 49 |     virtual ~Query();
 | 
|---|
| 50 |     virtual bool handle()=0;
 | 
|---|
| 51 |     virtual void setResult()=0;
 | 
|---|
| 52 |   protected:
 | 
|---|
| 53 |     const std::string getTitle() const;
 | 
|---|
| 54 |   private:
 | 
|---|
| 55 |     std::string title;
 | 
|---|
| 56 |   };
 | 
|---|
| 57 | 
 | 
|---|
| 58 |   //Specialized classes for certain types. GUI-Types are not specialized at this time
 | 
|---|
| 59 |   class IntQuery : public Query {
 | 
|---|
| 60 |   public:
 | 
|---|
| 61 |     IntQuery(std::string title,int *_target);
 | 
|---|
| 62 |     virtual ~IntQuery();
 | 
|---|
| 63 |     virtual bool handle()=0;
 | 
|---|
| 64 |     virtual void setResult();
 | 
|---|
| 65 |   protected:
 | 
|---|
| 66 |     int tmp;
 | 
|---|
| 67 |   private:
 | 
|---|
| 68 |     int *target;
 | 
|---|
| 69 |   };
 | 
|---|
| 70 | 
 | 
|---|
| 71 |   class DoubleQuery : public Query {
 | 
|---|
| 72 |   public:
 | 
|---|
| 73 |     DoubleQuery(std::string title,double *_target);
 | 
|---|
| 74 |     virtual ~DoubleQuery();
 | 
|---|
| 75 |     virtual bool handle()=0;
 | 
|---|
| 76 |     virtual void setResult();
 | 
|---|
| 77 |   protected:
 | 
|---|
| 78 |     double tmp;
 | 
|---|
| 79 |   private:
 | 
|---|
| 80 |     double *target;
 | 
|---|
| 81 |   };
 | 
|---|
| 82 | 
 | 
|---|
| 83 |   class StringQuery : public Query {
 | 
|---|
| 84 |   public:
 | 
|---|
| 85 |     StringQuery(std::string title,std::string *_target);
 | 
|---|
| 86 |     virtual ~StringQuery();
 | 
|---|
| 87 |     virtual bool handle()=0;
 | 
|---|
| 88 |     virtual void setResult();
 | 
|---|
| 89 |   protected:
 | 
|---|
| 90 |     std::string tmp;
 | 
|---|
| 91 |   private:
 | 
|---|
| 92 |     std::string *target;
 | 
|---|
| 93 |   };
 | 
|---|
| 94 | 
 | 
|---|
| 95 | 
 | 
|---|
| 96 |   class MoleculeQuery : public Query {
 | 
|---|
| 97 |   public:
 | 
|---|
| 98 |     MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules);
 | 
|---|
| 99 |     virtual ~MoleculeQuery();
 | 
|---|
| 100 |     virtual bool handle()=0;
 | 
|---|
| 101 |     virtual void setResult();
 | 
|---|
| 102 |   protected:
 | 
|---|
| 103 |     molecule *tmp;
 | 
|---|
| 104 |     MoleculeListClass *molecules;
 | 
|---|
| 105 |   private:
 | 
|---|
| 106 |     molecule **target;
 | 
|---|
| 107 |   };
 | 
|---|
| 108 | 
 | 
|---|
| 109 |   class VectorQuery : public Query {
 | 
|---|
| 110 |   public:
 | 
|---|
| 111 |       VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check);
 | 
|---|
| 112 |       virtual ~VectorQuery();
 | 
|---|
| 113 |       virtual bool handle()=0;
 | 
|---|
| 114 |       virtual void setResult();
 | 
|---|
| 115 |     protected:
 | 
|---|
| 116 |       Vector *tmp;
 | 
|---|
| 117 |       const double *const cellSize;
 | 
|---|
| 118 |       bool check;
 | 
|---|
| 119 |     private:
 | 
|---|
| 120 |       Vector *target;
 | 
|---|
| 121 |   };
 | 
|---|
| 122 | 
 | 
|---|
| 123 |   class ElementQuery : public Query {
 | 
|---|
| 124 |   public:
 | 
|---|
| 125 |     ElementQuery(std::string title, const element**_target);
 | 
|---|
| 126 |     virtual ~ElementQuery();
 | 
|---|
| 127 |     virtual bool handle()=0;
 | 
|---|
| 128 |     virtual void setResult();
 | 
|---|
| 129 |   protected:
 | 
|---|
| 130 |     const element *tmp;
 | 
|---|
| 131 |   private:
 | 
|---|
| 132 |     const element **target;
 | 
|---|
| 133 |   };
 | 
|---|
| 134 | 
 | 
|---|
| 135 | void registerQuery(Query* query);
 | 
|---|
| 136 | 
 | 
|---|
| 137 | private:
 | 
|---|
| 138 |   std::list<Query*> queries;
 | 
|---|
| 139 | 
 | 
|---|
| 140 | };
 | 
|---|
| 141 | 
 | 
|---|
| 142 | #endif /* DIALOG_HPP_ */
 | 
|---|