source: src/UIElements/TextUI/Query/TextQuery.hpp@ 4792ab

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
Last change on this file since 4792ab was 1c55b8, checked in by Michael Ankele <ankele@…>, 13 years ago

combined Query super classes into template

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[738ae1]1/*
2 * TextQuery.hpp
3 *
4 * Created on: Nov 8, 2010
5 * Author: heber
6 */
7
8#ifndef TEXTQUERY_HPP_
9#define TEXTQUERY_HPP_
10
[56f73b]11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16
[738ae1]17#include "TextUI/TextDialog.hpp"
18
[1c55b8]19class TextDialog::AtomTextQuery : public Dialog::TQuery<const atom *> {
[738ae1]20public:
[f10b0c]21 AtomTextQuery(Parameter<const atom *> &, std::string title, std::string _description = NULL);
[738ae1]22 virtual ~AtomTextQuery();
23 virtual bool handle();
24};
25
[1c55b8]26class TextDialog::AtomsTextQuery : public Dialog::TQuery<std::vector<const atom *> > {
[738ae1]27public:
[f10b0c]28 AtomsTextQuery(Parameter<std::vector<const atom *> > &, std::string title, std::string _description = NULL);
[738ae1]29 virtual ~AtomsTextQuery();
30 virtual bool handle();
31};
32
[1c55b8]33class TextDialog::BooleanTextQuery : public Dialog::TQuery<bool> {
[738ae1]34public:
[f10b0c]35 BooleanTextQuery(Parameter<bool> &, std::string title, std::string _description = NULL);
[738ae1]36 virtual ~BooleanTextQuery();
37 virtual bool handle();
38};
39
[1c55b8]40class TextDialog::RealSpaceMatrixTextQuery : public Dialog::TQuery<RealSpaceMatrix> {
[738ae1]41public:
[7d9416]42 RealSpaceMatrixTextQuery(Parameter<RealSpaceMatrix> &, std::string title, std::string _description = NULL);
43 virtual ~RealSpaceMatrixTextQuery();
[738ae1]44 virtual bool handle();
45};
46
[1c55b8]47class TextDialog::DoubleTextQuery : public Dialog::TQuery<double> {
[738ae1]48public:
[f10b0c]49 DoubleTextQuery(Parameter<double> &, std::string title, std::string _description = NULL);
[738ae1]50 virtual ~DoubleTextQuery();
51 virtual bool handle();
52};
53
[1c55b8]54class TextDialog::DoublesTextQuery : public Dialog::TQuery<std::vector<double> > {
[738ae1]55public:
[f10b0c]56 DoublesTextQuery(Parameter<std::vector<double> > &, std::string title, std::string _description = NULL);
[738ae1]57 virtual ~DoublesTextQuery();
58 virtual bool handle();
59};
60
[1c55b8]61class TextDialog::ElementTextQuery : public Dialog::TQuery<const element *> {
[738ae1]62public:
[f10b0c]63 ElementTextQuery(Parameter<const element *> &, std::string title, std::string _description = NULL);
[738ae1]64 virtual ~ElementTextQuery();
65 virtual bool handle();
66};
67
[1c55b8]68class TextDialog::ElementsTextQuery : public Dialog::TQuery<std::vector<const element *> > {
[738ae1]69public:
[f10b0c]70 ElementsTextQuery(Parameter<std::vector<const element *> > &, std::string title, std::string _description = NULL);
[738ae1]71 virtual ~ElementsTextQuery();
72 virtual bool handle();
73};
74
75class TextDialog::EmptyTextQuery : public Dialog::EmptyQuery {
76public:
77 EmptyTextQuery(std::string title, std::string _description = NULL);
78 virtual ~EmptyTextQuery();
79 virtual bool handle();
80};
81
[1c55b8]82class TextDialog::FileTextQuery : public Dialog::TQuery<boost::filesystem::path> {
[738ae1]83public:
[f10b0c]84 FileTextQuery(Parameter<boost::filesystem::path> &, std::string title, std::string _description = NULL);
[738ae1]85 virtual ~FileTextQuery();
86 virtual bool handle();
87};
88
[1c55b8]89class TextDialog::FilesTextQuery : public Dialog::TQuery<std::vector<boost::filesystem::path> > {
[2c5765]90public:
[bd81f9]91 FilesTextQuery(Parameter<std::vector< boost::filesystem::path> > &param, std::string title, std::string _description = NULL);
[2c5765]92 virtual ~FilesTextQuery();
93 virtual bool handle();
94};
95
[1c55b8]96class TextDialog::IntTextQuery : public Dialog::TQuery<int> {
[738ae1]97public:
[f10b0c]98 IntTextQuery(Parameter<int> &, std::string title, std::string _description = NULL);
[738ae1]99 virtual ~IntTextQuery();
100 virtual bool handle();
101};
102
[1c55b8]103class TextDialog::IntsTextQuery : public Dialog::TQuery<std::vector<int> > {
[738ae1]104public:
[f10b0c]105 IntsTextQuery(Parameter<std::vector<int> > &, std::string title, std::string _description = NULL);
[738ae1]106 virtual ~IntsTextQuery();
107 virtual bool handle();
108};
109
[1c55b8]110class TextDialog::MoleculeTextQuery : public Dialog::TQuery<const molecule *> {
[738ae1]111public:
[f10b0c]112 MoleculeTextQuery(Parameter<const molecule *> &, std::string title, std::string _description = NULL);
[738ae1]113 virtual ~MoleculeTextQuery();
114 virtual bool handle();
115};
116
[1c55b8]117class TextDialog::MoleculesTextQuery : public Dialog::TQuery<std::vector<const molecule *> > {
[738ae1]118public:
[f10b0c]119 MoleculesTextQuery(Parameter<std::vector<const molecule *> > &, std::string title, std::string _description = NULL);
[738ae1]120 virtual ~MoleculesTextQuery();
121 virtual bool handle();
122};
123
[1c55b8]124class TextDialog::StringTextQuery : public Dialog::TQuery<std::string> {
[738ae1]125public:
[f10b0c]126 StringTextQuery(Parameter<std::string> &, std::string title, std::string _description = NULL);
[738ae1]127 virtual ~StringTextQuery();
128 virtual bool handle();
129};
130
[1c55b8]131class TextDialog::StringsTextQuery : public Dialog::TQuery<std::vector<std::string> > {
[738ae1]132public:
[f10b0c]133 StringsTextQuery(Parameter<std::vector<std::string> > &, std::string title, std::string _description = NULL);
[738ae1]134 virtual ~StringsTextQuery();
135 virtual bool handle();
136};
137
[1c55b8]138class TextDialog::UnsignedIntTextQuery : public Dialog::TQuery<unsigned int> {
[838cd0]139public:
[f10b0c]140 UnsignedIntTextQuery(Parameter<unsigned int> &, std::string title, std::string _description = NULL);
[838cd0]141 virtual ~UnsignedIntTextQuery();
142 virtual bool handle();
143};
144
[1c55b8]145class TextDialog::UnsignedIntsTextQuery : public Dialog::TQuery<std::vector<unsigned int> > {
[12948c]146public:
[f10b0c]147 UnsignedIntsTextQuery(Parameter<std::vector<unsigned int> > &, std::string title, std::string _description = NULL);
[12948c]148 virtual ~UnsignedIntsTextQuery();
149 virtual bool handle();
150};
151
[1c55b8]152class TextDialog::VectorTextQuery : public Dialog::TQuery<Vector> {
[738ae1]153public:
[9d5531]154 VectorTextQuery(Parameter<Vector> &, std::string title, std::string _description = NULL);
[738ae1]155 virtual ~VectorTextQuery();
156 virtual bool handle();
157};
158
[1c55b8]159class TextDialog::VectorsTextQuery : public Dialog::TQuery<std::vector<Vector> > {
[738ae1]160public:
[9d5531]161 VectorsTextQuery(Parameter<std::vector<Vector> > &, std::string title, std::string _description = NULL);
[738ae1]162 virtual ~VectorsTextQuery();
163 virtual bool handle();
164};
165
[1c55b8]166class TextDialog::RandomNumberDistribution_ParametersTextQuery : public Dialog::TQuery<RandomNumberDistribution_Parameters> {
[0275ad]167public:
[f10b0c]168 RandomNumberDistribution_ParametersTextQuery(Parameter<RandomNumberDistribution_Parameters> &, std::string title, std::string _description = NULL);
[0275ad]169 virtual ~RandomNumberDistribution_ParametersTextQuery();
170 virtual bool handle();
171};
172
[738ae1]173#endif /* TEXTQUERY_HPP_ */
Note: See TracBrowser for help on using the repository browser.