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