Changeset 955b91 for src/UIElements/CommandLineUI/CommandLineDialog.cpp
- 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)
- File:
-
- 1 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 }
Note:
See TracChangeset
for help on using the changeset viewer.