author | zautrix <zautrix> | 2004-07-07 05:51:36 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-07 05:51:36 (UTC) |
commit | c9c0fefaead651c073318e8242d86675519dbcf6 (patch) (unidiff) | |
tree | c8d9f167973e7bdbf4a3c97a4c6ec1e631f819fe /kaddressbook | |
parent | 816db8f76a1fd8b5cc586dfd5ebf8d6298221801 (diff) | |
download | kdepimpi-c9c0fefaead651c073318e8242d86675519dbcf6.zip kdepimpi-c9c0fefaead651c073318e8242d86675519dbcf6.tar.gz kdepimpi-c9c0fefaead651c073318e8242d86675519dbcf6.tar.bz2 |
Added possibility to remove voice from phone types
-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 | |||
@@ -1121,48 +1121,49 @@ void KABCore::initGUI() | |||
1121 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1121 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1122 | 1122 | ||
1123 | mDetails = new ViewContainer( mDetailsSplitter ); | 1123 | mDetails = new ViewContainer( mDetailsSplitter ); |
1124 | 1124 | ||
1125 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1125 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1126 | 1126 | ||
1127 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1127 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1128 | 1128 | ||
1129 | topLayout->addWidget( mExtensionBarSplitter ); | 1129 | topLayout->addWidget( mExtensionBarSplitter ); |
1130 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); | 1130 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); |
1131 | topLayout->addWidget( mJumpButtonBar ); | 1131 | topLayout->addWidget( mJumpButtonBar ); |
1132 | topLayout->setStretchFactor( mJumpButtonBar, 1 ); | 1132 | topLayout->setStretchFactor( mJumpButtonBar, 1 ); |
1133 | 1133 | ||
1134 | mXXPortManager = new XXPortManager( this, this ); | 1134 | mXXPortManager = new XXPortManager( this, this ); |
1135 | 1135 | ||
1136 | #else //KAB_EMBEDDED | 1136 | #else //KAB_EMBEDDED |
1137 | //US initialize viewMenu before settingup viewmanager. | 1137 | //US initialize viewMenu before settingup viewmanager. |
1138 | // Viewmanager needs this menu to plugin submenues. | 1138 | // Viewmanager needs this menu to plugin submenues. |
1139 | viewMenu = new QPopupMenu( this ); | 1139 | viewMenu = new QPopupMenu( this ); |
1140 | settingsMenu = new QPopupMenu( this ); | 1140 | settingsMenu = new QPopupMenu( this ); |
1141 | //filterMenu = new QPopupMenu( this ); | 1141 | //filterMenu = new QPopupMenu( this ); |
1142 | ImportMenu = new QPopupMenu( this ); | 1142 | ImportMenu = new QPopupMenu( this ); |
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 |
1147 | // a layout with two frames. One left and one right. | 1148 | // a layout with two frames. One left and one right. |
1148 | 1149 | ||
1149 | QBoxLayout *topLayout; | 1150 | QBoxLayout *topLayout; |
1150 | 1151 | ||
1151 | // = new QHBoxLayout( this ); | 1152 | // = new QHBoxLayout( this ); |
1152 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); | 1153 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); |
1153 | 1154 | ||
1154 | // QWidget *mainBox = new QWidget( this ); | 1155 | // QWidget *mainBox = new QWidget( this ); |
1155 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); | 1156 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); |
1156 | 1157 | ||
1157 | #ifdef DESKTOP_VERSION | 1158 | #ifdef DESKTOP_VERSION |
1158 | topLayout = new QHBoxLayout( this ); | 1159 | topLayout = new QHBoxLayout( this ); |
1159 | 1160 | ||
1160 | 1161 | ||
1161 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); | 1162 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); |
1162 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 1163 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
1163 | 1164 | ||
1164 | topLayout->addWidget(mMiniSplitter ); | 1165 | topLayout->addWidget(mMiniSplitter ); |
1165 | 1166 | ||
1166 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); | 1167 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); |
1167 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); | 1168 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); |
1168 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); | 1169 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); |
@@ -1372,140 +1373,145 @@ void KABCore::initActions() | |||
1372 | actionCollection(), "options_show_details" ); | 1373 | actionCollection(), "options_show_details" ); |
1373 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); | 1374 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); |
1374 | 1375 | ||
1375 | // misc | 1376 | // misc |
1376 | // only enable LDAP lookup if we can handle the protocol | 1377 | // only enable LDAP lookup if we can handle the protocol |
1377 | #ifndef KAB_EMBEDDED | 1378 | #ifndef KAB_EMBEDDED |
1378 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { | 1379 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { |
1379 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, | 1380 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, |
1380 | this, SLOT( openLDAPDialog() ), actionCollection(), | 1381 | this, SLOT( openLDAPDialog() ), actionCollection(), |
1381 | "ldap_lookup" ); | 1382 | "ldap_lookup" ); |
1382 | } | 1383 | } |
1383 | #else //KAB_EMBEDDED | 1384 | #else //KAB_EMBEDDED |
1384 | //qDebug("KABCore::initActions() LDAP has to be implemented"); | 1385 | //qDebug("KABCore::initActions() LDAP has to be implemented"); |
1385 | #endif //KAB_EMBEDDED | 1386 | #endif //KAB_EMBEDDED |
1386 | 1387 | ||
1387 | 1388 | ||
1388 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, | 1389 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, |
1389 | SLOT( setWhoAmI() ), actionCollection(), | 1390 | SLOT( setWhoAmI() ), actionCollection(), |
1390 | "set_personal" ); | 1391 | "set_personal" ); |
1391 | 1392 | ||
1392 | mActionCategories = new KAction( i18n( "Set Categories" ), 0, this, | 1393 | mActionCategories = new KAction( i18n( "Set Categories" ), 0, this, |
1393 | SLOT( setCategories() ), actionCollection(), | 1394 | SLOT( setCategories() ), actionCollection(), |
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 | ||
1398 | mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, | 1402 | mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, |
1399 | this, SLOT( createAboutData() ), actionCollection(), | 1403 | this, SLOT( createAboutData() ), actionCollection(), |
1400 | "kaddressbook_about_data" ); | 1404 | "kaddressbook_about_data" ); |
1401 | #endif //KAB_EMBEDDED | 1405 | #endif //KAB_EMBEDDED |
1402 | 1406 | ||
1403 | clipboardDataChanged(); | 1407 | clipboardDataChanged(); |
1404 | connect( UndoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); | 1408 | connect( UndoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); |
1405 | connect( RedoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); | 1409 | connect( RedoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); |
1406 | } | 1410 | } |
1407 | 1411 | ||
1408 | //US we need this function, to plug all actions into the correct menues. | 1412 | //US we need this function, to plug all actions into the correct menues. |
1409 | // KDE uses a XML format to plug the actions, but we work her without this overhead. | 1413 | // KDE uses a XML format to plug the actions, but we work her without this overhead. |
1410 | void KABCore::addActionsManually() | 1414 | void KABCore::addActionsManually() |
1411 | { | 1415 | { |
1412 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); | 1416 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); |
1413 | 1417 | ||
1414 | #ifdef KAB_EMBEDDED | 1418 | #ifdef KAB_EMBEDDED |
1415 | QPopupMenu *fileMenu = new QPopupMenu( this ); | 1419 | QPopupMenu *fileMenu = new QPopupMenu( this ); |
1416 | QPopupMenu *editMenu = new QPopupMenu( this ); | 1420 | QPopupMenu *editMenu = new QPopupMenu( this ); |
1417 | QPopupMenu *helpMenu = new QPopupMenu( this ); | 1421 | QPopupMenu *helpMenu = new QPopupMenu( this ); |
1418 | 1422 | ||
1419 | KToolBar* tb = mMainWindow->toolBar(); | 1423 | KToolBar* tb = mMainWindow->toolBar(); |
1420 | 1424 | ||
1421 | #ifdef DESKTOP_VERSION | 1425 | #ifdef DESKTOP_VERSION |
1422 | QMenuBar* mb = mMainWindow->menuBar(); | 1426 | QMenuBar* mb = mMainWindow->menuBar(); |
1423 | 1427 | ||
1424 | //US setup menubar. | 1428 | //US setup menubar. |
1425 | //Disable the following block if you do not want to have a menubar. | 1429 | //Disable the following block if you do not want to have a menubar. |
1426 | mb->insertItem( "&File", fileMenu ); | 1430 | mb->insertItem( "&File", fileMenu ); |
1427 | mb->insertItem( "&Edit", editMenu ); | 1431 | mb->insertItem( "&Edit", editMenu ); |
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 ); |
1432 | // tb->insertWidget(-1, 0, mIncSearchWidget); | 1437 | // tb->insertWidget(-1, 0, mIncSearchWidget); |
1433 | 1438 | ||
1434 | #else | 1439 | #else |
1435 | //US setup toolbar | 1440 | //US setup toolbar |
1436 | QMenuBar *menuBarTB = new QMenuBar( tb ); | 1441 | QMenuBar *menuBarTB = new QMenuBar( tb ); |
1437 | QPopupMenu *popupBarTB = new QPopupMenu( this ); | 1442 | QPopupMenu *popupBarTB = new QPopupMenu( this ); |
1438 | menuBarTB->insertItem( "ME", popupBarTB); | 1443 | menuBarTB->insertItem( "ME", popupBarTB); |
1439 | tb->insertWidget(-1, 0, menuBarTB); | 1444 | tb->insertWidget(-1, 0, menuBarTB); |
1440 | mIncSearchWidget = new IncSearchWidget( tb ); | 1445 | mIncSearchWidget = new IncSearchWidget( tb ); |
1441 | 1446 | ||
1442 | tb->enableMoving(false); | 1447 | tb->enableMoving(false); |
1443 | popupBarTB->insertItem( "&File", fileMenu ); | 1448 | popupBarTB->insertItem( "&File", fileMenu ); |
1444 | popupBarTB->insertItem( "&Edit", editMenu ); | 1449 | popupBarTB->insertItem( "&Edit", editMenu ); |
1445 | popupBarTB->insertItem( "&View", viewMenu ); | 1450 | popupBarTB->insertItem( "&View", viewMenu ); |
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 ) { |
1450 | // mViewManager->getFilterAction()->plug ( tb); | 1456 | // mViewManager->getFilterAction()->plug ( tb); |
1451 | } | 1457 | } |
1452 | #endif | 1458 | #endif |
1453 | // mActionQuit->plug ( mMainWindow->toolBar()); | 1459 | // mActionQuit->plug ( mMainWindow->toolBar()); |
1454 | 1460 | ||
1455 | 1461 | ||
1456 | 1462 | ||
1457 | //US Now connect the actions with the menue entries. | 1463 | //US Now connect the actions with the menue entries. |
1458 | mActionPrint->plug( fileMenu ); | 1464 | mActionPrint->plug( fileMenu ); |
1459 | mActionMail->plug( fileMenu ); | 1465 | mActionMail->plug( fileMenu ); |
1460 | fileMenu->insertSeparator(); | 1466 | fileMenu->insertSeparator(); |
1461 | 1467 | ||
1462 | mActionNewContact->plug( fileMenu ); | 1468 | mActionNewContact->plug( fileMenu ); |
1463 | mActionNewContact->plug( tb ); | 1469 | mActionNewContact->plug( tb ); |
1464 | 1470 | ||
1465 | mActionEditAddressee->plug( fileMenu ); | 1471 | mActionEditAddressee->plug( fileMenu ); |
1466 | fileMenu->insertSeparator(); | 1472 | fileMenu->insertSeparator(); |
1467 | mActionSave->plug( fileMenu ); | 1473 | mActionSave->plug( fileMenu ); |
1468 | fileMenu->insertItem( "&Import", ImportMenu ); | 1474 | fileMenu->insertItem( "&Import", ImportMenu ); |
1469 | fileMenu->insertItem( "&Emport", ExportMenu ); | 1475 | fileMenu->insertItem( "&Emport", ExportMenu ); |
1470 | fileMenu->insertSeparator(); | 1476 | fileMenu->insertSeparator(); |
1471 | mActionMailVCard->plug( fileMenu ); | 1477 | mActionMailVCard->plug( fileMenu ); |
1472 | fileMenu->insertSeparator(); | 1478 | fileMenu->insertSeparator(); |
1473 | mActionQuit->plug( fileMenu ); | 1479 | mActionQuit->plug( fileMenu ); |
1474 | 1480 | ||
1475 | 1481 | ||
1476 | // edit menu | 1482 | // edit menu |
1477 | mActionUndo->plug( editMenu ); | 1483 | mActionUndo->plug( editMenu ); |
1478 | mActionRedo->plug( editMenu ); | 1484 | mActionRedo->plug( editMenu ); |
1479 | editMenu->insertSeparator(); | 1485 | editMenu->insertSeparator(); |
1480 | mActionCut->plug( editMenu ); | 1486 | mActionCut->plug( editMenu ); |
1481 | mActionCopy->plug( editMenu ); | 1487 | mActionCopy->plug( editMenu ); |
1482 | mActionPaste->plug( editMenu ); | 1488 | mActionPaste->plug( editMenu ); |
1483 | mActionDelete->plug( editMenu ); | 1489 | mActionDelete->plug( editMenu ); |
1484 | editMenu->insertSeparator(); | 1490 | editMenu->insertSeparator(); |
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 |
1490 | // you do that through the control center !!! | 1496 | // you do that through the control center !!! |
1491 | mActionConfigResources->plug( settingsMenu ); | 1497 | mActionConfigResources->plug( settingsMenu ); |
1492 | settingsMenu->insertSeparator(); | 1498 | settingsMenu->insertSeparator(); |
1493 | 1499 | ||
1494 | mActionConfigKAddressbook->plug( settingsMenu ); | 1500 | mActionConfigKAddressbook->plug( settingsMenu ); |
1495 | 1501 | ||
1496 | if ( mIsPart ) { | 1502 | if ( mIsPart ) { |
1497 | mActionConfigShortcuts->plug( settingsMenu ); | 1503 | mActionConfigShortcuts->plug( settingsMenu ); |
1498 | mActionConfigureToolbars->plug( settingsMenu ); | 1504 | mActionConfigureToolbars->plug( settingsMenu ); |
1499 | 1505 | ||
1500 | } else { | 1506 | } else { |
1501 | mActionKeyBindings->plug( settingsMenu ); | 1507 | mActionKeyBindings->plug( settingsMenu ); |
1502 | } | 1508 | } |
1503 | 1509 | ||
1504 | settingsMenu->insertSeparator(); | 1510 | settingsMenu->insertSeparator(); |
1505 | 1511 | ||
1506 | mActionJumpBar->plug( settingsMenu ); | 1512 | mActionJumpBar->plug( settingsMenu ); |
1507 | mActionDetails->plug( settingsMenu ); | 1513 | mActionDetails->plug( settingsMenu ); |
1508 | settingsMenu->insertSeparator(); | 1514 | settingsMenu->insertSeparator(); |
1509 | 1515 | ||
1510 | mActionWhoAmI->plug( settingsMenu ); | 1516 | mActionWhoAmI->plug( settingsMenu ); |
1511 | mActionCategories->plug( settingsMenu ); | 1517 | mActionCategories->plug( settingsMenu ); |
@@ -1523,48 +1529,72 @@ void KABCore::addActionsManually() | |||
1523 | mActionDelete->plug( tb ); | 1529 | mActionDelete->plug( tb ); |
1524 | mActionRedo->plug( tb ); | 1530 | mActionRedo->plug( tb ); |
1525 | } | 1531 | } |
1526 | } | 1532 | } |
1527 | //mActionQuit->plug ( tb ); | 1533 | //mActionQuit->plug ( tb ); |
1528 | // tb->insertWidget(-1, 0, mIncSearchWidget, 6); | 1534 | // tb->insertWidget(-1, 0, mIncSearchWidget, 6); |
1529 | 1535 | ||
1530 | //US link the searchwidget first to this. | 1536 | //US link the searchwidget first to this. |
1531 | // The real linkage to the toolbar happens later. | 1537 | // The real linkage to the toolbar happens later. |
1532 | //US mIncSearchWidget->reparent(tb, 0, QPoint(50,0), TRUE); | 1538 | //US mIncSearchWidget->reparent(tb, 0, QPoint(50,0), TRUE); |
1533 | //US tb->insertItem( mIncSearchWidget ); | 1539 | //US tb->insertItem( mIncSearchWidget ); |
1534 | /*US | 1540 | /*US |
1535 | mIncSearchWidget = new IncSearchWidget( tb ); | 1541 | mIncSearchWidget = new IncSearchWidget( tb ); |
1536 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 1542 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
1537 | SLOT( incrementalSearch( const QString& ) ) ); | 1543 | SLOT( incrementalSearch( const QString& ) ) ); |
1538 | 1544 | ||
1539 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1545 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1540 | 1546 | ||
1541 | //US topLayout->addWidget( mJumpButtonBar ); | 1547 | //US topLayout->addWidget( mJumpButtonBar ); |
1542 | this->layout()->add( mJumpButtonBar ); | 1548 | this->layout()->add( mJumpButtonBar ); |
1543 | */ | 1549 | */ |
1544 | 1550 | ||
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 | ||
1549 | 1579 | ||
1550 | void KABCore::clipboardDataChanged() | 1580 | void KABCore::clipboardDataChanged() |
1551 | { | 1581 | { |
1552 | 1582 | ||
1553 | if ( mReadWrite ) | 1583 | if ( mReadWrite ) |
1554 | mActionPaste->setEnabled( !QApplication::clipboard()->text().isEmpty() ); | 1584 | mActionPaste->setEnabled( !QApplication::clipboard()->text().isEmpty() ); |
1555 | 1585 | ||
1556 | } | 1586 | } |
1557 | 1587 | ||
1558 | void KABCore::updateActionMenu() | 1588 | void KABCore::updateActionMenu() |
1559 | { | 1589 | { |
1560 | UndoStack *undo = UndoStack::instance(); | 1590 | UndoStack *undo = UndoStack::instance(); |
1561 | RedoStack *redo = RedoStack::instance(); | 1591 | RedoStack *redo = RedoStack::instance(); |
1562 | 1592 | ||
1563 | if ( undo->isEmpty() ) | 1593 | if ( undo->isEmpty() ) |
1564 | mActionUndo->setText( i18n( "Undo" ) ); | 1594 | mActionUndo->setText( i18n( "Undo" ) ); |
1565 | else | 1595 | else |
1566 | mActionUndo->setText( i18n( "Undo %1" ).arg( undo->top()->name() ) ); | 1596 | mActionUndo->setText( i18n( "Undo %1" ).arg( undo->top()->name() ) ); |
1567 | 1597 | ||
1568 | mActionUndo->setEnabled( !undo->isEmpty() ); | 1598 | mActionUndo->setEnabled( !undo->isEmpty() ); |
1569 | 1599 | ||
1570 | if ( !redo->top() ) | 1600 | if ( !redo->top() ) |
diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index c823f1f..8d6041e 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h | |||
@@ -302,48 +302,49 @@ class KABCore : public QWidget | |||
302 | /** | 302 | /** |
303 | Creates a KAddressBookPrinter, which will display the print | 303 | Creates a KAddressBookPrinter, which will display the print |
304 | dialog and do the printing. | 304 | dialog and do the printing. |
305 | */ | 305 | */ |
306 | void print(); | 306 | void print(); |
307 | 307 | ||
308 | /** | 308 | /** |
309 | Registers a new GUI client, so plugins can register its actions. | 309 | Registers a new GUI client, so plugins can register its actions. |
310 | */ | 310 | */ |
311 | void addGUIClient( KXMLGUIClient *client ); | 311 | void addGUIClient( KXMLGUIClient *client ); |
312 | 312 | ||
313 | signals: | 313 | signals: |
314 | void contactSelected( const QString &name ); | 314 | void contactSelected( const QString &name ); |
315 | void contactSelected( const QPixmap &pixmap ); | 315 | void contactSelected( const QPixmap &pixmap ); |
316 | public slots: | 316 | public slots: |
317 | void setDetailsVisible( bool visible ); | 317 | void setDetailsVisible( bool visible ); |
318 | void setDetailsToState(); | 318 | void setDetailsToState(); |
319 | private slots: | 319 | private slots: |
320 | void setJumpButtonBarVisible( bool visible ); | 320 | void setJumpButtonBarVisible( bool visible ); |
321 | 321 | ||
322 | void extensionModified( const KABC::Addressee::List &list ); | 322 | void extensionModified( const KABC::Addressee::List &list ); |
323 | void clipboardDataChanged(); | 323 | void clipboardDataChanged(); |
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(); |
328 | #endif //KAB_EMBEDDED | 329 | #endif //KAB_EMBEDDED |
329 | 330 | ||
330 | void slotEditorDestroyed( const QString &uid ); | 331 | void slotEditorDestroyed( const QString &uid ); |
331 | void configurationChanged(); | 332 | void configurationChanged(); |
332 | void addressBookChanged(); | 333 | void addressBookChanged(); |
333 | 334 | ||
334 | private: | 335 | private: |
335 | void initGUI(); | 336 | void initGUI(); |
336 | void initActions(); | 337 | void initActions(); |
337 | 338 | ||
338 | AddresseeEditorDialog *createAddresseeEditorDialog( QWidget *parent, | 339 | AddresseeEditorDialog *createAddresseeEditorDialog( QWidget *parent, |
339 | const char *name = 0 ); | 340 | const char *name = 0 ); |
340 | 341 | ||
341 | KXMLGUIClient *mGUIClient; | 342 | KXMLGUIClient *mGUIClient; |
342 | 343 | ||
343 | KABC::AddressBook *mAddressBook; | 344 | KABC::AddressBook *mAddressBook; |
344 | 345 | ||
345 | ViewManager *mViewManager; | 346 | ViewManager *mViewManager; |
346 | // QSplitter *mDetailsSplitter; | 347 | // QSplitter *mDetailsSplitter; |
347 | KDGanttMinimizeSplitter *mExtensionBarSplitter; | 348 | KDGanttMinimizeSplitter *mExtensionBarSplitter; |
348 | ViewContainer *mDetails; | 349 | ViewContainer *mDetails; |
349 | KDGanttMinimizeSplitter* mMiniSplitter; | 350 | KDGanttMinimizeSplitter* mMiniSplitter; |
@@ -379,43 +380,46 @@ class KABCore : public QWidget | |||
379 | KAction *mActionCut; | 380 | KAction *mActionCut; |
380 | KAction *mActionPaste; | 381 | KAction *mActionPaste; |
381 | KAction *mActionSelectAll; | 382 | KAction *mActionSelectAll; |
382 | KAction *mActionUndo; | 383 | KAction *mActionUndo; |
383 | KAction *mActionRedo; | 384 | KAction *mActionRedo; |
384 | KAction *mActionDelete; | 385 | KAction *mActionDelete; |
385 | 386 | ||
386 | //US settings menu | 387 | //US settings menu |
387 | KAction *mActionConfigResources; | 388 | KAction *mActionConfigResources; |
388 | KAction *mActionConfigKAddressbook; | 389 | KAction *mActionConfigKAddressbook; |
389 | KAction *mActionConfigShortcuts; | 390 | KAction *mActionConfigShortcuts; |
390 | KAction *mActionConfigureToolbars; | 391 | KAction *mActionConfigureToolbars; |
391 | KAction *mActionKeyBindings; | 392 | KAction *mActionKeyBindings; |
392 | KToggleAction *mActionJumpBar; | 393 | KToggleAction *mActionJumpBar; |
393 | KToggleAction *mActionDetails; | 394 | KToggleAction *mActionDetails; |
394 | KAction *mActionWhoAmI; | 395 | KAction *mActionWhoAmI; |
395 | KAction *mActionCategories; | 396 | KAction *mActionCategories; |
396 | KAction *mActionAboutKAddressbook; | 397 | KAction *mActionAboutKAddressbook; |
397 | 398 | ||
398 | KAction *mActionDeleteView; | 399 | KAction *mActionDeleteView; |
399 | 400 | ||
400 | QPopupMenu *viewMenu; | 401 | QPopupMenu *viewMenu; |
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 |
409 | KAddressBookService *mAddressBookService; | 413 | KAddressBookService *mAddressBookService; |
410 | #endif //KAB_EMBEDDED | 414 | #endif //KAB_EMBEDDED |
411 | 415 | ||
412 | class KABCorePrivate; | 416 | class KABCorePrivate; |
413 | KABCorePrivate *d; | 417 | KABCorePrivate *d; |
414 | 418 | ||
415 | #ifdef KAB_EMBEDDED | 419 | #ifdef KAB_EMBEDDED |
416 | KAddressBookMain *mMainWindow; // should be the same like mGUIClient | 420 | KAddressBookMain *mMainWindow; // should be the same like mGUIClient |
417 | #endif //KAB_EMBEDDED | 421 | #endif //KAB_EMBEDDED |
418 | 422 | ||
419 | }; | 423 | }; |
420 | 424 | ||
421 | #endif | 425 | #endif |