00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef INPUTDIALOG_H
00014 #define INPUTDIALOG_H
00015
00016 #include <qvariant.h>
00017 #include <qdialog.h>
00018 class QVBoxLayout;
00019 class QHBoxLayout;
00020 class QGridLayout;
00021 class QLineEdit;
00022
00023 class InputDialog : public QDialog
00024 {
00025 Q_OBJECT
00026
00027 public:
00028 InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00029 ~InputDialog();
00030 QString inputText;
00031 QLineEdit* LineEdit1;
00032 void setInputText(const QString &);
00033
00034 };
00035
00036 #endif // INPUTDIALOG_H