-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 @@ -229,12 +229,13 @@ namespace OpieTooth { 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 ); } @@ -318,18 +319,25 @@ 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 |