Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/TextDialog.hpp

    r7aa000 r2ededc2  
    2121  virtual void queryInt(const char *, int *);
    2222  virtual void queryString(const char*, std::string *);
     23  virtual void queryDouble(const char*, double*);
    2324  virtual void queryMolecule(const char*,molecule**,MoleculeListClass*);
     25  virtual void queryVector(const char*,Vector *,const double * const,bool);
    2426
    2527protected:
     
    2931    IntTextQuery(std::string title, int *_target);
    3032    ~IntTextQuery();
     33    virtual bool handle();
     34  };
     35
     36  class DoubleTextQuery : public Dialog::DoubleQuery {
     37  public:
     38    DoubleTextQuery(std::string title, double *_target);
     39    ~DoubleTextQuery();
    3140    virtual bool handle();
    3241  };
     
    4554    virtual bool handle();
    4655  };
     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  };
    4763};
    4864
Note: See TracChangeset for help on using the changeset viewer.