00001
00002 #ifndef INPUTDIALOG_H
00003 #define INPUTDIALOG_H
00004
00005 #include <qvariant.h>
00006 #include <qdialog.h>
00007
00008 class QLineEdit;
00009
00010 class InputDialog : public QDialog {
00011 Q_OBJECT
00012
00013 public:
00014 InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00015 ~InputDialog();
00016 QString text()const;
00017
00018 private:
00019 QLineEdit* LineEdit1;
00020
00021 protected slots:
00022 void browse();
00023 };
00024
00025 #endif // INPUTDIALOG_H