Ignore:
Timestamp:
Oct 5, 2013, 9:31:54 AM (12 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, Candidate_v1.7.0, 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:
25ce49
Parents:
07414d7
git-author:
Frederik Heber <heber@…> (09/06/13 15:36:56)
git-committer:
Frederik Heber <heber@…> (10/05/13 09:31:54)
Message:

Qt's labels now show description as tool text.

  • had to streamline signature of all ..Dialogs.
  • changed Qt's Querys to set the tooltip from the now obtained description.
Location:
src/UIElements/CommandLineUI/Query
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/CommandLineUI/Query/AtomCommandLineQuery.cpp

    r07414d7 rf130d4  
    4949using namespace std;
    5050
    51 CommandLineDialog::AtomCommandLineQuery::AtomCommandLineQuery(Parameter<const atom *> &_param, std::string title, std::string _description) :
    52     Dialog::TQuery<const atom*>(_param, title, _description)
     51CommandLineDialog::AtomCommandLineQuery::AtomCommandLineQuery(Parameter<const atom *> &_param, const std::string &_title, const std::string &_description) :
     52    Dialog::TQuery<const atom*>(_param, _title, _description)
    5353{}
    5454
  • src/UIElements/CommandLineUI/Query/AtomsCommandLineQuery.cpp

    r07414d7 rf130d4  
    4444#include "World.hpp"
    4545
    46 CommandLineDialog::AtomsCommandLineQuery::AtomsCommandLineQuery(Parameter<std::vector<const atom *> > &_param, std::string title, std::string _description) :
    47     Dialog::TQuery<std::vector<const atom *> >(_param, title, _description)
     46CommandLineDialog::AtomsCommandLineQuery::AtomsCommandLineQuery(Parameter<std::vector<const atom *> > &_param, const std::string &_title, const std::string &_description) :
     47    Dialog::TQuery<std::vector<const atom *> >(_param, _title, _description)
    4848{}
    4949
  • src/UIElements/CommandLineUI/Query/BooleanCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::BooleanCommandLineQuery::BooleanCommandLineQuery(Parameter<bool> &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<bool>(_param, title, _description)
     43CommandLineDialog::BooleanCommandLineQuery::BooleanCommandLineQuery(Parameter<bool> &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<bool>(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/CommandLineQuery.hpp

    r07414d7 rf130d4  
    1919class CommandLineDialog::EmptyCommandLineQuery : public Dialog::EmptyQuery {
    2020public:
    21   EmptyCommandLineQuery(std::string title, std::string _description = "");
     21  EmptyCommandLineQuery(const std::string &_title, const std::string &_description = "");
    2222  virtual ~EmptyCommandLineQuery();
    2323  virtual bool handle();
     
    2626class CommandLineDialog::IntCommandLineQuery : public Dialog::TQuery<int> {
    2727public:
    28   IntCommandLineQuery(Parameter<int> &_param, std::string title, std::string _description = "");
     28  IntCommandLineQuery(Parameter<int> &_param, const std::string &_title, const std::string &_description = "");
    2929  virtual ~IntCommandLineQuery();
    3030  virtual bool handle();
     
    3333class CommandLineDialog::IntsCommandLineQuery : public Dialog::TQuery<std::vector<int> > {
    3434public:
    35   IntsCommandLineQuery(Parameter<std::vector<int> > &_param, std::string title, std::string _description = "");
     35  IntsCommandLineQuery(Parameter<std::vector<int> > &_param, const std::string &_title, const std::string &_description = "");
    3636  virtual ~IntsCommandLineQuery();
    3737  virtual bool handle();
     
    4040class CommandLineDialog::UnsignedIntCommandLineQuery : public Dialog::TQuery<unsigned int> {
    4141public:
    42   UnsignedIntCommandLineQuery(Parameter<unsigned int> &_param, std::string title, std::string _description = "");
     42  UnsignedIntCommandLineQuery(Parameter<unsigned int> &_param, const std::string &_title, const std::string &_description = "");
    4343  virtual ~UnsignedIntCommandLineQuery();
    4444  virtual bool handle();
     
    4747class CommandLineDialog::UnsignedIntsCommandLineQuery : public Dialog::TQuery<std::vector<unsigned int> > {
    4848public:
    49   UnsignedIntsCommandLineQuery(Parameter<std::vector<unsigned int> > &_param, std::string title, std::string _description = "");
     49  UnsignedIntsCommandLineQuery(Parameter<std::vector<unsigned int> > &_param, const std::string &_title, const std::string &_description = "");
    5050  virtual ~UnsignedIntsCommandLineQuery();
    5151  virtual bool handle();
     
    5454class CommandLineDialog::BooleanCommandLineQuery : public Dialog::TQuery<bool> {
    5555public:
    56   BooleanCommandLineQuery(Parameter<bool> &_param, std::string title, std::string _description = "");
     56  BooleanCommandLineQuery(Parameter<bool> &_param, const std::string &_title, const std::string &_description = "");
    5757  virtual ~BooleanCommandLineQuery();
    5858  virtual bool handle();
     
    6161class CommandLineDialog::DoubleCommandLineQuery : public Dialog::TQuery<double> {
    6262public:
    63   DoubleCommandLineQuery(Parameter<double> &_param, std::string title, std::string _description = "");
     63  DoubleCommandLineQuery(Parameter<double> &_param, const std::string &_title, const std::string &_description = "");
    6464  virtual ~DoubleCommandLineQuery();
    6565  virtual bool handle();
     
    6868class CommandLineDialog::DoublesCommandLineQuery : public Dialog::TQuery<std::vector<double> > {
    6969public:
    70   DoublesCommandLineQuery(Parameter<std::vector<double> > &_param, std::string title, std::string _description = "");
     70  DoublesCommandLineQuery(Parameter<std::vector<double> > &_param, const std::string &_title, const std::string &_description = "");
    7171  virtual ~DoublesCommandLineQuery();
    7272  virtual bool handle();
     
    7575class CommandLineDialog::StringCommandLineQuery : public Dialog::TQuery<std::string> {
    7676public:
    77   StringCommandLineQuery(Parameter<std::string> &_param, std::string title, std::string _description = "");
     77  StringCommandLineQuery(Parameter<std::string> &_param, const std::string &_title, const std::string &_description = "");
    7878  virtual ~StringCommandLineQuery();
    7979  virtual bool handle();
     
    8282class CommandLineDialog::StringsCommandLineQuery : public Dialog::TQuery<std::vector<std::string> > {
    8383public:
    84   StringsCommandLineQuery(Parameter<std::vector<std::string> > &_param, std::string title, std::string _description = "");
     84  StringsCommandLineQuery(Parameter<std::vector<std::string> > &_param, const std::string &_title, const std::string &_description = "");
    8585  virtual ~StringsCommandLineQuery();
    8686  virtual bool handle();
     
    8989class CommandLineDialog::AtomCommandLineQuery : public Dialog::TQuery<const atom *> {
    9090public:
    91   AtomCommandLineQuery(Parameter<const atom *> &_param, std::string title, std::string _description = "");
     91  AtomCommandLineQuery(Parameter<const atom *> &_param, const std::string &_title, const std::string &_description = "");
    9292  virtual ~AtomCommandLineQuery();
    9393  virtual bool handle();
     
    9696class CommandLineDialog::AtomsCommandLineQuery : public Dialog::TQuery<std::vector<const atom*> > {
    9797public:
    98   AtomsCommandLineQuery(Parameter<std::vector<const atom *> > &_param, std::string title, std::string _description = "");
     98  AtomsCommandLineQuery(Parameter<std::vector<const atom *> > &_param, const std::string &_title, const std::string &_description = "");
    9999  virtual ~AtomsCommandLineQuery();
    100100  virtual bool handle();
     
    103103class CommandLineDialog::MoleculeCommandLineQuery : public Dialog::TQuery<const molecule *> {
    104104public:
    105   MoleculeCommandLineQuery(Parameter<const molecule *> &_param, std::string title, std::string _description = "");
     105  MoleculeCommandLineQuery(Parameter<const molecule *> &_param, const std::string &_title, const std::string &_description = "");
    106106  virtual ~MoleculeCommandLineQuery();
    107107  virtual bool handle();
     
    110110class CommandLineDialog::MoleculesCommandLineQuery : public Dialog::TQuery<std::vector<const molecule*> > {
    111111public:
    112   MoleculesCommandLineQuery(Parameter<std::vector<const molecule *> > &_param, std::string title, std::string _description = "");
     112  MoleculesCommandLineQuery(Parameter<std::vector<const molecule *> > &_param, const std::string &_title, const std::string &_description = "");
    113113  virtual ~MoleculesCommandLineQuery();
    114114  virtual bool handle();
     
    117117class CommandLineDialog::VectorCommandLineQuery : public Dialog::TQuery<Vector> {
    118118public:
    119   VectorCommandLineQuery(Parameter<Vector> &_param, std::string title, std::string _description = "");
     119  VectorCommandLineQuery(Parameter<Vector> &_param, const std::string &_title, const std::string &_description = "");
    120120  virtual ~VectorCommandLineQuery();
    121121  virtual bool handle();
     
    124124class CommandLineDialog::VectorsCommandLineQuery : public Dialog::TQuery<std::vector<Vector> > {
    125125public:
    126   VectorsCommandLineQuery(Parameter<std::vector<Vector> > &_param, std::string title, std::string _description = "");
     126  VectorsCommandLineQuery(Parameter<std::vector<Vector> > &_param, const std::string &_title, const std::string &_description = "");
    127127  virtual ~VectorsCommandLineQuery();
    128128  virtual bool handle();
     
    131131class CommandLineDialog::RealSpaceMatrixCommandLineQuery : public Dialog::TQuery<RealSpaceMatrix> {
    132132public:
    133   RealSpaceMatrixCommandLineQuery(Parameter<RealSpaceMatrix> &_param, std::string title, std::string _description = "");
     133  RealSpaceMatrixCommandLineQuery(Parameter<RealSpaceMatrix> &_param, const std::string &_title, const std::string &_description = "");
    134134  virtual ~RealSpaceMatrixCommandLineQuery();
    135135  virtual bool handle();
     
    138138class CommandLineDialog::ElementCommandLineQuery : public Dialog::TQuery<const element *> {
    139139public:
    140   ElementCommandLineQuery(Parameter<const element *> &_param, std::string title, std::string _description = "");
     140  ElementCommandLineQuery(Parameter<const element *> &_param, const std::string &_title, const std::string &_description = "");
    141141  virtual ~ElementCommandLineQuery();
    142142  virtual bool handle();
     
    145145class CommandLineDialog::ElementsCommandLineQuery : public Dialog::TQuery<std::vector<const element *> > {
    146146public:
    147   ElementsCommandLineQuery(Parameter<std::vector<const element *> > &_param, std::string title, std::string _description = "");
     147  ElementsCommandLineQuery(Parameter<std::vector<const element *> > &_param, const std::string &_title, const std::string &_description = "");
    148148  virtual ~ElementsCommandLineQuery();
    149149  virtual bool handle();
     
    152152class CommandLineDialog::FileCommandLineQuery : public Dialog::TQuery<boost::filesystem::path> {
    153153public:
    154   FileCommandLineQuery(Parameter<boost::filesystem::path> &_param, std::string title, std::string _description = "");
     154  FileCommandLineQuery(Parameter<boost::filesystem::path> &_param, const std::string &_title, const std::string &_description = "");
    155155  virtual ~FileCommandLineQuery();
    156156  virtual bool handle();
     
    159159class CommandLineDialog::FilesCommandLineQuery : public Dialog::TQuery<std::vector<boost::filesystem::path> > {
    160160public:
    161   FilesCommandLineQuery(Parameter<std::vector< boost::filesystem::path> > &param, std::string title, std::string _description = "");
     161  FilesCommandLineQuery(Parameter<std::vector< boost::filesystem::path> > &param, const std::string &_title, const std::string &_description = "");
    162162  virtual ~FilesCommandLineQuery();
    163163  virtual bool handle();
     
    166166class CommandLineDialog::RandomNumberDistribution_ParametersCommandLineQuery : public Dialog::TQuery<RandomNumberDistribution_Parameters> {
    167167public:
    168   RandomNumberDistribution_ParametersCommandLineQuery(Parameter<RandomNumberDistribution_Parameters> &_param, std::string title, std::string _description = "");
     168  RandomNumberDistribution_ParametersCommandLineQuery(Parameter<RandomNumberDistribution_Parameters> &_param, const std::string &_title, const std::string &_description = "");
    169169  virtual ~RandomNumberDistribution_ParametersCommandLineQuery();
    170170  virtual bool handle();
  • src/UIElements/CommandLineUI/Query/DoubleCommandLineQuery.cpp

    r07414d7 rf130d4  
    4242
    4343
    44 CommandLineDialog::DoubleCommandLineQuery::DoubleCommandLineQuery(Parameter<double> &_param, std::string title, std::string _description) :
    45     Dialog::TQuery<double>(_param, title, _description)
     44CommandLineDialog::DoubleCommandLineQuery::DoubleCommandLineQuery(Parameter<double> &_param, const std::string &_title, const std::string &_description) :
     45    Dialog::TQuery<double>(_param, _title, _description)
    4646{}
    4747
  • src/UIElements/CommandLineUI/Query/DoublesCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::DoublesCommandLineQuery::DoublesCommandLineQuery(Parameter<std::vector<double> > &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<std::vector<double> >(_param, title, _description)
     43CommandLineDialog::DoublesCommandLineQuery::DoublesCommandLineQuery(Parameter<std::vector<double> > &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<std::vector<double> >(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/ElementCommandLineQuery.cpp

    r07414d7 rf130d4  
    4444#include "World.hpp"
    4545
    46 CommandLineDialog::ElementCommandLineQuery::ElementCommandLineQuery(Parameter<const element*> &_param, std::string title, std::string _description) :
    47     Dialog::TQuery<const element *>(_param, title, _description)
     46CommandLineDialog::ElementCommandLineQuery::ElementCommandLineQuery(Parameter<const element*> &_param, const std::string &_title, const std::string &_description) :
     47    Dialog::TQuery<const element *>(_param, _title, _description)
    4848{}
    4949
  • src/UIElements/CommandLineUI/Query/ElementsCommandLineQuery.cpp

    r07414d7 rf130d4  
    4444#include "World.hpp"
    4545
    46 CommandLineDialog::ElementsCommandLineQuery::ElementsCommandLineQuery(Parameter<std::vector<const element*> > &_param, std::string title, std::string _description) :
    47     Dialog::TQuery<std::vector<const element *> >(_param, title, _description)
     46CommandLineDialog::ElementsCommandLineQuery::ElementsCommandLineQuery(Parameter<std::vector<const element*> > &_param, const std::string &_title, const std::string &_description) :
     47    Dialog::TQuery<std::vector<const element *> >(_param, _title, _description)
    4848{}
    4949
  • src/UIElements/CommandLineUI/Query/EmptyCommandLineQuery.cpp

    r07414d7 rf130d4  
    4242#include "CodePatterns/Verbose.hpp"
    4343
    44 CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(std::string title, std::string _description) :
    45     Dialog::EmptyQuery(title, _description)
     44CommandLineDialog::EmptyCommandLineQuery::EmptyCommandLineQuery(const std::string &_title, const std::string &_description) :
     45    Dialog::EmptyQuery(_title, _description)
    4646{}
    4747
  • src/UIElements/CommandLineUI/Query/FileCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::FileCommandLineQuery::FileCommandLineQuery(Parameter<boost::filesystem::path> &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<boost::filesystem::path>(_param, title, _description)
     43CommandLineDialog::FileCommandLineQuery::FileCommandLineQuery(Parameter<boost::filesystem::path> &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<boost::filesystem::path>(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/FilesCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::FilesCommandLineQuery::FilesCommandLineQuery(Parameter<std::vector< boost::filesystem::path> > &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<std::vector<boost::filesystem::path> >(_param, title, _description)
     43CommandLineDialog::FilesCommandLineQuery::FilesCommandLineQuery(Parameter<std::vector< boost::filesystem::path> > &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<std::vector<boost::filesystem::path> >(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/IntCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(Parameter<int> &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<int>(_param, title, _description)
     43CommandLineDialog::IntCommandLineQuery::IntCommandLineQuery(Parameter<int> &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<int>(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/IntsCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::IntsCommandLineQuery::IntsCommandLineQuery(Parameter<std::vector<int> > &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<std::vector<int> >(_param, title, _description)
     43CommandLineDialog::IntsCommandLineQuery::IntsCommandLineQuery(Parameter<std::vector<int> > &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<std::vector<int> >(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/MoleculeCommandLineQuery.cpp

    r07414d7 rf130d4  
    4444#include "CodePatterns/Verbose.hpp"
    4545
    46 CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(Parameter<const molecule *> &_param, std::string title, std::string _description) :
    47     Dialog::TQuery<const molecule *>(_param, title, _description)
     46CommandLineDialog::MoleculeCommandLineQuery::MoleculeCommandLineQuery(Parameter<const molecule *> &_param, const std::string &_title, const std::string &_description) :
     47    Dialog::TQuery<const molecule *>(_param, _title, _description)
    4848{}
    4949
  • src/UIElements/CommandLineUI/Query/MoleculesCommandLineQuery.cpp

    r07414d7 rf130d4  
    4545#include "World.hpp"
    4646
    47 CommandLineDialog::MoleculesCommandLineQuery::MoleculesCommandLineQuery(Parameter<std::vector<const molecule *> > &_param, std::string title, std::string _description) :
    48     Dialog::TQuery<std::vector<const molecule *> >(_param, title, _description)
     47CommandLineDialog::MoleculesCommandLineQuery::MoleculesCommandLineQuery(Parameter<std::vector<const molecule *> > &_param, const std::string &_title, const std::string &_description) :
     48    Dialog::TQuery<std::vector<const molecule *> >(_param, _title, _description)
    4949{}
    5050
  • src/UIElements/CommandLineUI/Query/RandomNumberDistribution_ParametersCommandLineQuery.cpp

    r07414d7 rf130d4  
    4747#include "RandomNumbers/RandomNumberDistribution_Parameters.hpp"
    4848
    49 CommandLineDialog::RandomNumberDistribution_ParametersCommandLineQuery::RandomNumberDistribution_ParametersCommandLineQuery(Parameter<RandomNumberDistribution_Parameters> &_param, std::string title, std::string _description) :
    50     Dialog::TQuery<RandomNumberDistribution_Parameters>(_param, title, _description)
     49CommandLineDialog::RandomNumberDistribution_ParametersCommandLineQuery::RandomNumberDistribution_ParametersCommandLineQuery(Parameter<RandomNumberDistribution_Parameters> &_param, const std::string &_title, const std::string &_description) :
     50    Dialog::TQuery<RandomNumberDistribution_Parameters>(_param, _title, _description)
    5151{}
    5252
  • src/UIElements/CommandLineUI/Query/RealSpaceMatrixCommandLineQuery.cpp

    r07414d7 rf130d4  
    4343#include "LinearAlgebra/RealSpaceMatrix.hpp"
    4444
    45 CommandLineDialog::RealSpaceMatrixCommandLineQuery::RealSpaceMatrixCommandLineQuery(Parameter<RealSpaceMatrix> &_param, std::string title, std::string _description) :
    46     Dialog::TQuery<RealSpaceMatrix>(_param, title, _description)
     45CommandLineDialog::RealSpaceMatrixCommandLineQuery::RealSpaceMatrixCommandLineQuery(Parameter<RealSpaceMatrix> &_param, const std::string &_title, const std::string &_description) :
     46    Dialog::TQuery<RealSpaceMatrix>(_param, _title, _description)
    4747{}
    4848
  • src/UIElements/CommandLineUI/Query/StringCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(Parameter<std::string> &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<std::string>(_param, title, _description)
     43CommandLineDialog::StringCommandLineQuery::StringCommandLineQuery(Parameter<std::string> &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<std::string>(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/StringsCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(Parameter<std::vector<std::string> > &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<std::vector<std::string> >(_param, title, _description)
     43CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(Parameter<std::vector<std::string> > &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<std::vector<std::string> >(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/UnsignedIntCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::UnsignedIntCommandLineQuery::UnsignedIntCommandLineQuery(Parameter<unsigned int> &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<unsigned int>(_param, title, _description)
     43CommandLineDialog::UnsignedIntCommandLineQuery::UnsignedIntCommandLineQuery(Parameter<unsigned int> &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<unsigned int>(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/UnsignedIntsCommandLineQuery.cpp

    r07414d7 rf130d4  
    4141#include "CodePatterns/Verbose.hpp"
    4242
    43 CommandLineDialog::UnsignedIntsCommandLineQuery::UnsignedIntsCommandLineQuery(Parameter<std::vector<unsigned int> > &_param, std::string title, std::string _description) :
    44     Dialog::TQuery<std::vector<unsigned int> >(_param, title, _description)
     43CommandLineDialog::UnsignedIntsCommandLineQuery::UnsignedIntsCommandLineQuery(Parameter<std::vector<unsigned int> > &_param, const std::string &_title, const std::string &_description) :
     44    Dialog::TQuery<std::vector<unsigned int> >(_param, _title, _description)
    4545{}
    4646
  • src/UIElements/CommandLineUI/Query/VectorCommandLineQuery.cpp

    r07414d7 rf130d4  
    4545#include "World.hpp"
    4646
    47 CommandLineDialog::VectorCommandLineQuery::VectorCommandLineQuery(Parameter<Vector> &_param, std::string title, std::string _description) :
    48     Dialog::TQuery<Vector>(_param, title, _description)
     47CommandLineDialog::VectorCommandLineQuery::VectorCommandLineQuery(Parameter<Vector> &_param, const std::string &_title, const std::string &_description) :
     48    Dialog::TQuery<Vector>(_param, _title, _description)
    4949{}
    5050
  • src/UIElements/CommandLineUI/Query/VectorsCommandLineQuery.cpp

    r07414d7 rf130d4  
    4545#include "World.hpp"
    4646
    47 CommandLineDialog::VectorsCommandLineQuery::VectorsCommandLineQuery(Parameter<std::vector<Vector> > &_param, std::string title, std::string _description) :
    48     Dialog::TQuery<std::vector<Vector> >(_param, title, _description)
     47CommandLineDialog::VectorsCommandLineQuery::VectorsCommandLineQuery(Parameter<std::vector<Vector> > &_param, const std::string &_title, const std::string &_description) :
     48    Dialog::TQuery<std::vector<Vector> >(_param, _title, _description)
    4949{}
    5050
Note: See TracChangeset for help on using the changeset viewer.