summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager
authorzecke <zecke>2002-07-08 17:58:50 (UTC)
committer zecke <zecke>2002-07-08 17:58:50 (UTC)
commit35d0ca5cc59b82af7b7ddb343ec092c3171b11ef (patch) (unidiff)
tree8a7dac4bef44014c262c4b5549697229cbecc084 /noncore/net/opietooth/manager
parent078242aa3182fa98582a4881767f3aa1ff22b165 (diff)
downloadopie-35d0ca5cc59b82af7b7ddb343ec092c3171b11ef.zip
opie-35d0ca5cc59b82af7b7ddb343ec092c3171b11ef.tar.gz
opie-35d0ca5cc59b82af7b7ddb343ec092c3171b11ef.tar.bz2
fix memleaks
fix possible crashes clean up
Diffstat (limited to 'noncore/net/opietooth/manager') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp262
-rw-r--r--noncore/net/opietooth/manager/bluebase.h30
2 files changed, 132 insertions, 160 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index 2001db1..ff6981b 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -44,12 +44,12 @@
44#include <remotedevice.h> 44#include <remotedevice.h>
45#include <services.h> 45#include <services.h>
46 46
47namespace OpieTooth { 47using namespace OpieTooth;
48 48
49 BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl ) 49 BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl )
50 : BluetoothBase( parent, name, fl ) { 50 : BluetoothBase( parent, name, fl ) {
51 51
52 localDevice = new Manager( "hci0" ); 52 m_localDevice = new Manager( "hci0" );
53 53
54 connect( PushButton2, SIGNAL( clicked() ), this, SLOT(startScan() ) ); 54 connect( PushButton2, SIGNAL( clicked() ), this, SLOT(startScan() ) );
55 connect( configApplyButton, SIGNAL(clicked() ), this, SLOT(applyConfigChanges() ) ); 55 connect( configApplyButton, SIGNAL(clicked() ), this, SLOT(applyConfigChanges() ) );
@@ -60,16 +60,16 @@ namespace OpieTooth {
60 this, SLOT( startServiceActionClicked( QListViewItem* ) ) ); 60 this, SLOT( startServiceActionClicked( QListViewItem* ) ) );
61 connect( ListView2, SIGNAL( rightButtonClicked( QListViewItem *, const QPoint &, int ) ), 61 connect( ListView2, SIGNAL( rightButtonClicked( QListViewItem *, const QPoint &, int ) ),
62 this, SLOT(startServiceActionHold( QListViewItem *, const QPoint &, int) ) ); 62 this, SLOT(startServiceActionHold( QListViewItem *, const QPoint &, int) ) );
63 connect( localDevice , SIGNAL( foundServices( const QString& , Services::ValueList ) ), 63 connect( m_localDevice , SIGNAL( foundServices( const QString& , Services::ValueList ) ),
64 this, SLOT( addServicesToDevice( const QString& , Services::ValueList ) ) ); 64 this, SLOT( addServicesToDevice( const QString& , Services::ValueList ) ) );
65 connect( localDevice, SIGNAL( available( const QString&, bool ) ), 65 connect( m_localDevice, SIGNAL( available( const QString&, bool ) ),
66 this, SLOT( deviceActive( const QString& , bool ) ) ); 66 this, SLOT( deviceActive( const QString& , bool ) ) );
67 connect( localDevice, SIGNAL( connections( Connection::ValueList ) ), 67 connect( m_localDevice, SIGNAL( connections( Connection::ValueList ) ),
68 this, SLOT( addConnectedDevices( Connection::ValueList ) ) ); 68 this, SLOT( addConnectedDevices( Connection::ValueList ) ) );
69 69
70 //Load all icons needed 70 //Load all icons needed
71 offPix = Resource::loadPixmap( "editdelete" ); 71 m_offPix = Resource::loadPixmap( "editdelete" );
72 onPix = Resource::loadPixmap( "installed" ); 72 m_onPix = Resource::loadPixmap( "installed" );
73 73
74 QPalette pal = this->palette(); 74 QPalette pal = this->palette();
75 QColor col = pal.color( QPalette::Active, QColorGroup::Background ); 75 QColor col = pal.color( QPalette::Active, QColorGroup::Background );
@@ -88,14 +88,14 @@ namespace OpieTooth {
88 ListView2->setRootIsDecorated(true); 88 ListView2->setRootIsDecorated(true);
89 89
90 BTListItem *topLV2 = new BTListItem( ListView2, "Siemens S45", "", "device" ); 90 BTListItem *topLV2 = new BTListItem( ListView2, "Siemens S45", "", "device" );
91 topLV2->setPixmap( 1, onPix ); 91 topLV2->setPixmap( 1, m_onPix );
92 (void) new BTListItem( topLV2, "Serial" ,"", "service" ); 92 (void) new BTListItem( topLV2, "Serial" ,"", "service" );
93 (void) new BTListItem( topLV2, "BlueNiC" , "", "service" ); 93 (void) new BTListItem( topLV2, "BlueNiC" , "", "service" );
94 94
95 writeToHciConfig(); 95 writeToHciConfig();
96 // search conncetions 96 // search conncetions
97 addConnectedDevices(); 97 addConnectedDevices();
98 iconLoader = new BTIconLoader(); 98 m_iconLoader = new BTIconLoader();
99 } 99 }
100 100
101 /** 101 /**
@@ -106,12 +106,12 @@ namespace OpieTooth {
106 Config cfg( "bluetoothmanager" ); 106 Config cfg( "bluetoothmanager" );
107 cfg.setGroup( "bluezsettings" ); 107 cfg.setGroup( "bluezsettings" );
108 108
109 deviceName = cfg.readEntry( "name" , "No name" ); // name the device should identify with 109 m_deviceName = cfg.readEntry( "name" , "No name" ); // name the device should identify with
110 defaultPasskey = cfg.readEntryCrypt( "passkey" , "" ); // <- hmm, look up how good the trolls did that, maybe too weak 110 m_defaultPasskey = cfg.readEntryCrypt( "passkey" , "" ); // <- hmm, look up how good the trolls did that, maybe too weak
111 useEncryption = cfg.readNumEntry( "useEncryption" , 1 ); 111 m_useEncryption = cfg.readBoolEntry( "useEncryption" , TRUE );
112 enableAuthentification = cfg.readNumEntry( "enableAuthentification" , 1 ); 112 m_enableAuthentification = cfg.readBoolEntry( "enableAuthentification" , TRUE );
113 enablePagescan = cfg.readNumEntry( "enablePagescan" , 1 ); 113 m_enablePagescan = cfg.readBoolEntry( "enablePagescan" , TRUE );
114 enableInquiryscan = cfg.readNumEntry( "enableInquiryscan" , 1 ); 114 m_enableInquiryscan = cfg.readBoolEntry( "enableInquiryscan" , TRUE );
115 } 115 }
116 116
117 /** 117 /**
@@ -122,51 +122,29 @@ namespace OpieTooth {
122 Config cfg( "bluetoothmanager" ); 122 Config cfg( "bluetoothmanager" );
123 cfg.setGroup( "bluezsettings" ); 123 cfg.setGroup( "bluezsettings" );
124 124
125 cfg.writeEntry( "name" , deviceName ); 125 cfg.writeEntry( "name" , m_deviceName );
126 cfg.writeEntryCrypt( "passkey" , defaultPasskey ); 126 cfg.writeEntryCrypt( "passkey" , m_defaultPasskey );
127 cfg.writeEntry( "useEncryption" , useEncryption ); 127 cfg.writeEntry( "useEncryption" , m_useEncryption );
128 cfg.writeEntry( "enableAuthentification" , enableAuthentification ); 128 cfg.writeEntry( "enableAuthentification" , m_enableAuthentification );
129 cfg.writeEntry( "enablePagescan" , enablePagescan ); 129 cfg.writeEntry( "enablePagescan" , m_enablePagescan );
130 cfg.writeEntry( "enableInquiryscan" , enableInquiryscan ); 130 cfg.writeEntry( "enableInquiryscan" , m_enableInquiryscan );
131 131
132 writeToHciConfig(); 132 writeToHciConfig();
133 } 133 }
134 134
135 void BlueBase::writeToHciConfig() { 135 void BlueBase::writeToHciConfig() {
136 136
137 HciConfWrapper *hciconf = new HciConfWrapper( "/tmp/hcid.conf" ); 137 HciConfWrapper hciconf ( "/tmp/hcid.conf" );
138 hciconf->setPinHelper( "/bin/QtPalmtop/bin/blue-pin" ); 138 hciconf.setPinHelper( "/bin/QtPalmtop/bin/blue-pin" );
139 139
140 140
141 // hciconf->setPinHelper( "/bin/QtPalmtop/bin/blue-pin" ); 141 // hciconf->setPinHelper( "/bin/QtPalmtop/bin/blue-pin" );
142 142
143 hciconf->setName( deviceName ); 143 hciconf.setName( m_deviceName );
144 144 hciconf.setEncrypt( m_useEncryption );
145 if ( useEncryption == 1) { 145 hciconf.setAuth( m_enableAuthentification );
146 hciconf->setEncrypt( true ); 146 hciconf.setPscan( m_enablePagescan );
147 } else { 147 hciconf.setIscan( m_enableInquiryscan );
148 hciconf->setEncrypt( false );
149 }
150
151
152 if ( enableAuthentification == 1) {
153 hciconf->setAuth( true );
154 } else {
155 hciconf->setAuth( false );
156 }
157
158 if ( enablePagescan == 1) {
159 hciconf->setPscan( true );
160 } else {
161 hciconf->setPscan( false );
162 }
163
164 if ( enableInquiryscan == 1) {
165 hciconf->setIscan( true );
166 } else {
167 hciconf->setIscan( false );
168 }
169 delete hciconf;
170 } 148 }
171 149
172 150
@@ -176,7 +154,7 @@ namespace OpieTooth {
176 */ 154 */
177 void BlueBase::readSavedDevices() { 155 void BlueBase::readSavedDevices() {
178 156
179 QList<RemoteDevice> *loadedDevices = new QList<RemoteDevice>; 157 QValueList<RemoteDevice> loadedDevices;
180 158
181 QDir deviceListSave( QDir::homeDirPath() + "/Settings/bluetooth/"); 159 QDir deviceListSave( QDir::homeDirPath() + "/Settings/bluetooth/");
182 // list of .conf files 160 // list of .conf files
@@ -194,10 +172,10 @@ namespace OpieTooth {
194 name = conf.readEntry("name", "Error"); 172 name = conf.readEntry("name", "Error");
195 qDebug("MAC: " + mac); 173 qDebug("MAC: " + mac);
196 qDebug("NAME: " + name); 174 qDebug("NAME: " + name);
197 RemoteDevice currentDevice = RemoteDevice( mac , name ); 175 RemoteDevice currentDevice( mac , name );
198 loadedDevices->append( &currentDevice ); 176 loadedDevices.append( currentDevice );
199 } 177 }
200 addSearchedDevices( *loadedDevices ); 178 addSearchedDevices( loadedDevices );
201 } 179 }
202 180
203 /** 181 /**
@@ -221,13 +199,13 @@ namespace OpieTooth {
221 * Set up the gui 199 * Set up the gui
222 */ 200 */
223 void BlueBase::initGui() { 201 void BlueBase::initGui() {
224 StatusLabel->setText( getStatus() ); // maybe move it to getStatus() 202 StatusLabel->setText( status() ); // maybe move it to getStatus()
225 cryptCheckBox->setChecked( useEncryption ); 203 cryptCheckBox->setChecked( m_useEncryption );
226 authCheckBox->setChecked( enableAuthentification ); 204 authCheckBox->setChecked( m_enableAuthentification );
227 pagescanCheckBox->setChecked( enablePagescan ); 205 pagescanCheckBox->setChecked( m_enablePagescan );
228 inquiryscanCheckBox->setChecked( enableInquiryscan ); 206 inquiryscanCheckBox->setChecked( m_enableInquiryscan );
229 deviceNameLine->setText( deviceName ); 207 deviceNameLine->setText( m_deviceName );
230 passkeyLine->setText( defaultPasskey ); 208 passkeyLine->setText( m_defaultPasskey );
231 // set info tab 209 // set info tab
232 setInfo(); 210 setInfo();
233 } 211 }
@@ -237,7 +215,7 @@ namespace OpieTooth {
237 * Get the status informations and returns it 215 * Get the status informations and returns it
238 * @return QString the status informations gathered 216 * @return QString the status informations gathered
239 */ 217 */
240 QString BlueBase::getStatus(){ 218 QString BlueBase::status()const{
241 QString infoString = tr( "<b>Device name : </b> Ipaq" ); 219 QString infoString = tr( "<b>Device name : </b> Ipaq" );
242 infoString += QString( "<br><b>" + tr( "MAC adress: " ) +"</b> No idea" ); 220 infoString += QString( "<br><b>" + tr( "MAC adress: " ) +"</b> No idea" );
243 infoString += QString( "<br><b>" + tr( "Class" ) + "</b> PDA" ); 221 infoString += QString( "<br><b>" + tr( "Class" ) + "</b> PDA" );
@@ -250,36 +228,32 @@ namespace OpieTooth {
250 * Read the current values from the gui and invoke writeConfig() 228 * Read the current values from the gui and invoke writeConfig()
251 */ 229 */
252 void BlueBase::applyConfigChanges() { 230 void BlueBase::applyConfigChanges() {
253 deviceName = deviceNameLine->text(); 231 m_deviceName = deviceNameLine->text();
254 defaultPasskey = passkeyLine->text(); 232 m_defaultPasskey = passkeyLine->text();
255 useEncryption = cryptCheckBox->isChecked(); 233 m_useEncryption = cryptCheckBox->isChecked();
256 enableAuthentification = authCheckBox->isChecked(); 234 m_enableAuthentification = authCheckBox->isChecked();
257 enablePagescan = pagescanCheckBox->isChecked(); 235 m_enablePagescan = pagescanCheckBox->isChecked();
258 enableInquiryscan = inquiryscanCheckBox->isChecked(); 236 m_enableInquiryscan = inquiryscanCheckBox->isChecked();
259 237
260 writeConfig(); 238 writeConfig();
261 239
262 QMessageBox* box = new QMessageBox( this, "Test" ); 240 QMessageBox::information( this, tr("Test") , tr("Changes were applied.") );
263 box->setText( tr( "Changes applied" ) );
264 box->show();
265 } 241 }
266 242
267 /** 243 /**
268 * Add fresh found devices from scan dialog to the listing 244 * Add fresh found devices from scan dialog to the listing
269 * 245 *
270 */ 246 */
271 void BlueBase::addSearchedDevices( QList<RemoteDevice> &newDevices ) { 247 void BlueBase::addSearchedDevices( const QValueList<RemoteDevice> &newDevices ) {
272 BTListItem * deviceItem; 248 BTListItem * deviceItem;
273 QListIterator<RemoteDevice> it( newDevices ); 249 QValueList<RemoteDevice>::ConstIterator it;
274 250
275 for( ; it.current() ; ++it ) { 251 for( it = newDevices.begin(); it != newDevices.end() ; ++it ) {
276 252 deviceItem = new BTListItem( ListView2 , (*it).name(), (*it).mac(), "device" );
277 RemoteDevice *dev = it.current();
278 deviceItem = new BTListItem( ListView2 , dev->name(), dev->mac(), "device" );
279 deviceItem->setExpandable ( true ); 253 deviceItem->setExpandable ( true );
280 254
281 // look if device is avail. atm, async 255 // look if device is avail. atm, async
282 deviceActive( dev ); 256 deviceActive( (*it) );
283 257
284 // ggf auch hier? 258 // ggf auch hier?
285 addServicesToDevice( deviceItem ); 259 addServicesToDevice( deviceItem );
@@ -290,63 +264,63 @@ namespace OpieTooth {
290 /** 264 /**
291 * Action that is toggled on entrys on click 265 * Action that is toggled on entrys on click
292 */ 266 */
293 void BlueBase::startServiceActionClicked( QListViewItem *item ) { 267void BlueBase::startServiceActionClicked( QListViewItem */*item*/ ) {
294 } 268}
295 269
296 /** 270 /**
297 * Action that are toggled on hold (mostly QPopups i guess) 271 * Action that are toggled on hold (mostly QPopups i guess)
298 */ 272 */
299 void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & point, int column ) { 273void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & point, int /*column*/ ) {
300 274
301 QPopupMenu *menu = new QPopupMenu(); 275 QPopupMenu *menu = new QPopupMenu();
302 int ret=0; 276 int ret=0;
303 277
304 if ( ((BTListItem*)item)->type() == "device") { 278 if ( ((BTListItem*)item)->type() == "device") {
305 279
306 QPopupMenu *groups = new QPopupMenu(); 280 QPopupMenu *groups = new QPopupMenu();
307 281
308 menu->insertItem( tr("rescan sevices:"), 0); 282 menu->insertItem( tr("rescan sevices:"), 0);
309 menu->insertItem( tr("to group"), groups , 1); 283 menu->insertItem( tr("to group"), groups , 1);
310 menu->insertItem( tr("bound device"), 2); 284 menu->insertItem( tr("bound device"), 2);
311 menu->insertItem( tr("delete"), 3); 285 menu->insertItem( tr("delete"), 3);
312 286
313 ret = menu->exec( point , 0); 287 ret = menu->exec( point , 0);
314 288
315 switch(ret) { 289 switch(ret) {
316 case 0: 290 case 0:
317 break; 291 break;
318 case 1: 292 case 1:
319 break; 293 break;
320 case 2: 294 case 2:
321 // make connection 295 // make connection
322 break; 296 break;
323 case 3: 297 case 3:
324 // delete childs too 298 // delete childs too
325 delete item; 299 delete item;
326 break; 300 break;
327 } 301 }
328 delete groups; 302 delete groups;
329 303
330 } else if ( ((BTListItem*)item)->type() == "service") { 304 } else if ( ((BTListItem*)item)->type() == "service") {
331 menu->insertItem( tr("Test1:"), 0); 305 menu->insertItem( tr("Test1:"), 0);
332 menu->insertItem( tr("connect"), 1); 306 menu->insertItem( tr("connect"), 1);
333 menu->insertItem( tr("delete"), 2); 307 menu->insertItem( tr("delete"), 2);
334 308
335 ret = menu->exec( point , 0); 309 ret = menu->exec( point , 0);
336 310
337 switch(ret) { 311 switch(ret) {
338 case 0: 312 case 0:
339 break; 313 break;
340 case 1: 314 case 1:
341 break; 315 break;
342 case 2: 316 case 2:
343 // delete childs too 317 // delete childs too
344 delete item; 318 delete item;
345 break; 319 break;
346 } 320 }
347 }
348 delete menu;
349 } 321 }
322 delete menu;
323}
350 324
351 /** 325 /**
352 * Search and display avail. services for a device (on expand from device listing) 326 * Search and display avail. services for a device (on expand from device listing)
@@ -355,11 +329,10 @@ namespace OpieTooth {
355 void BlueBase::addServicesToDevice( BTListItem * item ) { 329 void BlueBase::addServicesToDevice( BTListItem * item ) {
356 qDebug("addServicesToDevice"); 330 qDebug("addServicesToDevice");
357 // row of mac adress text(3) 331 // row of mac adress text(3)
358 RemoteDevice *device = new RemoteDevice( item->mac(), item->name() ); 332 RemoteDevice device( item->mac(), item->name() );
359 deviceList.insert( item->mac() , item ); 333 m_deviceList.insert( item->mac() , item );
360 // and some time later I get a signal foundServices( const QString& device, Services::ValueList ); back 334 // and some time later I get a signal foundServices( const QString& device, Services::ValueList ); back
361 localDevice->searchServices( *device ); 335 m_localDevice->searchServices( device );
362 delete device;
363 } 336 }
364 337
365 338
@@ -375,7 +348,7 @@ namespace OpieTooth {
375 BTListItem* deviceItem = 0; 348 BTListItem* deviceItem = 0;
376 349
377 // get the right devices which requested the search 350 // get the right devices which requested the search
378 for( it = deviceList.begin(); it != deviceList.end(); ++it ) { 351 for( it = m_deviceList.begin(); it != m_deviceList.end(); ++it ) {
379 if ( it.key() == device ) { 352 if ( it.key() == device ) {
380 deviceItem = it.data(); 353 deviceItem = it.data();
381 } 354 }
@@ -388,7 +361,7 @@ namespace OpieTooth {
388 // add services 361 // add services
389 for( it2 = servicesList.begin(); it2 != servicesList.end(); ++it2 ) { 362 for( it2 = servicesList.begin(); it2 != servicesList.end(); ++it2 ) {
390 serviceItem = new BTListItem( deviceItem , (*it2).serviceName() , "" , "service" ); 363 serviceItem = new BTListItem( deviceItem , (*it2).serviceName() , "" , "service" );
391 serviceItem->setPixmap( 0, iconLoader->serviceIcon( (*it2).classIdList() ) ); 364 serviceItem->setPixmap( 0, m_iconLoader->serviceIcon( (*it2).classIdList() ) );
392 } 365 }
393 } else { 366 } else {
394 serviceItem = new BTListItem( deviceItem , tr("no services found"), "" , "service" ); 367 serviceItem = new BTListItem( deviceItem , tr("no services found"), "" , "service" );
@@ -401,7 +374,7 @@ namespace OpieTooth {
401 * This one triggers the search 374 * This one triggers the search
402 */ 375 */
403 void BlueBase::addConnectedDevices() { 376 void BlueBase::addConnectedDevices() {
404 localDevice->searchConnections(); 377 m_localDevice->searchConnections();
405 } 378 }
406 379
407 380
@@ -425,9 +398,9 @@ namespace OpieTooth {
425 /** 398 /**
426 * Find out if a device can currently be reached 399 * Find out if a device can currently be reached
427 */ 400 */
428 void BlueBase::deviceActive( RemoteDevice *device ) { 401 void BlueBase::deviceActive( const RemoteDevice &device ) {
429 // search by mac, async, gets a signal back 402 // search by mac, async, gets a signal back
430 localDevice->isAvailable( device->mac() ); 403 m_localDevice->isAvailable( device.mac() );
431 } 404 }
432 405
433 /** 406 /**
@@ -442,16 +415,16 @@ namespace OpieTooth {
442 BTListItem* deviceItem = 0; 415 BTListItem* deviceItem = 0;
443 416
444 // get the right devices which requested the search 417 // get the right devices which requested the search
445 for( it = deviceList.begin(); it != deviceList.end(); ++it ) { 418 for( it = m_deviceList.begin(); it != m_deviceList.end(); ++it ) {
446 if ( it.key() == device ) { 419 if ( it.key() == device ) {
447 deviceItem = it.data(); 420 deviceItem = it.data();
448 } 421 }
449 } 422 }
450 423
451 if ( connected ) { 424 if ( connected ) {
452 deviceItem->setPixmap( 1, onPix ); 425 deviceItem->setPixmap( 1, m_onPix );
453 } else { 426 } else {
454 deviceItem->setPixmap( 1, offPix ); 427 deviceItem->setPixmap( 1, m_offPix );
455 } 428 }
456 } 429 }
457 430
@@ -471,7 +444,7 @@ namespace OpieTooth {
471 * Set the informations about the local device in information Tab 444 * Set the informations about the local device in information Tab
472 */ 445 */
473 void BlueBase::setInfo() { 446 void BlueBase::setInfo() {
474 StatusLabel->setText( getStatus() ); 447 StatusLabel->setText( status() );
475 } 448 }
476 449
477 /** 450 /**
@@ -479,7 +452,6 @@ namespace OpieTooth {
479 */ 452 */
480 BlueBase::~BlueBase() { 453 BlueBase::~BlueBase() {
481 writeSavedDevices(); 454 writeSavedDevices();
482 delete iconLoader; 455 delete m_iconLoader;
483 } 456 }
484}
485 457
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index ce0483f..73fac97 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -38,7 +38,7 @@ namespace OpieTooth {
38 protected: 38 protected:
39 39
40 40
41 private slots: 41 private slots:
42 void startScan(); 42 void startScan();
43 43
44 private: 44 private:
@@ -47,28 +47,28 @@ namespace OpieTooth {
47 void readSavedDevices(); 47 void readSavedDevices();
48 void writeSavedDevices(); 48 void writeSavedDevices();
49 void writeToHciConfig(); 49 void writeToHciConfig();
50 QString getStatus(); 50 QString status()const;
51 void initGui(); 51 void initGui();
52 void setInfo(); 52 void setInfo();
53 Manager *localDevice; 53 Manager *m_localDevice;
54 QMap<QString,BTListItem*> deviceList; 54 QMap<QString,BTListItem*> m_deviceList;
55 55
56 void deviceActive( RemoteDevice *device ); 56 void deviceActive( const RemoteDevice &device );
57 57
58 QString deviceName; 58 QString m_deviceName;
59 QString defaultPasskey; 59 QString m_defaultPasskey;
60 int useEncryption; 60 bool m_useEncryption;
61 int enableAuthentification; 61 bool m_enableAuthentification;
62 int enablePagescan; 62 bool m_enablePagescan;
63 int enableInquiryscan; 63 bool m_enableInquiryscan;
64 64
65 QPixmap offPix; 65 QPixmap m_offPix;
66 QPixmap onPix; 66 QPixmap m_onPix;
67 67
68 BTIconLoader *iconLoader; 68 BTIconLoader *m_iconLoader;
69 69
70 private slots: 70 private slots:
71 void addSearchedDevices( QList<RemoteDevice> &newDevices ); 71 void addSearchedDevices( const QValueList<RemoteDevice> &newDevices );
72 void addServicesToDevice( BTListItem *item ); 72 void addServicesToDevice( BTListItem *item );
73 void addServicesToDevice( const QString& device, Services::ValueList ); 73 void addServicesToDevice( const QString& device, Services::ValueList );
74 void addConnectedDevices(); 74 void addConnectedDevices();