author | zecke <zecke> | 2002-07-08 18:46:40 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-07-08 18:46:40 (UTC) |
commit | 7d82c654e6a1df83f70b2d81aa05a1175799b66b (patch) (unidiff) | |
tree | 079e87ac4dcd96c304a4e8eb7f928194fffe63f1 | |
parent | 35d0ca5cc59b82af7b7ddb343ec092c3171b11ef (diff) | |
download | opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.zip opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.gz opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.bz2 |
API clean ups
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 7 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/btlistitem.cpp | 22 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/btlistitem.h | 16 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/hciconfwrapper.cpp | 4 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/hciconfwrapper.h | 4 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/main.cpp | 4 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/scandialog.cpp | 10 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/scandialog.h | 2 |
8 files changed, 31 insertions, 38 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index ff6981b..8ddc161 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp | |||
@@ -371,87 +371,88 @@ void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & poin | |||
371 | 371 | ||
372 | /** | 372 | /** |
373 | * Add the existing connections (pairs) to the connections tab. | 373 | * Add the existing connections (pairs) to the connections tab. |
374 | * This one triggers the search | 374 | * This one triggers the search |
375 | */ | 375 | */ |
376 | void BlueBase::addConnectedDevices() { | 376 | void BlueBase::addConnectedDevices() { |
377 | m_localDevice->searchConnections(); | 377 | m_localDevice->searchConnections(); |
378 | } | 378 | } |
379 | 379 | ||
380 | 380 | ||
381 | void BlueBase::addConnectedDevices( Connection::ValueList connectionList ) { | 381 | void BlueBase::addConnectedDevices( Connection::ValueList connectionList ) { |
382 | QValueList<OpieTooth::Connection>::Iterator it; | 382 | QValueList<OpieTooth::Connection>::Iterator it; |
383 | BTListItem * connectionItem; | 383 | BTListItem * connectionItem; |
384 | 384 | ||
385 | if ( !connectionList.isEmpty() ) { | 385 | if ( !connectionList.isEmpty() ) { |
386 | 386 | ||
387 | for (it = connectionList.begin(); it != connectionList.end(); ++it) { | 387 | for (it = connectionList.begin(); it != connectionList.end(); ++it) { |
388 | connectionItem = new BTListItem( ListView4 , (*it).mac() , (*it).mac() , "connection" ); | 388 | connectionItem = new BTListItem( ListView4 , (*it).mac() , (*it).mac() , "connection" ); |
389 | } | 389 | } |
390 | } else { | 390 | } else { |
391 | connectionItem = new BTListItem( ListView4 , tr("No connections found"), "", "connection" ); | 391 | connectionItem = new BTListItem( ListView4 , tr("No connections found"), "", "connection" ); |
392 | } | 392 | } |
393 | 393 | ||
394 | // recall connection search after some time | 394 | // recall connection search after some time |
395 | QTimer::singleShot( 20000, this, SLOT( addConnectedDevices() ) ); | 395 | QTimer::singleShot( 20000, this, SLOT( addConnectedDevices() ) ); |
396 | } | 396 | } |
397 | 397 | ||
398 | /** | 398 | /** |
399 | * Find out if a device can currently be reached | 399 | * Find out if a device can currently be reached |
400 | */ | 400 | */ |
401 | void BlueBase::deviceActive( const RemoteDevice &device ) { | 401 | void BlueBase::deviceActive( const RemoteDevice &device ) { |
402 | // search by mac, async, gets a signal back | 402 | // search by mac, async, gets a signal back |
403 | m_localDevice->isAvailable( device.mac() ); | 403 | m_localDevice->isAvailable( device.mac() ); |
404 | } | 404 | } |
405 | 405 | ||
406 | /** | 406 | /** |
407 | * The signal catcher. Set the avail. status on device. | 407 | * The signal catcher. Set the avail. status on device. |
408 | * @param device - the mac address | 408 | * @param device - the mac address |
409 | * @param connected - if it is avail. or not | 409 | * @param connected - if it is avail. or not |
410 | */ | 410 | */ |
411 | void BlueBase::deviceActive( const QString& device, bool connected ) { | 411 | void BlueBase::deviceActive( const QString& device, bool connected ) { |
412 | qDebug("deviceActive slot"); | 412 | qDebug("deviceActive slot"); |
413 | 413 | ||
414 | QMap<QString,BTListItem*>::Iterator it; | 414 | QMap<QString,BTListItem*>::Iterator it; |
415 | BTListItem* deviceItem = 0; | 415 | BTListItem* deviceItem = 0; |
416 | 416 | ||
417 | // get the right devices which requested the search | 417 | // get the right devices which requested the search |
418 | for( it = m_deviceList.begin(); it != m_deviceList.end(); ++it ) { | 418 | for( it = m_deviceList.begin(); it != m_deviceList.end(); ++it ) { |
419 | if ( it.key() == device ) { | 419 | if ( it.key() == device ) { |
420 | deviceItem = it.data(); | 420 | deviceItem = it.data(); |
421 | } | 421 | } |
422 | } | 422 | } |
423 | 423 | ||
424 | if ( connected ) { | 424 | if ( connected ) { |
425 | deviceItem->setPixmap( 1, m_onPix ); | 425 | deviceItem->setPixmap( 1, m_onPix ); |
426 | } else { | 426 | } else { |
427 | deviceItem->setPixmap( 1, m_offPix ); | 427 | deviceItem->setPixmap( 1, m_offPix ); |
428 | } | 428 | } |
429 | } | 429 | } |
430 | 430 | ||
431 | /** | 431 | /** |
432 | * Open the "scan for devices" dialog | 432 | * Open the "scan for devices" dialog |
433 | */ | 433 | */ |
434 | void BlueBase::startScan() { | 434 | void BlueBase::startScan() { |
435 | ScanDialog *scan = new ScanDialog( this, "", true); | 435 | ScanDialog *scan = new ScanDialog( this, "ScanDialog", |
436 | QObject::connect( scan, SIGNAL( selectedDevices( QList<RemoteDevice>& ) ), | 436 | true, WDestructiveClose ); |
437 | this, SLOT( addSearchedDevices( QList<RemoteDevice>& ) ) ); | 437 | QObject::connect( scan, SIGNAL( selectedDevices( QValueList<RemoteDevice>& ) ), |
438 | this, SLOT( addSearchedDevices( QValueList<RemoteDevice>& ) ) ); | ||
438 | 439 | ||
439 | scan->showMaximized(); | 440 | scan->showMaximized(); |
440 | } | 441 | } |
441 | 442 | ||
442 | 443 | ||
443 | /** | 444 | /** |
444 | * Set the informations about the local device in information Tab | 445 | * Set the informations about the local device in information Tab |
445 | */ | 446 | */ |
446 | void BlueBase::setInfo() { | 447 | void BlueBase::setInfo() { |
447 | StatusLabel->setText( status() ); | 448 | StatusLabel->setText( status() ); |
448 | } | 449 | } |
449 | 450 | ||
450 | /** | 451 | /** |
451 | * Decontructor | 452 | * Decontructor |
452 | */ | 453 | */ |
453 | BlueBase::~BlueBase() { | 454 | BlueBase::~BlueBase() { |
454 | writeSavedDevices(); | 455 | writeSavedDevices(); |
455 | delete m_iconLoader; | 456 | delete m_iconLoader; |
456 | } | 457 | } |
457 | 458 | ||
diff --git a/noncore/net/opietooth/manager/btlistitem.cpp b/noncore/net/opietooth/manager/btlistitem.cpp index ce5b141..82e7c00 100644 --- a/noncore/net/opietooth/manager/btlistitem.cpp +++ b/noncore/net/opietooth/manager/btlistitem.cpp | |||
@@ -1,67 +1,61 @@ | |||
1 | 1 | ||
2 | #include "btlistitem.h" | 2 | #include "btlistitem.h" |
3 | 3 | ||
4 | namespace OpieTooth { | 4 | namespace OpieTooth { |
5 | 5 | ||
6 | 6 | ||
7 | BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) { | 7 | BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) { |
8 | m_name = ""; | ||
9 | m_mac =""; | ||
10 | m_type =""; | ||
11 | } | 8 | } |
12 | 9 | ||
13 | BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) { | 10 | BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) { |
14 | m_name = ""; | ||
15 | m_mac =""; | ||
16 | m_type =""; | ||
17 | } | 11 | } |
18 | 12 | ||
19 | 13 | ||
20 | // name, and then mac and then servicetype | 14 | // name, and then mac and then servicetype |
21 | BTListItem::BTListItem( QListView * parent, QString name , QString mac, QString type ) | 15 | BTListItem::BTListItem( QListView * parent, const QString &name , const QString& mac, const QString& type ) |
22 | : QListViewItem( parent, name ){ | 16 | : QListViewItem( parent, name ){ |
23 | 17 | ||
24 | m_name = name; | 18 | m_name = name; |
25 | m_mac = mac; | 19 | m_mac = mac; |
26 | m_type = type; | 20 | m_type = type; |
27 | 21 | ||
28 | } | 22 | } |
29 | 23 | ||
30 | BTListItem::BTListItem( QListViewItem * parent , QString name, QString mac, QString type ) | 24 | BTListItem::BTListItem( QListViewItem * parent , const QString& name, const QString& mac, const QString& type ) |
31 | : QListViewItem( parent, name ){ | 25 | : QListViewItem( parent, name ){ |
32 | 26 | ||
33 | m_name = name; | 27 | m_name = name; |
34 | m_mac = mac; | 28 | m_mac = mac; |
35 | m_type = type; | 29 | m_type = type; |
36 | } | 30 | } |
37 | 31 | ||
38 | 32 | ||
39 | void BTListItem::setMac( QString mac ) { | 33 | void BTListItem::setMac( const QString& mac ) { |
40 | m_mac = mac; | 34 | m_mac = mac; |
41 | } | 35 | } |
42 | 36 | ||
43 | QString BTListItem::mac() { | 37 | QString BTListItem::mac() const { |
44 | return m_mac; | 38 | return m_mac; |
45 | } | 39 | } |
46 | 40 | ||
47 | void BTListItem::setName( QString name ) { | 41 | void BTListItem::setName( const QString& name ) { |
48 | m_name = name; | 42 | m_name = name; |
49 | } | 43 | } |
50 | 44 | ||
51 | QString BTListItem::name() { | 45 | QString BTListItem::name() const { |
52 | return m_name; | 46 | return m_name; |
53 | } | 47 | } |
54 | 48 | ||
55 | void BTListItem::setType( QString type ) { | 49 | void BTListItem::setType( const QString& type ) { |
56 | m_type = type; | 50 | m_type = type; |
57 | } | 51 | } |
58 | 52 | ||
59 | QString BTListItem::type() { | 53 | QString BTListItem::type() const { |
60 | return m_type; | 54 | return m_type; |
61 | } | 55 | } |
62 | 56 | ||
63 | 57 | ||
64 | BTListItem::~BTListItem() { | 58 | BTListItem::~BTListItem() { |
65 | } | 59 | } |
66 | 60 | ||
67 | }; | 61 | }; |
diff --git a/noncore/net/opietooth/manager/btlistitem.h b/noncore/net/opietooth/manager/btlistitem.h index 8963caa..d7ce03b 100644 --- a/noncore/net/opietooth/manager/btlistitem.h +++ b/noncore/net/opietooth/manager/btlistitem.h | |||
@@ -1,33 +1,33 @@ | |||
1 | #ifndef BTLISTITEM_H | 1 | #ifndef BTLISTITEM_H |
2 | #define BTLISTITEM_H | 2 | #define BTLISTITEM_H |
3 | 3 | ||
4 | #include <qlistview.h> | 4 | #include <qlistview.h> |
5 | 5 | ||
6 | namespace OpieTooth { | 6 | namespace OpieTooth { |
7 | 7 | ||
8 | class BTListItem : public QListViewItem { | 8 | class BTListItem : public QListViewItem { |
9 | 9 | ||
10 | public: | 10 | public: |
11 | BTListItem( QListView * parent ); | 11 | BTListItem( QListView * parent ); |
12 | BTListItem( QListViewItem * parent ); | 12 | BTListItem( QListViewItem * parent ); |
13 | 13 | ||
14 | // name, and then mac and then servicetype | 14 | // name, and then mac and then servicetype |
15 | BTListItem( QListView * , QString, QString, QString ); | 15 | BTListItem( QListView * , const QString&, const QString&, const QString& ); |
16 | BTListItem( QListViewItem * parent , QString, QString , QString ); | 16 | BTListItem( QListViewItem * parent , const QString&, const QString& , const QString& ); |
17 | ~BTListItem(); | 17 | ~BTListItem(); |
18 | 18 | ||
19 | void setMac( QString ); | 19 | void setMac( const QString& ); |
20 | QString mac(); | 20 | QString mac()const; |
21 | void setName( QString ); | 21 | void setName( const QString& ); |
22 | QString name(); | 22 | QString name()const; |
23 | void setType( QString ); | 23 | void setType( const QString& ); |
24 | QString type(); | 24 | QString type()const; |
25 | private: | 25 | private: |
26 | QString m_name; | 26 | QString m_name; |
27 | QString m_mac; | 27 | QString m_mac; |
28 | QString m_type; | 28 | QString m_type; |
29 | 29 | ||
30 | }; | 30 | }; |
31 | }; | 31 | }; |
32 | 32 | ||
33 | #endif | 33 | #endif |
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.cpp b/noncore/net/opietooth/manager/hciconfwrapper.cpp index 0b90e87..5f74fee 100644 --- a/noncore/net/opietooth/manager/hciconfwrapper.cpp +++ b/noncore/net/opietooth/manager/hciconfwrapper.cpp | |||
@@ -1,87 +1,87 @@ | |||
1 | #include "hciconfwrapper.h" | 1 | #include "hciconfwrapper.h" |
2 | 2 | ||
3 | #include <qfile.h> | 3 | #include <qfile.h> |
4 | #include <qtextstream.h> | 4 | #include <qtextstream.h> |
5 | #include <qstringlist.h> | 5 | #include <qstringlist.h> |
6 | #include <qregexp.h> | 6 | #include <qregexp.h> |
7 | 7 | ||
8 | namespace OpieTooth { | 8 | namespace OpieTooth { |
9 | 9 | ||
10 | 10 | ||
11 | HciConfWrapper::HciConfWrapper( const QString &fileName) { | 11 | HciConfWrapper::HciConfWrapper( const QString &fileName) { |
12 | m_fileName = fileName; | 12 | m_fileName = fileName; |
13 | } | 13 | } |
14 | 14 | ||
15 | HciConfWrapper::~HciConfWrapper() { | 15 | HciConfWrapper::~HciConfWrapper() { |
16 | } | 16 | } |
17 | 17 | ||
18 | 18 | ||
19 | void HciConfWrapper::setPinHelper( QString app ) { | 19 | void HciConfWrapper::setPinHelper( const QString& app ) { |
20 | setValue( "pin_helper" , app ); | 20 | setValue( "pin_helper" , app ); |
21 | } | 21 | } |
22 | 22 | ||
23 | void HciConfWrapper::setName( QString name ) { | 23 | void HciConfWrapper::setName( const QString &name ) { |
24 | qDebug ("NAME : " + name); | 24 | qDebug ("NAME : " + name); |
25 | setValue( "name" , "\"" + name + "\"" ); | 25 | setValue( "name" , "\"" + name + "\"" ); |
26 | } | 26 | } |
27 | 27 | ||
28 | void HciConfWrapper::setIscan( bool enable) { | 28 | void HciConfWrapper::setIscan( bool enable) { |
29 | 29 | ||
30 | if ( enable ) { | 30 | if ( enable ) { |
31 | setValue( "iscan" , "enable" ); | 31 | setValue( "iscan" , "enable" ); |
32 | } else { | 32 | } else { |
33 | setValue( "iscan" , "disable" ); | 33 | setValue( "iscan" , "disable" ); |
34 | } | 34 | } |
35 | } | 35 | } |
36 | 36 | ||
37 | void HciConfWrapper::setPscan( bool enable) { | 37 | void HciConfWrapper::setPscan( bool enable) { |
38 | 38 | ||
39 | if ( enable ) { | 39 | if ( enable ) { |
40 | setValue( "pscan" , "enable" ); | 40 | setValue( "pscan" , "enable" ); |
41 | } else { | 41 | } else { |
42 | setValue( "pscan" , "disable" ); | 42 | setValue( "pscan" , "disable" ); |
43 | } | 43 | } |
44 | } | 44 | } |
45 | 45 | ||
46 | 46 | ||
47 | void HciConfWrapper::setAuth( bool enable) { | 47 | void HciConfWrapper::setAuth( bool enable) { |
48 | 48 | ||
49 | if ( enable ) { | 49 | if ( enable ) { |
50 | setValue( "auth" , "enable" ); | 50 | setValue( "auth" , "enable" ); |
51 | } else { | 51 | } else { |
52 | setValue( "auth" , "disable" ); | 52 | setValue( "auth" , "disable" ); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | 55 | ||
56 | 56 | ||
57 | void HciConfWrapper::setEncrypt( bool enable) { | 57 | void HciConfWrapper::setEncrypt( bool enable) { |
58 | 58 | ||
59 | if ( enable ) { | 59 | if ( enable ) { |
60 | setValue( "encrypt" , "enable" ); | 60 | setValue( "encrypt" , "enable" ); |
61 | } else { | 61 | } else { |
62 | setValue( "encrypt" , "disable" ); | 62 | setValue( "encrypt" , "disable" ); |
63 | } | 63 | } |
64 | } | 64 | } |
65 | 65 | ||
66 | 66 | ||
67 | void HciConfWrapper::setValue(const QString &key, const QString &value ) { | 67 | void HciConfWrapper::setValue(const QString &key, const QString &value ) { |
68 | 68 | ||
69 | QFile f( m_fileName ); | 69 | QFile f( m_fileName ); |
70 | QFile f2( m_fileName ); | 70 | QFile f2( m_fileName ); |
71 | 71 | ||
72 | if ( !f.open( IO_ReadOnly) ) { | 72 | if ( !f.open( IO_ReadOnly) ) { |
73 | qDebug("Could not open readonly"); | 73 | qDebug("Could not open readonly"); |
74 | return; | 74 | return; |
75 | } | 75 | } |
76 | 76 | ||
77 | if ( !f2.open( IO_ReadWrite ) ) { | 77 | if ( !f2.open( IO_ReadWrite ) ) { |
78 | qDebug("Just readonly - not enough"); | 78 | qDebug("Just readonly - not enough"); |
79 | return; | 79 | return; |
80 | } | 80 | } |
81 | 81 | ||
82 | QStringList list; | 82 | QStringList list; |
83 | qDebug(m_fileName); | 83 | qDebug(m_fileName); |
84 | QTextStream stream ( &f); | 84 | QTextStream stream ( &f); |
85 | QTextStream outstream (&f2); | 85 | QTextStream outstream (&f2); |
86 | 86 | ||
87 | QString str; | 87 | QString str; |
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.h b/noncore/net/opietooth/manager/hciconfwrapper.h index 10738c0..de8c9a8 100644 --- a/noncore/net/opietooth/manager/hciconfwrapper.h +++ b/noncore/net/opietooth/manager/hciconfwrapper.h | |||
@@ -1,30 +1,30 @@ | |||
1 | #ifndef HCICONFWRAPPER_H | 1 | #ifndef HCICONFWRAPPER_H |
2 | #define HCICONFWRAPPER_H | 2 | #define HCICONFWRAPPER_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | 5 | ||
6 | namespace OpieTooth { | 6 | namespace OpieTooth { |
7 | 7 | ||
8 | class HciConfWrapper { | 8 | class HciConfWrapper { |
9 | 9 | ||
10 | public: | 10 | public: |
11 | HciConfWrapper( const QString &fileName ); | 11 | HciConfWrapper( const QString &fileName ); |
12 | ~HciConfWrapper(); | 12 | ~HciConfWrapper(); |
13 | 13 | ||
14 | void setPinHelper( QString app ); | 14 | void setPinHelper( const QString& app ); |
15 | void setName( QString name ); | 15 | void setName( const QString& name ); |
16 | void setIscan( bool enable ); | 16 | void setIscan( bool enable ); |
17 | void setPscan( bool enable ); | 17 | void setPscan( bool enable ); |
18 | void setAuth( bool enable); | 18 | void setAuth( bool enable); |
19 | void setEncrypt( bool enable); | 19 | void setEncrypt( bool enable); |
20 | 20 | ||
21 | private: | 21 | private: |
22 | 22 | ||
23 | void setValue(const QString &entry, const QString &value ); | 23 | void setValue(const QString &entry, const QString &value ); |
24 | 24 | ||
25 | QString m_fileName; | 25 | QString m_fileName; |
26 | }; | 26 | }; |
27 | 27 | ||
28 | } | 28 | } |
29 | 29 | ||
30 | #endif | 30 | #endif |
diff --git a/noncore/net/opietooth/manager/main.cpp b/noncore/net/opietooth/manager/main.cpp index d60ef1c..a86e36d 100644 --- a/noncore/net/opietooth/manager/main.cpp +++ b/noncore/net/opietooth/manager/main.cpp | |||
@@ -1,38 +1,38 @@ | |||
1 | /* | 1 | /* |
2 | * main.cpp | 2 | * main.cpp |
3 | * | 3 | * |
4 | * --------------------- | 4 | * --------------------- |
5 | * | 5 | * |
6 | * begin : Sun 10 17:20:00 CEST 2002 | 6 | * begin : Sun 10 17:20:00 CEST 2002 |
7 | * copyright : (c) 2002 by Maximilian Reiß | 7 | * copyright : (c) 2002 by Maximilian Reiß |
8 | * email : max.reiss@gmx.de | 8 | * email : max.reiss@gmx.de |
9 | * | 9 | * |
10 | */ | 10 | */ |
11 | /*************************************************************************** | 11 | /*************************************************************************** |
12 | * * | 12 | * * |
13 | * This program is free software; you can redistribute it and/or modify * | 13 | * This program is free software; you can redistribute it and/or modify * |
14 | * it under the terms of the GNU General Public License as published by * | 14 | * it under the terms of the GNU General Public License as published by * |
15 | * the Free Software Foundation; either version 2 of the License, or * | 15 | * the Free Software Foundation; either version 2 of the License, or * |
16 | * (at your option) any later version. * | 16 | * (at your option) any later version. * |
17 | * * | 17 | * * |
18 | ***************************************************************************/ | 18 | ***************************************************************************/ |
19 | 19 | ||
20 | #include "bluebase.h" | 20 | #include "bluebase.h" |
21 | #include <qpe/qpeapplication.h> | 21 | #include <qpe/qpeapplication.h> |
22 | 22 | ||
23 | 23 | ||
24 | QPEApplication *BluetoothApp; | 24 | QPEApplication *BluetoothApp; |
25 | 25 | ||
26 | int main( int argc, char ** argv ) { | 26 | int main( int argc, char ** argv ) { |
27 | QPEApplication a(argc, argv); | 27 | QPEApplication a(argc, argv); |
28 | BluetoothApp=&a; | 28 | BluetoothApp=&a; |
29 | 29 | ||
30 | OpieTooth::BlueBase *t = new OpieTooth::BlueBase(); | 30 | OpieTooth::BlueBase t; |
31 | 31 | ||
32 | // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") ); | 32 | // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") ); |
33 | a.showMainWidget(t); | 33 | a.showMainWidget(&t); |
34 | 34 | ||
35 | return a.exec(); | 35 | return a.exec(); |
36 | } | 36 | } |
37 | 37 | ||
38 | 38 | ||
diff --git a/noncore/net/opietooth/manager/scandialog.cpp b/noncore/net/opietooth/manager/scandialog.cpp index 0e6e93b..3d6c928 100644 --- a/noncore/net/opietooth/manager/scandialog.cpp +++ b/noncore/net/opietooth/manager/scandialog.cpp | |||
@@ -97,87 +97,85 @@ namespace OpieTooth { | |||
97 | } | 97 | } |
98 | 98 | ||
99 | // hack, make cleaner later | 99 | // hack, make cleaner later |
100 | void ScanDialog::progressTimer() { | 100 | void ScanDialog::progressTimer() { |
101 | 101 | ||
102 | progressStat++; | 102 | progressStat++; |
103 | if (progressStat++ < 20) { | 103 | if (progressStat++ < 20) { |
104 | QTimer::singleShot( 2000, this, SLOT(progressTimer() ) ); | 104 | QTimer::singleShot( 2000, this, SLOT(progressTimer() ) ); |
105 | } | 105 | } |
106 | progress->setProgress(progressStat++); | 106 | progress->setProgress(progressStat++); |
107 | 107 | ||
108 | } | 108 | } |
109 | 109 | ||
110 | void ScanDialog::accept() { | 110 | void ScanDialog::accept() { |
111 | emitToManager(); | 111 | emitToManager(); |
112 | QDialog::accept(); | 112 | QDialog::accept(); |
113 | } | 113 | } |
114 | 114 | ||
115 | 115 | ||
116 | void ScanDialog::startSearch() { | 116 | void ScanDialog::startSearch() { |
117 | progress->setProgress(0); | 117 | progress->setProgress(0); |
118 | progressStat = 0; | 118 | progressStat = 0; |
119 | 119 | ||
120 | // empty list before a new scan | 120 | // empty list before a new scan |
121 | ListView1->clear(); | 121 | ListView1->clear(); |
122 | 122 | ||
123 | QCheckListItem *deviceItem2 = new QCheckListItem( ListView1, "Test1", QCheckListItem::CheckBox ); | 123 | QCheckListItem *deviceItem2 = new QCheckListItem( ListView1, "Test1", QCheckListItem::CheckBox ); |
124 | deviceItem2->setText(1, "BLAH" ); | 124 | deviceItem2->setText(1, "BLAH" ); |
125 | 125 | ||
126 | progressTimer(); | 126 | progressTimer(); |
127 | // when finished, it emmite foundDevices() | 127 | // when finished, it emmite foundDevices() |
128 | // checken ob initialisiert , qcop ans applet. | 128 | // checken ob initialisiert , qcop ans applet. |
129 | localDevice->searchDevices(); | 129 | localDevice->searchDevices(); |
130 | 130 | ||
131 | } | 131 | } |
132 | 132 | ||
133 | void ScanDialog::stopSearch() { | 133 | void ScanDialog::stopSearch() { |
134 | 134 | ||
135 | } | 135 | } |
136 | 136 | ||
137 | void ScanDialog::fillList(const QString& device, RemoteDevice::ValueList deviceList) { | 137 | void ScanDialog::fillList(const QString& device, RemoteDevice::ValueList deviceList) { |
138 | 138 | ||
139 | qDebug("fill List"); | 139 | qDebug("fill List"); |
140 | QCheckListItem * deviceItem; | 140 | QCheckListItem * deviceItem; |
141 | 141 | ||
142 | RemoteDevice::ValueList::Iterator it; | 142 | RemoteDevice::ValueList::Iterator it; |
143 | for( it = deviceList.begin(); it != deviceList.end(); ++it ) { | 143 | for( it = deviceList.begin(); it != deviceList.end(); ++it ) { |
144 | 144 | ||
145 | deviceItem = new QCheckListItem( ListView1, (*it).name(), QCheckListItem::CheckBox ); | 145 | deviceItem = new QCheckListItem( ListView1, (*it).name(), QCheckListItem::CheckBox ); |
146 | deviceItem->setText(1, (*it).mac() ); | 146 | deviceItem->setText(1, (*it).mac() ); |
147 | } | 147 | } |
148 | } | 148 | } |
149 | 149 | ||
150 | /* | 150 | /* |
151 | * Iterates trough the items, and collects the checked items. | 151 | * Iterates trough the items, and collects the checked items. |
152 | * Then it emits it, so the manager can connect to the signal to fill the listing. | 152 | * Then it emits it, so the manager can connect to the signal to fill the listing. |
153 | */ | 153 | */ |
154 | void ScanDialog::emitToManager() { | 154 | void ScanDialog::emitToManager() { |
155 | qDebug("vor liste durchsuchen"); | 155 | qDebug("vor liste durchsuchen"); |
156 | 156 | ||
157 | if (!ListView1) { | 157 | if (!ListView1) { |
158 | return; | 158 | return; |
159 | } | 159 | } |
160 | 160 | ||
161 | QList<RemoteDevice> *deviceList = new QList<RemoteDevice>; | 161 | QValueList<RemoteDevice> deviceList; |
162 | deviceList->setAutoDelete(true); | ||
163 | 162 | ||
164 | QListViewItemIterator it( ListView1 ); | 163 | QListViewItemIterator it( ListView1 ); |
165 | for ( ; it.current(); ++it ) { | 164 | for ( ; it.current(); ++it ) { |
166 | if ( ((QCheckListItem*)it.current())->isOn() ) { | 165 | if ( ((QCheckListItem*)it.current())->isOn() ) { |
167 | RemoteDevice * device = new RemoteDevice( it.current()->text(1), it.current()->text(0)); | 166 | RemoteDevice device( it.current()->text(1), it.current()->text(0)); |
168 | deviceList->append( device ); | 167 | deviceList.append( device ); |
169 | } | 168 | } |
170 | } | 169 | } |
171 | qDebug("vor emit"); | 170 | qDebug("vor emit"); |
172 | emit selectedDevices( *deviceList ); | 171 | emit selectedDevices( deviceList ); |
173 | delete deviceList; | ||
174 | } | 172 | } |
175 | 173 | ||
176 | /* | 174 | /* |
177 | * Cleanup | 175 | * Cleanup |
178 | */ | 176 | */ |
179 | ScanDialog::~ScanDialog() { | 177 | ScanDialog::~ScanDialog() { |
180 | delete localDevice; | 178 | delete localDevice; |
181 | } | 179 | } |
182 | 180 | ||
183 | } | 181 | } |
diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h index 7c84ce2..cc890f3 100644 --- a/noncore/net/opietooth/manager/scandialog.h +++ b/noncore/net/opietooth/manager/scandialog.h | |||
@@ -9,71 +9,71 @@ | |||
9 | * This program is free software; you can redistribute it and/or modify * | 9 | * This program is free software; you can redistribute it and/or modify * |
10 | * it under the terms of the GNU General Public License as published by * | 10 | * it under the terms of the GNU General Public License as published by * |
11 | * the Free Software Foundation; either version 2 of the License, or * | 11 | * the Free Software Foundation; either version 2 of the License, or * |
12 | * (at your option) any later version. * | 12 | * (at your option) any later version. * |
13 | * * | 13 | * * |
14 | ***************************************************************************/ | 14 | ***************************************************************************/ |
15 | 15 | ||
16 | 16 | ||
17 | #ifndef SCANDIALOG_H | 17 | #ifndef SCANDIALOG_H |
18 | #define SCANDIALOG_H | 18 | #define SCANDIALOG_H |
19 | 19 | ||
20 | #include <qvariant.h> | 20 | #include <qvariant.h> |
21 | #include <qdialog.h> | 21 | #include <qdialog.h> |
22 | #include <qlist.h> | 22 | #include <qlist.h> |
23 | 23 | ||
24 | #include <remotedevice.h> | 24 | #include <remotedevice.h> |
25 | class QVBoxLayout; | 25 | class QVBoxLayout; |
26 | class QHBoxLayout; | 26 | class QHBoxLayout; |
27 | class QGridLayout; | 27 | class QGridLayout; |
28 | class QFrame; | 28 | class QFrame; |
29 | class QLabel; | 29 | class QLabel; |
30 | class QListView; | 30 | class QListView; |
31 | class QListViewItem; | 31 | class QListViewItem; |
32 | class QPushButton; | 32 | class QPushButton; |
33 | class QProgressBar; | 33 | class QProgressBar; |
34 | 34 | ||
35 | 35 | ||
36 | namespace OpieTooth { | 36 | namespace OpieTooth { |
37 | 37 | ||
38 | 38 | ||
39 | class Manager; | 39 | class Manager; |
40 | class Device; | 40 | class Device; |
41 | 41 | ||
42 | class ScanDialog : public QDialog { | 42 | class ScanDialog : public QDialog { |
43 | Q_OBJECT | 43 | Q_OBJECT |
44 | 44 | ||
45 | public: | 45 | public: |
46 | ScanDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); | 46 | ScanDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); |
47 | ~ScanDialog(); | 47 | ~ScanDialog(); |
48 | 48 | ||
49 | QFrame* Frame7; | 49 | QFrame* Frame7; |
50 | QProgressBar* progress; | 50 | QProgressBar* progress; |
51 | QPushButton* StartButton; | 51 | QPushButton* StartButton; |
52 | QPushButton* StopButton; | 52 | QPushButton* StopButton; |
53 | QListView* ListView1; | 53 | QListView* ListView1; |
54 | 54 | ||
55 | public slots: | 55 | public slots: |
56 | void accept(); | 56 | void accept(); |
57 | 57 | ||
58 | protected: | 58 | protected: |
59 | QVBoxLayout* Layout11; | 59 | QVBoxLayout* Layout11; |
60 | 60 | ||
61 | private slots: | 61 | private slots: |
62 | void stopSearch(); | 62 | void stopSearch(); |
63 | void startSearch(); | 63 | void startSearch(); |
64 | void progressTimer(); | 64 | void progressTimer(); |
65 | void fillList(const QString& device, RemoteDevice::ValueList list); | 65 | void fillList(const QString& device, RemoteDevice::ValueList list); |
66 | 66 | ||
67 | private: | 67 | private: |
68 | void emitToManager(); | 68 | void emitToManager(); |
69 | Manager *localDevice; | 69 | Manager *localDevice; |
70 | int progressStat; | 70 | int progressStat; |
71 | 71 | ||
72 | signals: | 72 | signals: |
73 | void selectedDevices(QList<RemoteDevice>&); | 73 | void selectedDevices(QValueList<RemoteDevice>&); |
74 | }; | 74 | }; |
75 | 75 | ||
76 | 76 | ||
77 | } | 77 | } |
78 | 78 | ||
79 | #endif // SCANDIALOG_H | 79 | #endif // SCANDIALOG_H |