author | harlekin <harlekin> | 2002-06-20 15:44:36 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-20 15:44:36 (UTC) |
commit | e0eec50bf3992d95d7060af74fa98e9630abfa4e (patch) (side-by-side diff) | |
tree | 5e4dd3d7900a93c71a1519eda8953cb9df871e3e | |
parent | 5a5356882fe8dc4b1c1f9986b425d673ac8875ad (diff) | |
download | opie-e0eec50bf3992d95d7060af74fa98e9630abfa4e.zip opie-e0eec50bf3992d95d7060af74fa98e9630abfa4e.tar.gz opie-e0eec50bf3992d95d7060af74fa98e9630abfa4e.tar.bz2 |
up
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 39 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.h | 3 |
2 files changed, 23 insertions, 19 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 7a92dc3..6caca70 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -83,15 +83,8 @@ namespace OpieTooth { //TESTING - ListView2->setRootIsDecorated(true); - QListViewItem *topLV = new QListViewItem( ListView2, "Harlekins Dongle" , "yes"); - topLV->setPixmap( 1, offPix ); - // (void) new QListViewItem( topLV, "on" ); - //(void) new QListViewItem( topLV, "off" ); - QListViewItem *topLV2 = new QListViewItem( ListView2, "Siemens S45" , "no" ); topLV2->setPixmap( 1, onPix ); - (void) new QListViewItem( topLV2, "on" ); - (void) new QListViewItem( topLV2, "off" ); - + (void) new QListViewItem( topLV2, "Serial" ); + (void) new QListViewItem( topLV2, "BlueNiC" ); } @@ -135,3 +128,3 @@ namespace OpieTooth { - /* + /** * Read the list of allready known devices @@ -152,3 +145,3 @@ namespace OpieTooth { - /* + /** * Write the list of allready known devices @@ -226,3 +219,3 @@ namespace OpieTooth { - /* + /** * Add fresh found devices from scan dialog to the listing @@ -256,3 +249,3 @@ namespace OpieTooth { - /* + /** * Action that is toggled on entrys on click @@ -264,3 +257,3 @@ namespace OpieTooth { - /* + /** * Action that are toggled on hold (mostly QPopups i guess) @@ -272,3 +265,3 @@ namespace OpieTooth { - /* + /** * Search and display avail. services for a device (on expand from device listing) @@ -318,6 +311,4 @@ namespace OpieTooth { for( it2 = servicesList.begin(); it2 != servicesList.end(); ++it2 ) { -// it2.serviceName() serviceItem = new QListViewItem( deviceItem , (*it2).serviceName() ); } - } @@ -325,3 +316,12 @@ namespace OpieTooth { - /* + /** + * Add the existing connections (pairs) to the connections tab. + * + */ + void BlueBase::addConnectedDevices() { + + + } + + /** * Find out if a device can currently be reached @@ -346,2 +346,5 @@ namespace OpieTooth { + /** + * Set the informations about the local device in information Tab + */ void BlueBase::setInfo() { diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h index d20d05c..99d2fa6 100644 --- a/noncore/net/opietooth/manager/bluebase.h +++ b/noncore/net/opietooth/manager/bluebase.h @@ -67,3 +67,3 @@ namespace OpieTooth { - public slots: + private slots: void addSearchedDevices( QList<RemoteDevice> &newDevices ); @@ -71,2 +71,3 @@ namespace OpieTooth { void addServicesToDevice( const QString& device, Services::ValueList ); + void addConnectedDevices(); void startServiceActionClicked( QListViewItem *item ); |