Changeset 1c55b8 for src/UIElements/Qt4/Query
- Timestamp:
- Aug 27, 2012, 11:36:59 AM (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:
- 852ea3
- Parents:
- a55e6f
- git-author:
- Michael Ankele <ankele@…> (08/14/12 14:52:25)
- git-committer:
- Michael Ankele <ankele@…> (08/27/12 11:36:59)
- Location:
- src/UIElements/Qt4/Query
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Query/AtomQtQuery.cpp
ra55e6f r1c55b8 30 30 31 31 QtDialog::AtomQtQuery::AtomQtQuery(Parameter<const atom *> &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 32 Dialog:: AtomQuery(_param, _title),32 Dialog::TQuery<const atom *>(_param, _title), 33 33 parent(_parent), 34 34 dialog(_dialog) -
src/UIElements/Qt4/Query/AtomsQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::AtomsQtQuery::AtomsQtQuery(Parameter<std::vector<const atom *> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: AtomsQuery(_param, _title),31 Dialog::TQuery<std::vector<const atom *> >(_param, _title), 32 32 QtQueryList<const atom *>(_parent, _dialog, temp) 33 33 { -
src/UIElements/Qt4/Query/BooleanQtQuery.cpp
ra55e6f r1c55b8 28 28 29 29 QtDialog::BooleanQtQuery::BooleanQtQuery(Parameter<bool> &_param, std::string _title, QBoxLayout *_parent, Dialog *_dialog) : 30 Dialog:: BooleanQuery(_param, _title),30 Dialog::TQuery<bool>(_param, _title), 31 31 parent(_parent), 32 32 dialog(_dialog) -
src/UIElements/Qt4/Query/DoubleQtQuery.cpp
ra55e6f r1c55b8 28 28 29 29 QtDialog::DoubleQtQuery::DoubleQtQuery(Parameter<double> &_param, std::string title,QBoxLayout *_parent,Dialog *_dialog) : 30 Dialog:: DoubleQuery(_param, title),30 Dialog::TQuery<double>(_param, title), 31 31 parent(_parent), 32 32 dialog(_dialog) -
src/UIElements/Qt4/Query/DoublesQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::DoublesQtQuery::DoublesQtQuery(Parameter<std::vector<double> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: DoublesQuery(_param, _title),31 Dialog::TQuery<std::vector<double> >(_param, _title), 32 32 QtQueryList<double>(_parent, _dialog, temp) 33 33 { -
src/UIElements/Qt4/Query/ElementQtQuery.cpp
ra55e6f r1c55b8 31 31 32 32 QtDialog::ElementQtQuery::ElementQtQuery(Parameter<const element *> &_param, std::string _title, QBoxLayout *_parent, Dialog *_dialog) : 33 Dialog:: ElementQuery(_param, _title),33 Dialog::TQuery<const element *>(_param, _title), 34 34 parent(_parent), 35 35 dialog(_dialog) -
src/UIElements/Qt4/Query/ElementsQtQuery.cpp
ra55e6f r1c55b8 30 30 31 31 QtDialog::ElementsQtQuery::ElementsQtQuery(Parameter<std::vector<const element *> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 32 Dialog:: ElementsQuery(_param, _title),32 Dialog::TQuery<std::vector<const element *> >(_param, _title), 33 33 QtQueryList<const element *>(_parent, _dialog, temp) 34 34 { -
src/UIElements/Qt4/Query/FileQtQuery.cpp
ra55e6f r1c55b8 30 30 31 31 QtDialog::FileQtQuery::FileQtQuery(Parameter<boost::filesystem::path> &_param, std::string _title, QBoxLayout *_parent, Dialog *_dialog) : 32 Dialog:: FileQuery(_param, _title),32 Dialog::TQuery<boost::filesystem::path>(_param, _title), 33 33 parent(_parent), 34 34 dialog(_dialog) -
src/UIElements/Qt4/Query/FilesQtQuery.cpp
ra55e6f r1c55b8 30 30 31 31 QtDialog::FilesQtQuery::FilesQtQuery(Parameter<std::vector<boost::filesystem::path> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 32 Dialog:: FilesQuery(_param, _title),32 Dialog::TQuery<std::vector<boost::filesystem::path> >(_param, _title), 33 33 QtQueryList<boost::filesystem::path>(_parent, _dialog, temp) 34 34 { -
src/UIElements/Qt4/Query/IntQtQuery.cpp
ra55e6f r1c55b8 28 28 29 29 QtDialog::IntQtQuery::IntQtQuery(Parameter<int> &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 30 Dialog:: IntQuery(_param, _title),30 Dialog::TQuery<int>(_param, _title), 31 31 parent(_parent), 32 32 dialog(_dialog) -
src/UIElements/Qt4/Query/IntsQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::IntsQtQuery::IntsQtQuery(Parameter<std::vector<int> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: IntsQuery(_param, _title),31 Dialog::TQuery<std::vector<int> >(_param, _title), 32 32 QtQueryList<int>(_parent, _dialog, temp) 33 33 { -
src/UIElements/Qt4/Query/MoleculeQtQuery.cpp
ra55e6f r1c55b8 31 31 32 32 QtDialog::MoleculeQtQuery::MoleculeQtQuery(Parameter<const molecule *> &_param, std::string _title, QBoxLayout *_parent,Dialog *_dialog) : 33 Dialog:: MoleculeQuery(_param, _title),33 Dialog::TQuery<const molecule *>(_param, _title), 34 34 parent(_parent), 35 35 dialog(_dialog) -
src/UIElements/Qt4/Query/MoleculesQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::MoleculesQtQuery::MoleculesQtQuery(Parameter<std::vector<const molecule *> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: MoleculesQuery(_param, _title),31 Dialog::TQuery<std::vector<const molecule *> >(_param, _title), 32 32 QtQueryList<const molecule *>(_parent, _dialog, temp) 33 33 { -
src/UIElements/Qt4/Query/QtQuery.hpp
ra55e6f r1c55b8 35 35 class QFileDialog; 36 36 37 class QtDialog::AtomQtQuery : public QWidget, public Dialog:: AtomQuery{37 class QtDialog::AtomQtQuery : public QWidget, public Dialog::TQuery<const atom *> { 38 38 Q_OBJECT 39 39 public: … … 53 53 }; 54 54 55 class QtDialog::AtomsQtQuery : public QWidget, public Dialog:: AtomsQuery, public QtQueryList<const atom *> {55 class QtDialog::AtomsQtQuery : public QWidget, public Dialog::TQuery<std::vector<const atom *> >, public QtQueryList<const atom *> { 56 56 Q_OBJECT 57 57 public: … … 71 71 }; 72 72 73 class QtDialog::BooleanQtQuery : public QWidget, public Dialog:: BooleanQuery{73 class QtDialog::BooleanQtQuery : public QWidget, public Dialog::TQuery<bool> { 74 74 Q_OBJECT 75 75 public: … … 89 89 }; 90 90 91 class QtDialog::RealSpaceMatrixQtQuery : public QWidget, public Dialog:: RealSpaceMatrixQuery{91 class QtDialog::RealSpaceMatrixQtQuery : public QWidget, public Dialog::TQuery<RealSpaceMatrix> { 92 92 Q_OBJECT 93 93 public: … … 107 107 }; 108 108 109 class QtDialog::DoubleQtQuery : public QWidget, public Dialog:: DoubleQuery{109 class QtDialog::DoubleQtQuery : public QWidget, public Dialog::TQuery<double> { 110 110 Q_OBJECT 111 111 public: … … 125 125 }; 126 126 127 class QtDialog::DoublesQtQuery : public QWidget, public Dialog:: DoublesQuery, public QtQueryList<double> {127 class QtDialog::DoublesQtQuery : public QWidget, public Dialog::TQuery<std::vector<double> >, public QtQueryList<double> { 128 128 Q_OBJECT 129 129 public: … … 143 143 }; 144 144 145 class QtDialog::ElementQtQuery : public QWidget, public Dialog:: ElementQuery{145 class QtDialog::ElementQtQuery : public QWidget, public Dialog::TQuery<const element *> { 146 146 Q_OBJECT 147 147 public: … … 161 161 }; 162 162 163 class QtDialog::ElementsQtQuery : public QWidget, public Dialog:: ElementsQuery, public QtQueryList<const element *> {163 class QtDialog::ElementsQtQuery : public QWidget, public Dialog::TQuery<std::vector<const element *> >, public QtQueryList<const element *> { 164 164 Q_OBJECT 165 165 public: … … 191 191 }; 192 192 193 class QtDialog::FileQtQuery : public QWidget, public Dialog:: FileQuery{193 class QtDialog::FileQtQuery : public QWidget, public Dialog::TQuery<boost::filesystem::path> { 194 194 Q_OBJECT 195 195 public: … … 212 212 }; 213 213 214 class QtDialog::FilesQtQuery : public QWidget, public Dialog:: FilesQuery, public QtQueryList<boost::filesystem::path> {214 class QtDialog::FilesQtQuery : public QWidget, public Dialog::TQuery<std::vector<boost::filesystem::path> >, public QtQueryList<boost::filesystem::path> { 215 215 Q_OBJECT 216 216 public: … … 230 230 }; 231 231 232 class QtDialog::IntQtQuery : public QWidget, public Dialog:: IntQuery{232 class QtDialog::IntQtQuery : public QWidget, public Dialog::TQuery<int> { 233 233 Q_OBJECT 234 234 public: … … 248 248 }; 249 249 250 class QtDialog::IntsQtQuery : public QWidget, public Dialog:: IntsQuery, public QtQueryList<int> {250 class QtDialog::IntsQtQuery : public QWidget, public Dialog::TQuery<std::vector<int> >, public QtQueryList<int> { 251 251 Q_OBJECT 252 252 public: … … 266 266 }; 267 267 268 class QtDialog::MoleculeQtQuery : public QWidget, public Dialog:: MoleculeQuery{268 class QtDialog::MoleculeQtQuery : public QWidget, public Dialog::TQuery<const molecule *> { 269 269 Q_OBJECT 270 270 public: … … 284 284 }; 285 285 286 class QtDialog::MoleculesQtQuery : public QWidget, public Dialog:: MoleculesQuery, public QtQueryList<const molecule *> {286 class QtDialog::MoleculesQtQuery : public QWidget, public Dialog::TQuery<std::vector<const molecule *> >, public QtQueryList<const molecule *> { 287 287 Q_OBJECT 288 288 public: … … 302 302 }; 303 303 304 class QtDialog::StringQtQuery : public QWidget, public Dialog:: StringQuery{304 class QtDialog::StringQtQuery : public QWidget, public Dialog::TQuery<std::string> { 305 305 Q_OBJECT 306 306 public: … … 320 320 }; 321 321 322 class QtDialog::StringsQtQuery : public QWidget, public Dialog:: StringsQuery, public QtQueryList<std::string> {322 class QtDialog::StringsQtQuery : public QWidget, public Dialog::TQuery<std::vector<std::string> >, public QtQueryList<std::string> { 323 323 Q_OBJECT 324 324 public: … … 338 338 }; 339 339 340 class QtDialog::UnsignedIntQtQuery : public QWidget, public Dialog:: UnsignedIntQuery{340 class QtDialog::UnsignedIntQtQuery : public QWidget, public Dialog::TQuery<unsigned int> { 341 341 Q_OBJECT 342 342 public: … … 356 356 }; 357 357 358 class QtDialog::UnsignedIntsQtQuery : public QWidget, public Dialog:: UnsignedIntsQuery, public QtQueryList<unsigned int> {358 class QtDialog::UnsignedIntsQtQuery : public QWidget, public Dialog::TQuery<std::vector<unsigned int> >, public QtQueryList<unsigned int> { 359 359 Q_OBJECT 360 360 public: … … 374 374 }; 375 375 376 class QtDialog::VectorQtQuery : public QWidget, public Dialog:: VectorQuery{376 class QtDialog::VectorQtQuery : public QWidget, public Dialog::TQuery<Vector> { 377 377 Q_OBJECT 378 378 public: … … 399 399 }; 400 400 401 class QtDialog::VectorsQtQuery : public QWidget, public Dialog:: VectorsQuery, public QtQueryList<Vector> {401 class QtDialog::VectorsQtQuery : public QWidget, public Dialog::TQuery<std::vector<Vector> >, public QtQueryList<Vector> { 402 402 Q_OBJECT 403 403 public: … … 417 417 }; 418 418 419 class QtDialog::RandomNumberDistribution_ParametersQtQuery : public QWidget, public Dialog:: RandomNumberDistribution_ParametersQuery{419 class QtDialog::RandomNumberDistribution_ParametersQtQuery : public QWidget, public Dialog::TQuery<RandomNumberDistribution_Parameters> { 420 420 Q_OBJECT 421 421 public: -
src/UIElements/Qt4/Query/RandomNumberDistribution_ParametersQtQuery.cpp
ra55e6f r1c55b8 31 31 32 32 QtDialog::RandomNumberDistribution_ParametersQtQuery::RandomNumberDistribution_ParametersQtQuery(Parameter<RandomNumberDistribution_Parameters> &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 33 Dialog:: RandomNumberDistribution_ParametersQuery(_param, _title),33 Dialog::TQuery<RandomNumberDistribution_Parameters>(_param, _title), 34 34 parent(_parent), 35 35 dialog(_dialog) -
src/UIElements/Qt4/Query/RealSpaceMatrixQtQuery.cpp
ra55e6f r1c55b8 30 30 31 31 QtDialog::RealSpaceMatrixQtQuery::RealSpaceMatrixQtQuery(Parameter<RealSpaceMatrix> &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 32 Dialog:: RealSpaceMatrixQuery(_param, _title),32 Dialog::TQuery<RealSpaceMatrix>(_param, _title), 33 33 parent(_parent), 34 34 dialog(_dialog) -
src/UIElements/Qt4/Query/StringQtQuery.cpp
ra55e6f r1c55b8 28 28 29 29 QtDialog::StringQtQuery::StringQtQuery(Parameter<std::string> &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 30 Dialog:: StringQuery(_param, _title),30 Dialog::TQuery<std::string>(_param, _title), 31 31 parent(_parent), 32 32 dialog(_dialog) -
src/UIElements/Qt4/Query/StringsQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::StringsQtQuery::StringsQtQuery(Parameter<std::vector<std::string> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: StringsQuery(_param, _title),31 Dialog::TQuery<std::vector<std::string> >(_param, _title), 32 32 QtQueryList<std::string>(_parent, _dialog, temp) 33 33 { -
src/UIElements/Qt4/Query/UnsignedIntQtQuery.cpp
ra55e6f r1c55b8 28 28 29 29 QtDialog::UnsignedIntQtQuery::UnsignedIntQtQuery(Parameter<unsigned int> &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 30 Dialog:: UnsignedIntQuery(_param, _title),30 Dialog::TQuery<unsigned int>(_param, _title), 31 31 parent(_parent), 32 32 dialog(_dialog) -
src/UIElements/Qt4/Query/UnsignedIntsQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::UnsignedIntsQtQuery::UnsignedIntsQtQuery(Parameter<std::vector<unsigned int> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: UnsignedIntsQuery(_param, _title),31 Dialog::TQuery<std::vector<unsigned int> >(_param, _title), 32 32 QtQueryList<unsigned int>(_parent, _dialog, temp) 33 33 { -
src/UIElements/Qt4/Query/VectorQtQuery.cpp
ra55e6f r1c55b8 29 29 30 30 QtDialog::VectorQtQuery::VectorQtQuery(Parameter<Vector> &_param, std::string title, QBoxLayout *_parent,Dialog *_dialog) : 31 Dialog:: VectorQuery(_param, title),31 Dialog::TQuery<Vector>(_param, title), 32 32 parent(_parent), 33 33 dialog(_dialog) -
src/UIElements/Qt4/Query/VectorsQtQuery.cpp
ra55e6f r1c55b8 30 30 31 31 QtDialog::VectorsQtQuery::VectorsQtQuery(Parameter<std::vector<Vector> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) : 32 Dialog:: VectorsQuery(_param, _title),32 Dialog::TQuery<std::vector<Vector> >(_param, _title), 33 33 QtQueryList<Vector>(_parent, _dialog, temp) 34 34 {
Note:
See TracChangeset
for help on using the changeset viewer.