[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 |
|
---|
[d3a5ea] | 17 | #include "UIElements/Dialog.hpp"
|
---|
[cef1d7] | 18 | #include <QtGui/QDialog>
|
---|
[d3a5ea] | 19 |
|
---|
[c96c66] | 20 | #include <map>
|
---|
| 21 | #include <set>
|
---|
| 22 | #include <vector>
|
---|
| 23 |
|
---|
[d3a5ea] | 24 | class QBoxLayout;
|
---|
| 25 | class QDialogButtonBox;
|
---|
| 26 |
|
---|
[4cf323d] | 27 | class QtDialog : public QDialog, public Dialog
|
---|
[d3a5ea] | 28 | {
|
---|
| 29 | Q_OBJECT
|
---|
| 30 | public:
|
---|
[4cf323d] | 31 | QtDialog();
|
---|
| 32 | virtual ~QtDialog();
|
---|
[d3a5ea] | 33 |
|
---|
[257c77] | 34 | virtual void queryEmpty(const char*, std::string);
|
---|
[3731b4] | 35 | virtual void queryBoolean(const char *, std::string = "");
|
---|
| 36 | virtual void queryInt(const char *,std::string = "");
|
---|
[7cd6e7] | 37 | virtual void queryInts(const char *,std::string = "");
|
---|
[838cd0] | 38 | virtual void queryUnsignedInt(const char *,std::string = "");
|
---|
[12948c] | 39 | virtual void queryUnsignedInts(const char *,std::string = "");
|
---|
[3731b4] | 40 | virtual void queryDouble(const char*,std::string = "");
|
---|
[7cd6e7] | 41 | virtual void queryDoubles(const char*,std::string = "");
|
---|
[3731b4] | 42 | virtual void queryString(const char*,std::string = "");
|
---|
| 43 | virtual void queryStrings(const char*,std::string = "");
|
---|
| 44 | virtual void queryAtom(const char*,std::string = "");
|
---|
[7cd6e7] | 45 | virtual void queryAtoms(const char*,std::string = "");
|
---|
[3731b4] | 46 | virtual void queryMolecule(const char*,std::string = "");
|
---|
[7cd6e7] | 47 | virtual void queryMolecules(const char*,std::string = "");
|
---|
[3731b4] | 48 | virtual void queryVector(const char*,bool,std::string = "");
|
---|
[7cd6e7] | 49 | virtual void queryVectors(const char*,bool,std::string = "");
|
---|
[3731b4] | 50 | virtual void queryBox(const char*, std::string = "");
|
---|
| 51 | virtual void queryElement(const char*,std::string = "");
|
---|
[7cd6e7] | 52 | virtual void queryElements(const char*,std::string = "");
|
---|
[6f5dfe] | 53 | virtual void queryFile(const char*,std::string = "");
|
---|
[0275ad] | 54 | virtual void queryRandomNumberDistribution_Parameters(const char*,std::string = "");
|
---|
[d3a5ea] | 55 |
|
---|
| 56 | virtual bool display();
|
---|
| 57 |
|
---|
| 58 | virtual void update();
|
---|
| 59 |
|
---|
| 60 | protected:
|
---|
[308aa4] | 61 | class AtomQtQuery;
|
---|
| 62 | class AtomsQtQuery;
|
---|
| 63 | class BooleanQtQuery;
|
---|
| 64 | class BoxQtQuery;
|
---|
| 65 | class DoubleQtQuery;
|
---|
| 66 | class DoublesQtQuery;
|
---|
| 67 | class ElementQtQuery;
|
---|
| 68 | class ElementsQtQuery;
|
---|
| 69 | class EmptyQtQuery;
|
---|
| 70 | class FileQtQuery;
|
---|
| 71 | class IntQtQuery;
|
---|
| 72 | class IntsQtQuery;
|
---|
| 73 | class MoleculeQtQuery;
|
---|
| 74 | class MoleculesQtQuery;
|
---|
| 75 | class StringQtQuery;
|
---|
| 76 | class StringsQtQuery;
|
---|
[838cd0] | 77 | class UnsignedIntQtQuery;
|
---|
[12948c] | 78 | class UnsignedIntsQtQuery;
|
---|
[308aa4] | 79 | class VectorQtQuery;
|
---|
| 80 | class VectorsQtQuery;
|
---|
[0275ad] | 81 | class RandomNumberDistribution_ParametersQtQuery;
|
---|
[6f5dfe] | 82 |
|
---|
[d3a5ea] | 83 | private:
|
---|
| 84 | QBoxLayout *mainLayout;
|
---|
| 85 | QBoxLayout *inputLayout;
|
---|
| 86 | QBoxLayout *buttonLayout;
|
---|
| 87 | QDialogButtonBox *buttons;
|
---|
| 88 | };
|
---|
| 89 |
|
---|
[6f5dfe] | 90 |
|
---|
[d3a5ea] | 91 | #endif /* QTDIALOG_HPP_ */
|
---|