Changes in src/UIElements/TextDialog.hpp [97ebf8:86466e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/UIElements/TextDialog.hpp ¶
r97ebf8 r86466e 13 13 #include "UIElements/Dialog.hpp" 14 14 15 class atom;16 class element;17 class molecule;18 class Vector;19 20 15 class TextDialog : public Dialog 21 16 { … … 25 20 26 21 virtual void queryEmpty(const char *, std::string = ""); 27 virtual void queryBoolean(const char *, bool *, std::string = "");28 22 virtual void queryInt(const char *, int *, std::string = ""); 29 23 virtual void queryString(const char*, std::string *, std::string = ""); 30 24 virtual void queryDouble(const char*, double*, std::string = ""); 31 virtual void queryAtom(const char*,atom**,std::string = ""); 32 virtual void queryMolecule(const char*,molecule**,std::string = ""); 25 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*, std::string = ""); 33 26 virtual void queryVector(const char*,Vector *,const double * const,bool, std::string = ""); 34 virtual void queryBox(const char*,double ** const, std::string = "");35 27 virtual void queryElement(const char*,const element **, std::string = ""); 36 28 … … 41 33 EmptyTextQuery(std::string title, std::string _description = NULL); 42 34 virtual ~EmptyTextQuery(); 43 virtual bool handle();44 };45 46 class BooleanTextQuery : public Dialog::BooleanQuery {47 public:48 BooleanTextQuery(std::string title, bool *_target, std::string _description = NULL);49 virtual ~BooleanTextQuery();50 35 virtual bool handle(); 51 36 }; … … 72 57 }; 73 58 74 class AtomTextQuery : public Dialog::AtomQuery {75 public:76 AtomTextQuery(std::string title, atom **_target, std::string _description = NULL);77 virtual ~AtomTextQuery();78 virtual bool handle();79 };80 81 59 class MoleculeTextQuery : public Dialog::MoleculeQuery { 82 60 public: 83 MoleculeTextQuery(std::string title, molecule **_target, std::string _description = NULL);61 MoleculeTextQuery(std::string title, molecule **_target, MoleculeListClass *_molecules, std::string _description = NULL); 84 62 virtual ~MoleculeTextQuery(); 85 63 virtual bool handle(); … … 90 68 VectorTextQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description = NULL); 91 69 virtual ~VectorTextQuery(); 92 virtual bool handle();93 };94 95 class BoxTextQuery : public Dialog::BoxQuery {96 public:97 BoxTextQuery(std::string title,double ** const _cellSize, std::string _description = NULL);98 virtual ~BoxTextQuery();99 70 virtual bool handle(); 100 71 };
Note:
See TracChangeset
for help on using the changeset viewer.