summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pandialog.h
Unidiff
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 @@
1#ifndef PANDIALOG_H
2#define DUNDIALOG_H
3
4
5#include <qdialog.h>
6#include <opie2/oprocess.h>
7
8class QVBoxLayout;
9class QMultiLineEdit;
10class QPushButton;
11class QCheckBox;
12
13namespace OpieTooth {
14 class PanDialog : public QDialog {
15
16 Q_OBJECT
17
18 public:
19 PanDialog(const QString& device = 0, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0);
20 ~PanDialog();
21
22 private slots:
23 void connectToDevice();
24 void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len );
25 void fillErr(Opie::Core::OProcess*, char*, int);
26 void slotProcessExited(Opie::Core::OProcess* proc);
27 void closeEvent(QCloseEvent* e);
28 protected:
29 QVBoxLayout* layout;
30 QPushButton* connectButton;
31 QMultiLineEdit* outPut;
32 QCheckBox* doEncryption;
33 QCheckBox* doSecure;
34 Opie::Core::OProcess* m_panConnect;
35
36 private:
37 QString m_device; //device BT address
38 };
39}
40#endif