| 1 | /*
 | 
|---|
| 2 |  * CommandLineDialog.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: May 8, 2010
 | 
|---|
| 5 |  *      Author: heber
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef COMMANDLINEDIALOG_HPP_
 | 
|---|
| 9 | #define COMMANDLINEDIALOG_HPP_
 | 
|---|
| 10 | 
 | 
|---|
| 11 | #include <string>
 | 
|---|
| 12 | 
 | 
|---|
| 13 | class atom;
 | 
|---|
| 14 | class element;
 | 
|---|
| 15 | class molecule;
 | 
|---|
| 16 | class Vector;
 | 
|---|
| 17 | 
 | 
|---|
| 18 | #include "Dialog.hpp"
 | 
|---|
| 19 | 
 | 
|---|
| 20 | /** CommandLineUIFactory implementation of the Dialog.
 | 
|---|
| 21 |  * The idea here is that for each query the parsed command line options are used instead.
 | 
|---|
| 22 |  */
 | 
|---|
| 23 | class CommandLineDialog : public Dialog
 | 
|---|
| 24 | {
 | 
|---|
| 25 | public:
 | 
|---|
| 26 |   CommandLineDialog();
 | 
|---|
| 27 |   virtual ~CommandLineDialog();
 | 
|---|
| 28 | 
 | 
|---|
| 29 |   virtual void queryEmpty(const char *, std::string = "");
 | 
|---|
| 30 |   virtual void queryInt(const char *, int *, std::string = "");
 | 
|---|
| 31 |   virtual void queryBoolean(const char *, bool *, std::string = "");
 | 
|---|
| 32 |   virtual void queryString(const char*, std::string *, std::string = "");
 | 
|---|
| 33 |   virtual void queryStrings(const char*, std::vector<std::string> *, std::string = "");
 | 
|---|
| 34 |   virtual void queryDouble(const char*, double*, std::string = "");
 | 
|---|
| 35 |   virtual void queryAtom(const char*,atom**, std::string = "");
 | 
|---|
| 36 |   virtual void queryMolecule(const char*,molecule**,std::string = "");
 | 
|---|
| 37 |   virtual void queryVector(const char*,Vector *,bool, std::string = "");
 | 
|---|
| 38 |   virtual void queryBox(const char*,Box *, std::string = "");
 | 
|---|
| 39 |   virtual void queryElement(const char*, std::vector<element *> *, std::string = "");
 | 
|---|
| 40 | 
 | 
|---|
| 41 | protected:
 | 
|---|
| 42 |   // specialized stuff for text queries
 | 
|---|
| 43 |   class EmptyCommandLineQuery : public Dialog::EmptyQuery {
 | 
|---|
| 44 |   public:
 | 
|---|
| 45 |     EmptyCommandLineQuery(std::string title, std::string _description = "");
 | 
|---|
| 46 |     virtual ~EmptyCommandLineQuery();
 | 
|---|
| 47 |     virtual bool handle();
 | 
|---|
| 48 |   };
 | 
|---|
| 49 | 
 | 
|---|
| 50 |   class IntCommandLineQuery : public Dialog::IntQuery {
 | 
|---|
| 51 |   public:
 | 
|---|
| 52 |     IntCommandLineQuery(std::string title, int *_target, std::string _description = "");
 | 
|---|
| 53 |     virtual ~IntCommandLineQuery();
 | 
|---|
| 54 |     virtual bool handle();
 | 
|---|
| 55 |   };
 | 
|---|
| 56 | 
 | 
|---|
| 57 |   class BooleanCommandLineQuery : public Dialog::BooleanQuery {
 | 
|---|
| 58 |   public:
 | 
|---|
| 59 |     BooleanCommandLineQuery(std::string title, bool *_target, std::string _description = "");
 | 
|---|
| 60 |     virtual ~BooleanCommandLineQuery();
 | 
|---|
| 61 |     virtual bool handle();
 | 
|---|
| 62 |   };
 | 
|---|
| 63 | 
 | 
|---|
| 64 |   class DoubleCommandLineQuery : public Dialog::DoubleQuery {
 | 
|---|
| 65 |   public:
 | 
|---|
| 66 |     DoubleCommandLineQuery(std::string title, double *_target, std::string _description = "");
 | 
|---|
| 67 |     virtual ~DoubleCommandLineQuery();
 | 
|---|
| 68 |     virtual bool handle();
 | 
|---|
| 69 |   };
 | 
|---|
| 70 | 
 | 
|---|
| 71 |   class StringCommandLineQuery : public Dialog::StringQuery {
 | 
|---|
| 72 |   public:
 | 
|---|
| 73 |     StringCommandLineQuery(std::string title, std::string *_target, std::string _description = "");
 | 
|---|
| 74 |     virtual ~StringCommandLineQuery();
 | 
|---|
| 75 |     virtual bool handle();
 | 
|---|
| 76 |   };
 | 
|---|
| 77 | 
 | 
|---|
| 78 |   class StringsCommandLineQuery : public Dialog::StringsQuery {
 | 
|---|
| 79 |   public:
 | 
|---|
| 80 |     StringsCommandLineQuery(std::string title, std::vector<std::string> *_target, std::string _description = "");
 | 
|---|
| 81 |     virtual ~StringsCommandLineQuery();
 | 
|---|
| 82 |     virtual bool handle();
 | 
|---|
| 83 |   };
 | 
|---|
| 84 | 
 | 
|---|
| 85 |   class AtomCommandLineQuery : public Dialog::AtomQuery {
 | 
|---|
| 86 |   public:
 | 
|---|
| 87 |     AtomCommandLineQuery(std::string title, atom **_target, std::string _description = "");
 | 
|---|
| 88 |     virtual ~AtomCommandLineQuery();
 | 
|---|
| 89 |     virtual bool handle();
 | 
|---|
| 90 |   };
 | 
|---|
| 91 | 
 | 
|---|
| 92 |   class MoleculeCommandLineQuery : public Dialog::MoleculeQuery {
 | 
|---|
| 93 |   public:
 | 
|---|
| 94 |     MoleculeCommandLineQuery(std::string title, molecule **_target, std::string _description = "");
 | 
|---|
| 95 |     virtual ~MoleculeCommandLineQuery();
 | 
|---|
| 96 |     virtual bool handle();
 | 
|---|
| 97 |   };
 | 
|---|
| 98 | 
 | 
|---|
| 99 |   class VectorCommandLineQuery : public Dialog::VectorQuery {
 | 
|---|
| 100 |   public:
 | 
|---|
| 101 |     VectorCommandLineQuery(std::string title,Vector *_target,bool _check, std::string _description = "");
 | 
|---|
| 102 |     virtual ~VectorCommandLineQuery();
 | 
|---|
| 103 |     virtual bool handle();
 | 
|---|
| 104 |   };
 | 
|---|
| 105 | 
 | 
|---|
| 106 |   class BoxCommandLineQuery : public Dialog::BoxQuery {
 | 
|---|
| 107 |   public:
 | 
|---|
| 108 |     BoxCommandLineQuery(std::string title,Box* _cellSize, std::string _description = "");
 | 
|---|
| 109 |     virtual ~BoxCommandLineQuery();
 | 
|---|
| 110 |     virtual bool handle();
 | 
|---|
| 111 |   };
 | 
|---|
| 112 | 
 | 
|---|
| 113 |   class ElementCommandLineQuery : public Dialog::ElementQuery {
 | 
|---|
| 114 |   public:
 | 
|---|
| 115 |     ElementCommandLineQuery(std::string title, std::vector<element *> *_target, std::string _description = "");
 | 
|---|
| 116 |     virtual ~ElementCommandLineQuery();
 | 
|---|
| 117 |     virtual bool handle();
 | 
|---|
| 118 |   };
 | 
|---|
| 119 | };
 | 
|---|
| 120 | 
 | 
|---|
| 121 | #endif /* COMMANDLINEDIALOG_HPP_ */
 | 
|---|