summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexdialog.h
Side-by-side diff
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