Changeset dbd19f for molecuilder/src/UIElements/TextDialog.hpp
- Timestamp:
- Jan 28, 2010, 1:54:35 PM (16 years ago)
- Children:
- 03d7ac
- Parents:
- d34341
- git-author:
- Tillmann Crueger <crueger@…> (01/28/10 13:02:49)
- git-committer:
- Tillmann Crueger <crueger@…> (01/28/10 13:54:35)
- File:
-
- 1 edited
-
molecuilder/src/UIElements/TextDialog.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/TextDialog.hpp
rd34341 rdbd19f 21 21 virtual void queryInt(const char *, int *); 22 22 virtual void queryString(const char*, std::string *); 23 virtual void queryDouble(const char*, double*); 23 24 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*); 25 virtual void queryVector(const char*,Vector *,const double * const,bool); 24 26 25 27 protected: … … 29 31 IntTextQuery(std::string title, int *_target); 30 32 ~IntTextQuery(); 33 virtual bool handle(); 34 }; 35 36 class DoubleTextQuery : public Dialog::DoubleQuery { 37 public: 38 DoubleTextQuery(std::string title, double *_target); 39 ~DoubleTextQuery(); 31 40 virtual bool handle(); 32 41 }; … … 45 54 virtual bool handle(); 46 55 }; 56 57 class VectorTextQuery : public Dialog::VectorQuery { 58 public: 59 VectorTextQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check); 60 ~VectorTextQuery(); 61 virtual bool handle(); 62 }; 47 63 }; 48 64
Note:
See TracChangeset
for help on using the changeset viewer.
