-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 6caca70..5d742b7 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -227,16 +227,17 @@ namespace OpieTooth { QListIterator<RemoteDevice> it( newDevices ); for( ; it.current() ; ++it ) { RemoteDevice *dev = it.current(); deviceItem = new QListViewItem( ListView2 , dev->name() ); + deviceItem->setExpandable ( true ); if ( deviceActive( dev ) ) { deviceItem->setPixmap( 1 , onPix ); } else { deviceItem->setPixmap( 1, offPix ); } deviceItem->setText( 3, dev->mac() ); @@ -316,22 +317,29 @@ namespace OpieTooth { /** * Add the existing connections (pairs) to the connections tab. * */ void BlueBase::addConnectedDevices() { + //mac address + } /** * Find out if a device can currently be reached */ bool BlueBase::deviceActive( RemoteDevice *device ) { + + // search by mac + // + localDevice->isAvailable( device->mac() ); + return true; } /** * Open the "scan for devices" dialog */ void BlueBase::startScan() { |