00001 #ifndef OBEXDIALOG_H
00002 #define OBEXDIALOG_H
00003
00004
00005 #include <qdialog.h>
00006 #include <opie2/oprocess.h>
00007
00008 class QVBoxLayout;
00009 class QPushButton;
00010 class QMultiLineEdit;
00011 class QLineEdit;
00012
00013
00014 namespace OpieTooth {
00015
00016 class ObexDialog : public QDialog {
00017
00018 Q_OBJECT
00019
00020 public:
00021 ObexDialog( QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0, const QString& device = 0);
00022 ~ObexDialog();
00023
00024
00025 private slots:
00026 void browse();
00027 void sendData();
00028
00029 protected:
00030 QVBoxLayout* layout;
00031 QLineEdit* cmdLine;
00032 QLineEdit* chNameLine;
00033 QPushButton* sendButton;
00034 private:
00035
00036 QString m_device;
00037 };
00038 }
00039 #endif