- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/Query/CommandLineQuery.hpp
r7d9416 r2c5765 26 26 class CommandLineDialog::IntCommandLineQuery : public Dialog::IntQuery { 27 27 public: 28 IntCommandLineQuery( Parameter<int> ¶m,std::string title, std::string _description = "");28 IntCommandLineQuery(std::string title, std::string _description = ""); 29 29 virtual ~IntCommandLineQuery(); 30 30 virtual bool handle(); … … 33 33 class CommandLineDialog::IntsCommandLineQuery : public Dialog::IntsQuery { 34 34 public: 35 IntsCommandLineQuery( Parameter<std::vector<int> > ¶m,std::string title, std::string _description = "");35 IntsCommandLineQuery(std::string title, std::string _description = ""); 36 36 virtual ~IntsCommandLineQuery(); 37 37 virtual bool handle(); … … 40 40 class CommandLineDialog::UnsignedIntCommandLineQuery : public Dialog::UnsignedIntQuery { 41 41 public: 42 UnsignedIntCommandLineQuery( Parameter<unsigned int> ¶m,std::string title, std::string _description = "");42 UnsignedIntCommandLineQuery(std::string title, std::string _description = ""); 43 43 virtual ~UnsignedIntCommandLineQuery(); 44 44 virtual bool handle(); … … 47 47 class CommandLineDialog::UnsignedIntsCommandLineQuery : public Dialog::UnsignedIntsQuery { 48 48 public: 49 UnsignedIntsCommandLineQuery( Parameter<std::vector<unsigned int> > ¶m,std::string title, std::string _description = "");49 UnsignedIntsCommandLineQuery(std::string title, std::string _description = ""); 50 50 virtual ~UnsignedIntsCommandLineQuery(); 51 51 virtual bool handle(); … … 54 54 class CommandLineDialog::BooleanCommandLineQuery : public Dialog::BooleanQuery { 55 55 public: 56 BooleanCommandLineQuery( Parameter<bool> ¶m,std::string title, std::string _description = "");56 BooleanCommandLineQuery(std::string title, std::string _description = ""); 57 57 virtual ~BooleanCommandLineQuery(); 58 58 virtual bool handle(); … … 61 61 class CommandLineDialog::DoubleCommandLineQuery : public Dialog::DoubleQuery { 62 62 public: 63 DoubleCommandLineQuery( Parameter<double> ¶m,std::string title, std::string _description = "");63 DoubleCommandLineQuery(std::string title, std::string _description = ""); 64 64 virtual ~DoubleCommandLineQuery(); 65 65 virtual bool handle(); … … 68 68 class CommandLineDialog::DoublesCommandLineQuery : public Dialog::DoublesQuery { 69 69 public: 70 DoublesCommandLineQuery( Parameter<std::vector<double> > ¶m,std::string title, std::string _description = "");70 DoublesCommandLineQuery(std::string title, std::string _description = ""); 71 71 virtual ~DoublesCommandLineQuery(); 72 72 virtual bool handle(); … … 75 75 class CommandLineDialog::StringCommandLineQuery : public Dialog::StringQuery { 76 76 public: 77 StringCommandLineQuery( Parameter<std::string> ¶m,std::string title, std::string _description = "");77 StringCommandLineQuery(std::string title, std::string _description = ""); 78 78 virtual ~StringCommandLineQuery(); 79 79 virtual bool handle(); … … 82 82 class CommandLineDialog::StringsCommandLineQuery : public Dialog::StringsQuery { 83 83 public: 84 StringsCommandLineQuery( Parameter<std::vector<std::string> > ¶m,std::string title, std::string _description = "");84 StringsCommandLineQuery(std::string title, std::string _description = ""); 85 85 virtual ~StringsCommandLineQuery(); 86 86 virtual bool handle(); … … 89 89 class CommandLineDialog::AtomCommandLineQuery : public Dialog::AtomQuery { 90 90 public: 91 AtomCommandLineQuery( Parameter<const atom *> ¶m,std::string title, std::string _description = "");91 AtomCommandLineQuery(std::string title, std::string _description = ""); 92 92 virtual ~AtomCommandLineQuery(); 93 93 virtual bool handle(); … … 96 96 class CommandLineDialog::AtomsCommandLineQuery : public Dialog::AtomsQuery { 97 97 public: 98 AtomsCommandLineQuery( Parameter<std::vector<const atom *> > ¶m,std::string title, std::string _description = "");98 AtomsCommandLineQuery(std::string title, std::string _description = ""); 99 99 virtual ~AtomsCommandLineQuery(); 100 100 virtual bool handle(); … … 103 103 class CommandLineDialog::MoleculeCommandLineQuery : public Dialog::MoleculeQuery { 104 104 public: 105 MoleculeCommandLineQuery( Parameter<const molecule *> ¶m,std::string title, std::string _description = "");105 MoleculeCommandLineQuery(std::string title, std::string _description = ""); 106 106 virtual ~MoleculeCommandLineQuery(); 107 107 virtual bool handle(); … … 110 110 class CommandLineDialog::MoleculesCommandLineQuery : public Dialog::MoleculesQuery { 111 111 public: 112 MoleculesCommandLineQuery( Parameter<std::vector<const molecule *> > ¶m,std::string title, std::string _description = "");112 MoleculesCommandLineQuery(std::string title, std::string _description = ""); 113 113 virtual ~MoleculesCommandLineQuery(); 114 114 virtual bool handle(); … … 117 117 class CommandLineDialog::VectorCommandLineQuery : public Dialog::VectorQuery { 118 118 public: 119 VectorCommandLineQuery( Parameter<Vector> ¶m,std::string title,bool _check, std::string _description = "");119 VectorCommandLineQuery(std::string title,bool _check, std::string _description = ""); 120 120 virtual ~VectorCommandLineQuery(); 121 121 virtual bool handle(); … … 124 124 class CommandLineDialog::VectorsCommandLineQuery : public Dialog::VectorsQuery { 125 125 public: 126 VectorsCommandLineQuery( Parameter<std::vector<Vector> > ¶m,std::string title,bool _check, std::string _description = "");126 VectorsCommandLineQuery(std::string title,bool _check, std::string _description = ""); 127 127 virtual ~VectorsCommandLineQuery(); 128 128 virtual bool handle(); 129 129 }; 130 130 131 class CommandLineDialog:: RealSpaceMatrixCommandLineQuery : public Dialog::RealSpaceMatrixQuery {131 class CommandLineDialog::BoxCommandLineQuery : public Dialog::BoxQuery { 132 132 public: 133 RealSpaceMatrixCommandLineQuery(Parameter<RealSpaceMatrix> ¶m,std::string title, std::string _description = "");134 virtual ~ RealSpaceMatrixCommandLineQuery();133 BoxCommandLineQuery(std::string title, std::string _description = ""); 134 virtual ~BoxCommandLineQuery(); 135 135 virtual bool handle(); 136 136 }; … … 138 138 class CommandLineDialog::ElementCommandLineQuery : public Dialog::ElementQuery { 139 139 public: 140 ElementCommandLineQuery( Parameter<const element *> ¶m,std::string title, std::string _description = "");140 ElementCommandLineQuery(std::string title, std::string _description = ""); 141 141 virtual ~ElementCommandLineQuery(); 142 142 virtual bool handle(); … … 145 145 class CommandLineDialog::ElementsCommandLineQuery : public Dialog::ElementsQuery { 146 146 public: 147 ElementsCommandLineQuery( Parameter<std::vector<const element *> > ¶m,std::string title, std::string _description = "");147 ElementsCommandLineQuery(std::string title, std::string _description = ""); 148 148 virtual ~ElementsCommandLineQuery(); 149 149 virtual bool handle(); … … 152 152 class CommandLineDialog::FileCommandLineQuery : public Dialog::FileQuery { 153 153 public: 154 FileCommandLineQuery( Parameter<boost::filesystem::path> ¶m,std::string title, std::string _description = "");154 FileCommandLineQuery(std::string title, std::string _description = ""); 155 155 virtual ~FileCommandLineQuery(); 156 virtual bool handle(); 157 }; 158 159 class CommandLineDialog::FilesCommandLineQuery : public Dialog::FilesQuery { 160 public: 161 FilesCommandLineQuery(std::string title, std::string _description = ""); 162 virtual ~FilesCommandLineQuery(); 156 163 virtual bool handle(); 157 164 }; … … 159 166 class CommandLineDialog::RandomNumberDistribution_ParametersCommandLineQuery : public Dialog::RandomNumberDistribution_ParametersQuery { 160 167 public: 161 RandomNumberDistribution_ParametersCommandLineQuery( Parameter<RandomNumberDistribution_Parameters> ¶m,std::string title, std::string _description = "");168 RandomNumberDistribution_ParametersCommandLineQuery(std::string title, std::string _description = ""); 162 169 virtual ~RandomNumberDistribution_ParametersCommandLineQuery(); 163 170 virtual bool handle();
Note:
See TracChangeset
for help on using the changeset viewer.