Changeset 37a67f for src/UIElements/Qt4/QtDialog.hpp
- Timestamp:
- Jun 11, 2015, 11:21:41 PM (10 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:
- 08d042
- Parents:
- 043598
- git-author:
- Frederik Heber <heber@…> (05/17/15 13:50:53)
- git-committer:
- Frederik Heber <heber@…> (06/11/15 23:21:41)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/QtDialog.hpp
r043598 r37a67f 35 35 36 36 virtual void queryEmpty(const std::string ="", const std::string = ""); 37 virtual void queryBoolean(Parameter<bool> &, const std::string ="", const std::string = ""); 38 virtual void queryInt(Parameter<int> &, const std::string ="", const std::string = ""); 39 virtual void queryInts(Parameter<std::vector<int> > &, const std::string ="", const std::string = ""); 40 virtual void queryUnsignedInt(Parameter<unsigned int> &, const std::string ="", const std::string = ""); 41 virtual void queryUnsignedInts(Parameter<std::vector<unsigned int> > &, const std::string ="", const std::string = ""); 42 virtual void queryDouble(Parameter<double> &, const std::string ="", const std::string = ""); 43 virtual void queryDoubles(Parameter<std::vector<double> > &, const std::string ="", const std::string = ""); 44 virtual void queryString(Parameter<std::string> &, const std::string ="", const std::string = ""); 45 virtual void queryStrings(Parameter<std::vector<std::string> > &, const std::string ="", const std::string = ""); 46 virtual void queryAtom(Parameter<const atom *> &, const std::string ="", const std::string = ""); 47 virtual void queryAtoms(Parameter<std::vector<const atom *> > &, const std::string ="", const std::string = ""); 48 virtual void queryMolecule(Parameter<const molecule *> &, const std::string ="", const std::string = ""); 49 virtual void queryMolecules(Parameter<std::vector<const molecule *> > &, const std::string ="", const std::string = ""); 50 virtual void queryVector(Parameter<Vector> &, const std::string ="", const std::string = ""); 51 virtual void queryVectors(Parameter<std::vector<Vector> > &, const std::string ="", const std::string = ""); 52 virtual void queryRealSpaceMatrix(Parameter<RealSpaceMatrix> &, const std::string ="", const std::string = ""); 53 virtual void queryElement(Parameter<const element *> &, const std::string ="", const std::string = ""); 54 virtual void queryElements(Parameter<std::vector<const element *> > &, const std::string ="", const std::string = ""); 55 virtual void queryFile(Parameter<boost::filesystem::path> &, const std::string ="", const std::string = ""); 56 virtual void queryFiles(Parameter<std::vector< boost::filesystem::path> > &, const std::string ="", const std::string = ""); 57 virtual void queryKeyValuePair(Parameter<KeyValuePair> &, const std::string ="", const std::string = ""); 58 virtual void queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > &, const std::string ="", const std::string = ""); 37 38 /** With the following boost::preprocessor code we generate virtual function 39 * definitions for all desired query types in the abstract class Dialog. 40 */ 41 #include "UIElements/GlobalListOfParameterQueries.hpp" 42 #include "UIElements/Dialog_impl_pre.hpp" 43 44 #include <boost/preprocessor/facilities/empty.hpp> 45 46 // iterate over all parameter query types 47 #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type 48 #define SUFFIX BOOST_PP_EMPTY() 49 #define BOOST_PP_LOCAL_MACRO(n) dialog_declaration(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, GLOBALLISTOFPARAMETERQUERIES_Type) 50 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMETERTOKENS-1) 51 #include BOOST_PP_LOCAL_ITERATE() 52 #undef dialog_declaration 53 #undef SUFFIX 54 #endif 55 56 #include "Dialog_impl_undef.hpp" 57 /* End of preprocessor code piece */ 59 58 60 59 virtual bool display(); … … 63 62 64 63 protected: 65 class AtomQtQuery; 66 class AtomsQtQuery; 67 class BooleanQtQuery; 68 class RealSpaceMatrixQtQuery; 69 class DoubleQtQuery; 70 class DoublesQtQuery; 71 class ElementQtQuery; 72 class ElementsQtQuery; 64 73 65 class EmptyQtQuery; 74 class FileQtQuery; 75 class FilesQtQuery; 76 class IntQtQuery; 77 class IntsQtQuery; 78 class KeyValuePairQtQuery; 79 class KeyValuePairsQtQuery; 80 class MoleculeQtQuery; 81 class MoleculesQtQuery; 82 class StringQtQuery; 83 class StringsQtQuery; 84 class UnsignedIntQtQuery; 85 class UnsignedIntsQtQuery; 86 class VectorQtQuery; 87 class VectorsQtQuery; 66 67 /** With the following boost::preprocessor code we generate forward declarations 68 * of query class for all desired query types in the Qt specialization class of 69 * Dialog. 70 */ 71 #include "UIElements/GlobalListOfParameterQueries.hpp" 72 #include "UIElements/Dialog_impl_pre.hpp" 73 74 #include <boost/preprocessor/facilities/empty.hpp> 75 76 // iterate over all parameter query types for forward declarations 77 #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type 78 #define BOOST_PP_LOCAL_MACRO(n) forward_declaration(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, QtQuery) 79 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMETERTOKENS-1) 80 #include BOOST_PP_LOCAL_ITERATE() 81 #undef forward_declaration 82 #endif 83 84 #include "Dialog_impl_undef.hpp" 85 /* End of preprocessor code piece */ 88 86 89 87 private:
Note:
See TracChangeset
for help on using the changeset viewer.