| 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 | 
 | 
|---|
| 17 | class Dialog
 | 
|---|
| 18 | {
 | 
|---|
| 19 | public:
 | 
|---|
| 20 |   Dialog();
 | 
|---|
| 21 |   virtual ~Dialog();
 | 
|---|
| 22 | 
 | 
|---|
| 23 |   virtual void queryInt(const char *, int *)=0;
 | 
|---|
| 24 |   virtual void queryString(const char*, std::string *)=0;
 | 
|---|
| 25 |   virtual void queryMolecule(const char*,molecule**,MoleculeListClass*)=0;
 | 
|---|
| 26 | 
 | 
|---|
| 27 |   virtual bool display();
 | 
|---|
| 28 | 
 | 
|---|
| 29 | protected:
 | 
|---|
| 30 |   // methodology for handling queries
 | 
|---|
| 31 |   // all queries are stored and then performed at appropriate times
 | 
|---|
| 32 | 
 | 
|---|
| 33 |   //these queries can be handled by this dialog
 | 
|---|
| 34 | 
 | 
|---|
| 35 |   //TODO: Find a way to reduce complexity...
 | 
|---|
| 36 |   //needs O(N*M) query classes, where N is the number of query types and M is the number of GUIs
 | 
|---|
| 37 |   //usual approach for reducing inheritance complexity (strategy pattern) does not work,
 | 
|---|
| 38 |   //due to lack of common code for query types as well as GUI-Types (all subtypes differ a lot)
 | 
|---|
| 39 | 
 | 
|---|
| 40 |   //base class for all queries
 | 
|---|
| 41 |   class Query {
 | 
|---|
| 42 |   public:
 | 
|---|
| 43 |     Query(std::string _title);
 | 
|---|
| 44 |     ~Query();
 | 
|---|
| 45 |     virtual bool handle()=0;
 | 
|---|
| 46 |     virtual void setResult()=0;
 | 
|---|
| 47 |   protected:
 | 
|---|
| 48 |     const std::string getTitle() const;
 | 
|---|
| 49 |   private:
 | 
|---|
| 50 |     std::string title;
 | 
|---|
| 51 |   };
 | 
|---|
| 52 | 
 | 
|---|
| 53 |   //Specialized classes for certain types. GUI-Types are not specialized at this time
 | 
|---|
| 54 |   class IntQuery : public Query {
 | 
|---|
| 55 |   public:
 | 
|---|
| 56 |     IntQuery(std::string title,int *_target);
 | 
|---|
| 57 |     ~IntQuery();
 | 
|---|
| 58 |     virtual bool handle()=0;
 | 
|---|
| 59 |     virtual void setResult();
 | 
|---|
| 60 |   protected:
 | 
|---|
| 61 |     int tmp;
 | 
|---|
| 62 |   private:
 | 
|---|
| 63 |     int *target;
 | 
|---|
| 64 |   };
 | 
|---|
| 65 | 
 | 
|---|
| 66 |   class StringQuery : public Query {
 | 
|---|
| 67 |   public:
 | 
|---|
| 68 |     StringQuery(std::string title,std::string *_target);
 | 
|---|
| 69 |     ~StringQuery();
 | 
|---|
| 70 |     virtual bool handle()=0;
 | 
|---|
| 71 |     virtual void setResult();
 | 
|---|
| 72 |   protected:
 | 
|---|
| 73 |     std::string tmp;
 | 
|---|
| 74 |   private:
 | 
|---|
| 75 |     std::string *target;
 | 
|---|
| 76 |   };
 | 
|---|
| 77 | 
 | 
|---|
| 78 |   class MoleculeQuery : public Query {
 | 
|---|
| 79 |   public:
 | 
|---|
| 80 |     MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules);
 | 
|---|
| 81 |     ~MoleculeQuery();
 | 
|---|
| 82 |     virtual bool handle()=0;
 | 
|---|
| 83 |     virtual void setResult();
 | 
|---|
| 84 |   protected:
 | 
|---|
| 85 |     molecule *tmp;
 | 
|---|
| 86 |     MoleculeListClass *molecules;
 | 
|---|
| 87 |   private:
 | 
|---|
| 88 |     molecule **target;
 | 
|---|
| 89 |   };
 | 
|---|
| 90 | 
 | 
|---|
| 91 | void registerQuery(Query* query);
 | 
|---|
| 92 | 
 | 
|---|
| 93 | private:
 | 
|---|
| 94 |   std::list<Query*> queries;
 | 
|---|
| 95 | 
 | 
|---|
| 96 | };
 | 
|---|
| 97 | 
 | 
|---|
| 98 | #endif /* DIALOG_HPP_ */
 | 
|---|