Ignore:
Timestamp:
May 9, 2010, 11:59:35 AM (15 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

new query class EmptyQuery for showing text messages.

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/CommandLineDialog.cpp

    r148d8f0 r86466e  
    3535
    3636
    37 void CommandLineDialog::queryInt(const char* title, int* target){
    38   registerQuery(new IntTextQuery(title,target));
     37void CommandLineDialog::queryEmpty(const char* title, string _description){
     38  registerQuery(new EmptyCommandLineQuery(title, _description));
    3939}
    4040
    41 void CommandLineDialog::queryDouble(const char* title, double* target){
    42   registerQuery(new DoubleTextQuery(title,target));
     41void CommandLineDialog::queryInt(const char* title, int* target, string _description){
     42  registerQuery(new IntCommandLineQuery(title,target, _description));
    4343}
    4444
    45 void CommandLineDialog::queryString(const char* title, string* target){
    46   registerQuery(new StringTextQuery(title,target));
     45void CommandLineDialog::queryDouble(const char* title, double* target, string _description){
     46  registerQuery(new DoubleCommandLineQuery(title,target, _description));
    4747}
    4848
    49 void CommandLineDialog::queryMolecule(const char* title, molecule **target, MoleculeListClass *molecules) {
    50   registerQuery(new MoleculeTextQuery(title,target,molecules));
     49void CommandLineDialog::queryString(const char* title, string* target, string _description){
     50  registerQuery(new StringCommandLineQuery(title,target, _description));
    5151}
    5252
    53 void CommandLineDialog::queryVector(const char* title, Vector *target,const double *const cellSize, bool check) {
    54   registerQuery(new VectorTextQuery(title,target,cellSize,check));
     53void CommandLineDialog::queryMolecule(const char* title, molecule **target, MoleculeListClass *molecules, string _description) {
     54  registerQuery(new MoleculeCommandLineQuery(title,target,molecules, _description));
    5555}
    5656
    57 void CommandLineDialog::queryElement(const char* title, const element **target){
    58   registerQuery(new ElementTextQuery(title,target));
     57void 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
     61void CommandLineDialog::queryElement(const char* title, const element **target, string _description){
     62  registerQuery(new ElementCommandLineQuery(title,target, _description));
    5963}
    6064
    6165/************************** Query Infrastructure ************************/
    6266
    63 CommandLineDialog::IntTextQuery::IntTextQuery(string title,int *_target) :
    64     Dialog::IntQuery(title,_target)
     67CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(string title, string _description) :
     68    Dialog::EmptyQuery(title, _description)
    6569{}
    6670
    67 CommandLineDialog::IntTextQuery::~IntTextQuery() {}
     71CommandLineDialog::EmptyCommandLineQuery::~EmptyCommandLineQuery() {}
    6872
    69 bool CommandLineDialog::IntTextQuery::handle() {
     73bool CommandLineDialog::EmptyCommandLineQuery::handle() {
     74  cout << "Message of " << getTitle() << ":\n" << getDescription() << "\n";
     75  return true;
     76}
     77
     78CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(string title,int *_target, string _description) :
     79    Dialog::IntQuery(title,_target, _description)
     80{}
     81
     82CommandLineDialog::IntCommandLineQuery::~IntCommandLineQuery() {}
     83
     84bool CommandLineDialog::IntCommandLineQuery::handle() {
    7085  if (CommandLineParser::getInstance().vm.count(getTitle())) {
    7186    tmp = CommandLineParser::getInstance().vm[getTitle()].as<int>();
     
    7590}
    7691
    77 CommandLineDialog::StringTextQuery::StringTextQuery(string title,string *_target) :
    78     Dialog::StringQuery(title,_target)
     92CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(string title,string *_target, string _description) :
     93    Dialog::StringQuery(title,_target, _description)
    7994{}
    8095
    81 CommandLineDialog::StringTextQuery::~StringTextQuery() {}
     96CommandLineDialog::StringCommandLineQuery::~StringCommandLineQuery() {}
    8297
    83 bool CommandLineDialog::StringTextQuery::handle() {
     98bool CommandLineDialog::StringCommandLineQuery::handle() {
    8499  if (CommandLineParser::getInstance().vm.count(getTitle())) {
    85     tmp = CommandLineParser::getInstance().vm[getTitle()].as<std::string>();
     100    tmp = CommandLineParser::getInstance().vm[getTitle()].as<string>();
    86101    return true;
    87102  } else
     
    89104}
    90105
    91 CommandLineDialog::DoubleTextQuery::DoubleTextQuery(string title,double *_target) :
    92     Dialog::DoubleQuery(title,_target)
     106CommandLineDialog::DoubleCommandLineQuery::DoubleCommandLineQuery(string title,double *_target, string _description) :
     107    Dialog::DoubleQuery(title,_target, _description)
    93108{}
    94109
    95 CommandLineDialog::DoubleTextQuery::~DoubleTextQuery() {}
     110CommandLineDialog::DoubleCommandLineQuery::~DoubleCommandLineQuery() {}
    96111
    97 bool CommandLineDialog::DoubleTextQuery::handle() {
     112bool CommandLineDialog::DoubleCommandLineQuery::handle() {
    98113  if (CommandLineParser::getInstance().vm.count(getTitle())) {
    99114    tmp = CommandLineParser::getInstance().vm[getTitle()].as<double>();
     
    103118}
    104119
    105 CommandLineDialog::MoleculeTextQuery::MoleculeTextQuery(string title, molecule **_target, MoleculeListClass *_molecules) :
    106     Dialog::MoleculeQuery(title,_target,_molecules)
     120CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(string title, molecule **_target, MoleculeListClass *_molecules, string _description) :
     121    Dialog::MoleculeQuery(title,_target,_molecules, _description)
    107122{}
    108123
    109 CommandLineDialog::MoleculeTextQuery::~MoleculeTextQuery() {}
     124CommandLineDialog::MoleculeCommandLineQuery::~MoleculeCommandLineQuery() {}
    110125
    111 bool CommandLineDialog::MoleculeTextQuery::handle() {
     126bool CommandLineDialog::MoleculeCommandLineQuery::handle() {
    112127  int IdxOfMol = -1;
    113128  if (CommandLineParser::getInstance().vm.count(getTitle())) {
     
    119134}
    120135
    121 CommandLineDialog::VectorTextQuery::VectorTextQuery(std::string title, Vector *_target, const double *const _cellSize, bool _check) :
    122     Dialog::VectorQuery(title,_target,_cellSize,_check)
     136CommandLineDialog::VectorCommandLineQuery::VectorCommandLineQuery(string title, Vector *_target, const double *const _cellSize, bool _check, string _description) :
     137    Dialog::VectorQuery(title,_target,_cellSize,_check, _description)
    123138{}
    124139
    125 CommandLineDialog::VectorTextQuery::~VectorTextQuery()
     140CommandLineDialog::VectorCommandLineQuery::~VectorCommandLineQuery()
    126141{}
    127142
    128 bool CommandLineDialog::VectorTextQuery::handle() {
     143bool CommandLineDialog::VectorCommandLineQuery::handle() {
    129144  vector<double> temp;
    130145  if (CommandLineParser::getInstance().vm.count(getTitle())) {
     
    140155
    141156
    142 CommandLineDialog::ElementTextQuery::ElementTextQuery(std::string title, const element **target) :
    143     Dialog::ElementQuery(title,target)
     157CommandLineDialog::ElementCommandLineQuery::ElementCommandLineQuery(string title, const element **target, string _description) :
     158    Dialog::ElementQuery(title,target, _description)
    144159{}
    145160
    146 CommandLineDialog::ElementTextQuery::~ElementTextQuery()
     161CommandLineDialog::ElementCommandLineQuery::~ElementCommandLineQuery()
    147162{}
    148163
    149 bool CommandLineDialog::ElementTextQuery::handle() {
     164bool CommandLineDialog::ElementCommandLineQuery::handle() {
    150165  int Z = -1;
    151166  if (CommandLineParser::getInstance().vm.count(getTitle())) {
Note: See TracChangeset for help on using the changeset viewer.