summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pandialog.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/pandialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/pandialog.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/pandialog.h b/noncore/net/opietooth/manager/pandialog.h
new file mode 100644
index 0000000..02363d2
--- a/dev/null
+++ b/noncore/net/opietooth/manager/pandialog.h
@@ -0,0 +1,40 @@
+#ifndef PANDIALOG_H
+#define DUNDIALOG_H
+
+
+#include <qdialog.h>
+#include <opie2/oprocess.h>
+
+class QVBoxLayout;
+class QMultiLineEdit;
+class QPushButton;
+class QCheckBox;
+
+namespace OpieTooth {
+ class PanDialog : public QDialog {
+
+ Q_OBJECT
+
+ public:
+ PanDialog(const QString& device = 0, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0);
+ ~PanDialog();
+
+ private slots:
+ void connectToDevice();
+ void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len );
+ void fillErr(Opie::Core::OProcess*, char*, int);
+ void slotProcessExited(Opie::Core::OProcess* proc);
+ void closeEvent(QCloseEvent* e);
+ protected:
+ QVBoxLayout* layout;
+ QPushButton* connectButton;
+ QMultiLineEdit* outPut;
+ QCheckBox* doEncryption;
+ QCheckBox* doSecure;
+ Opie::Core::OProcess* m_panConnect;
+
+ private:
+ QString m_device; //device BT address
+ };
+}
+#endif