author | harlekin <harlekin> | 2002-06-16 20:44:48 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-16 20:44:48 (UTC) |
commit | 56788c49b68bae137a51b089b911f7ec4977c33f (patch) (side-by-side diff) | |
tree | cea3983dbb842348d1881d7f7d8ef2679d571d14 | |
parent | 5c098847f0fd716c4fe697e5eb314111a4ae5df1 (diff) | |
download | opie-56788c49b68bae137a51b089b911f7ec4977c33f.zip opie-56788c49b68bae137a51b089b911f7ec4977c33f.tar.gz opie-56788c49b68bae137a51b089b911f7ec4977c33f.tar.bz2 |
remoteDevice part II
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 19 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.h | 2 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/scandialog.cpp | 8 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/scandialog.h | 4 |
4 files changed, 22 insertions, 11 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 71da82e..c993c7c 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -35,4 +35,5 @@ #include <qcheckbox.h> #include <qlineedit.h> +#include <qlistview.h> #include <qpe/resource.h> @@ -42,5 +43,6 @@ namespace OpieTooth { - class RemoteDevices; + + #include <remotedevice.h> BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl ) @@ -154,8 +156,17 @@ namespace OpieTooth { - void BlueBase::addSearchedDevices( QList<RemoteDevices> &newDevices ) { + void BlueBase::addSearchedDevices( QList<RemoteDevice> &newDevices ) { + + QListViewItem * deviceItem; + QListIterator<RemoteDevice> it(newDevices); + for( ; it.current(); ++it ) { + + RemoteDevice *dev = it.current(); + deviceItem = new QListViewItem( ListView4, dev->name() ); + deviceItem->setText(1, dev->mac() ); + } } @@ -166,6 +177,6 @@ namespace OpieTooth { void BlueBase::startScan() { ScanDialog *scan = new ScanDialog( this, "", true); - QObject::connect((QObject*)scan, SIGNAL( selectedDevices(QList<RemoteDevices>&) ), - this, SLOT( addSearchedDevices(QList<RemoteDevices>& ) )); + QObject::connect((QObject*)scan, SIGNAL( selectedDevices(QList<RemoteDevice>&) ), + this, SLOT( addSearchedDevices(QList<RemoteDevice>& ) )); scan->showMaximized(); diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h index 5364e51..c8ceed2 100644 --- a/noncore/net/opietooth/manager/bluebase.h +++ b/noncore/net/opietooth/manager/bluebase.h @@ -54,5 +54,5 @@ namespace OpieTooth { private slots: - void addSearchedDevices( QList<RemoteDevices> &newDevices ); + void addSearchedDevices( QList<RemoteDevice> &newDevices ); void applyConfigChanges(); diff --git a/noncore/net/opietooth/manager/scandialog.cpp b/noncore/net/opietooth/manager/scandialog.cpp index 8a7ea01..bd7d23c 100644 --- a/noncore/net/opietooth/manager/scandialog.cpp +++ b/noncore/net/opietooth/manager/scandialog.cpp @@ -125,9 +125,9 @@ namespace OpieTooth { } - void ScanDialog::fillList(const QString& device, RemoteDevices::ValueList deviceList) { + void ScanDialog::fillList(const QString& device, RemoteDevice::ValueList deviceList) { QCheckListItem * deviceItem; - RemoteDevices::ValueList::Iterator it; + RemoteDevice::ValueList::Iterator it; for( it = deviceList.begin(); it != deviceList.end(); ++it ) { @@ -147,10 +147,10 @@ namespace OpieTooth { } - QList<RemoteDevices> *deviceList = new QList<RemoteDevices>; + QList<RemoteDevice> *deviceList = new QList<RemoteDevice>; QListViewItemIterator it( ListView1 ); for ( ; it.current(); ++it ) { if ( ((QCheckListItem*)it.current())->isOn() ) { - RemoteDevices* device = new RemoteDevices( it.current()->text(1), it.current()->text(0)); + RemoteDevice * device = new RemoteDevice( it.current()->text(1), it.current()->text(0)); deviceList->append( device ); } diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h index 0ca302a..adc960c 100644 --- a/noncore/net/opietooth/manager/scandialog.h +++ b/noncore/net/opietooth/manager/scandialog.h @@ -61,5 +61,5 @@ class Device; void startSearch(); void progressTimer(); - void fillList(const QString& device, RemoteDevices::ValueList list); + void fillList(const QString& device, RemoteDevice::ValueList list); private: @@ -69,5 +69,5 @@ class Device; signals: - void selectedDevices(QList<RemoteDevices>&); + void selectedDevices(QList<RemoteDevice>&); }; |