summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/applet/bluezapplet.cpp
authormickeyl <mickeyl>2005-08-21 22:29:07 (UTC)
committer mickeyl <mickeyl>2005-08-21 22:29:07 (UTC)
commit4def5629dc68465b1dc8bb23c115e2f5f7513804 (patch) (side-by-side diff)
treec2a31fb9e46a3a3e7f797ef3fe0ea66b2f0b69df /noncore/net/opietooth/applet/bluezapplet.cpp
parent7f931999d32be3fc90b451347dfec52643d8eeb8 (diff)
downloadopie-4def5629dc68465b1dc8bb23c115e2f5f7513804.zip
opie-4def5629dc68465b1dc8bb23c115e2f5f7513804.tar.gz
opie-4def5629dc68465b1dc8bb23c115e2f5f7513804.tar.bz2
Add some simple interfaces for device scanning (scanning for
discoverable receivers) to support OBEX Send, and requests for taking BT up or down. Patch courtesy Michael Haynie - thanks!
Diffstat (limited to 'noncore/net/opietooth/applet/bluezapplet.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/applet/bluezapplet.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/noncore/net/opietooth/applet/bluezapplet.cpp b/noncore/net/opietooth/applet/bluezapplet.cpp
index 8925803..48698b6 100644
--- a/noncore/net/opietooth/applet/bluezapplet.cpp
+++ b/noncore/net/opietooth/applet/bluezapplet.cpp
@@ -63,15 +63,23 @@ namespace OpieTooth {
//bluezDiscoveryOnPixmap = Resource::loadImage( "bluetoothapplet/magglass" )smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize());
startTimer(4000);
btDevice = 0;
+ btManager = 0;
bluezactive = false;
bluezDiscoveryActive = false;
+ // TODO: determine whether this channel has to be closed at destruction time.
+ QCopChannel* chan = new QCopChannel("QPE/Bluetooth", this );
+ connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ),
+ this, SLOT(slotMessage(const QCString&,const QByteArray&) ) );
}
BluezApplet::~BluezApplet() {
if ( btDevice ) {
delete btDevice;
}
+ if ( btManager ) {
+ delete btManager;
+ }
}
int BluezApplet::position()
@@ -118,9 +126,52 @@ int BluezApplet::position()
}
int BluezApplet::checkBluezDiscoveryStatus() {
+ return bluezDiscoveryActive;
}
int BluezApplet::setBluezDiscoveryStatus(int d) {
+ return bluezDiscoveryActive=d;
+ }
+
+ // FIXME mbhaynie
+ // receiver for QCopChannel("QPE/Bluetooth") messages.
+ void BluezApplet::slotMessage( const QCString& str, const QByteArray& )
+ {
+ if ( str == "enableBluetooth()") {
+ if (!checkBluezStatus()) {
+ setBluezStatus(1);
+ }
+ } else if ( str == "disableBluetooth()") {
+ if (checkBluezStatus()) {
+ // setBluezStatus(0);
+ }
+ } else if ( str == "listDevices()") {
+ if (!btManager)
+ {
+ btManager = new Manager("hci0");
+ connect( btManager, SIGNAL( foundDevices(const QString&,RemoteDevice::ValueList) ),
+ this, SLOT( fillList(const QString&,RemoteDevice::ValueList) ) ) ;
+ }
+
+ btManager->searchDevices();
+ }
+ }
+
+ // Once the hcitool scan is complete, report back.
+ void BluezApplet::fillList(const QString&, RemoteDevice::ValueList deviceList)
+ {
+ QCopEnvelope e("QPE/BluetoothBack", "devices(QStringMap)");
+
+ QStringList list;
+ QMap<QString, QString> btmap;
+
+ RemoteDevice::ValueList::Iterator it;
+ for( it = deviceList.begin(); it != deviceList.end(); ++it )
+ {
+ btmap[(*it).name()] = (*it).mac();
+ }
+
+ e << btmap;
}
void BluezApplet::mousePressEvent( QMouseEvent *) {