Changeset 86466e for src/UIElements/CommandLineDialog.cpp
- Timestamp:
- May 9, 2010, 11:59:35 AM (15 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 50dfda
- Parents:
- 148d8f0
- git-author:
- Frederik Heber <heber@…> (05/09/10 11:15:17)
- git-committer:
- Frederik Heber <heber@…> (05/09/10 11:59:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineDialog.cpp
r148d8f0 r86466e 35 35 36 36 37 void CommandLineDialog::query Int(const char* title, int* target){38 registerQuery(new IntTextQuery(title,target));37 void CommandLineDialog::queryEmpty(const char* title, string _description){ 38 registerQuery(new EmptyCommandLineQuery(title, _description)); 39 39 } 40 40 41 void CommandLineDialog::query Double(const char* title, double* target){42 registerQuery(new DoubleTextQuery(title,target));41 void CommandLineDialog::queryInt(const char* title, int* target, string _description){ 42 registerQuery(new IntCommandLineQuery(title,target, _description)); 43 43 } 44 44 45 void CommandLineDialog::query String(const char* title, string* target){46 registerQuery(new StringTextQuery(title,target));45 void CommandLineDialog::queryDouble(const char* title, double* target, string _description){ 46 registerQuery(new DoubleCommandLineQuery(title,target, _description)); 47 47 } 48 48 49 void CommandLineDialog::query Molecule(const char* title, molecule **target, MoleculeListClass *molecules){50 registerQuery(new MoleculeTextQuery(title,target,molecules));49 void CommandLineDialog::queryString(const char* title, string* target, string _description){ 50 registerQuery(new StringCommandLineQuery(title,target, _description)); 51 51 } 52 52 53 void CommandLineDialog::query Vector(const char* title, Vector *target,const double *const cellSize, bool check) {54 registerQuery(new VectorTextQuery(title,target,cellSize,check));53 void CommandLineDialog::queryMolecule(const char* title, molecule **target, MoleculeListClass *molecules, string _description) { 54 registerQuery(new MoleculeCommandLineQuery(title,target,molecules, _description)); 55 55 } 56 56 57 void CommandLineDialog::queryElement(const char* title, const element **target){ 58 registerQuery(new ElementTextQuery(title,target)); 57 void CommandLineDialog::queryVector(const char* title, Vector *target,const double *const cellSize, bool check, string _description) { 58 registerQuery(new VectorCommandLineQuery(title,target,cellSize,check, _description)); 59 } 60 61 void CommandLineDialog::queryElement(const char* title, const element **target, string _description){ 62 registerQuery(new ElementCommandLineQuery(title,target, _description)); 59 63 } 60 64 61 65 /************************** Query Infrastructure ************************/ 62 66 63 CommandLineDialog:: IntTextQuery::IntTextQuery(string title,int *_target) :64 Dialog:: IntQuery(title,_target)67 CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(string title, string _description) : 68 Dialog::EmptyQuery(title, _description) 65 69 {} 66 70 67 CommandLineDialog:: IntTextQuery::~IntTextQuery() {}71 CommandLineDialog::EmptyCommandLineQuery::~EmptyCommandLineQuery() {} 68 72 69 bool CommandLineDialog::IntTextQuery::handle() { 73 bool CommandLineDialog::EmptyCommandLineQuery::handle() { 74 cout << "Message of " << getTitle() << ":\n" << getDescription() << "\n"; 75 return true; 76 } 77 78 CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(string title,int *_target, string _description) : 79 Dialog::IntQuery(title,_target, _description) 80 {} 81 82 CommandLineDialog::IntCommandLineQuery::~IntCommandLineQuery() {} 83 84 bool CommandLineDialog::IntCommandLineQuery::handle() { 70 85 if (CommandLineParser::getInstance().vm.count(getTitle())) { 71 86 tmp = CommandLineParser::getInstance().vm[getTitle()].as<int>(); … … 75 90 } 76 91 77 CommandLineDialog::String TextQuery::StringTextQuery(string title,string *_target) :78 Dialog::StringQuery(title,_target )92 CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(string title,string *_target, string _description) : 93 Dialog::StringQuery(title,_target, _description) 79 94 {} 80 95 81 CommandLineDialog::String TextQuery::~StringTextQuery() {}96 CommandLineDialog::StringCommandLineQuery::~StringCommandLineQuery() {} 82 97 83 bool CommandLineDialog::String TextQuery::handle() {98 bool CommandLineDialog::StringCommandLineQuery::handle() { 84 99 if (CommandLineParser::getInstance().vm.count(getTitle())) { 85 tmp = CommandLineParser::getInstance().vm[getTitle()].as<st d::string>();100 tmp = CommandLineParser::getInstance().vm[getTitle()].as<string>(); 86 101 return true; 87 102 } else … … 89 104 } 90 105 91 CommandLineDialog::Double TextQuery::DoubleTextQuery(string title,double *_target) :92 Dialog::DoubleQuery(title,_target )106 CommandLineDialog::DoubleCommandLineQuery::DoubleCommandLineQuery(string title,double *_target, string _description) : 107 Dialog::DoubleQuery(title,_target, _description) 93 108 {} 94 109 95 CommandLineDialog::Double TextQuery::~DoubleTextQuery() {}110 CommandLineDialog::DoubleCommandLineQuery::~DoubleCommandLineQuery() {} 96 111 97 bool CommandLineDialog::Double TextQuery::handle() {112 bool CommandLineDialog::DoubleCommandLineQuery::handle() { 98 113 if (CommandLineParser::getInstance().vm.count(getTitle())) { 99 114 tmp = CommandLineParser::getInstance().vm[getTitle()].as<double>(); … … 103 118 } 104 119 105 CommandLineDialog::Molecule TextQuery::MoleculeTextQuery(string title, molecule **_target, MoleculeListClass *_molecules) :106 Dialog::MoleculeQuery(title,_target,_molecules )120 CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(string title, molecule **_target, MoleculeListClass *_molecules, string _description) : 121 Dialog::MoleculeQuery(title,_target,_molecules, _description) 107 122 {} 108 123 109 CommandLineDialog::Molecule TextQuery::~MoleculeTextQuery() {}124 CommandLineDialog::MoleculeCommandLineQuery::~MoleculeCommandLineQuery() {} 110 125 111 bool CommandLineDialog::Molecule TextQuery::handle() {126 bool CommandLineDialog::MoleculeCommandLineQuery::handle() { 112 127 int IdxOfMol = -1; 113 128 if (CommandLineParser::getInstance().vm.count(getTitle())) { … … 119 134 } 120 135 121 CommandLineDialog::Vector TextQuery::VectorTextQuery(std::string title, Vector *_target, const double *const _cellSize, bool _check) :122 Dialog::VectorQuery(title,_target,_cellSize,_check )136 CommandLineDialog::VectorCommandLineQuery::VectorCommandLineQuery(string title, Vector *_target, const double *const _cellSize, bool _check, string _description) : 137 Dialog::VectorQuery(title,_target,_cellSize,_check, _description) 123 138 {} 124 139 125 CommandLineDialog::Vector TextQuery::~VectorTextQuery()140 CommandLineDialog::VectorCommandLineQuery::~VectorCommandLineQuery() 126 141 {} 127 142 128 bool CommandLineDialog::Vector TextQuery::handle() {143 bool CommandLineDialog::VectorCommandLineQuery::handle() { 129 144 vector<double> temp; 130 145 if (CommandLineParser::getInstance().vm.count(getTitle())) { … … 140 155 141 156 142 CommandLineDialog::Element TextQuery::ElementTextQuery(std::string title, const element **target) :143 Dialog::ElementQuery(title,target )157 CommandLineDialog::ElementCommandLineQuery::ElementCommandLineQuery(string title, const element **target, string _description) : 158 Dialog::ElementQuery(title,target, _description) 144 159 {} 145 160 146 CommandLineDialog::Element TextQuery::~ElementTextQuery()161 CommandLineDialog::ElementCommandLineQuery::~ElementCommandLineQuery() 147 162 {} 148 163 149 bool CommandLineDialog::Element TextQuery::handle() {164 bool CommandLineDialog::ElementCommandLineQuery::handle() { 150 165 int Z = -1; 151 166 if (CommandLineParser::getInstance().vm.count(getTitle())) {
Note:
See TracChangeset
for help on using the changeset viewer.