summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/opietooth2/Opietooth.h
authorwimpie <wimpie>2005-01-06 03:53:17 (UTC)
committer wimpie <wimpie>2005-01-06 03:53:17 (UTC)
commit98dd4c49f5d7a3c0569e3f6ff92f39451734070c (patch) (side-by-side diff)
treecbe132a0ea78b67baa24f61c9fa04f1a3fcc15c9 /noncore/settings/networksettings2/opietooth2/Opietooth.h
parent807241b7466840034a5284b0202705b096d41458 (diff)
downloadopie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.zip
opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.tar.gz
opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.tar.bz2
Some more changes for NS2
updated toplevel Makefile added new target packages-mt and packages these replaces, render obsolete and dramatically improve : ipks ipks-mt see separate mail
Diffstat (limited to 'noncore/settings/networksettings2/opietooth2/Opietooth.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/opietooth2/Opietooth.h31
1 files changed, 30 insertions, 1 deletions
diff --git a/noncore/settings/networksettings2/opietooth2/Opietooth.h b/noncore/settings/networksettings2/opietooth2/Opietooth.h
index 16a22d6..211ae65 100644
--- a/noncore/settings/networksettings2/opietooth2/Opietooth.h
+++ b/noncore/settings/networksettings2/opietooth2/Opietooth.h
@@ -1,22 +1,49 @@
#ifndef OPIETOOTH_H
#define OPIETOOTH_H
#include <OTIcons.h>
-#include <OTPairingGUI.h>
namespace Opie { namespace Ui { class OLedBox; }; };
+#include <OTSniffGUI.h>
namespace Opietooth2 {
class OTGateway;
class OTDriver;
class OTInquiry;
class OTPeer;
class PeerLVI;
+class OTSniffing : public OTSniffGUI {
+
+ Q_OBJECT
+
+public :
+
+ OTSniffing( QWidget * parent );
+ ~OTSniffing();
+
+private slots :
+
+ void SLOT_Trace( void );
+ void SLOT_ClearLog( void );
+
+signals :
+
+protected :
+
+private :
+
+ OTGateway * OT;
+};
+};
+
+#include <OTPairingGUI.h>
+
+namespace Opietooth2 {
class OTPairing : public OTPairingGUI {
Q_OBJECT
public :
@@ -171,12 +198,13 @@ public :
public slots :
private slots :
void SLOT_Pairing( void );
void SLOT_Manage( void );
+ void SLOT_Sniffing( void );
void SLOT_Scan( void );
void SLOT_EnableBluetooth( bool );
void SLOT_DriverListChanged();
void SLOT_DeviceIsEnabled( bool );
void SLOT_StateChange( OTDriver * , bool );
@@ -186,9 +214,10 @@ protected :
private :
// load scanned devices
OTIcons * Icons;
OTGateway * OT;
+ OTSniffing * SnifWindow;
};
};
#endif