-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 5d742b7..cc51405 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -81,3 +81,2 @@ namespace OpieTooth { - //TESTING @@ -136,8 +135,21 @@ namespace OpieTooth { - Config deviceListSave( QDir::homeDirPath() + "/Settings/bluetooth/devicelist.conf", Config::File ); + QDir deviceListSave( QDir::homeDirPath() + "/Settings/bluetooth/"); + // list of .conf files + QStringList devicesFileList = deviceListSave.entryList(); + // cut .conf of to get the mac and also read the name entry in it. - // RemoteDevice *currentDevice = RemoteDevice( , ); - //loadedDevices->append( currentDevice ); + for ( QStringList::Iterator it = devicesFileList.begin(); it != devicesFileList.end(); ++it ) { + QString name; + QString mac; + qDebug((*it).latin1() ); + Config conf((*it)); + conf.setGroup("Info"); + name = conf.readEntry("name", "Error"); + qDebug("MAC: " + mac); + qDebug("NAME: " + name); + RemoteDevice currentDevice = RemoteDevice( mac , name ); + loadedDevices->append( ¤tDevice ); + } addSearchedDevices( *loadedDevices ); @@ -193,3 +205,2 @@ namespace OpieTooth { return (infoString); - } @@ -214,3 +225,2 @@ namespace OpieTooth { box->show(); - // falls nötig hcid killhupen - die funktionalität adden @@ -263,3 +273,2 @@ namespace OpieTooth { - } @@ -307,4 +316,2 @@ namespace OpieTooth { - - QListViewItem * serviceItem; @@ -334,3 +341,2 @@ namespace OpieTooth { // search by mac - // localDevice->isAvailable( device->mac() ); @@ -367,3 +373,2 @@ namespace OpieTooth { } - } |