| 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 *, std::string = ""); | 
|---|
| 31 | virtual void queryInts(const char *, std::string = ""); | 
|---|
| 32 | virtual void queryBoolean(const char *, std::string = ""); | 
|---|
| 33 | virtual void queryString(const char*, std::string = ""); | 
|---|
| 34 | virtual void queryStrings(const char*, std::string = ""); | 
|---|
| 35 | virtual void queryDouble(const char*, std::string = ""); | 
|---|
| 36 | virtual void queryDoubles(const char*, std::string = ""); | 
|---|
| 37 | virtual void queryAtom(const char*, std::string = ""); | 
|---|
| 38 | virtual void queryAtoms(const char*, std::string = ""); | 
|---|
| 39 | virtual void queryMolecule(const char*, std::string = ""); | 
|---|
| 40 | virtual void queryMolecules(const char*, std::string = ""); | 
|---|
| 41 | virtual void queryVector(const char*, bool, std::string = ""); | 
|---|
| 42 | virtual void queryVectors(const char*, bool, std::string = ""); | 
|---|
| 43 | virtual void queryBox(const char*, std::string = ""); | 
|---|
| 44 | virtual void queryElement(const char*, std::string = ""); | 
|---|
| 45 | virtual void queryElements(const char*, std::string = ""); | 
|---|
| 46 | virtual void queryFile(const char*, std::string = ""); | 
|---|
| 47 |  | 
|---|
| 48 | protected: | 
|---|
| 49 | // specialized stuff for text queries | 
|---|
| 50 | class AtomCommandLineQuery; | 
|---|
| 51 | class AtomsCommandLineQuery; | 
|---|
| 52 | class BooleanCommandLineQuery; | 
|---|
| 53 | class BoxCommandLineQuery; | 
|---|
| 54 | class DoubleCommandLineQuery; | 
|---|
| 55 | class DoublesCommandLineQuery; | 
|---|
| 56 | class ElementCommandLineQuery; | 
|---|
| 57 | class ElementsCommandLineQuery; | 
|---|
| 58 | class EmptyCommandLineQuery; | 
|---|
| 59 | class FileCommandLineQuery; | 
|---|
| 60 | class IntCommandLineQuery; | 
|---|
| 61 | class IntsCommandLineQuery; | 
|---|
| 62 | class MoleculeCommandLineQuery; | 
|---|
| 63 | class MoleculesCommandLineQuery; | 
|---|
| 64 | class StringCommandLineQuery; | 
|---|
| 65 | class StringsCommandLineQuery; | 
|---|
| 66 | class VectorCommandLineQuery; | 
|---|
| 67 | class VectorsCommandLineQuery; | 
|---|
| 68 | }; | 
|---|
| 69 |  | 
|---|
| 70 | #endif /* COMMANDLINEDIALOG_HPP_ */ | 
|---|