[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 = "");
|
---|
[3731b4] | 38 | virtual void queryDouble(const char*,std::string = "");
|
---|
[7cd6e7] | 39 | virtual void queryDoubles(const char*,std::string = "");
|
---|
[3731b4] | 40 | virtual void queryString(const char*,std::string = "");
|
---|
| 41 | virtual void queryStrings(const char*,std::string = "");
|
---|
| 42 | virtual void queryAtom(const char*,std::string = "");
|
---|
[7cd6e7] | 43 | virtual void queryAtoms(const char*,std::string = "");
|
---|
[3731b4] | 44 | virtual void queryMolecule(const char*,std::string = "");
|
---|
[7cd6e7] | 45 | virtual void queryMolecules(const char*,std::string = "");
|
---|
[3731b4] | 46 | virtual void queryVector(const char*,bool,std::string = "");
|
---|
[7cd6e7] | 47 | virtual void queryVectors(const char*,bool,std::string = "");
|
---|
[3731b4] | 48 | virtual void queryBox(const char*, std::string = "");
|
---|
| 49 | virtual void queryElement(const char*,std::string = "");
|
---|
[7cd6e7] | 50 | virtual void queryElements(const char*,std::string = "");
|
---|
[6f5dfe] | 51 | virtual void queryFile(const char*,std::string = "");
|
---|
[0275ad] | 52 | virtual void queryRandomNumberDistribution_Parameters(const char*,std::string = "");
|
---|
[d3a5ea] | 53 |
|
---|
| 54 | virtual bool display();
|
---|
| 55 |
|
---|
| 56 | virtual void update();
|
---|
| 57 |
|
---|
| 58 | protected:
|
---|
[308aa4] | 59 | class AtomQtQuery;
|
---|
| 60 | class AtomsQtQuery;
|
---|
| 61 | class BooleanQtQuery;
|
---|
| 62 | class BoxQtQuery;
|
---|
| 63 | class DoubleQtQuery;
|
---|
| 64 | class DoublesQtQuery;
|
---|
| 65 | class ElementQtQuery;
|
---|
| 66 | class ElementsQtQuery;
|
---|
| 67 | class EmptyQtQuery;
|
---|
| 68 | class FileQtQuery;
|
---|
| 69 | class IntQtQuery;
|
---|
| 70 | class IntsQtQuery;
|
---|
| 71 | class MoleculeQtQuery;
|
---|
| 72 | class MoleculesQtQuery;
|
---|
| 73 | class StringQtQuery;
|
---|
| 74 | class StringsQtQuery;
|
---|
| 75 | class VectorQtQuery;
|
---|
| 76 | class VectorsQtQuery;
|
---|
[0275ad] | 77 | class RandomNumberDistribution_ParametersQtQuery;
|
---|
[6f5dfe] | 78 |
|
---|
[d3a5ea] | 79 | private:
|
---|
| 80 | QBoxLayout *mainLayout;
|
---|
| 81 | QBoxLayout *inputLayout;
|
---|
| 82 | QBoxLayout *buttonLayout;
|
---|
| 83 | QDialogButtonBox *buttons;
|
---|
| 84 | };
|
---|
| 85 |
|
---|
[6f5dfe] | 86 |
|
---|
[d3a5ea] | 87 | #endif /* QTDIALOG_HPP_ */
|
---|