summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexdialog.h
authorharlekin <harlekin>2002-07-13 14:02:59 (UTC)
committer harlekin <harlekin>2002-07-13 14:02:59 (UTC)
commit9a97566ac38b51e27707342556171af63f6a75b4 (patch) (side-by-side diff)
treeaf9b6a746090f6ca243af5c250e688f07c7ea708 /noncore/net/opietooth/manager/obexdialog.h
parentc86efeae9e7f7f63dca633f630b571019a5c71b6 (diff)
downloadopie-9a97566ac38b51e27707342556171af63f6a75b4.zip
opie-9a97566ac38b51e27707342556171af63f6a75b4.tar.gz
opie-9a97566ac38b51e27707342556171af63f6a75b4.tar.bz2
obex dialog added and fixes to ppp dialog
Diffstat (limited to 'noncore/net/opietooth/manager/obexdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/obexdialog.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/obexdialog.h b/noncore/net/opietooth/manager/obexdialog.h
new file mode 100644
index 0000000..1a73b57
--- a/dev/null
+++ b/noncore/net/opietooth/manager/obexdialog.h
@@ -0,0 +1,36 @@
+#ifndef OBEXDIALOG_H
+#define OBEXDIALOG_H
+
+
+#include <qdialog.h>
+#include <opie/oprocess.h>
+
+class QVBoxLayout;
+class QPushButton;
+class QMultiLineEdit;
+class QLineEdit;
+
+class ObexDialog : public QDialog {
+
+ Q_OBJECT
+
+public:
+ ObexDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0, const QString& device = 0);
+ ~ObexDialog();
+
+
+private slots:
+ void browse();
+ void sendData();
+
+protected:
+ QVBoxLayout* layout;
+ QLineEdit* cmdLine;
+ QLineEdit* chNameLine;
+ QPushButton* sendButton;
+private:
+ // Device that is used
+ QString m_device;
+};
+
+#endif