Changeset 955b91 for src/UIElements/CommandLineUI
- Timestamp:
- Mar 27, 2012, 3:53:35 PM (13 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:
- 4d2b33
- Parents:
- 912c40
- git-author:
- Frederik Heber <heber@…> (03/14/12 18:08:24)
- git-committer:
- Frederik Heber <heber@…> (03/27/12 15:53:35)
- Location:
- src/UIElements/CommandLineUI
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineDialog.cpp
r912c40 r955b91 36 36 37 37 38 void CommandLineDialog::queryEmpty(const char* title, st ring _description){38 void CommandLineDialog::queryEmpty(const char* title, std::string _description){ 39 39 registerQuery(new EmptyCommandLineQuery(title, _description)); 40 40 } 41 41 42 void CommandLineDialog::queryInt(const char* title, st ring _description){42 void CommandLineDialog::queryInt(const char* title, std::string _description){ 43 43 registerQuery(new IntCommandLineQuery(title, _description)); 44 44 } 45 45 46 void CommandLineDialog::queryInts(const char* title, st ring _description){46 void CommandLineDialog::queryInts(const char* title, std::string _description){ 47 47 registerQuery(new IntsCommandLineQuery(title, _description)); 48 48 } 49 49 50 void CommandLineDialog::queryUnsignedInt(const char* title, st ring _description){50 void CommandLineDialog::queryUnsignedInt(const char* title, std::string _description){ 51 51 registerQuery(new UnsignedIntCommandLineQuery(title, _description)); 52 52 } 53 53 54 void CommandLineDialog::queryUnsignedInts(const char* title, st ring _description){54 void CommandLineDialog::queryUnsignedInts(const char* title, std::string _description){ 55 55 registerQuery(new UnsignedIntsCommandLineQuery(title, _description)); 56 56 } 57 57 58 void CommandLineDialog::queryBoolean(const char* title, st ring _description){58 void CommandLineDialog::queryBoolean(const char* title, std::string _description){ 59 59 registerQuery(new BooleanCommandLineQuery(title, _description)); 60 60 } 61 61 62 void CommandLineDialog::queryDouble(const char* title, st ring _description){62 void CommandLineDialog::queryDouble(const char* title, std::string _description){ 63 63 registerQuery(new DoubleCommandLineQuery(title, _description)); 64 64 } 65 65 66 void CommandLineDialog::queryDoubles(const char* title, st ring _description){66 void CommandLineDialog::queryDoubles(const char* title, std::string _description){ 67 67 registerQuery(new DoublesCommandLineQuery(title, _description)); 68 68 } 69 69 70 void CommandLineDialog::queryString(const char* title, st ring _description){70 void CommandLineDialog::queryString(const char* title, std::string _description){ 71 71 registerQuery(new StringCommandLineQuery(title, _description)); 72 72 } 73 73 74 void CommandLineDialog::queryStrings(const char* title, st ring _description){74 void CommandLineDialog::queryStrings(const char* title, std::string _description){ 75 75 registerQuery(new StringsCommandLineQuery(title, _description)); 76 76 } 77 77 78 void CommandLineDialog::queryAtom(const char* title, st ring _description) {78 void CommandLineDialog::queryAtom(const char* title, std::string _description) { 79 79 registerQuery(new AtomCommandLineQuery(title, _description)); 80 80 } 81 81 82 void CommandLineDialog::queryAtoms(const char* title, st ring _description) {82 void CommandLineDialog::queryAtoms(const char* title, std::string _description) { 83 83 registerQuery(new AtomsCommandLineQuery(title, _description)); 84 84 } 85 85 86 void CommandLineDialog::queryMolecule(const char* title, st ring _description) {86 void CommandLineDialog::queryMolecule(const char* title, std::string _description) { 87 87 registerQuery(new MoleculeCommandLineQuery(title, _description)); 88 88 } 89 89 90 void CommandLineDialog::queryMolecules(const char* title, st ring _description) {90 void CommandLineDialog::queryMolecules(const char* title, std::string _description) { 91 91 registerQuery(new MoleculesCommandLineQuery(title, _description)); 92 92 } 93 93 94 void CommandLineDialog::queryVector(const char* title, bool check, st ring _description) {94 void CommandLineDialog::queryVector(const char* title, bool check, std::string _description) { 95 95 registerQuery(new VectorCommandLineQuery(title,check, _description)); 96 96 } 97 97 98 void CommandLineDialog::queryVectors(const char* title, bool check, st ring _description) {98 void CommandLineDialog::queryVectors(const char* title, bool check, std::string _description) { 99 99 registerQuery(new VectorsCommandLineQuery(title,check, _description)); 100 100 } 101 101 102 void CommandLineDialog::queryBox(const char* title, st ring _description) {102 void CommandLineDialog::queryBox(const char* title, std::string _description) { 103 103 registerQuery(new BoxCommandLineQuery(title,_description)); 104 104 } 105 105 106 void CommandLineDialog::queryElement(const char* title, st ring _description){106 void CommandLineDialog::queryElement(const char* title, std::string _description){ 107 107 registerQuery(new ElementCommandLineQuery(title, _description)); 108 108 } 109 109 110 void CommandLineDialog::queryElements(const char* title, st ring _description){110 void CommandLineDialog::queryElements(const char* title, std::string _description){ 111 111 registerQuery(new ElementsCommandLineQuery(title, _description)); 112 112 } 113 113 114 void CommandLineDialog::queryFile(const char* title, st ring _description){114 void CommandLineDialog::queryFile(const char* title, std::string _description){ 115 115 registerQuery(new FileCommandLineQuery(title, _description)); 116 116 } 117 117 118 void CommandLineDialog::queryRandomNumberDistribution_Parameters(const char* title, st ring _description){118 void CommandLineDialog::queryRandomNumberDistribution_Parameters(const char* title, std::string _description){ 119 119 registerQuery(new RandomNumberDistribution_ParametersCommandLineQuery(title, _description)); 120 120 } -
src/UIElements/CommandLineUI/Query/AtomCommandLineQuery.cpp
r912c40 r955b91 33 33 using namespace std; 34 34 35 CommandLineDialog::AtomCommandLineQuery::AtomCommandLineQuery(st ring title,string _description) :35 CommandLineDialog::AtomCommandLineQuery::AtomCommandLineQuery(std::string title, std::string _description) : 36 36 Dialog::AtomQuery(title, _description) 37 37 {} -
src/UIElements/CommandLineUI/Query/AtomsCommandLineQuery.cpp
r912c40 r955b91 28 28 #include "World.hpp" 29 29 30 CommandLineDialog::AtomsCommandLineQuery::AtomsCommandLineQuery(st ring title,string _description) :30 CommandLineDialog::AtomsCommandLineQuery::AtomsCommandLineQuery(std::string title, std::string _description) : 31 31 Dialog::AtomsQuery(title, _description) 32 32 {} -
src/UIElements/CommandLineUI/Query/BooleanCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::BooleanCommandLineQuery::BooleanCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::BooleanCommandLineQuery::BooleanCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::BooleanQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/BoxCommandLineQuery.cpp
r912c40 r955b91 27 27 #include "LinearAlgebra/RealSpaceMatrix.hpp" 28 28 29 CommandLineDialog::BoxCommandLineQuery::BoxCommandLineQuery(st ring title,string _description) :29 CommandLineDialog::BoxCommandLineQuery::BoxCommandLineQuery(std::string title, std::string _description) : 30 30 Dialog::BoxQuery(title, _description) 31 31 {} -
src/UIElements/CommandLineUI/Query/DoubleCommandLineQuery.cpp
r912c40 r955b91 26 26 27 27 28 CommandLineDialog::DoubleCommandLineQuery::DoubleCommandLineQuery(st ring title,string _description) :28 CommandLineDialog::DoubleCommandLineQuery::DoubleCommandLineQuery(std::string title, std::string _description) : 29 29 Dialog::DoubleQuery(title, _description) 30 30 {} -
src/UIElements/CommandLineUI/Query/DoublesCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::DoublesCommandLineQuery::DoublesCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::DoublesCommandLineQuery::DoublesCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::DoublesQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/ElementCommandLineQuery.cpp
r912c40 r955b91 28 28 #include "World.hpp" 29 29 30 CommandLineDialog::ElementCommandLineQuery::ElementCommandLineQuery(st ring title,string _description) :30 CommandLineDialog::ElementCommandLineQuery::ElementCommandLineQuery(std::string title, std::string _description) : 31 31 Dialog::ElementQuery(title, _description) 32 32 {} -
src/UIElements/CommandLineUI/Query/ElementsCommandLineQuery.cpp
r912c40 r955b91 28 28 #include "World.hpp" 29 29 30 CommandLineDialog::ElementsCommandLineQuery::ElementsCommandLineQuery(st ring title,string _description) :30 CommandLineDialog::ElementsCommandLineQuery::ElementsCommandLineQuery(std::string title, std::string _description) : 31 31 Dialog::ElementsQuery(title, _description) 32 32 {} -
src/UIElements/CommandLineUI/Query/EmptyCommandLineQuery.cpp
r912c40 r955b91 27 27 #include "CodePatterns/Verbose.hpp" 28 28 29 CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(st ring title,string _description) :29 CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(std::string title, std::string _description) : 30 30 Dialog::EmptyQuery(title, _description) 31 31 {} -
src/UIElements/CommandLineUI/Query/FileCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::FileCommandLineQuery::FileCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::FileCommandLineQuery::FileCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::FileQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/IntCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::IntQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/IntsCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::IntsCommandLineQuery::IntsCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::IntsCommandLineQuery::IntsCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::IntsQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/MoleculeCommandLineQuery.cpp
r912c40 r955b91 28 28 #include "CodePatterns/Verbose.hpp" 29 29 30 CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(st ring title,string _description) :30 CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(std::string title, std::string _description) : 31 31 Dialog::MoleculeQuery(title, _description) 32 32 {} -
src/UIElements/CommandLineUI/Query/MoleculesCommandLineQuery.cpp
r912c40 r955b91 29 29 #include "World.hpp" 30 30 31 CommandLineDialog::MoleculesCommandLineQuery::MoleculesCommandLineQuery(st ring title,string _description) :31 CommandLineDialog::MoleculesCommandLineQuery::MoleculesCommandLineQuery(std::string title, std::string _description) : 32 32 Dialog::MoleculesQuery(title, _description) 33 33 {} -
src/UIElements/CommandLineUI/Query/RandomNumberDistribution_ParametersCommandLineQuery.cpp
r912c40 r955b91 31 31 #include "RandomNumbers/RandomNumberDistribution_Parameters.hpp" 32 32 33 CommandLineDialog::RandomNumberDistribution_ParametersCommandLineQuery::RandomNumberDistribution_ParametersCommandLineQuery(st ring title,string _description) :33 CommandLineDialog::RandomNumberDistribution_ParametersCommandLineQuery::RandomNumberDistribution_ParametersCommandLineQuery(std::string title, std::string _description) : 34 34 Dialog::RandomNumberDistribution_ParametersQuery(title, _description) 35 35 {} -
src/UIElements/CommandLineUI/Query/StringCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::StringQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/StringsCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::StringsQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/UnsignedIntCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::UnsignedIntCommandLineQuery::UnsignedIntCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::UnsignedIntCommandLineQuery::UnsignedIntCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::UnsignedIntQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/UnsignedIntsCommandLineQuery.cpp
r912c40 r955b91 25 25 #include "CodePatterns/Verbose.hpp" 26 26 27 CommandLineDialog::UnsignedIntsCommandLineQuery::UnsignedIntsCommandLineQuery(st ring title,string _description) :27 CommandLineDialog::UnsignedIntsCommandLineQuery::UnsignedIntsCommandLineQuery(std::string title, std::string _description) : 28 28 Dialog::UnsignedIntsQuery(title, _description) 29 29 {} -
src/UIElements/CommandLineUI/Query/VectorCommandLineQuery.cpp
r912c40 r955b91 29 29 #include "World.hpp" 30 30 31 CommandLineDialog::VectorCommandLineQuery::VectorCommandLineQuery(st ring title, bool _check,string _description) :31 CommandLineDialog::VectorCommandLineQuery::VectorCommandLineQuery(std::string title, bool _check, std::string _description) : 32 32 Dialog::VectorQuery(title,_check, _description) 33 33 {} -
src/UIElements/CommandLineUI/Query/VectorsCommandLineQuery.cpp
r912c40 r955b91 29 29 #include "World.hpp" 30 30 31 CommandLineDialog::VectorsCommandLineQuery::VectorsCommandLineQuery(st ring title, bool _check,string _description) :31 CommandLineDialog::VectorsCommandLineQuery::VectorsCommandLineQuery(std::string title, bool _check, std::string _description) : 32 32 Dialog::VectorsQuery(title,_check, _description) 33 33 {}
Note:
See TracChangeset
for help on using the changeset viewer.