summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/manager.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/lib/manager.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/manager.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/noncore/net/opietooth/lib/manager.h b/noncore/net/opietooth/lib/manager.h
index 415ec72..2589e9b 100644
--- a/noncore/net/opietooth/lib/manager.h
+++ b/noncore/net/opietooth/lib/manager.h
@@ -16,3 +16,3 @@ namespace OpieTooth {
/** Manager manages a blueZ device (hci0 for example)
- * with Manager you can control the things you
+ * without Manager you can control the things you
* could do from command line in a OO and asynchronus
@@ -28,2 +28,3 @@ Q_OBJECT
Manager( const QString &device );
+
/** c'tor
@@ -33,2 +34,3 @@ Q_OBJECT
Manager( Device* dev );
+
/**
@@ -37,2 +39,3 @@ Q_OBJECT
Manager();
+
~Manager();
@@ -43,2 +46,3 @@ Q_OBJECT
void setDevice( const QString& device );
+
/**
@@ -47,2 +51,3 @@ Q_OBJECT
void setDevice( Device *dev );
+
/**
@@ -56,2 +61,3 @@ Q_OBJECT
void isAvailable(const QString& device= QString::null );
+
/**
@@ -77,2 +83,3 @@ Q_OBJECT
void addService(const QString &name );
+
/**
@@ -83,2 +90,3 @@ Q_OBJECT
void addServices( const QStringList& names );
+
/**
@@ -87,2 +95,3 @@ Q_OBJECT
void removeService(const QString &name );
+
/**
@@ -97,2 +106,3 @@ Q_OBJECT
void searchServices( const QString& remDevice );
+
/**
@@ -112,2 +122,3 @@ Q_OBJECT
void foundDevices( const QString& device, RemoteDevice::ValueList );
+ void connections( Connection::ValueList );
@@ -115,6 +126,11 @@ private slots:
void slotProcessExited(OProcess* );
+
void slotSDPExited(OProcess*);
void slotSDPOut(OProcess*, char*, int);
+
void slotHCIExited(OProcess* );
void slotHCIOut(OProcess*, char*, int );
+
+ void slotConnectionExited(OProcess* );
+ void slotConnectionOutput(OProcess*, char*, int );
private:
@@ -127,2 +143,3 @@ private slots:
QMap<QString, QString> m_devices;
+ QString m_hcitoolCon;
};