Changeset 37a67f for src/UIElements/TextUI
- 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)
- Location:
- src/UIElements/TextUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/Query/TextQuery.hpp
r043598 r37a67f 17 17 #include "TextUI/TextDialog.hpp" 18 18 19 class TextDialog::AtomTextQuery : public Dialog::TQuery<const atom *> {20 public:21 AtomTextQuery(Parameter<const atom *> &, const std::string &_title, const std::string &_description = NULL);22 virtual ~AtomTextQuery();23 virtual bool handle();24 };25 26 class TextDialog::AtomsTextQuery : public Dialog::TQuery<std::vector<const atom *> > {27 public:28 AtomsTextQuery(Parameter<std::vector<const atom *> > &, const std::string &_title, const std::string &_description = NULL);29 virtual ~AtomsTextQuery();30 virtual bool handle();31 };32 33 class TextDialog::BooleanTextQuery : public Dialog::TQuery<bool> {34 public:35 BooleanTextQuery(Parameter<bool> &, const std::string &_title, const std::string &_description = NULL);36 virtual ~BooleanTextQuery();37 virtual bool handle();38 };39 40 class TextDialog::RealSpaceMatrixTextQuery : public Dialog::TQuery<RealSpaceMatrix> {41 public:42 RealSpaceMatrixTextQuery(Parameter<RealSpaceMatrix> &, const std::string &_title, const std::string &_description = NULL);43 virtual ~RealSpaceMatrixTextQuery();44 virtual bool handle();45 };46 47 class TextDialog::DoubleTextQuery : public Dialog::TQuery<double> {48 public:49 DoubleTextQuery(Parameter<double> &, const std::string &_title, const std::string &_description = NULL);50 virtual ~DoubleTextQuery();51 virtual bool handle();52 };53 54 class TextDialog::DoublesTextQuery : public Dialog::TQuery<std::vector<double> > {55 public:56 DoublesTextQuery(Parameter<std::vector<double> > &, const std::string &_title, const std::string &_description = NULL);57 virtual ~DoublesTextQuery();58 virtual bool handle();59 };60 61 class TextDialog::ElementTextQuery : public Dialog::TQuery<const element *> {62 public:63 ElementTextQuery(Parameter<const element *> &, const std::string &_title, const std::string &_description = NULL);64 virtual ~ElementTextQuery();65 virtual bool handle();66 };67 68 class TextDialog::ElementsTextQuery : public Dialog::TQuery<std::vector<const element *> > {69 public:70 ElementsTextQuery(Parameter<std::vector<const element *> > &, const std::string &_title, const std::string &_description = NULL);71 virtual ~ElementsTextQuery();72 virtual bool handle();73 };74 75 19 class TextDialog::EmptyTextQuery : public Dialog::EmptyQuery { 76 20 public: … … 80 24 }; 81 25 82 class TextDialog::FileTextQuery : public Dialog::TQuery<boost::filesystem::path> {83 public:84 FileTextQuery(Parameter<boost::filesystem::path> &, const std::string &_title, const std::string &_description = NULL);85 virtual ~FileTextQuery();86 virtual bool handle();87 };88 26 89 class TextDialog::FilesTextQuery : public Dialog::TQuery<std::vector<boost::filesystem::path> > { 90 public: 91 FilesTextQuery(Parameter<std::vector< boost::filesystem::path> > ¶m, const std::string &_title, const std::string &_description = NULL);92 virtual ~FilesTextQuery();93 virtual bool handle(); 94 }; 27 /** With the following boost::preprocessor code we generate forward declarations 28 * of query class for all desired query types in the Qt specialization class of 29 * Dialog. 30 */ 31 #include "UIElements/GlobalListOfParameterQueries.hpp" 32 #include "UIElements/Dialog_impl_pre.hpp" 95 33 96 class TextDialog::IntTextQuery : public Dialog::TQuery<int> { 97 public: 98 IntTextQuery(Parameter<int> &, const std::string &_title, const std::string &_description = NULL); 99 virtual ~IntTextQuery(); 100 virtual bool handle(); 101 }; 34 #include <boost/preprocessor/facilities/empty.hpp> 102 35 103 class TextDialog::IntsTextQuery : public Dialog::TQuery<std::vector<int> > { 104 public: 105 IntsTextQuery(Parameter<std::vector<int> > &, const std::string &_title, const std::string &_description = NULL); 106 virtual ~IntsTextQuery(); 107 virtual bool handle(); 108 }; 36 // iterate over all parameter query types for forward declarations 37 #if defined GLOBALLISTOFPARAMETERQUERIES_Token && defined GLOBALLISTOFPARAMETERQUERIES_Type 38 #define BOOST_PP_LOCAL_MACRO(n) queryclass_definition(~, n, GLOBALLISTOFPARAMETERQUERIES_Token, GLOBALLISTOFPARAMETERQUERIES_Type, Text) 39 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMETERTOKENS-1) 40 #include BOOST_PP_LOCAL_ITERATE() 41 #undef queryclass_definition 42 #endif 109 43 110 class TextDialog::KeyValuePairTextQuery : public Dialog::TQuery<KeyValuePair> { 111 public: 112 KeyValuePairTextQuery(Parameter<KeyValuePair> &, const std::string &_title, const std::string &_description = NULL); 113 virtual ~KeyValuePairTextQuery(); 114 virtual bool handle(); 115 }; 44 #include "Dialog_impl_undef.hpp" 45 /* End of preprocessor code piece */ 116 46 117 class TextDialog::KeyValuePairsTextQuery : public Dialog::TQuery<std::vector<KeyValuePair> > {118 public:119 KeyValuePairsTextQuery(Parameter<std::vector<KeyValuePair> > &, const std::string &_title, const std::string &_description = NULL);120 virtual ~KeyValuePairsTextQuery();121 virtual bool handle();122 };123 124 class TextDialog::MoleculeTextQuery : public Dialog::TQuery<const molecule *> {125 public:126 MoleculeTextQuery(Parameter<const molecule *> &, const std::string &_title, const std::string &_description = NULL);127 virtual ~MoleculeTextQuery();128 virtual bool handle();129 };130 131 class TextDialog::MoleculesTextQuery : public Dialog::TQuery<std::vector<const molecule *> > {132 public:133 MoleculesTextQuery(Parameter<std::vector<const molecule *> > &, const std::string &_title, const std::string &_description = NULL);134 virtual ~MoleculesTextQuery();135 virtual bool handle();136 };137 138 class TextDialog::StringTextQuery : public Dialog::TQuery<std::string> {139 public:140 StringTextQuery(Parameter<std::string> &, const std::string &_title, const std::string &_description = NULL);141 virtual ~StringTextQuery();142 virtual bool handle();143 };144 145 class TextDialog::StringsTextQuery : public Dialog::TQuery<std::vector<std::string> > {146 public:147 StringsTextQuery(Parameter<std::vector<std::string> > &, const std::string &_title, const std::string &_description = NULL);148 virtual ~StringsTextQuery();149 virtual bool handle();150 };151 152 class TextDialog::UnsignedIntTextQuery : public Dialog::TQuery<unsigned int> {153 public:154 UnsignedIntTextQuery(Parameter<unsigned int> &, const std::string &_title, const std::string &_description = NULL);155 virtual ~UnsignedIntTextQuery();156 virtual bool handle();157 };158 159 class TextDialog::UnsignedIntsTextQuery : public Dialog::TQuery<std::vector<unsigned int> > {160 public:161 UnsignedIntsTextQuery(Parameter<std::vector<unsigned int> > &, const std::string &_title, const std::string &_description = NULL);162 virtual ~UnsignedIntsTextQuery();163 virtual bool handle();164 };165 166 class TextDialog::VectorTextQuery : public Dialog::TQuery<Vector> {167 public:168 VectorTextQuery(Parameter<Vector> &, const std::string &_title, const std::string &_description = NULL);169 virtual ~VectorTextQuery();170 virtual bool handle();171 };172 173 class TextDialog::VectorsTextQuery : public Dialog::TQuery<std::vector<Vector> > {174 public:175 VectorsTextQuery(Parameter<std::vector<Vector> > &, const std::string &_title, const std::string &_description = NULL);176 virtual ~VectorsTextQuery();177 virtual bool handle();178 };179 47 180 48 #endif /* TEXTQUERY_HPP_ */ -
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.