[d3a5ea] | 1 | /*
|
---|
[4cf323d] | 2 | * QtDialog.hpp
|
---|
[d3a5ea] | 3 | *
|
---|
| 4 | * Created on: Jan 18, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef QTDIALOG_HPP_
|
---|
| 9 | #define QTDIALOG_HPP_
|
---|
| 10 |
|
---|
[56f73b] | 11 | // include config.h
|
---|
| 12 | #ifdef HAVE_CONFIG_H
|
---|
| 13 | #include <config.h>
|
---|
| 14 | #endif
|
---|
| 15 |
|
---|
| 16 |
|
---|
[f10b0c] | 17 | #include "Parameters/Parameter.hpp"
|
---|
[d3a5ea] | 18 | #include "UIElements/Dialog.hpp"
|
---|
[cef1d7] | 19 | #include <QtGui/QDialog>
|
---|
[d3a5ea] | 20 |
|
---|
[c96c66] | 21 | #include <map>
|
---|
| 22 | #include <set>
|
---|
| 23 | #include <vector>
|
---|
| 24 |
|
---|
[d3a5ea] | 25 | class QBoxLayout;
|
---|
| 26 | class QDialogButtonBox;
|
---|
| 27 |
|
---|
[4cf323d] | 28 | class QtDialog : public QDialog, public Dialog
|
---|
[d3a5ea] | 29 | {
|
---|
| 30 | Q_OBJECT
|
---|
| 31 | public:
|
---|
[4cf323d] | 32 | QtDialog();
|
---|
| 33 | virtual ~QtDialog();
|
---|
[d3a5ea] | 34 |
|
---|
[257c77] | 35 | virtual void queryEmpty(const char*, std::string);
|
---|
[f10b0c] | 36 | virtual void queryBoolean(Parameter<bool> &, const char *, std::string = "");
|
---|
| 37 | virtual void queryInt(Parameter<int> &, const char *,std::string = "");
|
---|
| 38 | virtual void queryInts(Parameter<std::vector<int> > &, const char *,std::string = "");
|
---|
| 39 | virtual void queryUnsignedInt(Parameter<unsigned int> &, const char *,std::string = "");
|
---|
| 40 | virtual void queryUnsignedInts(Parameter<std::vector<unsigned int> > &, const char *,std::string = "");
|
---|
| 41 | virtual void queryDouble(Parameter<double> &, const char*,std::string = "");
|
---|
| 42 | virtual void queryDoubles(Parameter<std::vector<double> > &, const char*,std::string = "");
|
---|
| 43 | virtual void queryString(Parameter<std::string> &, const char*,std::string = "");
|
---|
| 44 | virtual void queryStrings(Parameter<std::vector<std::string> > &, const char*,std::string = "");
|
---|
| 45 | virtual void queryAtom(Parameter<const atom *> &, const char*,std::string = "");
|
---|
| 46 | virtual void queryAtoms(Parameter<std::vector<const atom *> > &, const char*,std::string = "");
|
---|
| 47 | virtual void queryMolecule(Parameter<const molecule *> &, const char*,std::string = "");
|
---|
| 48 | virtual void queryMolecules(Parameter<std::vector<const molecule *> > &, const char*,std::string = "");
|
---|
[9d5531] | 49 | virtual void queryVector(Parameter<Vector> &, const char*,std::string = "");
|
---|
| 50 | virtual void queryVectors(Parameter<std::vector<Vector> > &, const char*,std::string = "");
|
---|
[7d9416] | 51 | virtual void queryRealSpaceMatrix(Parameter<RealSpaceMatrix> &, const char*, std::string = "");
|
---|
[f10b0c] | 52 | virtual void queryElement(Parameter<const element *> &, const char*,std::string = "");
|
---|
| 53 | virtual void queryElements(Parameter<std::vector<const element *> > &, const char*,std::string = "");
|
---|
| 54 | virtual void queryFile(Parameter<boost::filesystem::path> &, const char*,std::string = "");
|
---|
[bd81f9] | 55 | virtual void queryFiles(Parameter<std::vector< boost::filesystem::path> > &, const char*,std::string = "");
|
---|
[f10b0c] | 56 | virtual void queryRandomNumberDistribution_Parameters(Parameter<RandomNumberDistribution_Parameters> &, const char*,std::string = "");
|
---|
[d3a5ea] | 57 |
|
---|
| 58 | virtual bool display();
|
---|
| 59 |
|
---|
| 60 | virtual void update();
|
---|
| 61 |
|
---|
| 62 | protected:
|
---|
[308aa4] | 63 | class AtomQtQuery;
|
---|
| 64 | class AtomsQtQuery;
|
---|
| 65 | class BooleanQtQuery;
|
---|
[7d9416] | 66 | class RealSpaceMatrixQtQuery;
|
---|
[308aa4] | 67 | class DoubleQtQuery;
|
---|
| 68 | class DoublesQtQuery;
|
---|
| 69 | class ElementQtQuery;
|
---|
| 70 | class ElementsQtQuery;
|
---|
| 71 | class EmptyQtQuery;
|
---|
| 72 | class FileQtQuery;
|
---|
[2c5765] | 73 | class FilesQtQuery;
|
---|
[308aa4] | 74 | class IntQtQuery;
|
---|
| 75 | class IntsQtQuery;
|
---|
| 76 | class MoleculeQtQuery;
|
---|
| 77 | class MoleculesQtQuery;
|
---|
| 78 | class StringQtQuery;
|
---|
| 79 | class StringsQtQuery;
|
---|
[838cd0] | 80 | class UnsignedIntQtQuery;
|
---|
[12948c] | 81 | class UnsignedIntsQtQuery;
|
---|
[308aa4] | 82 | class VectorQtQuery;
|
---|
| 83 | class VectorsQtQuery;
|
---|
[0275ad] | 84 | class RandomNumberDistribution_ParametersQtQuery;
|
---|
[6f5dfe] | 85 |
|
---|
[d3a5ea] | 86 | private:
|
---|
| 87 | QBoxLayout *mainLayout;
|
---|
| 88 | QBoxLayout *inputLayout;
|
---|
| 89 | QBoxLayout *buttonLayout;
|
---|
| 90 | QDialogButtonBox *buttons;
|
---|
| 91 | };
|
---|
| 92 |
|
---|
[6f5dfe] | 93 |
|
---|
[d3a5ea] | 94 | #endif /* QTDIALOG_HPP_ */
|
---|