-rw-r--r-- | kaddressbook/kabcore.cpp | 32 | ||||
-rw-r--r-- | kaddressbook/kabcore.h | 4 |
2 files changed, 35 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index a0fec91..7e3fc7c 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1143,4 +1143,5 @@ void KABCore::initGUI() | |||
1143 | ExportMenu = new QPopupMenu( this ); | 1143 | ExportMenu = new QPopupMenu( this ); |
1144 | 1144 | ||
1145 | changeMenu= new QPopupMenu( this ); | ||
1145 | 1146 | ||
1146 | //US since we have no splitter for the embedded system, setup | 1147 | //US since we have no splitter for the embedded system, setup |
@@ -1394,4 +1395,7 @@ void KABCore::initActions() | |||
1394 | "edit_set_categories" ); | 1395 | "edit_set_categories" ); |
1395 | 1396 | ||
1397 | mActionRemoveVoice = new KAction( i18n( "Remove \"voice\"..." ), 0, this, | ||
1398 | SLOT( removeVoice() ), actionCollection(), | ||
1399 | "remove_voice" ); | ||
1396 | #ifdef KAB_EMBEDDED | 1400 | #ifdef KAB_EMBEDDED |
1397 | 1401 | ||
@@ -1428,4 +1432,5 @@ void KABCore::addActionsManually() | |||
1428 | mb->insertItem( "&View", viewMenu ); | 1432 | mb->insertItem( "&View", viewMenu ); |
1429 | mb->insertItem( "&Settings", settingsMenu ); | 1433 | mb->insertItem( "&Settings", settingsMenu ); |
1434 | mb->insertItem( "&Change selected", changeMenu ); | ||
1430 | mb->insertItem( "&Help", helpMenu ); | 1435 | mb->insertItem( "&Help", helpMenu ); |
1431 | mIncSearchWidget = new IncSearchWidget( tb ); | 1436 | mIncSearchWidget = new IncSearchWidget( tb ); |
@@ -1446,4 +1451,5 @@ void KABCore::addActionsManually() | |||
1446 | popupBarTB->insertItem( "&Settings", settingsMenu ); | 1451 | popupBarTB->insertItem( "&Settings", settingsMenu ); |
1447 | mViewManager->getFilterAction()->plug ( popupBarTB); | 1452 | mViewManager->getFilterAction()->plug ( popupBarTB); |
1453 | popupBarTB->insertItem( "&Change selected", changeMenu ); | ||
1448 | popupBarTB->insertItem( "&Help", helpMenu ); | 1454 | popupBarTB->insertItem( "&Help", helpMenu ); |
1449 | if (QApplication::desktop()->width() > 320 ) { | 1455 | if (QApplication::desktop()->width() > 320 ) { |
@@ -1485,5 +1491,5 @@ void KABCore::addActionsManually() | |||
1485 | mActionSelectAll->plug( editMenu ); | 1491 | mActionSelectAll->plug( editMenu ); |
1486 | 1492 | ||
1487 | 1493 | mActionRemoveVoice->plug( changeMenu ); | |
1488 | // settings menu | 1494 | // settings menu |
1489 | //US special menuentry to configure the addressbook resources. On KDE | 1495 | //US special menuentry to configure the addressbook resources. On KDE |
@@ -1545,4 +1551,28 @@ void KABCore::addActionsManually() | |||
1545 | #endif //KAB_EMBEDDED | 1551 | #endif //KAB_EMBEDDED |
1546 | } | 1552 | } |
1553 | void KABCore::removeVoice() | ||
1554 | { | ||
1555 | if ( KMessageBox::questionYesNo( this, i18n("After importing, phone numbers\nmay have two or more types.\n(E.g. work+voice)\nThese numbers are shown as \"other\".\nClick Yes to remove the voice type\nfrom numbers with more than one type.\n\nRemove voice type?") ) == KMessageBox::No ) | ||
1556 | return; | ||
1557 | KABC::Addressee::List list = mViewManager->selectedAddressees(); | ||
1558 | KABC::Addressee::List::Iterator it; | ||
1559 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
1560 | PhoneNumber::List phoneNumbers = (*it).phoneNumbers(); | ||
1561 | PhoneNumber::List::Iterator phoneIt; | ||
1562 | bool found = false; | ||
1563 | for ( phoneIt = phoneNumbers.begin(); phoneIt != phoneNumbers.end(); ++phoneIt ) { | ||
1564 | if ( (*phoneIt).type() & PhoneNumber::Voice) { // voice found | ||
1565 | if ((*phoneIt).type() - PhoneNumber::Voice ) { | ||
1566 | (*phoneIt).setType((*phoneIt).type() - PhoneNumber::Voice ); | ||
1567 | (*it).insertPhoneNumber( (*phoneIt) ); | ||
1568 | found = true; | ||
1569 | } | ||
1570 | } | ||
1571 | |||
1572 | } | ||
1573 | if ( found ) | ||
1574 | contactModified((*it) ); | ||
1575 | } | ||
1576 | } | ||
1547 | 1577 | ||
1548 | 1578 | ||
diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index c823f1f..8d6041e 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h | |||
@@ -324,4 +324,5 @@ class KABCore : public QWidget | |||
324 | void updateActionMenu(); | 324 | void updateActionMenu(); |
325 | void configureKeyBindings(); | 325 | void configureKeyBindings(); |
326 | void removeVoice(); | ||
326 | #ifdef KAB_EMBEDDED | 327 | #ifdef KAB_EMBEDDED |
327 | void configureResources(); | 328 | void configureResources(); |
@@ -401,8 +402,11 @@ class KABCore : public QWidget | |||
401 | QPopupMenu *filterMenu; | 402 | QPopupMenu *filterMenu; |
402 | QPopupMenu *settingsMenu; | 403 | QPopupMenu *settingsMenu; |
404 | QPopupMenu *changeMenu; | ||
403 | 405 | ||
404 | //US QAction *mActionSave; | 406 | //US QAction *mActionSave; |
405 | QPopupMenu *ImportMenu; | 407 | QPopupMenu *ImportMenu; |
406 | QPopupMenu *ExportMenu; | 408 | QPopupMenu *ExportMenu; |
409 | //LR additional methods | ||
410 | KAction *mActionRemoveVoice; | ||
407 | 411 | ||
408 | #ifndef KAB_EMBEDDED | 412 | #ifndef KAB_EMBEDDED |