00001
00002 #ifndef INPUTDIALOG_H
00003 #define INPUTDIALOG_H
00004
00005 #include <opie2/oprocess.h>
00006
00007 #include <qvariant.h>
00008 #include <qdialog.h>
00009 #include <qmainwindow.h>
00010
00011 class QLineEdit;
00012 class QCheckBox;
00013
00014 class InputDialog : public QMainWindow {
00015 Q_OBJECT
00016
00017 public:
00018 InputDialog( );
00019 ~InputDialog();
00020
00021 private:
00022 QLineEdit* LineEdit1;
00023 private slots:
00024 void doLookup();
00025 void showBrowser(Opie::Core::OProcess*);
00026 protected slots:
00027
00028 };
00029
00030 #endif // INPUTDIALOG_H