summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/dundialog.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/dundialog.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/dundialog.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/dundialog.h b/noncore/net/opietooth/manager/dundialog.h
index 9e219cd..a0d16ad 100644
--- a/noncore/net/opietooth/manager/dundialog.h
+++ b/noncore/net/opietooth/manager/dundialog.h
@@ -21,32 +21,33 @@ class QMultiLineEdit;
21class QLineEdit; 21class QLineEdit;
22class QCheckBox; 22class QCheckBox;
23 23
24namespace OpieTooth { 24namespace OpieTooth {
25 class DunDialog : public QDialog { 25 class DunDialog : public QDialog {
26 26
27 Q_OBJECT 27 Q_OBJECT
28 28
29 public: 29 public:
30 DunDialog(const QString& device = 0, int port = 0, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0); 30 DunDialog(const QString& device = 0, int port = 0, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0);
31 ~DunDialog(); 31 ~DunDialog();
32 32
33 private slots: 33 private slots:
34 void connectToDevice(); 34 void connectToDevice();
35 void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len ); 35 void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len );
36 void fillErr(Opie::Core::OProcess*, char*, int); 36 void fillErr(Opie::Core::OProcess*, char*, int);
37 void slotProcessExited(Opie::Core::OProcess* proc); 37 void slotProcessExited(Opie::Core::OProcess* proc);
38 void closeEvent(QCloseEvent* e); 38 void closeEvent(QCloseEvent* e);
39 protected: 39 protected:
40 QVBoxLayout* layout; 40 QVBoxLayout* layout;
41 QLineEdit* cmdLine; 41 QLineEdit* cmdLine;
42 QPushButton* connectButton; 42 QPushButton* connectButton;
43 QMultiLineEdit* outPut; 43 QMultiLineEdit* outPut;
44 QCheckBox* doEncryption; 44 QCheckBox* doEncryption;
45 QCheckBox* persist;
45 46
46 private: 47 private:
47 QString m_device; //device BT address 48 QString m_device; //device BT address
48 int m_port; //device process 49 int m_port; //device process
49 Opie::Core::OProcess* m_dunConnect; //DUN process 50 Opie::Core::OProcess* m_dunConnect; //DUN process
50 }; 51 };
51} 52}
52#endif 53#endif