-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 56 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/popuphelper.cpp | 2 |
2 files changed, 44 insertions, 14 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 189001d..3f2f138 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp | |||
@@ -84,26 +84,28 @@ using namespace OpieTooth; | |||
84 | setCaption( tr( "Bluetooth Manager" ) ); | 84 | setCaption( tr( "Bluetooth Manager" ) ); |
85 | 85 | ||
86 | readConfig(); | 86 | readConfig(); |
87 | initGui(); | 87 | initGui(); |
88 | 88 | ||
89 | //TESTING | 89 | //TESTING |
90 | ListView2->setRootIsDecorated(true); | 90 | ListView2->setRootIsDecorated(true); |
91 | 91 | ||
92 | BTDeviceItem *topLV2 = new BTDeviceItem( ListView2, RemoteDevice("xx:", "Siemens S45" ) ); | 92 | BTDeviceItem *topLV2 = new BTDeviceItem( ListView2, RemoteDevice("xx:", "Siemens S45" ) ); |
93 | topLV2->setPixmap( 1, m_onPix ); | 93 | topLV2->setPixmap( 1, m_onPix ); |
94 | Services s1; | 94 | Services s1; |
95 | s1.setServiceName( "Serial" ); | 95 | s1.setServiceName( "Serial" ); |
96 | s1.insertClassId(1, "BlueNic"); | ||
96 | (void) new BTServiceItem( topLV2, s1 ); | 97 | (void) new BTServiceItem( topLV2, s1 ); |
97 | s1.setServiceName( "BlueNic" ); | 98 | s1.setServiceName( "BlueNic" ); |
99 | s1.insertClassId(2, "Obex"); | ||
98 | (void) new BTServiceItem( topLV2, s1 ); | 100 | (void) new BTServiceItem( topLV2, s1 ); |
99 | 101 | ||
100 | writeToHciConfig(); | 102 | writeToHciConfig(); |
101 | // search conncetions | 103 | // search conncetions |
102 | addConnectedDevices(); | 104 | addConnectedDevices(); |
103 | m_iconLoader = new BTIconLoader(); | 105 | m_iconLoader = new BTIconLoader(); |
104 | } | 106 | } |
105 | 107 | ||
106 | /** | 108 | /** |
107 | * Reads all options from the config file | 109 | * Reads all options from the config file |
108 | */ | 110 | */ |
109 | void BlueBase::readConfig() { | 111 | void BlueBase::readConfig() { |
@@ -290,55 +292,81 @@ void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & poin | |||
290 | if ( ((BTListItem*)item)->type() == "device") { | 292 | if ( ((BTListItem*)item)->type() == "device") { |
291 | 293 | ||
292 | QPopupMenu *groups = new QPopupMenu(); | 294 | QPopupMenu *groups = new QPopupMenu(); |
293 | 295 | ||
294 | menu->insertItem( tr("rescan sevices:"), 0); | 296 | menu->insertItem( tr("rescan sevices:"), 0); |
295 | menu->insertItem( tr("to group"), groups , 1); | 297 | menu->insertItem( tr("to group"), groups , 1); |
296 | menu->insertItem( tr("bound device"), 2); | 298 | menu->insertItem( tr("bound device"), 2); |
297 | menu->insertItem( tr("delete"), 3); | 299 | menu->insertItem( tr("delete"), 3); |
298 | 300 | ||
299 | ret = menu->exec( point , 0); | 301 | ret = menu->exec( point , 0); |
300 | 302 | ||
301 | switch(ret) { | 303 | switch(ret) { |
302 | case 0: | 304 | case -1: |
305 | |||
303 | break; | 306 | break; |
304 | case 1: | 307 | case 1: |
305 | break; | 308 | break; |
306 | case 2: | 309 | case 2: |
307 | // make connection | 310 | // make connection |
308 | break; | 311 | break; |
309 | case 3: | 312 | case 3: |
310 | // delete childs too | 313 | // delete childs too |
311 | delete item; | 314 | delete item; |
312 | break; | 315 | break; |
313 | } | 316 | } |
314 | delete groups; | 317 | delete groups; |
315 | 318 | ||
316 | } else if ( ((BTListItem*)item)->type() == "service") { | 319 | } |
320 | /** | ||
321 | * We got service sensitive PopupMenus in our factory | ||
322 | * We will create one through the factory and will insert | ||
323 | * our Separator + ShowInfo into the menu or create a new | ||
324 | * one if the factory returns 0 | ||
325 | * PopupMenu deletion is kind of weird. | ||
326 | * If escaped( -1 ) or any of our items were chosen we'll | ||
327 | * delete the PopupMenu otherwise it's the responsibility of | ||
328 | * the PopupMenu to delete itself | ||
329 | * | ||
330 | */ | ||
331 | else if ( ((BTListItem*)item)->type() == "service") { | ||
332 | BTServiceItem* service = (BTServiceItem*)item; | ||
333 | QMap<int, QString> list = service->services().classIdList(); | ||
334 | QMap<int, QString>::Iterator it = list.begin(); | ||
335 | QPopupMenu *popup =0l; | ||
336 | if ( it != list.end() ) | ||
337 | popup = m_popHelper.find( it.key(), | ||
338 | service->services(), | ||
339 | service->parent() ); | ||
340 | |||
341 | if ( popup == 0l ) { | ||
342 | qWarning("factory returned 0l"); | ||
343 | popup = new QPopupMenu(); | ||
344 | } | ||
317 | 345 | ||
318 | menu->insertItem( tr("Test1:"), 0); | 346 | int test1 = popup->insertItem( tr("Test1:"), 0); |
319 | menu->insertItem( tr("connect"), 1); | 347 | int con = popup->insertItem( tr("connect"), 1); |
320 | menu->insertItem( tr("delete"), 2); | 348 | int del = popup->insertItem( tr("delete"), 2); |
321 | 349 | ||
322 | ret = menu->exec( point , 0); | 350 | ret = popup->exec( point ); |
323 | 351 | ||
324 | switch(ret) { | 352 | if ( ret == -1 ) |
325 | case 0: | 353 | delete popup; |
326 | break; | 354 | else if ( ret == test1 ) |
327 | case 1: | 355 | delete popup; |
328 | break; | 356 | else if ( ret == con ) |
329 | case 2: | 357 | delete popup; |
330 | // delete childs too | 358 | else if ( ret == del ) { |
359 | // take item first? -zecke | ||
331 | delete item; | 360 | delete item; |
332 | break; | ||
333 | } | 361 | } |
334 | } | 362 | } |
335 | delete menu; | 363 | delete menu; |
336 | } | 364 | } |
337 | 365 | ||
338 | /** | 366 | /** |
339 | * Search and display avail. services for a device (on expand from device listing) | 367 | * Search and display avail. services for a device (on expand from device listing) |
340 | * | 368 | * |
341 | */ | 369 | */ |
342 | void BlueBase::addServicesToDevice( BTDeviceItem * item ) { | 370 | void BlueBase::addServicesToDevice( BTDeviceItem * item ) { |
343 | qDebug("addServicesToDevice"); | 371 | qDebug("addServicesToDevice"); |
344 | // row of mac adress text(3) | 372 | // row of mac adress text(3) |
diff --git a/noncore/net/opietooth/manager/popuphelper.cpp b/noncore/net/opietooth/manager/popuphelper.cpp index d8404d6..26c4b02 100644 --- a/noncore/net/opietooth/manager/popuphelper.cpp +++ b/noncore/net/opietooth/manager/popuphelper.cpp | |||
@@ -6,23 +6,25 @@ | |||
6 | using namespace OpieTooth; | 6 | using namespace OpieTooth; |
7 | 7 | ||
8 | PopupHelper::PopupHelper() { | 8 | PopupHelper::PopupHelper() { |
9 | init(); | 9 | init(); |
10 | } | 10 | } |
11 | PopupHelper::~PopupHelper() { | 11 | PopupHelper::~PopupHelper() { |
12 | 12 | ||
13 | } | 13 | } |
14 | void PopupHelper::insert( int id, popupFactory fact ) { | 14 | void PopupHelper::insert( int id, popupFactory fact ) { |
15 | m_map.insert(id, fact ); | 15 | m_map.insert(id, fact ); |
16 | } | 16 | } |
17 | QPopupMenu* PopupHelper::find( int id, const Services& ser, QListViewItem* item ) { | 17 | QPopupMenu* PopupHelper::find( int id, const Services& ser, QListViewItem* item ) { |
18 | qWarning("find"); | ||
18 | FactoryMap::Iterator it = m_map.find(id ); | 19 | FactoryMap::Iterator it = m_map.find(id ); |
19 | if ( it != m_map.end() ) { | 20 | if ( it != m_map.end() ) { |
21 | qWarning("found"); | ||
20 | popupFactory fact = it.data(); | 22 | popupFactory fact = it.data(); |
21 | return (*fact)(ser, item); | 23 | return (*fact)(ser, item); |
22 | } | 24 | } |
23 | return 0l; | 25 | return 0l; |
24 | } | 26 | } |
25 | void PopupHelper::init() { | 27 | void PopupHelper::init() { |
26 | insert( 1, newRfcComPopup ); | 28 | insert( 1, newRfcComPopup ); |
27 | insert(2, newObexPushPopup ); | 29 | insert(2, newObexPushPopup ); |
28 | } | 30 | } |