Changeset 37a67f for src/UIElements/TextUI/TextDialog.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/TextUI/TextDialog.hpp
r043598 r37a67f 33 33 34 34 virtual void queryEmpty(const std::string ="", const std::string = ""); 35 virtual void queryBoolean(Parameter<bool> &, const std::string ="", const std::string = ""); 36 virtual void queryInt(Parameter<int> &, const std::string ="", const std::string = ""); 37 virtual void queryInts(Parameter<std::vector<int> > &, const std::string ="", const std::string = ""); 38 virtual void queryUnsignedInt(Parameter<unsigned int> &, const std::string ="", const std::string = ""); 39 virtual void queryUnsignedInts(Parameter<std::vector<unsigned int> > &, const std::string ="", const std::string = ""); 40 virtual void queryString(Parameter<std::string> &, const std::string ="", const std::string = ""); 41 virtual void queryStrings(Parameter<std::vector<std::string> > &, 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 queryAtom(Parameter<const atom *> &, const std::string = "",std::string = ""); 45 virtual void queryAtoms(Parameter<std::vector<const atom *> > &, const std::string = "",std::string = ""); 46 virtual void queryMolecule(Parameter<const molecule *> &, const std::string = "",std::string = ""); 47 virtual void queryMolecules(Parameter<std::vector<const molecule *> > &, const std::string = "",std::string = ""); 48 virtual void queryVector(Parameter<Vector> &, const std::string ="", const std::string = ""); 49 virtual void queryVectors(Parameter<std::vector<Vector> > &, const std::string ="", const std::string = ""); 50 virtual void queryRealSpaceMatrix(Parameter<RealSpaceMatrix> &, const std::string ="", const std::string = ""); 51 virtual void queryElement(Parameter<const element *> &, const std::string ="", const std::string = ""); 52 virtual void queryElements(Parameter<std::vector<const element *> > &, const std::string ="", const std::string = ""); 53 virtual void queryFile(Parameter<boost::filesystem::path> &, const std::string ="", const std::string = ""); 54 virtual void queryFiles(Parameter<std::vector<boost::filesystem::path> > &, const std::string ="", const std::string = ""); 55 virtual void queryKeyValuePair(Parameter<KeyValuePair> &, const std::string ="", const std::string = ""); 56 virtual void queryKeyValuePairs(Parameter< std::vector<KeyValuePair> > &, const std::string ="", const std::string = ""); 35 36 /** With the following boost::preprocessor code we generate virtual function 37 * definitions for all desired query types in the abstract class Dialog. 38 */ 39 #include "UIElements/GlobalListOfParameterQueries.hpp" 40 #include "UIElements/Dialog_impl_pre.hpp" 41 42 #include <boost/preprocessor/facilities/empty.hpp> 43 44 // iterate over all parameter query types 45 #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type 46 #define SUFFIX BOOST_PP_EMPTY() 47 #define BOOST_PP_LOCAL_MACRO(n) dialog_declaration(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, GLOBALLISTOFPARAMETERQUERIES_Type) 48 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMETERTOKENS-1) 49 #include BOOST_PP_LOCAL_ITERATE() 50 #undef dialog_declaration 51 #undef SUFFIX 52 #endif 53 54 #include "Dialog_impl_undef.hpp" 55 /* End of preprocessor code piece */ 57 56 58 57 protected: 59 // specialized stuff for text queries 60 // all placed into Query/TextQuery.hpp 61 // !please adhere to alphabetical ordering! 62 class AtomTextQuery; 63 class AtomsTextQuery; 64 class BooleanTextQuery; 65 class DoubleTextQuery; 66 class DoublesTextQuery; 67 class ElementTextQuery; 68 class ElementsTextQuery; 58 69 59 class EmptyTextQuery; 70 class FileTextQuery; 71 class FilesTextQuery; 72 class IntTextQuery; 73 class IntsTextQuery; 74 class KeyValuePairTextQuery; 75 class KeyValuePairsTextQuery; 76 class MoleculeTextQuery; 77 class MoleculesTextQuery; 78 class RealSpaceMatrixTextQuery; 79 class StringTextQuery; 80 class StringsTextQuery; 81 class UnsignedIntTextQuery; 82 class UnsignedIntsTextQuery; 83 class VectorTextQuery; 84 class VectorsTextQuery; 60 61 /** With the following boost::preprocessor code we generate forward declarations 62 * of query class for all desired query types in the Qt specialization class of 63 * Dialog. 64 */ 65 #include "UIElements/GlobalListOfParameterQueries.hpp" 66 #include "UIElements/Dialog_impl_pre.hpp" 67 68 #include <boost/preprocessor/facilities/empty.hpp> 69 70 // iterate over all parameter query types for forward declarations 71 #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type 72 #define BOOST_PP_LOCAL_MACRO(n) forward_declaration(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, TextQuery) 73 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMETERTOKENS-1) 74 #include BOOST_PP_LOCAL_ITERATE() 75 #undef forward_declaration 76 #endif 77 78 #include "Dialog_impl_undef.hpp" 79 /* End of preprocessor code piece */ 80 85 81 }; 86 82
Note:
See TracChangeset
for help on using the changeset viewer.