author | zautrix <zautrix> | 2005-02-09 20:56:06 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-09 20:56:06 (UTC) |
commit | ab7725c4517a1f6c145075edcff0bdafe105f0ea (patch) (unidiff) | |
tree | e1a230bcb5c31ca695bbebc40ff80874f2f13380 /kaddressbook | |
parent | a9eff860d8399a198a9fdc04e09ed369097fc745 (diff) | |
download | kdepimpi-ab7725c4517a1f6c145075edcff0bdafe105f0ea.zip kdepimpi-ab7725c4517a1f6c145075edcff0bdafe105f0ea.tar.gz kdepimpi-ab7725c4517a1f6c145075edcff0bdafe105f0ea.tar.bz2 |
fixes
-rw-r--r-- | kaddressbook/kabcore.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index a8e4de5..1b17665 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1601,1729 +1601,1730 @@ void KABCore::openConfigDialog() | |||
1601 | this, SLOT( configurationChanged() ) ); | 1601 | this, SLOT( configurationChanged() ) ); |
1602 | saveSettings(); | 1602 | saveSettings(); |
1603 | #ifndef DESKTOP_VERSION | 1603 | #ifndef DESKTOP_VERSION |
1604 | ConfigureDialog->showMaximized(); | 1604 | ConfigureDialog->showMaximized(); |
1605 | #endif | 1605 | #endif |
1606 | if ( ConfigureDialog->exec() ) | 1606 | if ( ConfigureDialog->exec() ) |
1607 | KMessageBox::information( this, i18n("Some changes are only\neffective after a restart!\n") ); | 1607 | KMessageBox::information( this, i18n("Some changes are only\neffective after a restart!\n") ); |
1608 | delete ConfigureDialog; | 1608 | delete ConfigureDialog; |
1609 | } | 1609 | } |
1610 | 1610 | ||
1611 | void KABCore::openLDAPDialog() | 1611 | void KABCore::openLDAPDialog() |
1612 | { | 1612 | { |
1613 | #ifndef KAB_EMBEDDED | 1613 | #ifndef KAB_EMBEDDED |
1614 | if ( !mLdapSearchDialog ) { | 1614 | if ( !mLdapSearchDialog ) { |
1615 | mLdapSearchDialog = new LDAPSearchDialog( mAddressBook, this ); | 1615 | mLdapSearchDialog = new LDAPSearchDialog( mAddressBook, this ); |
1616 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), mViewManager, | 1616 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), mViewManager, |
1617 | SLOT( refreshView() ) ); | 1617 | SLOT( refreshView() ) ); |
1618 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), this, | 1618 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), this, |
1619 | SLOT( setModified() ) ); | 1619 | SLOT( setModified() ) ); |
1620 | } else | 1620 | } else |
1621 | mLdapSearchDialog->restoreSettings(); | 1621 | mLdapSearchDialog->restoreSettings(); |
1622 | 1622 | ||
1623 | if ( mLdapSearchDialog->isOK() ) | 1623 | if ( mLdapSearchDialog->isOK() ) |
1624 | mLdapSearchDialog->exec(); | 1624 | mLdapSearchDialog->exec(); |
1625 | #else //KAB_EMBEDDED | 1625 | #else //KAB_EMBEDDED |
1626 | qDebug("KABCore::openLDAPDialog() finsih method"); | 1626 | qDebug("KABCore::openLDAPDialog() finsih method"); |
1627 | #endif //KAB_EMBEDDED | 1627 | #endif //KAB_EMBEDDED |
1628 | } | 1628 | } |
1629 | 1629 | ||
1630 | void KABCore::print() | 1630 | void KABCore::print() |
1631 | { | 1631 | { |
1632 | #ifndef KAB_EMBEDDED | 1632 | #ifndef KAB_EMBEDDED |
1633 | KPrinter printer; | 1633 | KPrinter printer; |
1634 | if ( !printer.setup( this ) ) | 1634 | if ( !printer.setup( this ) ) |
1635 | return; | 1635 | return; |
1636 | 1636 | ||
1637 | KABPrinting::PrintingWizard wizard( &printer, mAddressBook, | 1637 | KABPrinting::PrintingWizard wizard( &printer, mAddressBook, |
1638 | mViewManager->selectedUids(), this ); | 1638 | mViewManager->selectedUids(), this ); |
1639 | 1639 | ||
1640 | wizard.exec(); | 1640 | wizard.exec(); |
1641 | #else //KAB_EMBEDDED | 1641 | #else //KAB_EMBEDDED |
1642 | qDebug("KABCore::print() finsih method"); | 1642 | qDebug("KABCore::print() finsih method"); |
1643 | #endif //KAB_EMBEDDED | 1643 | #endif //KAB_EMBEDDED |
1644 | 1644 | ||
1645 | } | 1645 | } |
1646 | 1646 | ||
1647 | 1647 | ||
1648 | void KABCore::addGUIClient( KXMLGUIClient *client ) | 1648 | void KABCore::addGUIClient( KXMLGUIClient *client ) |
1649 | { | 1649 | { |
1650 | if ( mGUIClient ) | 1650 | if ( mGUIClient ) |
1651 | mGUIClient->insertChildClient( client ); | 1651 | mGUIClient->insertChildClient( client ); |
1652 | else | 1652 | else |
1653 | KMessageBox::error( this, "no KXMLGUICLient"); | 1653 | KMessageBox::error( this, "no KXMLGUICLient"); |
1654 | } | 1654 | } |
1655 | 1655 | ||
1656 | 1656 | ||
1657 | void KABCore::configurationChanged() | 1657 | void KABCore::configurationChanged() |
1658 | { | 1658 | { |
1659 | mExtensionManager->reconfigure(); | 1659 | mExtensionManager->reconfigure(); |
1660 | } | 1660 | } |
1661 | 1661 | ||
1662 | void KABCore::addressBookChanged() | 1662 | void KABCore::addressBookChanged() |
1663 | { | 1663 | { |
1664 | /*US | 1664 | /*US |
1665 | QDictIterator<AddresseeEditorDialog> it( mEditorDict ); | 1665 | QDictIterator<AddresseeEditorDialog> it( mEditorDict ); |
1666 | while ( it.current() ) { | 1666 | while ( it.current() ) { |
1667 | if ( it.current()->dirty() ) { | 1667 | if ( it.current()->dirty() ) { |
1668 | QString text = i18n( "Data has been changed externally. Unsaved " | 1668 | QString text = i18n( "Data has been changed externally. Unsaved " |
1669 | "changes will be lost." ); | 1669 | "changes will be lost." ); |
1670 | KMessageBox::information( this, text ); | 1670 | KMessageBox::information( this, text ); |
1671 | } | 1671 | } |
1672 | it.current()->setAddressee( mAddressBook->findByUid( it.currentKey() ) ); | 1672 | it.current()->setAddressee( mAddressBook->findByUid( it.currentKey() ) ); |
1673 | ++it; | 1673 | ++it; |
1674 | } | 1674 | } |
1675 | */ | 1675 | */ |
1676 | if (mEditorDialog) | 1676 | if (mEditorDialog) |
1677 | { | 1677 | { |
1678 | if (mEditorDialog->dirty()) | 1678 | if (mEditorDialog->dirty()) |
1679 | { | 1679 | { |
1680 | QString text = i18n( "Data has been changed externally. Unsaved " | 1680 | QString text = i18n( "Data has been changed externally. Unsaved " |
1681 | "changes will be lost." ); | 1681 | "changes will be lost." ); |
1682 | KMessageBox::information( this, text ); | 1682 | KMessageBox::information( this, text ); |
1683 | } | 1683 | } |
1684 | QString currentuid = mEditorDialog->addressee().uid(); | 1684 | QString currentuid = mEditorDialog->addressee().uid(); |
1685 | mEditorDialog->setAddressee( mAddressBook->findByUid( currentuid ) ); | 1685 | mEditorDialog->setAddressee( mAddressBook->findByUid( currentuid ) ); |
1686 | } | 1686 | } |
1687 | mViewManager->refreshView(); | 1687 | mViewManager->refreshView(); |
1688 | 1688 | ||
1689 | 1689 | ||
1690 | } | 1690 | } |
1691 | 1691 | ||
1692 | AddresseeEditorDialog *KABCore::createAddresseeEditorDialog( QWidget *parent, | 1692 | AddresseeEditorDialog *KABCore::createAddresseeEditorDialog( QWidget *parent, |
1693 | const char *name ) | 1693 | const char *name ) |
1694 | { | 1694 | { |
1695 | 1695 | ||
1696 | if ( mEditorDialog == 0 ) { | 1696 | if ( mEditorDialog == 0 ) { |
1697 | mEditorDialog = new AddresseeEditorDialog( this, parent, | 1697 | mEditorDialog = new AddresseeEditorDialog( this, parent, |
1698 | name ? name : "editorDialog" ); | 1698 | name ? name : "editorDialog" ); |
1699 | 1699 | ||
1700 | 1700 | ||
1701 | connect( mEditorDialog, SIGNAL( contactModified( const KABC::Addressee& ) ), | 1701 | connect( mEditorDialog, SIGNAL( contactModified( const KABC::Addressee& ) ), |
1702 | SLOT( contactModified( const KABC::Addressee& ) ) ); | 1702 | SLOT( contactModified( const KABC::Addressee& ) ) ); |
1703 | //connect( mEditorDialog, SIGNAL( editorDestroyed( const QString& ) ), | 1703 | //connect( mEditorDialog, SIGNAL( editorDestroyed( const QString& ) ), |
1704 | // SLOT( slotEditorDestroyed( const QString& ) ) ; | 1704 | // SLOT( slotEditorDestroyed( const QString& ) ) ; |
1705 | } | 1705 | } |
1706 | 1706 | ||
1707 | return mEditorDialog; | 1707 | return mEditorDialog; |
1708 | } | 1708 | } |
1709 | 1709 | ||
1710 | void KABCore::slotEditorDestroyed( const QString &uid ) | 1710 | void KABCore::slotEditorDestroyed( const QString &uid ) |
1711 | { | 1711 | { |
1712 | //mEditorDict.remove( uid ); | 1712 | //mEditorDict.remove( uid ); |
1713 | } | 1713 | } |
1714 | 1714 | ||
1715 | void KABCore::initGUI() | 1715 | void KABCore::initGUI() |
1716 | { | 1716 | { |
1717 | #ifndef KAB_EMBEDDED | 1717 | #ifndef KAB_EMBEDDED |
1718 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1718 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1719 | topLayout->setSpacing( KDialogBase::spacingHint() ); | 1719 | topLayout->setSpacing( KDialogBase::spacingHint() ); |
1720 | 1720 | ||
1721 | mExtensionBarSplitter = new QSplitter( this ); | 1721 | mExtensionBarSplitter = new QSplitter( this ); |
1722 | mExtensionBarSplitter->setOrientation( Qt::Vertical ); | 1722 | mExtensionBarSplitter->setOrientation( Qt::Vertical ); |
1723 | 1723 | ||
1724 | mDetailsSplitter = new QSplitter( mExtensionBarSplitter ); | 1724 | mDetailsSplitter = new QSplitter( mExtensionBarSplitter ); |
1725 | 1725 | ||
1726 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); | 1726 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); |
1727 | mIncSearchWidget = new IncSearchWidget( viewSpace ); | 1727 | mIncSearchWidget = new IncSearchWidget( viewSpace ); |
1728 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 1728 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
1729 | SLOT( incrementalSearch( const QString& ) ) ); | 1729 | SLOT( incrementalSearch( const QString& ) ) ); |
1730 | 1730 | ||
1731 | mViewManager = new ViewManager( this, viewSpace ); | 1731 | mViewManager = new ViewManager( this, viewSpace ); |
1732 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1732 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1733 | 1733 | ||
1734 | mDetails = new ViewContainer( mDetailsSplitter ); | 1734 | mDetails = new ViewContainer( mDetailsSplitter ); |
1735 | 1735 | ||
1736 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1736 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1737 | 1737 | ||
1738 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1738 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1739 | 1739 | ||
1740 | topLayout->addWidget( mExtensionBarSplitter ); | 1740 | topLayout->addWidget( mExtensionBarSplitter ); |
1741 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); | 1741 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); |
1742 | topLayout->addWidget( mJumpButtonBar ); | 1742 | topLayout->addWidget( mJumpButtonBar ); |
1743 | //topLayout->setStretchFactor( mJumpButtonBar, 1 ); | 1743 | //topLayout->setStretchFactor( mJumpButtonBar, 1 ); |
1744 | 1744 | ||
1745 | mXXPortManager = new XXPortManager( this, this ); | 1745 | mXXPortManager = new XXPortManager( this, this ); |
1746 | 1746 | ||
1747 | #else //KAB_EMBEDDED | 1747 | #else //KAB_EMBEDDED |
1748 | //US initialize viewMenu before settingup viewmanager. | 1748 | //US initialize viewMenu before settingup viewmanager. |
1749 | // Viewmanager needs this menu to plugin submenues. | 1749 | // Viewmanager needs this menu to plugin submenues. |
1750 | viewMenu = new QPopupMenu( this ); | 1750 | viewMenu = new QPopupMenu( this ); |
1751 | settingsMenu = new QPopupMenu( this ); | 1751 | settingsMenu = new QPopupMenu( this ); |
1752 | //filterMenu = new QPopupMenu( this ); | 1752 | //filterMenu = new QPopupMenu( this ); |
1753 | ImportMenu = new QPopupMenu( this ); | 1753 | ImportMenu = new QPopupMenu( this ); |
1754 | ExportMenu = new QPopupMenu( this ); | 1754 | ExportMenu = new QPopupMenu( this ); |
1755 | syncMenu = new QPopupMenu( this ); | 1755 | syncMenu = new QPopupMenu( this ); |
1756 | changeMenu= new QPopupMenu( this ); | 1756 | changeMenu= new QPopupMenu( this ); |
1757 | beamMenu= new QPopupMenu( this ); | 1757 | beamMenu= new QPopupMenu( this ); |
1758 | 1758 | ||
1759 | //US since we have no splitter for the embedded system, setup | 1759 | //US since we have no splitter for the embedded system, setup |
1760 | // a layout with two frames. One left and one right. | 1760 | // a layout with two frames. One left and one right. |
1761 | 1761 | ||
1762 | QBoxLayout *topLayout; | 1762 | QBoxLayout *topLayout; |
1763 | 1763 | ||
1764 | // = new QHBoxLayout( this ); | 1764 | // = new QHBoxLayout( this ); |
1765 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); | 1765 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); |
1766 | 1766 | ||
1767 | // QWidget *mainBox = new QWidget( this ); | 1767 | // QWidget *mainBox = new QWidget( this ); |
1768 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); | 1768 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); |
1769 | 1769 | ||
1770 | #ifdef DESKTOP_VERSION | 1770 | #ifdef DESKTOP_VERSION |
1771 | topLayout = new QHBoxLayout( this ); | 1771 | topLayout = new QHBoxLayout( this ); |
1772 | 1772 | ||
1773 | 1773 | ||
1774 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); | 1774 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); |
1775 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 1775 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
1776 | 1776 | ||
1777 | topLayout->addWidget(mMiniSplitter ); | 1777 | topLayout->addWidget(mMiniSplitter ); |
1778 | 1778 | ||
1779 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); | 1779 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); |
1780 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); | 1780 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); |
1781 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); | 1781 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); |
1782 | mDetails = new ViewContainer( mMiniSplitter ); | 1782 | mDetails = new ViewContainer( mMiniSplitter ); |
1783 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1783 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1784 | #else | 1784 | #else |
1785 | if ( QApplication::desktop()->width() > 480 ) { | 1785 | if ( QApplication::desktop()->width() > 480 ) { |
1786 | topLayout = new QHBoxLayout( this ); | 1786 | topLayout = new QHBoxLayout( this ); |
1787 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); | 1787 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); |
1788 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 1788 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
1789 | } else { | 1789 | } else { |
1790 | 1790 | ||
1791 | topLayout = new QHBoxLayout( this ); | 1791 | topLayout = new QHBoxLayout( this ); |
1792 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Vertical, this); | 1792 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Vertical, this); |
1793 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); | 1793 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); |
1794 | } | 1794 | } |
1795 | 1795 | ||
1796 | topLayout->addWidget(mMiniSplitter ); | 1796 | topLayout->addWidget(mMiniSplitter ); |
1797 | mViewManager = new ViewManager( this, mMiniSplitter ); | 1797 | mViewManager = new ViewManager( this, mMiniSplitter ); |
1798 | mDetails = new ViewContainer( mMiniSplitter ); | 1798 | mDetails = new ViewContainer( mMiniSplitter ); |
1799 | 1799 | ||
1800 | 1800 | ||
1801 | mExtensionManager = new ExtensionManager( this, mMiniSplitter ); | 1801 | mExtensionManager = new ExtensionManager( this, mMiniSplitter ); |
1802 | #endif | 1802 | #endif |
1803 | //eh->hide(); | 1803 | //eh->hide(); |
1804 | // topLayout->addWidget(mExtensionManager ); | 1804 | // topLayout->addWidget(mExtensionManager ); |
1805 | 1805 | ||
1806 | 1806 | ||
1807 | /*US | 1807 | /*US |
1808 | #ifndef KAB_NOSPLITTER | 1808 | #ifndef KAB_NOSPLITTER |
1809 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1809 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1810 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); | 1810 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); |
1811 | topLayout->setSpacing( 10 ); | 1811 | topLayout->setSpacing( 10 ); |
1812 | 1812 | ||
1813 | mDetailsSplitter = new QSplitter( this ); | 1813 | mDetailsSplitter = new QSplitter( this ); |
1814 | 1814 | ||
1815 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); | 1815 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); |
1816 | 1816 | ||
1817 | mViewManager = new ViewManager( this, viewSpace ); | 1817 | mViewManager = new ViewManager( this, viewSpace ); |
1818 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1818 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1819 | 1819 | ||
1820 | mDetails = new ViewContainer( mDetailsSplitter ); | 1820 | mDetails = new ViewContainer( mDetailsSplitter ); |
1821 | 1821 | ||
1822 | topLayout->addWidget( mDetailsSplitter ); | 1822 | topLayout->addWidget( mDetailsSplitter ); |
1823 | topLayout->setStretchFactor( mDetailsSplitter, 100 ); | 1823 | topLayout->setStretchFactor( mDetailsSplitter, 100 ); |
1824 | #else //KAB_NOSPLITTER | 1824 | #else //KAB_NOSPLITTER |
1825 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1825 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1826 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); | 1826 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); |
1827 | topLayout->setSpacing( 10 ); | 1827 | topLayout->setSpacing( 10 ); |
1828 | 1828 | ||
1829 | // mDetailsSplitter = new QSplitter( this ); | 1829 | // mDetailsSplitter = new QSplitter( this ); |
1830 | 1830 | ||
1831 | QVBox *viewSpace = new QVBox( this ); | 1831 | QVBox *viewSpace = new QVBox( this ); |
1832 | 1832 | ||
1833 | mViewManager = new ViewManager( this, viewSpace ); | 1833 | mViewManager = new ViewManager( this, viewSpace ); |
1834 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1834 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1835 | 1835 | ||
1836 | mDetails = new ViewContainer( this ); | 1836 | mDetails = new ViewContainer( this ); |
1837 | 1837 | ||
1838 | topLayout->addWidget( viewSpace ); | 1838 | topLayout->addWidget( viewSpace ); |
1839 | // topLayout->setStretchFactor( mDetailsSplitter, 100 ); | 1839 | // topLayout->setStretchFactor( mDetailsSplitter, 100 ); |
1840 | topLayout->addWidget( mDetails ); | 1840 | topLayout->addWidget( mDetails ); |
1841 | #endif //KAB_NOSPLITTER | 1841 | #endif //KAB_NOSPLITTER |
1842 | */ | 1842 | */ |
1843 | 1843 | ||
1844 | syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::KAPI, KABPrefs::instance(), syncMenu); | 1844 | syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::KAPI, KABPrefs::instance(), syncMenu); |
1845 | syncManager->setBlockSave(false); | 1845 | syncManager->setBlockSave(false); |
1846 | 1846 | ||
1847 | connect(syncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); | 1847 | connect(syncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); |
1848 | connect(syncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); | 1848 | connect(syncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); |
1849 | QString sync_file = sentSyncFile(); | 1849 | QString sync_file = sentSyncFile(); |
1850 | //qDebug("KABCore::initGUI()::setting tmp sync file to:%s ",sync_file.latin1()); | 1850 | //qDebug("KABCore::initGUI()::setting tmp sync file to:%s ",sync_file.latin1()); |
1851 | syncManager->setDefaultFileName( sync_file ); | 1851 | syncManager->setDefaultFileName( sync_file ); |
1852 | //connect(syncManager , SIGNAL( ), this, SLOT( ) ); | 1852 | //connect(syncManager , SIGNAL( ), this, SLOT( ) ); |
1853 | 1853 | ||
1854 | #endif //KAB_EMBEDDED | 1854 | #endif //KAB_EMBEDDED |
1855 | initActions(); | 1855 | initActions(); |
1856 | 1856 | ||
1857 | #ifdef KAB_EMBEDDED | 1857 | #ifdef KAB_EMBEDDED |
1858 | addActionsManually(); | 1858 | addActionsManually(); |
1859 | //US make sure the export and import menues are initialized before creating the xxPortManager. | 1859 | //US make sure the export and import menues are initialized before creating the xxPortManager. |
1860 | mXXPortManager = new XXPortManager( this, this ); | 1860 | mXXPortManager = new XXPortManager( this, this ); |
1861 | 1861 | ||
1862 | // LR mIncSearchWidget = new IncSearchWidget( mMainWindow->getIconToolBar() ); | 1862 | // LR mIncSearchWidget = new IncSearchWidget( mMainWindow->getIconToolBar() ); |
1863 | //mMainWindow->toolBar()->insertWidget(-1, 4, mIncSearchWidget); | 1863 | //mMainWindow->toolBar()->insertWidget(-1, 4, mIncSearchWidget); |
1864 | // mActionQuit->plug ( mMainWindow->toolBar()); | 1864 | // mActionQuit->plug ( mMainWindow->toolBar()); |
1865 | //mIncSearchWidget = new IncSearchWidget( mMainWindow->toolBar() ); | 1865 | //mIncSearchWidget = new IncSearchWidget( mMainWindow->toolBar() ); |
1866 | //mMainWindow->toolBar()->insertWidget(-1, 0, mIncSearchWidget); | 1866 | //mMainWindow->toolBar()->insertWidget(-1, 0, mIncSearchWidget); |
1867 | // mIncSearchWidget->hide(); | 1867 | // mIncSearchWidget->hide(); |
1868 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 1868 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
1869 | SLOT( incrementalSearch( const QString& ) ) ); | 1869 | SLOT( incrementalSearch( const QString& ) ) ); |
1870 | connect( mIncSearchWidget, SIGNAL( scrollUP() ),mViewManager, SLOT( scrollUP() ) ); | 1870 | connect( mIncSearchWidget, SIGNAL( scrollUP() ),mViewManager, SLOT( scrollUP() ) ); |
1871 | connect( mIncSearchWidget, SIGNAL( scrollDOWN() ),mViewManager, SLOT( scrollDOWN() ) ); | 1871 | connect( mIncSearchWidget, SIGNAL( scrollDOWN() ),mViewManager, SLOT( scrollDOWN() ) ); |
1872 | 1872 | ||
1873 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1873 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1874 | 1874 | ||
1875 | topLayout->addWidget( mJumpButtonBar ); | 1875 | topLayout->addWidget( mJumpButtonBar ); |
1876 | //US topLayout->setStretchFactor( mJumpButtonBar, 10 ); | 1876 | //US topLayout->setStretchFactor( mJumpButtonBar, 10 ); |
1877 | 1877 | ||
1878 | // mMainWindow->getIconToolBar()->raise(); | 1878 | // mMainWindow->getIconToolBar()->raise(); |
1879 | 1879 | ||
1880 | #endif //KAB_EMBEDDED | 1880 | #endif //KAB_EMBEDDED |
1881 | 1881 | ||
1882 | } | 1882 | } |
1883 | void KABCore::initActions() | 1883 | void KABCore::initActions() |
1884 | { | 1884 | { |
1885 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); | 1885 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); |
1886 | 1886 | ||
1887 | #ifndef KAB_EMBEDDED | 1887 | #ifndef KAB_EMBEDDED |
1888 | connect( QApplication::clipboard(), SIGNAL( dataChanged() ), | 1888 | connect( QApplication::clipboard(), SIGNAL( dataChanged() ), |
1889 | SLOT( clipboardDataChanged() ) ); | 1889 | SLOT( clipboardDataChanged() ) ); |
1890 | #endif //KAB_EMBEDDED | 1890 | #endif //KAB_EMBEDDED |
1891 | 1891 | ||
1892 | // file menu | 1892 | // file menu |
1893 | 1893 | ||
1894 | mActionMail = KStdAction::mail( this, SLOT( sendMail() ), actionCollection() ); | 1894 | mActionMail = KStdAction::mail( this, SLOT( sendMail() ), actionCollection() ); |
1895 | //mActionPrint = KStdAction::print( this, SLOT( print() ), actionCollection() ); | 1895 | //mActionPrint = KStdAction::print( this, SLOT( print() ), actionCollection() ); |
1896 | mActionPrint = new KAction( i18n( "&Print View" ), "fileprint", CTRL + Key_P, mViewManager, | 1896 | mActionPrint = new KAction( i18n( "&Print View" ), "fileprint", CTRL + Key_P, mViewManager, |
1897 | SLOT( printView() ), actionCollection(), "kaddressbook_print" ); | 1897 | SLOT( printView() ), actionCollection(), "kaddressbook_print" ); |
1898 | 1898 | ||
1899 | 1899 | ||
1900 | mActionPrintDetails = new KAction( i18n( "&Print Details" ), "fileprint", 0, mDetails, | 1900 | mActionPrintDetails = new KAction( i18n( "&Print Details" ), "fileprint", 0, mDetails, |
1901 | SLOT( printView() ), actionCollection(), "kaddressbook_print2" ); | 1901 | SLOT( printView() ), actionCollection(), "kaddressbook_print2" ); |
1902 | 1902 | ||
1903 | mActionSave = new KAction( i18n( "&Save" ), "filesave", CTRL+Key_S, this, | 1903 | mActionSave = new KAction( i18n( "&Save" ), "filesave", CTRL+Key_S, this, |
1904 | SLOT( save() ), actionCollection(), "file_sync" ); | 1904 | SLOT( save() ), actionCollection(), "file_sync" ); |
1905 | 1905 | ||
1906 | mActionNewContact = new KAction( i18n( "&New Contact..." ), "filenew", CTRL+Key_N, this, | 1906 | mActionNewContact = new KAction( i18n( "&New Contact..." ), "filenew", CTRL+Key_N, this, |
1907 | SLOT( newContact() ), actionCollection(), "file_new_contact" ); | 1907 | SLOT( newContact() ), actionCollection(), "file_new_contact" ); |
1908 | 1908 | ||
1909 | mActionMailVCard = new KAction(i18n("Mail &vCard..."), "mail_post_to", 0, | 1909 | mActionMailVCard = new KAction(i18n("Mail &vCard..."), "mail_post_to", 0, |
1910 | this, SLOT( mailVCard() ), | 1910 | this, SLOT( mailVCard() ), |
1911 | actionCollection(), "file_mail_vcard"); | 1911 | actionCollection(), "file_mail_vcard"); |
1912 | 1912 | ||
1913 | mActionExport2phone = new KAction( i18n( "Export to phone" ), "ex2phone", 0, this, | 1913 | mActionExport2phone = new KAction( i18n( "Export to phone" ), "ex2phone", 0, this, |
1914 | SLOT( export2phone() ), actionCollection(), | 1914 | SLOT( export2phone() ), actionCollection(), |
1915 | "kaddressbook_ex2phone" ); | 1915 | "kaddressbook_ex2phone" ); |
1916 | 1916 | ||
1917 | mActionBeamVCard = 0; | 1917 | mActionBeamVCard = 0; |
1918 | mActionBeam = 0; | 1918 | mActionBeam = 0; |
1919 | 1919 | ||
1920 | #ifndef DESKTOP_VERSION | 1920 | #ifndef DESKTOP_VERSION |
1921 | if ( Ir::supported() ) { | 1921 | if ( Ir::supported() ) { |
1922 | mActionBeamVCard = new KAction( i18n( "Beam v&Card(s)..." ), "beam", 0, this, | 1922 | mActionBeamVCard = new KAction( i18n( "Beam v&Card(s)..." ), "beam", 0, this, |
1923 | SLOT( beamVCard() ), actionCollection(), | 1923 | SLOT( beamVCard() ), actionCollection(), |
1924 | "kaddressbook_beam_vcard" ); | 1924 | "kaddressbook_beam_vcard" ); |
1925 | 1925 | ||
1926 | mActionBeam = new KAction( i18n( "&Beam personal vCard" ), "beam", 0, this, | 1926 | mActionBeam = new KAction( i18n( "&Beam personal vCard" ), "beam", 0, this, |
1927 | SLOT( beamMySelf() ), actionCollection(), | 1927 | SLOT( beamMySelf() ), actionCollection(), |
1928 | "kaddressbook_beam_myself" ); | 1928 | "kaddressbook_beam_myself" ); |
1929 | } | 1929 | } |
1930 | #endif | 1930 | #endif |
1931 | 1931 | ||
1932 | mActionEditAddressee = new KAction( i18n( "&Edit Contact..." ), "edit", 0, | 1932 | mActionEditAddressee = new KAction( i18n( "&Edit Contact..." ), "edit", 0, |
1933 | this, SLOT( editContact2() ), | 1933 | this, SLOT( editContact2() ), |
1934 | actionCollection(), "file_properties" ); | 1934 | actionCollection(), "file_properties" ); |
1935 | 1935 | ||
1936 | #ifdef KAB_EMBEDDED | 1936 | #ifdef KAB_EMBEDDED |
1937 | // mActionQuit = KStdAction::quit( mMainWindow, SLOT( exit() ), actionCollection() ); | 1937 | // mActionQuit = KStdAction::quit( mMainWindow, SLOT( exit() ), actionCollection() ); |
1938 | mActionQuit = new KAction( i18n( "&Exit" ), "exit", 0, | 1938 | mActionQuit = new KAction( i18n( "&Exit" ), "exit", 0, |
1939 | mMainWindow, SLOT( exit() ), | 1939 | mMainWindow, SLOT( exit() ), |
1940 | actionCollection(), "quit" ); | 1940 | actionCollection(), "quit" ); |
1941 | #endif //KAB_EMBEDDED | 1941 | #endif //KAB_EMBEDDED |
1942 | 1942 | ||
1943 | // edit menu | 1943 | // edit menu |
1944 | if ( mIsPart ) { | 1944 | if ( mIsPart ) { |
1945 | mActionCopy = new KAction( i18n( "&Copy" ), "editcopy", CTRL + Key_C, this, | 1945 | mActionCopy = new KAction( i18n( "&Copy" ), "editcopy", CTRL + Key_C, this, |
1946 | SLOT( copyContacts() ), actionCollection(), | 1946 | SLOT( copyContacts() ), actionCollection(), |
1947 | "kaddressbook_copy" ); | 1947 | "kaddressbook_copy" ); |
1948 | mActionCut = new KAction( i18n( "Cu&t" ), "editcut", CTRL + Key_X, this, | 1948 | mActionCut = new KAction( i18n( "Cu&t" ), "editcut", CTRL + Key_X, this, |
1949 | SLOT( cutContacts() ), actionCollection(), | 1949 | SLOT( cutContacts() ), actionCollection(), |
1950 | "kaddressbook_cut" ); | 1950 | "kaddressbook_cut" ); |
1951 | mActionPaste = new KAction( i18n( "&Paste" ), "editpaste", CTRL + Key_V, this, | 1951 | mActionPaste = new KAction( i18n( "&Paste" ), "editpaste", CTRL + Key_V, this, |
1952 | SLOT( pasteContacts() ), actionCollection(), | 1952 | SLOT( pasteContacts() ), actionCollection(), |
1953 | "kaddressbook_paste" ); | 1953 | "kaddressbook_paste" ); |
1954 | mActionSelectAll = new KAction( i18n( "Select &All" ), CTRL + Key_A, this, | 1954 | mActionSelectAll = new KAction( i18n( "Select &All" ), CTRL + Key_A, this, |
1955 | SLOT( selectAllContacts() ), actionCollection(), | 1955 | SLOT( selectAllContacts() ), actionCollection(), |
1956 | "kaddressbook_select_all" ); | 1956 | "kaddressbook_select_all" ); |
1957 | mActionUndo = new KAction( i18n( "&Undo" ), "undo", CTRL + Key_Z, this, | 1957 | mActionUndo = new KAction( i18n( "&Undo" ), "undo", CTRL + Key_Z, this, |
1958 | SLOT( undo() ), actionCollection(), | 1958 | SLOT( undo() ), actionCollection(), |
1959 | "kaddressbook_undo" ); | 1959 | "kaddressbook_undo" ); |
1960 | mActionRedo = new KAction( i18n( "Re&do" ), "redo", CTRL + SHIFT + Key_Z, | 1960 | mActionRedo = new KAction( i18n( "Re&do" ), "redo", CTRL + SHIFT + Key_Z, |
1961 | this, SLOT( redo() ), actionCollection(), | 1961 | this, SLOT( redo() ), actionCollection(), |
1962 | "kaddressbook_redo" ); | 1962 | "kaddressbook_redo" ); |
1963 | } else { | 1963 | } else { |
1964 | mActionCopy = KStdAction::copy( this, SLOT( copyContacts() ), actionCollection() ); | 1964 | mActionCopy = KStdAction::copy( this, SLOT( copyContacts() ), actionCollection() ); |
1965 | mActionCut = KStdAction::cut( this, SLOT( cutContacts() ), actionCollection() ); | 1965 | mActionCut = KStdAction::cut( this, SLOT( cutContacts() ), actionCollection() ); |
1966 | mActionPaste = KStdAction::paste( this, SLOT( pasteContacts() ), actionCollection() ); | 1966 | mActionPaste = KStdAction::paste( this, SLOT( pasteContacts() ), actionCollection() ); |
1967 | mActionSelectAll = KStdAction::selectAll( this, SLOT( selectAllContacts() ), actionCollection() ); | 1967 | mActionSelectAll = KStdAction::selectAll( this, SLOT( selectAllContacts() ), actionCollection() ); |
1968 | mActionUndo = KStdAction::undo( this, SLOT( undo() ), actionCollection() ); | 1968 | mActionUndo = KStdAction::undo( this, SLOT( undo() ), actionCollection() ); |
1969 | mActionRedo = KStdAction::redo( this, SLOT( redo() ), actionCollection() ); | 1969 | mActionRedo = KStdAction::redo( this, SLOT( redo() ), actionCollection() ); |
1970 | } | 1970 | } |
1971 | 1971 | ||
1972 | mActionDelete = new KAction( i18n( "&Delete Contact" ), "editdelete", | 1972 | mActionDelete = new KAction( i18n( "&Delete Contact" ), "editdelete", |
1973 | Key_Delete, this, SLOT( deleteContacts() ), | 1973 | Key_Delete, this, SLOT( deleteContacts() ), |
1974 | actionCollection(), "edit_delete" ); | 1974 | actionCollection(), "edit_delete" ); |
1975 | 1975 | ||
1976 | mActionUndo->setEnabled( false ); | 1976 | mActionUndo->setEnabled( false ); |
1977 | mActionRedo->setEnabled( false ); | 1977 | mActionRedo->setEnabled( false ); |
1978 | 1978 | ||
1979 | // settings menu | 1979 | // settings menu |
1980 | #ifdef KAB_EMBEDDED | 1980 | #ifdef KAB_EMBEDDED |
1981 | //US special menuentry to configure the addressbook resources. On KDE | 1981 | //US special menuentry to configure the addressbook resources. On KDE |
1982 | // you do that through the control center !!! | 1982 | // you do that through the control center !!! |
1983 | mActionConfigResources = new KAction( i18n( "Configure &Resources..." ), "configure_resources", 0, this, | 1983 | mActionConfigResources = new KAction( i18n( "Configure &Resources..." ), "configure_resources", 0, this, |
1984 | SLOT( configureResources() ), actionCollection(), | 1984 | SLOT( configureResources() ), actionCollection(), |
1985 | "kaddressbook_configure_resources" ); | 1985 | "kaddressbook_configure_resources" ); |
1986 | #endif //KAB_EMBEDDED | 1986 | #endif //KAB_EMBEDDED |
1987 | 1987 | ||
1988 | if ( mIsPart ) { | 1988 | if ( mIsPart ) { |
1989 | mActionConfigKAddressbook = new KAction( i18n( "&Configure KAddressBook..." ), "configure", 0, this, | 1989 | mActionConfigKAddressbook = new KAction( i18n( "&Configure KAddressBook..." ), "configure", 0, this, |
1990 | SLOT( openConfigDialog() ), actionCollection(), | 1990 | SLOT( openConfigDialog() ), actionCollection(), |
1991 | "kaddressbook_configure" ); | 1991 | "kaddressbook_configure" ); |
1992 | 1992 | ||
1993 | //US not implemented yet | 1993 | //US not implemented yet |
1994 | //mActionConfigShortcuts = new KAction( i18n( "Configure S&hortcuts..." ), "configure_shortcuts", 0, | 1994 | //mActionConfigShortcuts = new KAction( i18n( "Configure S&hortcuts..." ), "configure_shortcuts", 0, |
1995 | // this, SLOT( configureKeyBindings() ), actionCollection(), | 1995 | // this, SLOT( configureKeyBindings() ), actionCollection(), |
1996 | // "kaddressbook_configure_shortcuts" ); | 1996 | // "kaddressbook_configure_shortcuts" ); |
1997 | #ifdef KAB_EMBEDDED | 1997 | #ifdef KAB_EMBEDDED |
1998 | mActionConfigureToolbars = KStdAction::configureToolbars( this, SLOT( mMainWindow->configureToolbars() ), actionCollection() ); | 1998 | mActionConfigureToolbars = KStdAction::configureToolbars( this, SLOT( mMainWindow->configureToolbars() ), actionCollection() ); |
1999 | mActionConfigureToolbars->setEnabled( false ); | 1999 | mActionConfigureToolbars->setEnabled( false ); |
2000 | #endif //KAB_EMBEDDED | 2000 | #endif //KAB_EMBEDDED |
2001 | 2001 | ||
2002 | } else { | 2002 | } else { |
2003 | mActionConfigKAddressbook = KStdAction::preferences( this, SLOT( openConfigDialog() ), actionCollection() ); | 2003 | mActionConfigKAddressbook = KStdAction::preferences( this, SLOT( openConfigDialog() ), actionCollection() ); |
2004 | 2004 | ||
2005 | //US not implemented yet | 2005 | //US not implemented yet |
2006 | //mActionKeyBindings = KStdAction::keyBindings( this, SLOT( configureKeyBindings() ), actionCollection() ); | 2006 | //mActionKeyBindings = KStdAction::keyBindings( this, SLOT( configureKeyBindings() ), actionCollection() ); |
2007 | } | 2007 | } |
2008 | 2008 | ||
2009 | mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, | 2009 | mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, |
2010 | actionCollection(), "options_show_jump_bar" ); | 2010 | actionCollection(), "options_show_jump_bar" ); |
2011 | connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBar( bool ) ) ); | 2011 | connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBar( bool ) ) ); |
2012 | 2012 | ||
2013 | mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, | 2013 | mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, |
2014 | actionCollection(), "options_show_details" ); | 2014 | actionCollection(), "options_show_details" ); |
2015 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); | 2015 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); |
2016 | 2016 | ||
2017 | 2017 | ||
2018 | mActionBR = new KToggleAction( i18n( "Beam receive enabled" ), "beam", 0, this, | 2018 | mActionBR = new KToggleAction( i18n( "Beam receive enabled" ), "beam", 0, this, |
2019 | SLOT( toggleBeamReceive() ), actionCollection(), | 2019 | SLOT( toggleBeamReceive() ), actionCollection(), |
2020 | "kaddressbook_beam_rec" ); | 2020 | "kaddressbook_beam_rec" ); |
2021 | 2021 | ||
2022 | 2022 | ||
2023 | // misc | 2023 | // misc |
2024 | // only enable LDAP lookup if we can handle the protocol | 2024 | // only enable LDAP lookup if we can handle the protocol |
2025 | #ifndef KAB_EMBEDDED | 2025 | #ifndef KAB_EMBEDDED |
2026 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { | 2026 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { |
2027 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, | 2027 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, |
2028 | this, SLOT( openLDAPDialog() ), actionCollection(), | 2028 | this, SLOT( openLDAPDialog() ), actionCollection(), |
2029 | "ldap_lookup" ); | 2029 | "ldap_lookup" ); |
2030 | } | 2030 | } |
2031 | #else //KAB_EMBEDDED | 2031 | #else //KAB_EMBEDDED |
2032 | //qDebug("KABCore::initActions() LDAP has to be implemented"); | 2032 | //qDebug("KABCore::initActions() LDAP has to be implemented"); |
2033 | #endif //KAB_EMBEDDED | 2033 | #endif //KAB_EMBEDDED |
2034 | 2034 | ||
2035 | 2035 | ||
2036 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, | 2036 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, |
2037 | SLOT( setWhoAmI() ), actionCollection(), | 2037 | SLOT( setWhoAmI() ), actionCollection(), |
2038 | "set_personal" ); | 2038 | "set_personal" ); |
2039 | 2039 | ||
2040 | 2040 | ||
2041 | mActionCategories = new KAction( i18n( "Set Categories for Contacts..." ), 0, this, | 2041 | mActionCategories = new KAction( i18n( "Set Categories for Contacts..." ), 0, this, |
2042 | SLOT( setCategories() ), actionCollection(), | 2042 | SLOT( setCategories() ), actionCollection(), |
2043 | "edit_set_categories" ); | 2043 | "edit_set_categories" ); |
2044 | mActionEditCategories = new KAction( i18n( "Edit Category List..." ), 0, this, | 2044 | mActionEditCategories = new KAction( i18n( "Edit Category List..." ), 0, this, |
2045 | SLOT( editCategories() ), actionCollection(), | 2045 | SLOT( editCategories() ), actionCollection(), |
2046 | "edit__categories" ); | 2046 | "edit__categories" ); |
2047 | 2047 | ||
2048 | mActionRemoveVoice = new KAction( i18n( "Remove \"voice\"..." ), 0, this, | 2048 | mActionRemoveVoice = new KAction( i18n( "Remove \"voice\"..." ), 0, this, |
2049 | SLOT( removeVoice() ), actionCollection(), | 2049 | SLOT( removeVoice() ), actionCollection(), |
2050 | "remove_voice" ); | 2050 | "remove_voice" ); |
2051 | mActionSetFormattedName = new KAction( i18n( "Set formatted name..." ), 0, this, | 2051 | mActionSetFormattedName = new KAction( i18n( "Set formatted name..." ), 0, this, |
2052 | SLOT( setFormattedName() ), actionCollection(), | 2052 | SLOT( setFormattedName() ), actionCollection(), |
2053 | "set_formatted" ); | 2053 | "set_formatted" ); |
2054 | 2054 | ||
2055 | mActionManageCategories= new KAction( i18n( "Manage new categories..." ), 0, this, | 2055 | mActionManageCategories= new KAction( i18n( "Manage new categories..." ), 0, this, |
2056 | SLOT( manageCategories() ), actionCollection(), | 2056 | SLOT( manageCategories() ), actionCollection(), |
2057 | "remove_voice" ); | 2057 | "remove_voice" ); |
2058 | 2058 | ||
2059 | 2059 | ||
2060 | mActionImportOL = new KAction( i18n( "Import from Outlook..." ), 0, this, | 2060 | mActionImportOL = new KAction( i18n( "Import from Outlook..." ), 0, this, |
2061 | SLOT( importFromOL() ), actionCollection(), | 2061 | SLOT( importFromOL() ), actionCollection(), |
2062 | "import_OL" ); | 2062 | "import_OL" ); |
2063 | #ifdef KAB_EMBEDDED | 2063 | #ifdef KAB_EMBEDDED |
2064 | mActionLicence = new KAction( i18n( "Licence" ), 0, | 2064 | mActionLicence = new KAction( i18n( "Licence" ), 0, |
2065 | this, SLOT( showLicence() ), actionCollection(), | 2065 | this, SLOT( showLicence() ), actionCollection(), |
2066 | "licence_about_data" ); | 2066 | "licence_about_data" ); |
2067 | mActionFaq = new KAction( i18n( "Faq" ), 0, | 2067 | mActionFaq = new KAction( i18n( "Faq" ), 0, |
2068 | this, SLOT( faq() ), actionCollection(), | 2068 | this, SLOT( faq() ), actionCollection(), |
2069 | "faq_about_data" ); | 2069 | "faq_about_data" ); |
2070 | mActionWN = new KAction( i18n( "What's New?" ), 0, | 2070 | mActionWN = new KAction( i18n( "What's New?" ), 0, |
2071 | this, SLOT( whatsnew() ), actionCollection(), | 2071 | this, SLOT( whatsnew() ), actionCollection(), |
2072 | "wn" ); | 2072 | "wn" ); |
2073 | mActionSyncHowto = new KAction( i18n( "Sync HowTo" ), 0, | 2073 | mActionSyncHowto = new KAction( i18n( "Sync HowTo" ), 0, |
2074 | this, SLOT( synchowto() ), actionCollection(), | 2074 | this, SLOT( synchowto() ), actionCollection(), |
2075 | "sync" ); | 2075 | "sync" ); |
2076 | mActionKdeSyncHowto = new KAction( i18n( "Kde Sync HowTo" ), 0, | 2076 | mActionKdeSyncHowto = new KAction( i18n( "Kde Sync HowTo" ), 0, |
2077 | this, SLOT( kdesynchowto() ), actionCollection(), | 2077 | this, SLOT( kdesynchowto() ), actionCollection(), |
2078 | "kdesync" ); | 2078 | "kdesync" ); |
2079 | mActionMultiSyncHowto = new KAction( i18n( "Multi Sync HowTo" ), 0, | 2079 | mActionMultiSyncHowto = new KAction( i18n( "Multi Sync HowTo" ), 0, |
2080 | this, SLOT( multisynchowto() ), actionCollection(), | 2080 | this, SLOT( multisynchowto() ), actionCollection(), |
2081 | "multisync" ); | 2081 | "multisync" ); |
2082 | 2082 | ||
2083 | mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, | 2083 | mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, |
2084 | this, SLOT( createAboutData() ), actionCollection(), | 2084 | this, SLOT( createAboutData() ), actionCollection(), |
2085 | "kaddressbook_about_data" ); | 2085 | "kaddressbook_about_data" ); |
2086 | #endif //KAB_EMBEDDED | 2086 | #endif //KAB_EMBEDDED |
2087 | 2087 | ||
2088 | clipboardDataChanged(); | 2088 | clipboardDataChanged(); |
2089 | connect( UndoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); | 2089 | connect( UndoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); |
2090 | connect( RedoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); | 2090 | connect( RedoStack::instance(), SIGNAL( changed() ), SLOT( updateActionMenu() ) ); |
2091 | } | 2091 | } |
2092 | 2092 | ||
2093 | //US we need this function, to plug all actions into the correct menues. | 2093 | //US we need this function, to plug all actions into the correct menues. |
2094 | // KDE uses a XML format to plug the actions, but we work her without this overhead. | 2094 | // KDE uses a XML format to plug the actions, but we work her without this overhead. |
2095 | void KABCore::addActionsManually() | 2095 | void KABCore::addActionsManually() |
2096 | { | 2096 | { |
2097 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); | 2097 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); |
2098 | 2098 | ||
2099 | #ifdef KAB_EMBEDDED | 2099 | #ifdef KAB_EMBEDDED |
2100 | QPopupMenu *fileMenu = new QPopupMenu( this ); | 2100 | QPopupMenu *fileMenu = new QPopupMenu( this ); |
2101 | QPopupMenu *editMenu = new QPopupMenu( this ); | 2101 | QPopupMenu *editMenu = new QPopupMenu( this ); |
2102 | QPopupMenu *helpMenu = new QPopupMenu( this ); | 2102 | QPopupMenu *helpMenu = new QPopupMenu( this ); |
2103 | 2103 | ||
2104 | KToolBar* tb = mMainWindow->toolBar(); | 2104 | KToolBar* tb = mMainWindow->toolBar(); |
2105 | 2105 | ||
2106 | #ifndef DESKTOP_VERSION | 2106 | #ifndef DESKTOP_VERSION |
2107 | if ( KABPrefs::instance()->mFullMenuBarVisible ) { | 2107 | if ( KABPrefs::instance()->mFullMenuBarVisible ) { |
2108 | #endif | 2108 | #endif |
2109 | QMenuBar* mb = mMainWindow->menuBar(); | 2109 | QMenuBar* mb = mMainWindow->menuBar(); |
2110 | 2110 | ||
2111 | //US setup menubar. | 2111 | //US setup menubar. |
2112 | //Disable the following block if you do not want to have a menubar. | 2112 | //Disable the following block if you do not want to have a menubar. |
2113 | mb->insertItem( i18n("&File"), fileMenu ); | 2113 | mb->insertItem( i18n("&File"), fileMenu ); |
2114 | mb->insertItem( i18n("&Edit"), editMenu ); | 2114 | mb->insertItem( i18n("&Edit"), editMenu ); |
2115 | mb->insertItem( i18n("&View"), viewMenu ); | 2115 | mb->insertItem( i18n("&View"), viewMenu ); |
2116 | mb->insertItem( i18n("&Settings"), settingsMenu ); | 2116 | mb->insertItem( i18n("&Settings"), settingsMenu ); |
2117 | #ifdef DESKTOP_VERSION | 2117 | #ifdef DESKTOP_VERSION |
2118 | mb->insertItem( i18n("Synchronize"), syncMenu ); | 2118 | mb->insertItem( i18n("Synchronize"), syncMenu ); |
2119 | #else | 2119 | #else |
2120 | mb->insertItem( i18n("Sync"), syncMenu ); | 2120 | mb->insertItem( i18n("Sync"), syncMenu ); |
2121 | #endif | 2121 | #endif |
2122 | //mb->insertItem( i18n("&Change"), changeMenu ); | 2122 | //mb->insertItem( i18n("&Change"), changeMenu ); |
2123 | mb->insertItem( i18n("&Help"), helpMenu ); | 2123 | mb->insertItem( i18n("&Help"), helpMenu ); |
2124 | mIncSearchWidget = new IncSearchWidget( tb ); | 2124 | mIncSearchWidget = new IncSearchWidget( tb ); |
2125 | // tb->insertWidget(-1, 0, mIncSearchWidget); | 2125 | // tb->insertWidget(-1, 0, mIncSearchWidget); |
2126 | #ifndef DESKTOP_VERSION | 2126 | #ifndef DESKTOP_VERSION |
2127 | } else { | 2127 | } else { |
2128 | //US setup toolbar | 2128 | //US setup toolbar |
2129 | QPEMenuBar *menuBarTB = new QPEMenuBar( tb ); | 2129 | QPEMenuBar *menuBarTB = new QPEMenuBar( tb ); |
2130 | QPopupMenu *popupBarTB = new QPopupMenu( this ); | 2130 | QPopupMenu *popupBarTB = new QPopupMenu( this ); |
2131 | menuBarTB->insertItem( "ME", popupBarTB); | 2131 | menuBarTB->insertItem( "ME", popupBarTB); |
2132 | tb->insertWidget(-1, 0, menuBarTB); | 2132 | tb->insertWidget(-1, 0, menuBarTB); |
2133 | mIncSearchWidget = new IncSearchWidget( tb ); | 2133 | mIncSearchWidget = new IncSearchWidget( tb ); |
2134 | 2134 | ||
2135 | tb->enableMoving(false); | 2135 | tb->enableMoving(false); |
2136 | popupBarTB->insertItem( i18n("&File"), fileMenu ); | 2136 | popupBarTB->insertItem( i18n("&File"), fileMenu ); |
2137 | popupBarTB->insertItem( i18n("&Edit"), editMenu ); | 2137 | popupBarTB->insertItem( i18n("&Edit"), editMenu ); |
2138 | popupBarTB->insertItem( i18n("&View"), viewMenu ); | 2138 | popupBarTB->insertItem( i18n("&View"), viewMenu ); |
2139 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); | 2139 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); |
2140 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); | 2140 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); |
2141 | mViewManager->getFilterAction()->plug ( popupBarTB); | 2141 | mViewManager->getFilterAction()->plug ( popupBarTB); |
2142 | //popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); | 2142 | //popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); |
2143 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); | 2143 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); |
2144 | if (QApplication::desktop()->width() > 320 ) { | 2144 | if (QApplication::desktop()->width() > 320 ) { |
2145 | // mViewManager->getFilterAction()->plug ( tb); | 2145 | // mViewManager->getFilterAction()->plug ( tb); |
2146 | } | 2146 | } |
2147 | } | 2147 | } |
2148 | #endif | 2148 | #endif |
2149 | // mActionQuit->plug ( mMainWindow->toolBar()); | 2149 | // mActionQuit->plug ( mMainWindow->toolBar()); |
2150 | 2150 | ||
2151 | 2151 | ||
2152 | 2152 | ||
2153 | //US Now connect the actions with the menue entries. | 2153 | //US Now connect the actions with the menue entries. |
2154 | #ifdef DESKTOP_VERSION | 2154 | #ifdef DESKTOP_VERSION |
2155 | mActionPrint->plug( fileMenu ); | 2155 | mActionPrint->plug( fileMenu ); |
2156 | mActionPrintDetails->plug( fileMenu ); | 2156 | mActionPrintDetails->plug( fileMenu ); |
2157 | fileMenu->insertSeparator(); | 2157 | fileMenu->insertSeparator(); |
2158 | #endif | 2158 | #endif |
2159 | mActionMail->plug( fileMenu ); | 2159 | mActionMail->plug( fileMenu ); |
2160 | fileMenu->insertSeparator(); | 2160 | fileMenu->insertSeparator(); |
2161 | 2161 | ||
2162 | mActionNewContact->plug( fileMenu ); | 2162 | mActionNewContact->plug( fileMenu ); |
2163 | mActionNewContact->plug( tb ); | 2163 | mActionNewContact->plug( tb ); |
2164 | 2164 | ||
2165 | mActionEditAddressee->plug( fileMenu ); | 2165 | mActionEditAddressee->plug( fileMenu ); |
2166 | // if ((KGlobal::getDesktopSize() > KGlobal::Small ) || | 2166 | // if ((KGlobal::getDesktopSize() > KGlobal::Small ) || |
2167 | // (!KABPrefs::instance()->mMultipleViewsAtOnce )) | 2167 | // (!KABPrefs::instance()->mMultipleViewsAtOnce )) |
2168 | mActionEditAddressee->plug( tb ); | 2168 | mActionEditAddressee->plug( tb ); |
2169 | 2169 | ||
2170 | fileMenu->insertSeparator(); | 2170 | fileMenu->insertSeparator(); |
2171 | mActionSave->plug( fileMenu ); | 2171 | mActionSave->plug( fileMenu ); |
2172 | fileMenu->insertItem( "&Import", ImportMenu ); | 2172 | fileMenu->insertItem( "&Import", ImportMenu ); |
2173 | fileMenu->insertItem( "&Export", ExportMenu ); | 2173 | fileMenu->insertItem( "&Export", ExportMenu ); |
2174 | fileMenu->insertItem( i18n("&Change"), changeMenu ); | 2174 | fileMenu->insertItem( i18n("&Change"), changeMenu ); |
2175 | #ifndef DESKTOP_VERSION | 2175 | #ifndef DESKTOP_VERSION |
2176 | if ( Ir::supported() ) fileMenu->insertItem( i18n("&Beam"), beamMenu ); | 2176 | if ( Ir::supported() ) fileMenu->insertItem( i18n("&Beam"), beamMenu ); |
2177 | #endif | 2177 | #endif |
2178 | #if 0 | 2178 | #if 0 |
2179 | // PENDING fix MailVCard | 2179 | // PENDING fix MailVCard |
2180 | fileMenu->insertSeparator(); | 2180 | fileMenu->insertSeparator(); |
2181 | mActionMailVCard->plug( fileMenu ); | 2181 | mActionMailVCard->plug( fileMenu ); |
2182 | #endif | 2182 | #endif |
2183 | #ifndef DESKTOP_VERSION | 2183 | #ifndef DESKTOP_VERSION |
2184 | if ( Ir::supported() ) mActionBR->plug( beamMenu ); | 2184 | if ( Ir::supported() ) mActionBR->plug( beamMenu ); |
2185 | if ( Ir::supported() ) mActionBeamVCard->plug( beamMenu ); | 2185 | if ( Ir::supported() ) mActionBeamVCard->plug( beamMenu ); |
2186 | if ( Ir::supported() ) mActionBeam->plug( beamMenu ); | 2186 | if ( Ir::supported() ) mActionBeam->plug( beamMenu ); |
2187 | #endif | 2187 | #endif |
2188 | fileMenu->insertSeparator(); | 2188 | fileMenu->insertSeparator(); |
2189 | mActionQuit->plug( fileMenu ); | 2189 | mActionQuit->plug( fileMenu ); |
2190 | #ifdef _OL_IMPORT_ | 2190 | #ifdef _OL_IMPORT_ |
2191 | mActionImportOL->plug( ImportMenu ); | 2191 | mActionImportOL->plug( ImportMenu ); |
2192 | #endif | 2192 | #endif |
2193 | // edit menu | 2193 | // edit menu |
2194 | mActionUndo->plug( editMenu ); | 2194 | mActionUndo->plug( editMenu ); |
2195 | mActionRedo->plug( editMenu ); | 2195 | mActionRedo->plug( editMenu ); |
2196 | editMenu->insertSeparator(); | 2196 | editMenu->insertSeparator(); |
2197 | mActionCut->plug( editMenu ); | 2197 | mActionCut->plug( editMenu ); |
2198 | mActionCopy->plug( editMenu ); | 2198 | mActionCopy->plug( editMenu ); |
2199 | mActionPaste->plug( editMenu ); | 2199 | mActionPaste->plug( editMenu ); |
2200 | mActionDelete->plug( editMenu ); | 2200 | mActionDelete->plug( editMenu ); |
2201 | editMenu->insertSeparator(); | 2201 | editMenu->insertSeparator(); |
2202 | mActionSelectAll->plug( editMenu ); | 2202 | mActionSelectAll->plug( editMenu ); |
2203 | 2203 | ||
2204 | mActionSetFormattedName->plug( changeMenu ); | 2204 | mActionSetFormattedName->plug( changeMenu ); |
2205 | mActionRemoveVoice->plug( changeMenu ); | 2205 | mActionRemoveVoice->plug( changeMenu ); |
2206 | // settings menu | 2206 | // settings menu |
2207 | //US special menuentry to configure the addressbook resources. On KDE | 2207 | //US special menuentry to configure the addressbook resources. On KDE |
2208 | // you do that through the control center !!! | 2208 | // you do that through the control center !!! |
2209 | mActionConfigResources->plug( settingsMenu ); | 2209 | mActionConfigResources->plug( settingsMenu ); |
2210 | settingsMenu->insertSeparator(); | 2210 | settingsMenu->insertSeparator(); |
2211 | 2211 | ||
2212 | mActionConfigKAddressbook->plug( settingsMenu ); | 2212 | mActionConfigKAddressbook->plug( settingsMenu ); |
2213 | 2213 | ||
2214 | if ( mIsPart ) { | 2214 | if ( mIsPart ) { |
2215 | //US not implemented yet | 2215 | //US not implemented yet |
2216 | //mActionConfigShortcuts->plug( settingsMenu ); | 2216 | //mActionConfigShortcuts->plug( settingsMenu ); |
2217 | //mActionConfigureToolbars->plug( settingsMenu ); | 2217 | //mActionConfigureToolbars->plug( settingsMenu ); |
2218 | 2218 | ||
2219 | } else { | 2219 | } else { |
2220 | //US not implemented yet | 2220 | //US not implemented yet |
2221 | //mActionKeyBindings->plug( settingsMenu ); | 2221 | //mActionKeyBindings->plug( settingsMenu ); |
2222 | } | 2222 | } |
2223 | 2223 | ||
2224 | settingsMenu->insertSeparator(); | 2224 | settingsMenu->insertSeparator(); |
2225 | 2225 | ||
2226 | mActionJumpBar->plug( settingsMenu ); | 2226 | mActionJumpBar->plug( settingsMenu ); |
2227 | mActionDetails->plug( settingsMenu ); | 2227 | mActionDetails->plug( settingsMenu ); |
2228 | //if (!KABPrefs::instance()->mMultipleViewsAtOnce || KGlobal::getDesktopSize() == KGlobal::Desktop ) | 2228 | //if (!KABPrefs::instance()->mMultipleViewsAtOnce || KGlobal::getDesktopSize() == KGlobal::Desktop ) |
2229 | mActionDetails->plug( tb ); | 2229 | mActionDetails->plug( tb ); |
2230 | settingsMenu->insertSeparator(); | 2230 | settingsMenu->insertSeparator(); |
2231 | #ifndef DESKTOP_VERSION | 2231 | #ifndef DESKTOP_VERSION |
2232 | if ( Ir::supported() ) mActionBR->plug(settingsMenu ); | 2232 | if ( Ir::supported() ) mActionBR->plug(settingsMenu ); |
2233 | settingsMenu->insertSeparator(); | 2233 | settingsMenu->insertSeparator(); |
2234 | #endif | 2234 | #endif |
2235 | 2235 | ||
2236 | mActionWhoAmI->plug( settingsMenu ); | 2236 | mActionWhoAmI->plug( settingsMenu ); |
2237 | mActionEditCategories->plug( settingsMenu ); | 2237 | mActionEditCategories->plug( settingsMenu ); |
2238 | mActionEditCategories->plug( changeMenu ); | 2238 | mActionEditCategories->plug( changeMenu ); |
2239 | mActionCategories->plug( changeMenu ); | 2239 | mActionCategories->plug( changeMenu ); |
2240 | mActionManageCategories->plug( changeMenu ); | 2240 | mActionManageCategories->plug( changeMenu ); |
2241 | 2241 | ||
2242 | mActionCategories->plug( settingsMenu ); | 2242 | mActionCategories->plug( settingsMenu ); |
2243 | mActionManageCategories->plug( settingsMenu ); | 2243 | mActionManageCategories->plug( settingsMenu ); |
2244 | 2244 | ||
2245 | 2245 | ||
2246 | mActionWN->plug( helpMenu ); | 2246 | mActionWN->plug( helpMenu ); |
2247 | mActionSyncHowto->plug( helpMenu ); | 2247 | mActionSyncHowto->plug( helpMenu ); |
2248 | mActionKdeSyncHowto->plug( helpMenu ); | 2248 | mActionKdeSyncHowto->plug( helpMenu ); |
2249 | mActionMultiSyncHowto->plug( helpMenu ); | 2249 | mActionMultiSyncHowto->plug( helpMenu ); |
2250 | mActionFaq->plug( helpMenu ); | 2250 | mActionFaq->plug( helpMenu ); |
2251 | mActionLicence->plug( helpMenu ); | 2251 | mActionLicence->plug( helpMenu ); |
2252 | mActionAboutKAddressbook->plug( helpMenu ); | 2252 | mActionAboutKAddressbook->plug( helpMenu ); |
2253 | 2253 | ||
2254 | if (KGlobal::getDesktopSize() > KGlobal::Small ) { | 2254 | if (KGlobal::getDesktopSize() > KGlobal::Small ) { |
2255 | 2255 | ||
2256 | mActionSave->plug( tb ); | 2256 | mActionSave->plug( tb ); |
2257 | mViewManager->getFilterAction()->plug ( tb); | 2257 | mViewManager->getFilterAction()->plug ( tb); |
2258 | //LR hide filteraction on started in 480x640 | 2258 | //LR hide filteraction on started in 480x640 |
2259 | if (QApplication::desktop()->width() == 480 ) { | 2259 | if (QApplication::desktop()->width() == 480 ) { |
2260 | mViewManager->getFilterAction()->setComboWidth( 0 ); | 2260 | mViewManager->getFilterAction()->setComboWidth( 0 ); |
2261 | } | 2261 | } |
2262 | mActionUndo->plug( tb ); | 2262 | mActionUndo->plug( tb ); |
2263 | mActionDelete->plug( tb ); | 2263 | mActionDelete->plug( tb ); |
2264 | mActionRedo->plug( tb ); | 2264 | mActionRedo->plug( tb ); |
2265 | } else { | 2265 | } else { |
2266 | mActionSave->plug( tb ); | 2266 | mActionSave->plug( tb ); |
2267 | tb->enableMoving(false); | 2267 | tb->enableMoving(false); |
2268 | } | 2268 | } |
2269 | //mActionQuit->plug ( tb ); | 2269 | //mActionQuit->plug ( tb ); |
2270 | // tb->insertWidget(-1, 0, mIncSearchWidget, 6); | 2270 | // tb->insertWidget(-1, 0, mIncSearchWidget, 6); |
2271 | 2271 | ||
2272 | //US link the searchwidget first to this. | 2272 | //US link the searchwidget first to this. |
2273 | // The real linkage to the toolbar happens later. | 2273 | // The real linkage to the toolbar happens later. |
2274 | //US mIncSearchWidget->reparent(tb, 0, QPoint(50,0), TRUE); | 2274 | //US mIncSearchWidget->reparent(tb, 0, QPoint(50,0), TRUE); |
2275 | //US tb->insertItem( mIncSearchWidget ); | 2275 | //US tb->insertItem( mIncSearchWidget ); |
2276 | /*US | 2276 | /*US |
2277 | mIncSearchWidget = new IncSearchWidget( tb ); | 2277 | mIncSearchWidget = new IncSearchWidget( tb ); |
2278 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 2278 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
2279 | SLOT( incrementalSearch( const QString& ) ) ); | 2279 | SLOT( incrementalSearch( const QString& ) ) ); |
2280 | 2280 | ||
2281 | mJumpButtonBar = new JumpButtonBar( this, this ); | 2281 | mJumpButtonBar = new JumpButtonBar( this, this ); |
2282 | 2282 | ||
2283 | //US topLayout->addWidget( mJumpButtonBar ); | 2283 | //US topLayout->addWidget( mJumpButtonBar ); |
2284 | this->layout()->add( mJumpButtonBar ); | 2284 | this->layout()->add( mJumpButtonBar ); |
2285 | */ | 2285 | */ |
2286 | 2286 | ||
2287 | #endif //KAB_EMBEDDED | 2287 | #endif //KAB_EMBEDDED |
2288 | 2288 | ||
2289 | mActionExport2phone->plug( ExportMenu ); | 2289 | mActionExport2phone->plug( ExportMenu ); |
2290 | connect ( syncMenu, SIGNAL( activated ( int ) ), syncManager, SLOT (slotSyncMenu( int ) ) ); | 2290 | connect ( syncMenu, SIGNAL( activated ( int ) ), syncManager, SLOT (slotSyncMenu( int ) ) ); |
2291 | syncManager->fillSyncMenu(); | 2291 | syncManager->fillSyncMenu(); |
2292 | 2292 | ||
2293 | } | 2293 | } |
2294 | void KABCore::showLicence() | 2294 | void KABCore::showLicence() |
2295 | { | 2295 | { |
2296 | KApplication::showLicence(); | 2296 | KApplication::showLicence(); |
2297 | } | 2297 | } |
2298 | 2298 | ||
2299 | void KABCore::manageCategories( ) | 2299 | void KABCore::manageCategories( ) |
2300 | { | 2300 | { |
2301 | KABCatPrefs* cp = new KABCatPrefs(); | 2301 | KABCatPrefs* cp = new KABCatPrefs(); |
2302 | cp->show(); | 2302 | cp->show(); |
2303 | int w =cp->sizeHint().width() ; | 2303 | int w =cp->sizeHint().width() ; |
2304 | int h = cp->sizeHint().height() ; | 2304 | int h = cp->sizeHint().height() ; |
2305 | int dw = QApplication::desktop()->width(); | 2305 | int dw = QApplication::desktop()->width(); |
2306 | int dh = QApplication::desktop()->height(); | 2306 | int dh = QApplication::desktop()->height(); |
2307 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2307 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2308 | if ( !cp->exec() ) { | 2308 | if ( !cp->exec() ) { |
2309 | delete cp; | 2309 | delete cp; |
2310 | return; | 2310 | return; |
2311 | } | 2311 | } |
2312 | int count = 0; | 2312 | int count = 0; |
2313 | int cc = 0; | 2313 | int cc = 0; |
2314 | message( i18n("Please wait, processing categories...")); | 2314 | message( i18n("Please wait, processing categories...")); |
2315 | if ( cp->addCat() ) { | 2315 | if ( cp->addCat() ) { |
2316 | KABC::AddressBook::Iterator it; | 2316 | KABC::AddressBook::Iterator it; |
2317 | QStringList catList = KABPrefs::instance()->mCustomCategories; | 2317 | QStringList catList = KABPrefs::instance()->mCustomCategories; |
2318 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 2318 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
2319 | ++cc; | 2319 | ++cc; |
2320 | if ( cc %10 == 0) | 2320 | if ( cc %10 == 0) |
2321 | message(i18n("Processing contact #%1").arg(cc)); | 2321 | message(i18n("Processing contact #%1").arg(cc)); |
2322 | QStringList catIncList = (*it).categories(); | 2322 | QStringList catIncList = (*it).categories(); |
2323 | int i; | 2323 | int i; |
2324 | for( i = 0; i< catIncList.count(); ++i ) { | 2324 | for( i = 0; i< catIncList.count(); ++i ) { |
2325 | if ( !catList.contains (catIncList[i])) { | 2325 | if ( !catList.contains (catIncList[i])) { |
2326 | catList.append( catIncList[i] ); | 2326 | catList.append( catIncList[i] ); |
2327 | //qDebug("add cat %s ", catIncList[i].latin1()); | 2327 | //qDebug("add cat %s ", catIncList[i].latin1()); |
2328 | ++count; | 2328 | ++count; |
2329 | } | 2329 | } |
2330 | } | 2330 | } |
2331 | } | 2331 | } |
2332 | catList.sort(); | 2332 | catList.sort(); |
2333 | KABPrefs::instance()->mCustomCategories = catList; | 2333 | KABPrefs::instance()->mCustomCategories = catList; |
2334 | KABPrefs::instance()->writeConfig(); | 2334 | KABPrefs::instance()->writeConfig(); |
2335 | message(QString::number( count )+ i18n(" categories added to list! ")); | 2335 | message(QString::number( count )+ i18n(" categories added to list! ")); |
2336 | } else { | 2336 | } else { |
2337 | QStringList catList = KABPrefs::instance()->mCustomCategories; | 2337 | QStringList catList = KABPrefs::instance()->mCustomCategories; |
2338 | QStringList catIncList; | 2338 | QStringList catIncList; |
2339 | QStringList newCatList; | 2339 | QStringList newCatList; |
2340 | KABC::AddressBook::Iterator it; | 2340 | KABC::AddressBook::Iterator it; |
2341 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 2341 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
2342 | ++cc; | 2342 | ++cc; |
2343 | if ( cc %10 == 0) | 2343 | if ( cc %10 == 0) |
2344 | message(i18n("Processing contact #%1").arg(cc)); | 2344 | message(i18n("Processing contact #%1").arg(cc)); |
2345 | QStringList catIncList = (*it).categories(); | 2345 | QStringList catIncList = (*it).categories(); |
2346 | int i; | 2346 | int i; |
2347 | if ( catIncList.count() ) { | 2347 | if ( catIncList.count() ) { |
2348 | newCatList.clear(); | 2348 | newCatList.clear(); |
2349 | for( i = 0; i< catIncList.count(); ++i ) { | 2349 | for( i = 0; i< catIncList.count(); ++i ) { |
2350 | if ( catList.contains (catIncList[i])) { | 2350 | if ( catList.contains (catIncList[i])) { |
2351 | newCatList.append( catIncList[i] ); | 2351 | newCatList.append( catIncList[i] ); |
2352 | } | 2352 | } |
2353 | } | 2353 | } |
2354 | newCatList.sort(); | 2354 | newCatList.sort(); |
2355 | (*it).setCategories( newCatList ); | 2355 | (*it).setCategories( newCatList ); |
2356 | mAddressBook->insertAddressee( (*it) ); | 2356 | mAddressBook->insertAddressee( (*it) ); |
2357 | } | 2357 | } |
2358 | } | 2358 | } |
2359 | setModified( true ); | 2359 | setModified( true ); |
2360 | mViewManager->refreshView(); | 2360 | mViewManager->refreshView(); |
2361 | message( i18n("Removing categories done!")); | 2361 | message( i18n("Removing categories done!")); |
2362 | } | 2362 | } |
2363 | delete cp; | 2363 | delete cp; |
2364 | } | 2364 | } |
2365 | void KABCore::removeVoice() | 2365 | void KABCore::removeVoice() |
2366 | { | 2366 | { |
2367 | 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 ) | 2367 | 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 ) |
2368 | return; | 2368 | return; |
2369 | XXPortSelectDialog dlg( this, false, this ); | 2369 | XXPortSelectDialog dlg( this, false, this ); |
2370 | if ( !dlg.exec() ) | 2370 | if ( !dlg.exec() ) |
2371 | return; | 2371 | return; |
2372 | mAddressBook->setUntagged(); | 2372 | mAddressBook->setUntagged(); |
2373 | dlg.tagSelected(); | 2373 | dlg.tagSelected(); |
2374 | message(i18n("Removing voice..."), false ); | 2374 | message(i18n("Removing voice..."), false ); |
2375 | KABC::AddressBook::Iterator it; | 2375 | KABC::AddressBook::Iterator it; |
2376 | for ( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 2376 | for ( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
2377 | if ( (*it).tagged() ) { | 2377 | if ( (*it).tagged() ) { |
2378 | (*it).removeVoice(); | 2378 | (*it).removeVoice(); |
2379 | } | 2379 | } |
2380 | } | 2380 | } |
2381 | message(i18n("Refreshing view...") ); | 2381 | message(i18n("Refreshing view...") ); |
2382 | qApp->processEvents(); | 2382 | qApp->processEvents(); |
2383 | mViewManager->refreshView( "" ); | 2383 | mViewManager->refreshView( "" ); |
2384 | Addressee add; | 2384 | Addressee add; |
2385 | mDetails->setAddressee( add ); | 2385 | mDetails->setAddressee( add ); |
2386 | message(i18n("Remove voice completed!") ); | 2386 | message(i18n("Remove voice completed!") ); |
2387 | 2387 | ||
2388 | 2388 | ||
2389 | 2389 | ||
2390 | } | 2390 | } |
2391 | 2391 | ||
2392 | void KABCore::setFormattedName() | 2392 | void KABCore::setFormattedName() |
2393 | { | 2393 | { |
2394 | KABFormatPrefs setpref; | 2394 | KABFormatPrefs setpref; |
2395 | if ( !setpref.exec() ) { | 2395 | if ( !setpref.exec() ) { |
2396 | return; | 2396 | return; |
2397 | } | 2397 | } |
2398 | XXPortSelectDialog dlg( this, false, this ); | 2398 | XXPortSelectDialog dlg( this, false, this ); |
2399 | if ( !dlg.exec() ) | 2399 | if ( !dlg.exec() ) |
2400 | return; | 2400 | return; |
2401 | mAddressBook->setUntagged(); | 2401 | mAddressBook->setUntagged(); |
2402 | dlg.tagSelected(); | 2402 | dlg.tagSelected(); |
2403 | int count = 0; | 2403 | int count = 0; |
2404 | KABC::AddressBook::Iterator it; | 2404 | KABC::AddressBook::Iterator it; |
2405 | for ( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 2405 | for ( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
2406 | if ( (*it).tagged() ) { | 2406 | if ( (*it).tagged() ) { |
2407 | ++count; | 2407 | ++count; |
2408 | if ( count %10 == 0 ) | 2408 | if ( count %10 == 0 ) |
2409 | message(i18n("Changing contact #%1").arg( count ) ); | 2409 | message(i18n("Changing contact #%1").arg( count ) ); |
2410 | qApp->processEvents(); | 2410 | qApp->processEvents(); |
2411 | QString fName; | 2411 | QString fName; |
2412 | if ( setpref.simple->isChecked() ) | 2412 | if ( setpref.simple->isChecked() ) |
2413 | fName = NameEditDialog::formattedName( (*it), NameEditDialog::SimpleName ); | 2413 | fName = NameEditDialog::formattedName( (*it), NameEditDialog::SimpleName ); |
2414 | else if ( setpref.full->isChecked() ) | 2414 | else if ( setpref.full->isChecked() ) |
2415 | fName = NameEditDialog::formattedName( (*it), NameEditDialog::FullName ); | 2415 | fName = NameEditDialog::formattedName( (*it), NameEditDialog::FullName ); |
2416 | else if ( setpref.reverse->isChecked() ) | 2416 | else if ( setpref.reverse->isChecked() ) |
2417 | fName = NameEditDialog::formattedName( (*it), NameEditDialog::ReverseName ); | 2417 | fName = NameEditDialog::formattedName( (*it), NameEditDialog::ReverseName ); |
2418 | else | 2418 | else |
2419 | fName = (*it).organization(); | 2419 | fName = (*it).organization(); |
2420 | if ( setpref.setCompany->isChecked() ) | 2420 | if ( setpref.setCompany->isChecked() ) |
2421 | if ( fName.isEmpty() || fName =="," ) | 2421 | if ( fName.isEmpty() || fName =="," ) |
2422 | fName = (*it).organization(); | 2422 | fName = (*it).organization(); |
2423 | (*it).setFormattedName( fName ); | 2423 | (*it).setFormattedName( fName ); |
2424 | } | 2424 | } |
2425 | } | 2425 | } |
2426 | message(i18n("Refreshing view...") ); | 2426 | message(i18n("Refreshing view...") ); |
2427 | qApp->processEvents(); | 2427 | qApp->processEvents(); |
2428 | mViewManager->refreshView( "" ); | 2428 | mViewManager->refreshView( "" ); |
2429 | Addressee add; | 2429 | Addressee add; |
2430 | mDetails->setAddressee( add ); | 2430 | mDetails->setAddressee( add ); |
2431 | message(i18n("Setting formatted name completed!") ); | 2431 | message(i18n("Setting formatted name completed!") ); |
2432 | } | 2432 | } |
2433 | 2433 | ||
2434 | void KABCore::clipboardDataChanged() | 2434 | void KABCore::clipboardDataChanged() |
2435 | { | 2435 | { |
2436 | 2436 | ||
2437 | if ( mReadWrite ) | 2437 | if ( mReadWrite ) |
2438 | mActionPaste->setEnabled( !QApplication::clipboard()->text().isEmpty() ); | 2438 | mActionPaste->setEnabled( !QApplication::clipboard()->text().isEmpty() ); |
2439 | 2439 | ||
2440 | } | 2440 | } |
2441 | 2441 | ||
2442 | void KABCore::updateActionMenu() | 2442 | void KABCore::updateActionMenu() |
2443 | { | 2443 | { |
2444 | UndoStack *undo = UndoStack::instance(); | 2444 | UndoStack *undo = UndoStack::instance(); |
2445 | RedoStack *redo = RedoStack::instance(); | 2445 | RedoStack *redo = RedoStack::instance(); |
2446 | 2446 | ||
2447 | if ( undo->isEmpty() ) | 2447 | if ( undo->isEmpty() ) |
2448 | mActionUndo->setText( i18n( "Undo" ) ); | 2448 | mActionUndo->setText( i18n( "Undo" ) ); |
2449 | else | 2449 | else |
2450 | mActionUndo->setText( i18n( "Undo %1" ).arg( undo->top()->name() ) ); | 2450 | mActionUndo->setText( i18n( "Undo %1" ).arg( undo->top()->name() ) ); |
2451 | 2451 | ||
2452 | mActionUndo->setEnabled( !undo->isEmpty() ); | 2452 | mActionUndo->setEnabled( !undo->isEmpty() ); |
2453 | 2453 | ||
2454 | if ( !redo->top() ) | 2454 | if ( !redo->top() ) |
2455 | mActionRedo->setText( i18n( "Redo" ) ); | 2455 | mActionRedo->setText( i18n( "Redo" ) ); |
2456 | else | 2456 | else |
2457 | mActionRedo->setText( i18n( "Redo %1" ).arg( redo->top()->name() ) ); | 2457 | mActionRedo->setText( i18n( "Redo %1" ).arg( redo->top()->name() ) ); |
2458 | 2458 | ||
2459 | mActionRedo->setEnabled( !redo->isEmpty() ); | 2459 | mActionRedo->setEnabled( !redo->isEmpty() ); |
2460 | } | 2460 | } |
2461 | 2461 | ||
2462 | void KABCore::configureKeyBindings() | 2462 | void KABCore::configureKeyBindings() |
2463 | { | 2463 | { |
2464 | #ifndef KAB_EMBEDDED | 2464 | #ifndef KAB_EMBEDDED |
2465 | KKeyDialog::configure( actionCollection(), true ); | 2465 | KKeyDialog::configure( actionCollection(), true ); |
2466 | #else //KAB_EMBEDDED | 2466 | #else //KAB_EMBEDDED |
2467 | qDebug("KABCore::configureKeyBindings() not implemented"); | 2467 | qDebug("KABCore::configureKeyBindings() not implemented"); |
2468 | #endif //KAB_EMBEDDED | 2468 | #endif //KAB_EMBEDDED |
2469 | } | 2469 | } |
2470 | 2470 | ||
2471 | #ifdef KAB_EMBEDDED | 2471 | #ifdef KAB_EMBEDDED |
2472 | void KABCore::configureResources() | 2472 | void KABCore::configureResources() |
2473 | { | 2473 | { |
2474 | KRES::KCMKResources dlg( this, "" , 0 ); | 2474 | KRES::KCMKResources dlg( this, "" , 0 ); |
2475 | 2475 | ||
2476 | if ( !dlg.exec() ) | 2476 | if ( !dlg.exec() ) |
2477 | return; | 2477 | return; |
2478 | KMessageBox::information( this, i18n("Please restart to get the \nchanged resources (re)loaded!\n") ); | 2478 | KMessageBox::information( this, i18n("Please restart to get the \nchanged resources (re)loaded!\n") ); |
2479 | } | 2479 | } |
2480 | #endif //KAB_EMBEDDED | 2480 | #endif //KAB_EMBEDDED |
2481 | 2481 | ||
2482 | 2482 | ||
2483 | /* this method will be called through the QCop interface from Ko/Pi to select addresses | 2483 | /* this method will be called through the QCop interface from Ko/Pi to select addresses |
2484 | * for the attendees list of an event. | 2484 | * for the attendees list of an event. |
2485 | */ | 2485 | */ |
2486 | void KABCore::requestForNameEmailUidList(const QString& sourceChannel, const QString& uid) | 2486 | void KABCore::requestForNameEmailUidList(const QString& sourceChannel, const QString& uid) |
2487 | { | 2487 | { |
2488 | QStringList nameList; | 2488 | QStringList nameList; |
2489 | QStringList emailList; | 2489 | QStringList emailList; |
2490 | QStringList uidList; | 2490 | QStringList uidList; |
2491 | 2491 | ||
2492 | KABC::Addressee::List list = KABC::AddresseeDialog::getAddressees(this); | 2492 | KABC::Addressee::List list = KABC::AddresseeDialog::getAddressees(this); |
2493 | uint i=0; | 2493 | uint i=0; |
2494 | for (i=0; i < list.count(); i++) | 2494 | for (i=0; i < list.count(); i++) |
2495 | { | 2495 | { |
2496 | nameList.append(list[i].realName()); | 2496 | nameList.append(list[i].realName()); |
2497 | emailList.append(list[i].preferredEmail()); | 2497 | emailList.append(list[i].preferredEmail()); |
2498 | uidList.append(list[i].uid()); | 2498 | uidList.append(list[i].uid()); |
2499 | } | 2499 | } |
2500 | //qDebug("%s %s ", sourceChannel.latin1(), uid.latin1()); | 2500 | //qDebug("%s %s ", sourceChannel.latin1(), uid.latin1()); |
2501 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI(sourceChannel, uid, nameList, emailList, uidList); | 2501 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI(sourceChannel, uid, nameList, emailList, uidList); |
2502 | 2502 | ||
2503 | } | 2503 | } |
2504 | 2504 | ||
2505 | /* this method will be called through the QCop interface from Ko/Pi to select birthdays | 2505 | /* this method will be called through the QCop interface from Ko/Pi to select birthdays |
2506 | * to put them into the calendar. | 2506 | * to put them into the calendar. |
2507 | */ | 2507 | */ |
2508 | void KABCore::requestForBirthdayList(const QString& sourceChannel, const QString& uid) | 2508 | void KABCore::requestForBirthdayList(const QString& sourceChannel, const QString& uid) |
2509 | { | 2509 | { |
2510 | // qDebug("KABCore::requestForBirthdayList"); | 2510 | // qDebug("KABCore::requestForBirthdayList"); |
2511 | QStringList birthdayList; | 2511 | QStringList birthdayList; |
2512 | QStringList anniversaryList; | 2512 | QStringList anniversaryList; |
2513 | QStringList realNameList; | 2513 | QStringList realNameList; |
2514 | QStringList preferredEmailList; | 2514 | QStringList preferredEmailList; |
2515 | QStringList assembledNameList; | 2515 | QStringList assembledNameList; |
2516 | QStringList uidList; | 2516 | QStringList uidList; |
2517 | 2517 | ||
2518 | KABC::AddressBook::Iterator it; | 2518 | KABC::AddressBook::Iterator it; |
2519 | 2519 | ||
2520 | int count = 0; | 2520 | int count = 0; |
2521 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 2521 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
2522 | ++count; | 2522 | ++count; |
2523 | } | 2523 | } |
2524 | QProgressBar bar(count,0 ); | 2524 | QProgressBar bar(count,0 ); |
2525 | int w = 300; | 2525 | int w = 300; |
2526 | if ( QApplication::desktop()->width() < 320 ) | 2526 | if ( QApplication::desktop()->width() < 320 ) |
2527 | w = 220; | 2527 | w = 220; |
2528 | int h = bar.sizeHint().height() ; | 2528 | int h = bar.sizeHint().height() ; |
2529 | int dw = QApplication::desktop()->width(); | 2529 | int dw = QApplication::desktop()->width(); |
2530 | int dh = QApplication::desktop()->height(); | 2530 | int dh = QApplication::desktop()->height(); |
2531 | bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2531 | bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2532 | bar.show(); | 2532 | bar.show(); |
2533 | bar.setCaption (i18n("Collecting birthdays - close to abort!") ); | 2533 | bar.setCaption (i18n("Collecting birthdays - close to abort!") ); |
2534 | qApp->processEvents(); | 2534 | qApp->processEvents(); |
2535 | 2535 | ||
2536 | QDate bday; | 2536 | QDate bday; |
2537 | QString anni; | 2537 | QString anni; |
2538 | QString formattedbday; | 2538 | QString formattedbday; |
2539 | 2539 | ||
2540 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) | 2540 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) |
2541 | { | 2541 | { |
2542 | if ( ! bar.isVisible() ) | 2542 | if ( ! bar.isVisible() ) |
2543 | return; | 2543 | return; |
2544 | bar.setProgress( count++ ); | 2544 | bar.setProgress( count++ ); |
2545 | qApp->processEvents(); | 2545 | qApp->processEvents(); |
2546 | bday = (*it).birthday().date(); | 2546 | bday = (*it).birthday().date(); |
2547 | anni = (*it).custom("KADDRESSBOOK", "X-Anniversary" ); | 2547 | anni = (*it).custom("KADDRESSBOOK", "X-Anniversary" ); |
2548 | 2548 | ||
2549 | if ( bday.isValid() || !anni.isEmpty()) | 2549 | if ( bday.isValid() || !anni.isEmpty()) |
2550 | { | 2550 | { |
2551 | if (bday.isValid()) | 2551 | if (bday.isValid()) |
2552 | formattedbday = KGlobal::locale()->formatDate(bday, true, KLocale::ISODate); | 2552 | formattedbday = KGlobal::locale()->formatDate(bday, true, KLocale::ISODate); |
2553 | else | 2553 | else |
2554 | formattedbday = "NOTVALID"; | 2554 | formattedbday = "NOTVALID"; |
2555 | if (anni.isEmpty()) | 2555 | if (anni.isEmpty()) |
2556 | anni = "INVALID"; | 2556 | anni = "INVALID"; |
2557 | 2557 | ||
2558 | birthdayList.append(formattedbday); | 2558 | birthdayList.append(formattedbday); |
2559 | anniversaryList.append(anni); //should be ISODate | 2559 | anniversaryList.append(anni); //should be ISODate |
2560 | realNameList.append((*it).realName()); | 2560 | realNameList.append((*it).realName()); |
2561 | preferredEmailList.append((*it).preferredEmail()); | 2561 | preferredEmailList.append((*it).preferredEmail()); |
2562 | assembledNameList.append((*it).assembledName()); | 2562 | assembledNameList.append((*it).assembledName()); |
2563 | uidList.append((*it).uid()); | 2563 | uidList.append((*it).uid()); |
2564 | 2564 | ||
2565 | //qDebug("found birthday in KA/Pi: %s,%s,%s,%s: %s, %s", (*it).realName().latin1(), (*it).preferredEmail().latin1(), (*it).assembledName().latin1(), (*it).uid().latin1(), formattedbday.latin1(), anni.latin1() ); | 2565 | //qDebug("found birthday in KA/Pi: %s,%s,%s,%s: %s, %s", (*it).realName().latin1(), (*it).preferredEmail().latin1(), (*it).assembledName().latin1(), (*it).uid().latin1(), formattedbday.latin1(), anni.latin1() ); |
2566 | } | 2566 | } |
2567 | } | 2567 | } |
2568 | 2568 | ||
2569 | bool res = ExternalAppHandler::instance()->returnBirthdayListFromKAPI(sourceChannel, uid, birthdayList, anniversaryList, realNameList, preferredEmailList, assembledNameList, uidList); | 2569 | bool res = ExternalAppHandler::instance()->returnBirthdayListFromKAPI(sourceChannel, uid, birthdayList, anniversaryList, realNameList, preferredEmailList, assembledNameList, uidList); |
2570 | 2570 | ||
2571 | } | 2571 | } |
2572 | 2572 | ||
2573 | /* this method will be called through the QCop interface from other apps to show details of a contact. | 2573 | /* this method will be called through the QCop interface from other apps to show details of a contact. |
2574 | */ | 2574 | */ |
2575 | void KABCore::requestForDetails(const QString& sourceChannel, const QString& sessionuid, const QString& name, const QString& email, const QString& uid) | 2575 | void KABCore::requestForDetails(const QString& sourceChannel, const QString& sessionuid, const QString& name, const QString& email, const QString& uid) |
2576 | { | 2576 | { |
2577 | //qDebug("KABCore::requestForDetails %s %s %s %s %s", sourceChannel.latin1(), sessionuid.latin1(), name.latin1(), email.latin1(), uid.latin1()); | 2577 | //qDebug("KABCore::requestForDetails %s %s %s %s %s", sourceChannel.latin1(), sessionuid.latin1(), name.latin1(), email.latin1(), uid.latin1()); |
2578 | 2578 | ||
2579 | QString foundUid = QString::null; | 2579 | QString foundUid = QString::null; |
2580 | if ( ! uid.isEmpty() ) { | 2580 | if ( ! uid.isEmpty() ) { |
2581 | Addressee adrr = mAddressBook->findByUid( uid ); | 2581 | Addressee adrr = mAddressBook->findByUid( uid ); |
2582 | if ( !adrr.isEmpty() ) { | 2582 | if ( !adrr.isEmpty() ) { |
2583 | foundUid = uid; | 2583 | foundUid = uid; |
2584 | } | 2584 | } |
2585 | if ( email == "sendbacklist" ) { | 2585 | if ( email == "sendbacklist" ) { |
2586 | //qDebug("ssssssssssssssssssssssend "); | 2586 | //qDebug("ssssssssssssssssssssssend "); |
2587 | QStringList nameList; | 2587 | QStringList nameList; |
2588 | QStringList emailList; | 2588 | QStringList emailList; |
2589 | QStringList uidList; | 2589 | QStringList uidList; |
2590 | nameList.append(adrr.realName()); | 2590 | nameList.append(adrr.realName()); |
2591 | emailList = adrr.emails(); | 2591 | emailList = adrr.emails(); |
2592 | uidList.append( adrr.preferredEmail()); | 2592 | uidList.append( adrr.preferredEmail()); |
2593 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI("QPE/Application/ompi", uid, nameList, emailList, uidList); | 2593 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI("QPE/Application/ompi", uid, nameList, emailList, uidList); |
2594 | return; | 2594 | return; |
2595 | } | 2595 | } |
2596 | 2596 | ||
2597 | } | 2597 | } |
2598 | 2598 | ||
2599 | if ( email == "sendbacklist" ) | 2599 | if ( email == "sendbacklist" ) |
2600 | return; | 2600 | return; |
2601 | if (foundUid.isEmpty()) | 2601 | if (foundUid.isEmpty()) |
2602 | { | 2602 | { |
2603 | //find the uid of the person first | 2603 | //find the uid of the person first |
2604 | Addressee::List namelist; | 2604 | Addressee::List namelist; |
2605 | Addressee::List emaillist; | 2605 | Addressee::List emaillist; |
2606 | 2606 | ||
2607 | if (!name.isEmpty()) | 2607 | if (!name.isEmpty()) |
2608 | namelist = mAddressBook->findByName( name ); | 2608 | namelist = mAddressBook->findByName( name ); |
2609 | 2609 | ||
2610 | if (!email.isEmpty()) | 2610 | if (!email.isEmpty()) |
2611 | emaillist = mAddressBook->findByEmail( email ); | 2611 | emaillist = mAddressBook->findByEmail( email ); |
2612 | //qDebug("count %d %d ", namelist.count(),emaillist.count() ); | 2612 | //qDebug("count %d %d ", namelist.count(),emaillist.count() ); |
2613 | //check if we have a match in Namelist and Emaillist | 2613 | //check if we have a match in Namelist and Emaillist |
2614 | if ((namelist.count() == 0) && (emaillist.count() > 0)) { | 2614 | if ((namelist.count() == 0) && (emaillist.count() > 0)) { |
2615 | foundUid = emaillist[0].uid(); | 2615 | foundUid = emaillist[0].uid(); |
2616 | } | 2616 | } |
2617 | else if ((namelist.count() > 0) && (emaillist.count() == 0)) | 2617 | else if ((namelist.count() > 0) && (emaillist.count() == 0)) |
2618 | foundUid = namelist[0].uid(); | 2618 | foundUid = namelist[0].uid(); |
2619 | else | 2619 | else |
2620 | { | 2620 | { |
2621 | for (int i = 0; i < namelist.count(); i++) | 2621 | for (int i = 0; i < namelist.count(); i++) |
2622 | { | 2622 | { |
2623 | for (int j = 0; j < emaillist.count(); j++) | 2623 | for (int j = 0; j < emaillist.count(); j++) |
2624 | { | 2624 | { |
2625 | if (namelist[i] == emaillist[j]) | 2625 | if (namelist[i] == emaillist[j]) |
2626 | { | 2626 | { |
2627 | foundUid = namelist[i].uid(); | 2627 | foundUid = namelist[i].uid(); |
2628 | } | 2628 | } |
2629 | } | 2629 | } |
2630 | } | 2630 | } |
2631 | } | 2631 | } |
2632 | } | 2632 | } |
2633 | else | 2633 | else |
2634 | { | 2634 | { |
2635 | foundUid = uid; | 2635 | foundUid = uid; |
2636 | } | 2636 | } |
2637 | 2637 | ||
2638 | if (!foundUid.isEmpty()) | 2638 | if (!foundUid.isEmpty()) |
2639 | { | 2639 | { |
2640 | 2640 | ||
2641 | // raise Ka/Pi if it is in the background | 2641 | // raise Ka/Pi if it is in the background |
2642 | #ifndef DESKTOP_VERSION | 2642 | #ifndef DESKTOP_VERSION |
2643 | #ifndef KORG_NODCOP | 2643 | #ifndef KORG_NODCOP |
2644 | //QCopEnvelope e("QPE/Application/kapi", "raise()"); | 2644 | //QCopEnvelope e("QPE/Application/kapi", "raise()"); |
2645 | #endif | 2645 | #endif |
2646 | #endif | 2646 | #endif |
2647 | 2647 | ||
2648 | mMainWindow->showMaximized(); | 2648 | mMainWindow->showMaximized(); |
2649 | mMainWindow-> raise(); | 2649 | mMainWindow-> raise(); |
2650 | 2650 | ||
2651 | mViewManager->setSelected( "", false); | 2651 | mViewManager->setSelected( "", false); |
2652 | mViewManager->refreshView( "" ); | 2652 | mViewManager->refreshView( "" ); |
2653 | mViewManager->setSelected( foundUid, true ); | 2653 | mViewManager->setSelected( foundUid, true ); |
2654 | mViewManager->refreshView( foundUid ); | 2654 | mViewManager->refreshView( foundUid ); |
2655 | 2655 | ||
2656 | if ( !mMultipleViewsAtOnce ) | 2656 | if ( !mMultipleViewsAtOnce ) |
2657 | { | 2657 | { |
2658 | setDetailsVisible( true ); | 2658 | setDetailsVisible( true ); |
2659 | mActionDetails->setChecked(true); | 2659 | mActionDetails->setChecked(true); |
2660 | } | 2660 | } |
2661 | } | 2661 | } |
2662 | } | 2662 | } |
2663 | 2663 | ||
2664 | void KABCore::whatsnew() | 2664 | void KABCore::whatsnew() |
2665 | { | 2665 | { |
2666 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); | 2666 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); |
2667 | } | 2667 | } |
2668 | void KABCore::synchowto() | 2668 | void KABCore::synchowto() |
2669 | { | 2669 | { |
2670 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); | 2670 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); |
2671 | } | 2671 | } |
2672 | void KABCore::kdesynchowto() | 2672 | void KABCore::kdesynchowto() |
2673 | { | 2673 | { |
2674 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); | 2674 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); |
2675 | } | 2675 | } |
2676 | void KABCore::multisynchowto() | 2676 | void KABCore::multisynchowto() |
2677 | { | 2677 | { |
2678 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); | 2678 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); |
2679 | } | 2679 | } |
2680 | void KABCore::faq() | 2680 | void KABCore::faq() |
2681 | { | 2681 | { |
2682 | KApplication::showFile( "KA/Pi FAQ", "kdepim/kaddressbook/kapiFAQ.txt" ); | 2682 | KApplication::showFile( "KA/Pi FAQ", "kdepim/kaddressbook/kapiFAQ.txt" ); |
2683 | } | 2683 | } |
2684 | 2684 | ||
2685 | #include <libkcal/syncdefines.h> | 2685 | #include <libkcal/syncdefines.h> |
2686 | 2686 | ||
2687 | KABC::Addressee KABCore::getLastSyncAddressee() | 2687 | KABC::Addressee KABCore::getLastSyncAddressee() |
2688 | { | 2688 | { |
2689 | Addressee lse; | 2689 | Addressee lse; |
2690 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2690 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2691 | 2691 | ||
2692 | //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() ); | 2692 | //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() ); |
2693 | lse = mAddressBook->findByUid( "last-syncAddressee-"+mCurrentSyncDevice ); | 2693 | lse = mAddressBook->findByUid( "last-syncAddressee-"+mCurrentSyncDevice ); |
2694 | if (lse.isEmpty()) { | 2694 | if (lse.isEmpty()) { |
2695 | qDebug("KA: Creating new last-syncAddressee "); | 2695 | qDebug("KA: Creating new last-syncAddressee "); |
2696 | lse.setUid( "last-syncAddressee-"+mCurrentSyncDevice ); | 2696 | lse.setUid( "last-syncAddressee-"+mCurrentSyncDevice ); |
2697 | QString sum = ""; | 2697 | QString sum = ""; |
2698 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) | 2698 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) |
2699 | sum = "E: "; | 2699 | sum = "E: "; |
2700 | lse.setFamilyName("!"+sum+mCurrentSyncDevice + i18n(" - sync event")); | 2700 | lse.setFamilyName("!"+sum+mCurrentSyncDevice + i18n(" - sync event")); |
2701 | lse.setRevision( mLastAddressbookSync ); | 2701 | lse.setRevision( mLastAddressbookSync ); |
2702 | lse.setCategories( i18n("SyncEvent") ); | 2702 | lse.setCategories( i18n("SyncEvent") ); |
2703 | mAddressBook->insertAddressee( lse ); | 2703 | mAddressBook->insertAddressee( lse ); |
2704 | } | 2704 | } |
2705 | return lse; | 2705 | return lse; |
2706 | } | 2706 | } |
2707 | int KABCore::takeAddressee( KABC::Addressee* local, KABC::Addressee* remote, int mode , bool full ) | 2707 | int KABCore::takeAddressee( KABC::Addressee* local, KABC::Addressee* remote, int mode , bool full ) |
2708 | { | 2708 | { |
2709 | 2709 | ||
2710 | //void setZaurusId(int id); | 2710 | //void setZaurusId(int id); |
2711 | // int zaurusId() const; | 2711 | // int zaurusId() const; |
2712 | // void setZaurusUid(int id); | 2712 | // void setZaurusUid(int id); |
2713 | // int zaurusUid() const; | 2713 | // int zaurusUid() const; |
2714 | // void setZaurusStat(int id); | 2714 | // void setZaurusStat(int id); |
2715 | // int zaurusStat() const; | 2715 | // int zaurusStat() const; |
2716 | // 0 equal | 2716 | // 0 equal |
2717 | // 1 take local | 2717 | // 1 take local |
2718 | // 2 take remote | 2718 | // 2 take remote |
2719 | // 3 cancel | 2719 | // 3 cancel |
2720 | QDateTime lastSync = mLastAddressbookSync; | 2720 | QDateTime lastSync = mLastAddressbookSync; |
2721 | QDateTime localMod = local->revision(); | 2721 | QDateTime localMod = local->revision(); |
2722 | QDateTime remoteMod = remote->revision(); | 2722 | QDateTime remoteMod = remote->revision(); |
2723 | 2723 | ||
2724 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2724 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2725 | 2725 | ||
2726 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2726 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2727 | bool remCh, locCh; | 2727 | bool remCh, locCh; |
2728 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); | 2728 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); |
2729 | //if ( remCh ) | 2729 | //if ( remCh ) |
2730 | // qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); | 2730 | // qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); |
2731 | locCh = ( localMod > mLastAddressbookSync ); | 2731 | locCh = ( localMod > mLastAddressbookSync ); |
2732 | //qDebug("cahnged rem %d loc %d",remCh, locCh ); | 2732 | //qDebug("cahnged rem %d loc %d",remCh, locCh ); |
2733 | if ( !remCh && ! locCh ) { | 2733 | if ( !remCh && ! locCh ) { |
2734 | //qDebug("both not changed "); | 2734 | //qDebug("both not changed "); |
2735 | lastSync = localMod.addDays(1); | 2735 | lastSync = localMod.addDays(1); |
2736 | if ( mode <= SYNC_PREF_ASK ) | 2736 | if ( mode <= SYNC_PREF_ASK ) |
2737 | return 0; | 2737 | return 0; |
2738 | } else { | 2738 | } else { |
2739 | if ( locCh ) { | 2739 | if ( locCh ) { |
2740 | //qDebug("loc changed %s %s", localMod.toString().latin1(), mLastAddressbookSync.toString().latin1()); | 2740 | //qDebug("loc changed %s %s", localMod.toString().latin1(), mLastAddressbookSync.toString().latin1()); |
2741 | lastSync = localMod.addDays( -1 ); | 2741 | lastSync = localMod.addDays( -1 ); |
2742 | if ( !remCh ) | 2742 | if ( !remCh ) |
2743 | remoteMod =( lastSync.addDays( -1 ) ); | 2743 | remoteMod =( lastSync.addDays( -1 ) ); |
2744 | } else { | 2744 | } else { |
2745 | //qDebug(" not loc changed "); | 2745 | //qDebug(" not loc changed "); |
2746 | lastSync = localMod.addDays( 1 ); | 2746 | lastSync = localMod.addDays( 1 ); |
2747 | if ( remCh ) { | 2747 | if ( remCh ) { |
2748 | //qDebug("rem changed "); | 2748 | //qDebug("rem changed "); |
2749 | remoteMod =( lastSync.addDays( 1 ) ); | 2749 | remoteMod =( lastSync.addDays( 1 ) ); |
2750 | } | 2750 | } |
2751 | 2751 | ||
2752 | } | 2752 | } |
2753 | } | 2753 | } |
2754 | full = true; | 2754 | full = true; |
2755 | if ( mode < SYNC_PREF_ASK ) | 2755 | if ( mode < SYNC_PREF_ASK ) |
2756 | mode = SYNC_PREF_ASK; | 2756 | mode = SYNC_PREF_ASK; |
2757 | } else { | 2757 | } else { |
2758 | if ( localMod == remoteMod ) | 2758 | if ( localMod == remoteMod ) |
2759 | return 0; | 2759 | return 0; |
2760 | 2760 | ||
2761 | } | 2761 | } |
2762 | //qDebug("%s %s --- %d %d", localMod.toString().latin1() , remoteMod.toString().latin1(), localMod.time().msec(), remoteMod.time().msec()); | 2762 | //qDebug("%s %s --- %d %d", localMod.toString().latin1() , remoteMod.toString().latin1(), localMod.time().msec(), remoteMod.time().msec()); |
2763 | //qDebug("lastsync %s ", lastSync.toString().latin1() ); | 2763 | //qDebug("lastsync %s ", lastSync.toString().latin1() ); |
2764 | //full = true; //debug only | 2764 | //full = true; //debug only |
2765 | if ( full ) { | 2765 | if ( full ) { |
2766 | bool equ = ( (*local) == (*remote) ); | 2766 | bool equ = ( (*local) == (*remote) ); |
2767 | if ( equ ) { | 2767 | if ( equ ) { |
2768 | //qDebug("equal "); | 2768 | //qDebug("equal "); |
2769 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2769 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2770 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); | 2770 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); |
2771 | } | 2771 | } |
2772 | if ( mode < SYNC_PREF_FORCE_LOCAL ) | 2772 | if ( mode < SYNC_PREF_FORCE_LOCAL ) |
2773 | return 0; | 2773 | return 0; |
2774 | 2774 | ||
2775 | }//else //debug only | 2775 | }//else //debug only |
2776 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); | 2776 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); |
2777 | } | 2777 | } |
2778 | int result; | 2778 | int result; |
2779 | bool localIsNew; | 2779 | bool localIsNew; |
2780 | //qDebug("%s -- %s mLastCalendarSync %s lastsync %s --- local %s remote %s ",local->summary().latin1(), remote->summary().latin1(),mLastCalendarSync.toString().latin1() ,lastSync.toString().latin1() , local->lastModified().toString().latin1() , remote->lastModified().toString().latin1() ); | 2780 | //qDebug("%s -- %s mLastCalendarSync %s lastsync %s --- local %s remote %s ",local->summary().latin1(), remote->summary().latin1(),mLastCalendarSync.toString().latin1() ,lastSync.toString().latin1() , local->lastModified().toString().latin1() , remote->lastModified().toString().latin1() ); |
2781 | 2781 | ||
2782 | if ( full && mode < SYNC_PREF_NEWEST ) | 2782 | if ( full && mode < SYNC_PREF_NEWEST ) |
2783 | mode = SYNC_PREF_ASK; | 2783 | mode = SYNC_PREF_ASK; |
2784 | 2784 | ||
2785 | switch( mode ) { | 2785 | switch( mode ) { |
2786 | case SYNC_PREF_LOCAL: | 2786 | case SYNC_PREF_LOCAL: |
2787 | if ( lastSync > remoteMod ) | 2787 | if ( lastSync > remoteMod ) |
2788 | return 1; | 2788 | return 1; |
2789 | if ( lastSync > localMod ) | 2789 | if ( lastSync > localMod ) |
2790 | return 2; | 2790 | return 2; |
2791 | return 1; | 2791 | return 1; |
2792 | break; | 2792 | break; |
2793 | case SYNC_PREF_REMOTE: | 2793 | case SYNC_PREF_REMOTE: |
2794 | if ( lastSync > remoteMod ) | 2794 | if ( lastSync > remoteMod ) |
2795 | return 1; | 2795 | return 1; |
2796 | if ( lastSync > localMod ) | 2796 | if ( lastSync > localMod ) |
2797 | return 2; | 2797 | return 2; |
2798 | return 2; | 2798 | return 2; |
2799 | break; | 2799 | break; |
2800 | case SYNC_PREF_NEWEST: | 2800 | case SYNC_PREF_NEWEST: |
2801 | if ( localMod > remoteMod ) | 2801 | if ( localMod > remoteMod ) |
2802 | return 1; | 2802 | return 1; |
2803 | else | 2803 | else |
2804 | return 2; | 2804 | return 2; |
2805 | break; | 2805 | break; |
2806 | case SYNC_PREF_ASK: | 2806 | case SYNC_PREF_ASK: |
2807 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); | 2807 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); |
2808 | if ( lastSync > remoteMod ) | 2808 | if ( lastSync > remoteMod ) |
2809 | return 1; | 2809 | return 1; |
2810 | if ( lastSync > localMod ) { | 2810 | if ( lastSync > localMod ) { |
2811 | return 2; | 2811 | return 2; |
2812 | } | 2812 | } |
2813 | localIsNew = localMod >= remoteMod; | 2813 | localIsNew = localMod >= remoteMod; |
2814 | //qDebug("conflict! ************************************** "); | 2814 | //qDebug("conflict! ************************************** "); |
2815 | { | 2815 | { |
2816 | KABC::AddresseeChooser acd ( *local,*remote, localIsNew , this ); | 2816 | KABC::AddresseeChooser acd ( *local,*remote, localIsNew , this ); |
2817 | result = acd.executeD(localIsNew); | 2817 | result = acd.executeD(localIsNew); |
2818 | return result; | 2818 | return result; |
2819 | } | 2819 | } |
2820 | break; | 2820 | break; |
2821 | case SYNC_PREF_FORCE_LOCAL: | 2821 | case SYNC_PREF_FORCE_LOCAL: |
2822 | return 1; | 2822 | return 1; |
2823 | break; | 2823 | break; |
2824 | case SYNC_PREF_FORCE_REMOTE: | 2824 | case SYNC_PREF_FORCE_REMOTE: |
2825 | return 2; | 2825 | return 2; |
2826 | break; | 2826 | break; |
2827 | 2827 | ||
2828 | default: | 2828 | default: |
2829 | // SYNC_PREF_TAKE_BOTH not implemented | 2829 | // SYNC_PREF_TAKE_BOTH not implemented |
2830 | break; | 2830 | break; |
2831 | } | 2831 | } |
2832 | return 0; | 2832 | return 0; |
2833 | } | 2833 | } |
2834 | 2834 | ||
2835 | 2835 | ||
2836 | bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBook* remote,int mode) | 2836 | bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBook* remote,int mode) |
2837 | { | 2837 | { |
2838 | bool syncOK = true; | 2838 | bool syncOK = true; |
2839 | int addedAddressee = 0; | 2839 | int addedAddressee = 0; |
2840 | int addedAddresseeR = 0; | 2840 | int addedAddresseeR = 0; |
2841 | int deletedAddresseeR = 0; | 2841 | int deletedAddresseeR = 0; |
2842 | int deletedAddresseeL = 0; | 2842 | int deletedAddresseeL = 0; |
2843 | int changedLocal = 0; | 2843 | int changedLocal = 0; |
2844 | int changedRemote = 0; | 2844 | int changedRemote = 0; |
2845 | int filteredIN = 0; | 2845 | int filteredIN = 0; |
2846 | int filteredOUT = 0; | 2846 | int filteredOUT = 0; |
2847 | 2847 | ||
2848 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); | 2848 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); |
2849 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2849 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2850 | 2850 | ||
2851 | //QPtrList<Addressee> el = local->rawAddressees(); | 2851 | //QPtrList<Addressee> el = local->rawAddressees(); |
2852 | Addressee addresseeR; | 2852 | Addressee addresseeR; |
2853 | QString uid; | 2853 | QString uid; |
2854 | int take; | 2854 | int take; |
2855 | Addressee addresseeL; | 2855 | Addressee addresseeL; |
2856 | Addressee addresseeRSync; | 2856 | Addressee addresseeRSync; |
2857 | Addressee addresseeLSync; | 2857 | Addressee addresseeLSync; |
2858 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); | 2858 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); |
2859 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); | 2859 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); |
2860 | bool fullDateRange = false; | 2860 | bool fullDateRange = false; |
2861 | local->resetTempSyncStat(); | 2861 | local->resetTempSyncStat(); |
2862 | mLastAddressbookSync = QDateTime::currentDateTime(); | 2862 | mLastAddressbookSync = QDateTime::currentDateTime(); |
2863 | if ( syncManager->syncWithDesktop() ) { | 2863 | if ( syncManager->syncWithDesktop() ) { |
2864 | // remote->removeSyncInfo( QString());//remove all info | 2864 | // remote->removeSyncInfo( QString());//remove all info |
2865 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { | 2865 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { |
2866 | mLastAddressbookSync = KSyncManager::mRequestedSyncEvent; | 2866 | mLastAddressbookSync = KSyncManager::mRequestedSyncEvent; |
2867 | qDebug("KA: using extern time for calendar sync: %s ", mLastAddressbookSync.toString().latin1() ); | 2867 | qDebug("KA: using extern time for calendar sync: %s ", mLastAddressbookSync.toString().latin1() ); |
2868 | } else { | 2868 | } else { |
2869 | qDebug("KA: KSyncManager::mRequestedSyncEvent has invalid datatime "); | 2869 | qDebug("KA: KSyncManager::mRequestedSyncEvent has invalid datatime "); |
2870 | } | 2870 | } |
2871 | } | 2871 | } |
2872 | QDateTime modifiedCalendar = mLastAddressbookSync; | 2872 | QDateTime modifiedCalendar = mLastAddressbookSync; |
2873 | addresseeLSync = getLastSyncAddressee(); | 2873 | addresseeLSync = getLastSyncAddressee(); |
2874 | qDebug("KA: Last Sync %s ", addresseeLSync.revision().toString().latin1()); | 2874 | qDebug("KA: Last Sync %s ", addresseeLSync.revision().toString().latin1()); |
2875 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); | 2875 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); |
2876 | if ( !addresseeR.isEmpty() ) { | 2876 | if ( !addresseeR.isEmpty() ) { |
2877 | addresseeRSync = addresseeR; | 2877 | addresseeRSync = addresseeR; |
2878 | remote->removeAddressee(addresseeR ); | 2878 | remote->removeAddressee(addresseeR ); |
2879 | 2879 | ||
2880 | } else { | 2880 | } else { |
2881 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2881 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2882 | addresseeRSync = addresseeLSync ; | 2882 | addresseeRSync = addresseeLSync ; |
2883 | } else { | 2883 | } else { |
2884 | //qDebug("FULLDATE 1"); | 2884 | //qDebug("FULLDATE 1"); |
2885 | fullDateRange = true; | 2885 | fullDateRange = true; |
2886 | Addressee newAdd; | 2886 | Addressee newAdd; |
2887 | addresseeRSync = newAdd; | 2887 | addresseeRSync = newAdd; |
2888 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); | 2888 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); |
2889 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); | 2889 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); |
2890 | addresseeRSync.setRevision( mLastAddressbookSync ); | 2890 | addresseeRSync.setRevision( mLastAddressbookSync ); |
2891 | addresseeRSync.setCategories( i18n("SyncAddressee") ); | 2891 | addresseeRSync.setCategories( i18n("SyncAddressee") ); |
2892 | } | 2892 | } |
2893 | } | 2893 | } |
2894 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { | 2894 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { |
2895 | // qDebug("FULLDATE 2"); | 2895 | // qDebug("FULLDATE 2"); |
2896 | fullDateRange = true; | 2896 | fullDateRange = true; |
2897 | } | 2897 | } |
2898 | if ( ! fullDateRange ) { | 2898 | if ( ! fullDateRange ) { |
2899 | if ( addresseeLSync.revision() != addresseeRSync.revision() ) { | 2899 | if ( addresseeLSync.revision() != addresseeRSync.revision() ) { |
2900 | 2900 | ||
2901 | // qDebug("set fulldate to true %s %s" ,addresseeLSync->dtStart().toString().latin1(), addresseeRSync->dtStart().toString().latin1() ); | 2901 | // qDebug("set fulldate to true %s %s" ,addresseeLSync->dtStart().toString().latin1(), addresseeRSync->dtStart().toString().latin1() ); |
2902 | //qDebug("%d %d %d %d ", addresseeLSync->dtStart().time().second(), addresseeLSync->dtStart().time().msec() , addresseeRSync->dtStart().time().second(), addresseeRSync->dtStart().time().msec()); | 2902 | //qDebug("%d %d %d %d ", addresseeLSync->dtStart().time().second(), addresseeLSync->dtStart().time().msec() , addresseeRSync->dtStart().time().second(), addresseeRSync->dtStart().time().msec()); |
2903 | fullDateRange = true; | 2903 | fullDateRange = true; |
2904 | //qDebug("FULLDATE 3 %s %s", addresseeLSync.revision().toString().latin1() , addresseeRSync.revision().toString().latin1() ); | 2904 | //qDebug("FULLDATE 3 %s %s", addresseeLSync.revision().toString().latin1() , addresseeRSync.revision().toString().latin1() ); |
2905 | } | 2905 | } |
2906 | } | 2906 | } |
2907 | // fullDateRange = true; // debug only! | 2907 | // fullDateRange = true; // debug only! |
2908 | if ( fullDateRange ) | 2908 | if ( fullDateRange ) |
2909 | mLastAddressbookSync = QDateTime::currentDateTime().addDays( -100*365); | 2909 | mLastAddressbookSync = QDateTime::currentDateTime().addDays( -100*365); |
2910 | else | 2910 | else |
2911 | mLastAddressbookSync = addresseeLSync.revision(); | 2911 | mLastAddressbookSync = addresseeLSync.revision(); |
2912 | // for resyncing if own file has changed | 2912 | // for resyncing if own file has changed |
2913 | // PENDING fixme later when implemented | 2913 | // PENDING fixme later when implemented |
2914 | #if 0 | 2914 | #if 0 |
2915 | if ( mCurrentSyncDevice == "deleteaftersync" ) { | 2915 | if ( mCurrentSyncDevice == "deleteaftersync" ) { |
2916 | mLastAddressbookSync = loadedFileVersion; | 2916 | mLastAddressbookSync = loadedFileVersion; |
2917 | qDebug("setting mLastAddressbookSync "); | 2917 | qDebug("setting mLastAddressbookSync "); |
2918 | } | 2918 | } |
2919 | #endif | 2919 | #endif |
2920 | 2920 | ||
2921 | 2921 | ||
2922 | // ********** setting filters **************** | 2922 | // ********** setting filters **************** |
2923 | Filter filterIN = mViewManager->getFilterByName( syncManager->mFilterInAB ); | 2923 | Filter filterIN = mViewManager->getFilterByName( syncManager->mFilterInAB ); |
2924 | Filter filterOUT = mViewManager->getFilterByName( syncManager->mFilterOutAB ); | 2924 | Filter filterOUT = mViewManager->getFilterByName( syncManager->mFilterOutAB ); |
2925 | 2925 | ||
2926 | //qDebug("*************************** "); | 2926 | //qDebug("*************************** "); |
2927 | // qDebug("mLastAddressbookSync %s ",mLastAddressbookSync.toString().latin1() ); | 2927 | // qDebug("mLastAddressbookSync %s ",mLastAddressbookSync.toString().latin1() ); |
2928 | QStringList er = remote->uidList(); | 2928 | QStringList er = remote->uidList(); |
2929 | Addressee inR ;//= er.first(); | 2929 | Addressee inR ;//= er.first(); |
2930 | Addressee inL; | 2930 | Addressee inL; |
2931 | 2931 | ||
2932 | syncManager->showProgressBar(0, i18n("Syncing - close to abort!"), er.count()); | 2932 | syncManager->showProgressBar(0, i18n("Syncing - close to abort!"), er.count()); |
2933 | 2933 | ||
2934 | int modulo = (er.count()/10)+1; | 2934 | int modulo = (er.count()/10)+1; |
2935 | int incCounter = 0; | 2935 | int incCounter = 0; |
2936 | while ( incCounter < er.count()) { | 2936 | while ( incCounter < er.count()) { |
2937 | if (syncManager->isProgressBarCanceled()) | 2937 | if (syncManager->isProgressBarCanceled()) |
2938 | return false; | 2938 | return false; |
2939 | if ( incCounter % modulo == 0 ) | 2939 | if ( incCounter % modulo == 0 ) |
2940 | syncManager->showProgressBar(incCounter); | 2940 | syncManager->showProgressBar(incCounter); |
2941 | 2941 | ||
2942 | uid = er[ incCounter ]; | 2942 | uid = er[ incCounter ]; |
2943 | bool skipIncidence = false; | 2943 | bool skipIncidence = false; |
2944 | if ( uid.left(19) == QString("last-syncAddressee-") ) | 2944 | if ( uid.left(19) == QString("last-syncAddressee-") ) |
2945 | skipIncidence = true; | 2945 | skipIncidence = true; |
2946 | QString idS,OidS; | 2946 | QString idS,OidS; |
2947 | qApp->processEvents(); | 2947 | qApp->processEvents(); |
2948 | if ( !skipIncidence ) { | 2948 | if ( !skipIncidence ) { |
2949 | inL = local->findByUid( uid ); | 2949 | inL = local->findByUid( uid ); |
2950 | inR = remote->findByUid( uid ); | 2950 | inR = remote->findByUid( uid ); |
2951 | //inL.setResource( 0 ); | 2951 | //inL.setResource( 0 ); |
2952 | //inR.setResource( 0 ); | 2952 | //inR.setResource( 0 ); |
2953 | if ( !inL.isEmpty() ) { // maybe conflict - same uid in both calendars | 2953 | if ( !inL.isEmpty() ) { // maybe conflict - same uid in both calendars |
2954 | if ( !inL.resource() || inL.resource()->includeInSync() ) { | 2954 | if ( !inL.resource() || inL.resource()->includeInSync() ) { |
2955 | if ( (take = takeAddressee( &inL, &inR, mode, fullDateRange )) ) { | 2955 | if ( (take = takeAddressee( &inL, &inR, mode, fullDateRange )) ) { |
2956 | //qDebug("take %d %s ", take, inL.summary().latin1()); | 2956 | //qDebug("take %d %s ", take, inL.summary().latin1()); |
2957 | if ( take == 3 ) | 2957 | if ( take == 3 ) |
2958 | return false; | 2958 | return false; |
2959 | if ( take == 1 ) {// take local ********************** | 2959 | if ( take == 1 ) {// take local ********************** |
2960 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2960 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2961 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 2961 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
2962 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 2962 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
2963 | local->insertAddressee( inL, false ); | 2963 | local->insertAddressee( inL, false ); |
2964 | idS = inR.externalUID(); | 2964 | idS = inR.externalUID(); |
2965 | OidS = inR.originalExternalUID(); | 2965 | OidS = inR.originalExternalUID(); |
2966 | } | 2966 | } |
2967 | else | 2967 | else |
2968 | idS = inR.IDStr(); | 2968 | idS = inR.IDStr(); |
2969 | remote->removeAddressee( inR ); | 2969 | remote->removeAddressee( inR ); |
2970 | inR = inL; | 2970 | inR = inL; |
2971 | inR.setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 2971 | inR.setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
2972 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2972 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2973 | inR.setOriginalExternalUID( OidS ); | 2973 | inR.setOriginalExternalUID( OidS ); |
2974 | inR.setExternalUID( idS ); | 2974 | inR.setExternalUID( idS ); |
2975 | if ( syncManager->syncWithDesktop() ) { | 2975 | if ( syncManager->syncWithDesktop() ) { |
2976 | inR.setIDStr("changed" ); | 2976 | inR.setIDStr("changed" ); |
2977 | } | 2977 | } |
2978 | //inR.insertCustom( "KADDRESSBOOK", "X-KDESYNC","changed" ); | 2978 | //inR.insertCustom( "KADDRESSBOOK", "X-KDESYNC","changed" ); |
2979 | } else { | 2979 | } else { |
2980 | inR.setIDStr( idS ); | 2980 | inR.setIDStr( idS ); |
2981 | } | 2981 | } |
2982 | inR.setResource( 0 ); | 2982 | inR.setResource( 0 ); |
2983 | remote->insertAddressee( inR , false); | 2983 | remote->insertAddressee( inR , false); |
2984 | ++changedRemote; | 2984 | ++changedRemote; |
2985 | } else { // take == 2 take remote ********************** | 2985 | } else { // take == 2 take remote ********************** |
2986 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2986 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2987 | if ( inR.revision().date().year() < 2004 ) | 2987 | if ( inR.revision().date().year() < 2004 ) |
2988 | inR.setRevision( modifiedCalendar ); | 2988 | inR.setRevision( modifiedCalendar ); |
2989 | } | 2989 | } |
2990 | idS = inL.IDStr(); | 2990 | idS = inL.IDStr(); |
2991 | local->removeAddressee( inL ); | 2991 | local->removeAddressee( inL ); |
2992 | inL = inR; | 2992 | inL = inR; |
2993 | inL.setIDStr( idS ); | 2993 | inL.setIDStr( idS ); |
2994 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2994 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2995 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 2995 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
2996 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 2996 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
2997 | } | 2997 | } |
2998 | inL.setResource( 0 ); | 2998 | inL.setResource( 0 ); |
2999 | local->insertAddressee( inL , false ); | 2999 | local->insertAddressee( inL , false ); |
3000 | ++changedLocal; | 3000 | ++changedLocal; |
3001 | } | 3001 | } |
3002 | } | 3002 | } |
3003 | } | 3003 | } |
3004 | } else { // no conflict ********** add or delete remote | 3004 | } else { // no conflict ********** add or delete remote |
3005 | if ( filterIN.name().isEmpty() || filterIN.filterAddressee( inR ) ) { | 3005 | if ( filterIN.name().isEmpty() || filterIN.filterAddressee( inR ) ) { |
3006 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 3006 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
3007 | QString des = addresseeLSync.note(); | 3007 | QString des = addresseeLSync.note(); |
3008 | if ( des.find( inR.getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it | 3008 | if ( des.find( inR.getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it |
3009 | inR.setTempSyncStat( SYNC_TEMPSTATE_DELETE ); | 3009 | inR.setTempSyncStat( SYNC_TEMPSTATE_DELETE ); |
3010 | remote->insertAddressee( inR, false ); | 3010 | remote->insertAddressee( inR, false ); |
3011 | ++deletedAddresseeR; | 3011 | ++deletedAddresseeR; |
3012 | } else { | 3012 | } else { |
3013 | inR.setRevision( modifiedCalendar ); | 3013 | inR.setRevision( modifiedCalendar ); |
3014 | remote->insertAddressee( inR, false ); | 3014 | remote->insertAddressee( inR, false ); |
3015 | inL = inR; | 3015 | inL = inR; |
3016 | inL.setIDStr( ":" ); | 3016 | inL.setIDStr( ":" ); |
3017 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 3017 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
3018 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 3018 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
3019 | inL.setResource( 0 ); | 3019 | inL.setResource( 0 ); |
3020 | local->insertAddressee( inL , false); | 3020 | local->insertAddressee( inL , false); |
3021 | ++addedAddressee; | 3021 | ++addedAddressee; |
3022 | } | 3022 | } |
3023 | } else { | 3023 | } else { |
3024 | if ( inR.revision() > mLastAddressbookSync || mode == 5 ) { | 3024 | if ( inR.revision() > mLastAddressbookSync || mode == 5 ) { |
3025 | inR.setRevision( modifiedCalendar ); | 3025 | inR.setRevision( modifiedCalendar ); |
3026 | remote->insertAddressee( inR, false ); | 3026 | remote->insertAddressee( inR, false ); |
3027 | inR.setResource( 0 ); | 3027 | inR.setResource( 0 ); |
3028 | local->insertAddressee( inR, false ); | 3028 | local->insertAddressee( inR, false ); |
3029 | ++addedAddressee; | 3029 | ++addedAddressee; |
3030 | } else { | 3030 | } else { |
3031 | // pending checkExternSyncAddressee(addresseeRSyncSharp, inR); | 3031 | // pending checkExternSyncAddressee(addresseeRSyncSharp, inR); |
3032 | remote->removeAddressee( inR ); | 3032 | remote->removeAddressee( inR ); |
3033 | ++deletedAddresseeR; | 3033 | ++deletedAddresseeR; |
3034 | } | 3034 | } |
3035 | } | 3035 | } |
3036 | } else { | 3036 | } else { |
3037 | ++filteredIN; | 3037 | ++filteredIN; |
3038 | } | 3038 | } |
3039 | } | 3039 | } |
3040 | } | 3040 | } |
3041 | ++incCounter; | 3041 | ++incCounter; |
3042 | } | 3042 | } |
3043 | er.clear(); | 3043 | er.clear(); |
3044 | QStringList el = local->uidList(); | 3044 | QStringList el = local->uidList(); |
3045 | modulo = (el.count()/10)+1; | 3045 | modulo = (el.count()/10)+1; |
3046 | 3046 | ||
3047 | syncManager->showProgressBar(0, i18n("Add / remove addressees"), el.count()); | 3047 | syncManager->showProgressBar(0, i18n("Add / remove addressees"), el.count()); |
3048 | incCounter = 0; | 3048 | incCounter = 0; |
3049 | while ( incCounter < el.count()) { | 3049 | while ( incCounter < el.count()) { |
3050 | qApp->processEvents(); | 3050 | qApp->processEvents(); |
3051 | if (syncManager->isProgressBarCanceled()) | 3051 | if (syncManager->isProgressBarCanceled()) |
3052 | return false; | 3052 | return false; |
3053 | if ( incCounter % modulo == 0 ) | 3053 | if ( incCounter % modulo == 0 ) |
3054 | syncManager->showProgressBar(incCounter); | 3054 | syncManager->showProgressBar(incCounter); |
3055 | uid = el[ incCounter ]; | 3055 | uid = el[ incCounter ]; |
3056 | bool skipIncidence = false; | 3056 | bool skipIncidence = false; |
3057 | if ( uid.left(19) == QString("last-syncAddressee-") ) | 3057 | if ( uid.left(19) == QString("last-syncAddressee-") ) |
3058 | skipIncidence = true; | 3058 | skipIncidence = true; |
3059 | if ( !skipIncidence ) { | 3059 | if ( !skipIncidence ) { |
3060 | inL = local->findByUid( uid ); | 3060 | inL = local->findByUid( uid ); |
3061 | if ( !inL.resource() || inL.resource()->includeInSync() ) { | 3061 | if ( !inL.resource() || inL.resource()->includeInSync() ) { |
3062 | inR = remote->findByUid( uid ); | 3062 | inR = remote->findByUid( uid ); |
3063 | if ( inR.isEmpty() ){ | 3063 | if ( inR.isEmpty() ){ |
3064 | if ( filterOUT.name().isEmpty() || filterOUT.filterAddressee( inL ) ) { | 3064 | if ( filterOUT.name().isEmpty() || filterOUT.filterAddressee( inL ) ) { |
3065 | // no conflict ********** add or delete local | 3065 | // no conflict ********** add or delete local |
3066 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 3066 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
3067 | if ( !inL.getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { | 3067 | if ( !inL.getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { |
3068 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); | 3068 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); |
3069 | local->removeAddressee( inL ); | 3069 | local->removeAddressee( inL ); |
3070 | ++deletedAddresseeL; | 3070 | ++deletedAddresseeL; |
3071 | } else { | 3071 | } else { |
3072 | if ( ! syncManager->mWriteBackExistingOnly ) { | 3072 | if ( ! syncManager->mWriteBackExistingOnly ) { |
3073 | inL.removeID(mCurrentSyncDevice ); | 3073 | inL.removeID(mCurrentSyncDevice ); |
3074 | ++addedAddresseeR; | 3074 | ++addedAddresseeR; |
3075 | inL.setRevision( modifiedCalendar ); | 3075 | inL.setRevision( modifiedCalendar ); |
3076 | local->insertAddressee( inL, false ); | 3076 | local->insertAddressee( inL, false ); |
3077 | inR = inL; | 3077 | inR = inL; |
3078 | inR.setTempSyncStat( SYNC_TEMPSTATE_ADDED_EXTERNAL ); | 3078 | inR.setTempSyncStat( SYNC_TEMPSTATE_ADDED_EXTERNAL ); |
3079 | inR.setResource( 0 ); | 3079 | inR.setResource( 0 ); |
3080 | remote->insertAddressee( inR, false ); | 3080 | remote->insertAddressee( inR, false ); |
3081 | } | 3081 | } |
3082 | } | 3082 | } |
3083 | } else { | 3083 | } else { |
3084 | if ( inL.revision() < mLastAddressbookSync && mode != 4 ) { | 3084 | if ( inL.revision() < mLastAddressbookSync && mode != 4 ) { |
3085 | //qDebug("data %s ", inL.revision().toString().latin1()); | 3085 | //qDebug("data %s ", inL.revision().toString().latin1()); |
3086 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); | 3086 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); |
3087 | local->removeAddressee( inL ); | 3087 | local->removeAddressee( inL ); |
3088 | ++deletedAddresseeL; | 3088 | ++deletedAddresseeL; |
3089 | } else { | 3089 | } else { |
3090 | if ( ! syncManager->mWriteBackExistingOnly ) { | 3090 | if ( ! syncManager->mWriteBackExistingOnly ) { |
3091 | ++addedAddresseeR; | 3091 | ++addedAddresseeR; |
3092 | inL.setRevision( modifiedCalendar ); | 3092 | inL.setRevision( modifiedCalendar ); |
3093 | local->insertAddressee( inL, false ); | 3093 | local->insertAddressee( inL, false ); |
3094 | inR = inL; | 3094 | inR = inL; |
3095 | inR.setIDStr( ":" ); | 3095 | inR.setIDStr( ":" ); |
3096 | inR.setResource( 0 ); | 3096 | inR.setResource( 0 ); |
3097 | remote->insertAddressee( inR, false ); | 3097 | remote->insertAddressee( inR, false ); |
3098 | } | 3098 | } |
3099 | } | 3099 | } |
3100 | } | 3100 | } |
3101 | } else { | 3101 | } else { |
3102 | ++filteredOUT; | 3102 | ++filteredOUT; |
3103 | } | 3103 | } |
3104 | } | 3104 | } |
3105 | } | 3105 | } |
3106 | } | 3106 | } |
3107 | ++incCounter; | 3107 | ++incCounter; |
3108 | } | 3108 | } |
3109 | el.clear(); | 3109 | el.clear(); |
3110 | syncManager->hideProgressBar(); | 3110 | syncManager->hideProgressBar(); |
3111 | mLastAddressbookSync = QDateTime::currentDateTime().addSecs( 1 ); | 3111 | mLastAddressbookSync = QDateTime::currentDateTime().addSecs( 1 ); |
3112 | // get rid of micro seconds | 3112 | // get rid of micro seconds |
3113 | QTime t = mLastAddressbookSync.time(); | 3113 | QTime t = mLastAddressbookSync.time(); |
3114 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 3114 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
3115 | addresseeLSync.setRevision( mLastAddressbookSync ); | 3115 | addresseeLSync.setRevision( mLastAddressbookSync ); |
3116 | addresseeRSync.setRevision( mLastAddressbookSync ); | 3116 | addresseeRSync.setRevision( mLastAddressbookSync ); |
3117 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; | 3117 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; |
3118 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); | 3118 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); |
3119 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; | 3119 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; |
3120 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); | 3120 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); |
3121 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; | 3121 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; |
3122 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); | 3122 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); |
3123 | addresseeRSync.setNote( "" ) ; | 3123 | addresseeRSync.setNote( "" ) ; |
3124 | addresseeLSync.setNote( "" ); | 3124 | addresseeLSync.setNote( "" ); |
3125 | 3125 | ||
3126 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) | 3126 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) |
3127 | remote->insertAddressee( addresseeRSync, false ); | 3127 | remote->insertAddressee( addresseeRSync, false ); |
3128 | local->insertAddressee( addresseeLSync, false ); | 3128 | local->insertAddressee( addresseeLSync, false ); |
3129 | QString mes; | 3129 | QString mes; |
3130 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR, filteredIN, filteredOUT ); | 3130 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR, filteredIN, filteredOUT ); |
3131 | qDebug( mes ); | 3131 | qDebug( mes ); |
3132 | mes = i18n("Local addressbook changed!\n") +mes; | 3132 | mes = i18n("Local addressbook changed!\n") +mes; |
3133 | if ( syncManager->mShowSyncSummary ) { | 3133 | if ( syncManager->mShowSyncSummary ) { |
3134 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, | 3134 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, |
3135 | i18n("KA/Pi Synchronization"),i18n("Write back"))) { | 3135 | i18n("KA/Pi Synchronization"),i18n("Write back"))) { |
3136 | qDebug("KA: WB cancelled "); | 3136 | qDebug("KA: WB cancelled "); |
3137 | return false; | 3137 | syncManager->mWriteBackFile = false; |
3138 | return syncOK; | ||
3138 | } | 3139 | } |
3139 | } | 3140 | } |
3140 | return syncOK; | 3141 | return syncOK; |
3141 | } | 3142 | } |
3142 | 3143 | ||
3143 | 3144 | ||
3144 | //this is a overwritten callbackmethods from the syncinterface | 3145 | //this is a overwritten callbackmethods from the syncinterface |
3145 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) | 3146 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) |
3146 | { | 3147 | { |
3147 | 3148 | ||
3148 | //pending prepare addresseeview for output | 3149 | //pending prepare addresseeview for output |
3149 | //pending detect, if remote file has REV field. if not switch to external sync | 3150 | //pending detect, if remote file has REV field. if not switch to external sync |
3150 | mGlobalSyncMode = SYNC_MODE_NORMAL; | 3151 | mGlobalSyncMode = SYNC_MODE_NORMAL; |
3151 | if ( manager != syncManager ) | 3152 | if ( manager != syncManager ) |
3152 | qDebug("KABCore::sync:: ERROR! :: manager != syncManager "); | 3153 | qDebug("KABCore::sync:: ERROR! :: manager != syncManager "); |
3153 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 3154 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
3154 | 3155 | ||
3155 | AddressBook abLocal(filename,"syncContact"); | 3156 | AddressBook abLocal(filename,"syncContact"); |
3156 | bool syncOK = false; | 3157 | bool syncOK = false; |
3157 | if ( abLocal.load() ) { | 3158 | if ( abLocal.load() ) { |
3158 | qDebug("KA: Sync::AB loaded %s,sync mode %d",filename.latin1(), mode ); | 3159 | qDebug("KA: Sync::AB loaded %s,sync mode %d",filename.latin1(), mode ); |
3159 | bool external = false; | 3160 | bool external = false; |
3160 | bool isXML = false; | 3161 | bool isXML = false; |
3161 | if ( filename.right(4) == ".xml") { | 3162 | if ( filename.right(4) == ".xml") { |
3162 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3163 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3163 | isXML = true; | 3164 | isXML = true; |
3164 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); | 3165 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); |
3165 | } else { | 3166 | } else { |
3166 | external = !manager->mIsKapiFile; | 3167 | external = !manager->mIsKapiFile; |
3167 | if ( external ) { | 3168 | if ( external ) { |
3168 | qDebug("KA: Sync::Setting vcf mode to external "); | 3169 | qDebug("KA: Sync::Setting vcf mode to external "); |
3169 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3170 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3170 | AddressBook::Iterator it; | 3171 | AddressBook::Iterator it; |
3171 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 3172 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
3172 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); | 3173 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); |
3173 | (*it).computeCsum( mCurrentSyncDevice ); | 3174 | (*it).computeCsum( mCurrentSyncDevice ); |
3174 | } | 3175 | } |
3175 | } | 3176 | } |
3176 | } | 3177 | } |
3177 | //AddressBook::Iterator it; | 3178 | //AddressBook::Iterator it; |
3178 | //QStringList vcards; | 3179 | //QStringList vcards; |
3179 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 3180 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
3180 | // qDebug("Name %s ", (*it).familyName().latin1()); | 3181 | // qDebug("Name %s ", (*it).familyName().latin1()); |
3181 | //} | 3182 | //} |
3182 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); | 3183 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); |
3183 | if ( syncOK ) { | 3184 | if ( syncOK ) { |
3184 | if ( syncManager->mWriteBackFile ) | 3185 | if ( syncManager->mWriteBackFile ) |
3185 | { | 3186 | { |
3186 | if ( external ) | 3187 | if ( external ) |
3187 | abLocal.removeSyncAddressees( !isXML); | 3188 | abLocal.removeSyncAddressees( !isXML); |
3188 | qDebug("KA: Sync::Saving remote AB "); | 3189 | qDebug("KA: Sync::Saving remote AB "); |
3189 | if ( ! abLocal.saveAB()) | 3190 | if ( ! abLocal.saveAB()) |
3190 | qDebug("KA: sync::Error writing back AB to file "); | 3191 | qDebug("KA: sync::Error writing back AB to file "); |
3191 | if ( external ) { | 3192 | if ( external ) { |
3192 | // afterwrite processing | 3193 | // afterwrite processing |
3193 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ,isXML); | 3194 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ,isXML); |
3194 | } | 3195 | } |
3195 | } | 3196 | } |
3196 | } | 3197 | } |
3197 | setModified(); | 3198 | setModified(); |
3198 | 3199 | ||
3199 | } | 3200 | } |
3200 | abLocal.removeResources(); | 3201 | abLocal.removeResources(); |
3201 | if ( syncOK ) | 3202 | if ( syncOK ) |
3202 | mViewManager->refreshView(); | 3203 | mViewManager->refreshView(); |
3203 | return syncOK; | 3204 | return syncOK; |
3204 | 3205 | ||
3205 | } | 3206 | } |
3206 | void KABCore::removeSyncInfo( QString syncProfile) | 3207 | void KABCore::removeSyncInfo( QString syncProfile) |
3207 | { | 3208 | { |
3208 | qDebug("KA: AB:removeSyncInfo for profile %s ", syncProfile.latin1()); | 3209 | qDebug("KA: AB:removeSyncInfo for profile %s ", syncProfile.latin1()); |
3209 | mAddressBook->removeSyncInfo( syncProfile ); | 3210 | mAddressBook->removeSyncInfo( syncProfile ); |
3210 | setModified(); | 3211 | setModified(); |
3211 | } | 3212 | } |
3212 | 3213 | ||
3213 | 3214 | ||
3214 | //this is a overwritten callbackmethods from the syncinterface | 3215 | //this is a overwritten callbackmethods from the syncinterface |
3215 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) | 3216 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) |
3216 | { | 3217 | { |
3217 | if ( resource == "phone" ) | 3218 | if ( resource == "phone" ) |
3218 | return syncPhone(); | 3219 | return syncPhone(); |
3219 | disableBR( true ); | 3220 | disableBR( true ); |
3220 | if ( manager != syncManager ) | 3221 | if ( manager != syncManager ) |
3221 | qDebug("KABCore::syncExternal:: ERROR! :: manager != syncManager "); | 3222 | qDebug("KABCore::syncExternal:: ERROR! :: manager != syncManager "); |
3222 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 3223 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
3223 | 3224 | ||
3224 | AddressBook abLocal( resource,"syncContact"); | 3225 | AddressBook abLocal( resource,"syncContact"); |
3225 | bool syncOK = false; | 3226 | bool syncOK = false; |
3226 | message(i18n("Loading DTM address data..."), false); | 3227 | message(i18n("Loading DTM address data..."), false); |
3227 | if ( abLocal.load() ) { | 3228 | if ( abLocal.load() ) { |
3228 | qDebug("KA: AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 3229 | qDebug("KA: AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
3229 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3230 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3230 | message(i18n("Sync preprocessing..."),false); | 3231 | message(i18n("Sync preprocessing..."),false); |
3231 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, false ); | 3232 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, false ); |
3232 | message(i18n("Synchronizing..."),false); | 3233 | message(i18n("Synchronizing..."),false); |
3233 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 3234 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
3234 | if ( syncOK ) { | 3235 | if ( syncOK ) { |
3235 | if ( syncManager->mWriteBackFile ) { | 3236 | if ( syncManager->mWriteBackFile ) { |
3236 | abLocal.removeSyncAddressees( false ); | 3237 | abLocal.removeSyncAddressees( false ); |
3237 | message(i18n("Saving DTM address data..."),false); | 3238 | message(i18n("Saving DTM address data..."),false); |
3238 | abLocal.saveAB(); | 3239 | abLocal.saveAB(); |
3239 | message(i18n("Sync postprocessing..."),false); | 3240 | message(i18n("Sync postprocessing..."),false); |
3240 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); | 3241 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); |
3241 | } | 3242 | } |
3242 | } else | 3243 | } else |
3243 | message( i18n("Sync cancelled or failed.") ); | 3244 | message( i18n("Sync cancelled or failed.") ); |
3244 | setModified(); | 3245 | setModified(); |
3245 | } | 3246 | } |
3246 | abLocal.removeResources(); | 3247 | abLocal.removeResources(); |
3247 | if ( syncOK ) { | 3248 | if ( syncOK ) { |
3248 | mViewManager->refreshView(); | 3249 | mViewManager->refreshView(); |
3249 | message(i18n("DTM syncing finished.")); | 3250 | message(i18n("DTM syncing finished.")); |
3250 | } | 3251 | } |
3251 | disableBR( false ); | 3252 | disableBR( false ); |
3252 | return syncOK; | 3253 | return syncOK; |
3253 | 3254 | ||
3254 | } | 3255 | } |
3255 | void KABCore::message( QString m, bool startTimer) | 3256 | void KABCore::message( QString m, bool startTimer) |
3256 | { | 3257 | { |
3257 | topLevelWidget()->setCaption( m ); | 3258 | topLevelWidget()->setCaption( m ); |
3258 | qApp->processEvents(); | 3259 | qApp->processEvents(); |
3259 | if ( startTimer ) | 3260 | if ( startTimer ) |
3260 | mMessageTimer->start( 15000, true ); | 3261 | mMessageTimer->start( 15000, true ); |
3261 | else | 3262 | else |
3262 | mMessageTimer->stop(); | 3263 | mMessageTimer->stop(); |
3263 | } | 3264 | } |
3264 | bool KABCore::syncPhone() | 3265 | bool KABCore::syncPhone() |
3265 | { | 3266 | { |
3266 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 3267 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
3267 | QString fileName = getPhoneFile(); | 3268 | QString fileName = getPhoneFile(); |
3268 | if ( !PhoneAccess::readFromPhone( fileName) ) { | 3269 | if ( !PhoneAccess::readFromPhone( fileName) ) { |
3269 | message(i18n("Phone access failed!")); | 3270 | message(i18n("Phone access failed!")); |
3270 | return false; | 3271 | return false; |
3271 | } | 3272 | } |
3272 | AddressBook abLocal( fileName,"syncContact"); | 3273 | AddressBook abLocal( fileName,"syncContact"); |
3273 | bool syncOK = false; | 3274 | bool syncOK = false; |
3274 | { | 3275 | { |
3275 | abLocal.importFromFile( fileName ); | 3276 | abLocal.importFromFile( fileName ); |
3276 | qDebug("KA: AB phone loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 3277 | qDebug("KA: AB phone loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
3277 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3278 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3278 | abLocal.preparePhoneSync( mCurrentSyncDevice, true ); | 3279 | abLocal.preparePhoneSync( mCurrentSyncDevice, true ); |
3279 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); | 3280 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); |
3280 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 3281 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
3281 | if ( syncOK ) { | 3282 | if ( syncOK ) { |
3282 | if ( syncManager->mWriteBackFile ) { | 3283 | if ( syncManager->mWriteBackFile ) { |
3283 | abLocal.removeSyncAddressees( true ); | 3284 | abLocal.removeSyncAddressees( true ); |
3284 | abLocal.saveABphone( fileName ); | 3285 | abLocal.saveABphone( fileName ); |
3285 | abLocal.findNewExtIds( fileName, mCurrentSyncDevice ); | 3286 | abLocal.findNewExtIds( fileName, mCurrentSyncDevice ); |
3286 | //abLocal.preparePhoneSync( mCurrentSyncDevice, false ); | 3287 | //abLocal.preparePhoneSync( mCurrentSyncDevice, false ); |
3287 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); | 3288 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); |
3288 | } | 3289 | } |
3289 | } | 3290 | } |
3290 | setModified(); | 3291 | setModified(); |
3291 | } | 3292 | } |
3292 | abLocal.removeResources(); | 3293 | abLocal.removeResources(); |
3293 | if ( syncOK ) | 3294 | if ( syncOK ) |
3294 | mViewManager->refreshView(); | 3295 | mViewManager->refreshView(); |
3295 | return syncOK; | 3296 | return syncOK; |
3296 | } | 3297 | } |
3297 | void KABCore::getFile( bool success ) | 3298 | void KABCore::getFile( bool success ) |
3298 | { | 3299 | { |
3299 | if ( ! success ) { | 3300 | if ( ! success ) { |
3300 | message( i18n("Error receiving file. Nothing changed!") ); | 3301 | message( i18n("Error receiving file. Nothing changed!") ); |
3301 | return; | 3302 | return; |
3302 | } | 3303 | } |
3303 | int count = mAddressBook->importFromFile( sentSyncFile() , false, true ); | 3304 | int count = mAddressBook->importFromFile( sentSyncFile() , false, true ); |
3304 | if ( count ) | 3305 | if ( count ) |
3305 | setModified( true ); | 3306 | setModified( true ); |
3306 | message( i18n("Pi-Sync successful!") ); | 3307 | message( i18n("Pi-Sync successful!") ); |
3307 | mViewManager->refreshView(); | 3308 | mViewManager->refreshView(); |
3308 | } | 3309 | } |
3309 | void KABCore::syncFileRequest() | 3310 | void KABCore::syncFileRequest() |
3310 | { | 3311 | { |
3311 | if ( KABPrefs::instance()->mPassiveSyncWithDesktop ) { | 3312 | if ( KABPrefs::instance()->mPassiveSyncWithDesktop ) { |
3312 | syncManager->slotSyncMenu( 999 ); | 3313 | syncManager->slotSyncMenu( 999 ); |
3313 | } | 3314 | } |
3314 | mAddressBook->export2File( sentSyncFile() ); | 3315 | mAddressBook->export2File( sentSyncFile() ); |
3315 | } | 3316 | } |
3316 | QString KABCore::sentSyncFile() | 3317 | QString KABCore::sentSyncFile() |
3317 | { | 3318 | { |
3318 | #ifdef DESKTOP_VERSION | 3319 | #ifdef DESKTOP_VERSION |
3319 | return locateLocal( "tmp", "copysyncab.vcf" ); | 3320 | return locateLocal( "tmp", "copysyncab.vcf" ); |
3320 | #else | 3321 | #else |
3321 | return QString( "/tmp/copysyncab.vcf" ); | 3322 | return QString( "/tmp/copysyncab.vcf" ); |
3322 | #endif | 3323 | #endif |
3323 | } | 3324 | } |
3324 | 3325 | ||
3325 | void KABCore::setCaptionBack() | 3326 | void KABCore::setCaptionBack() |
3326 | { | 3327 | { |
3327 | mMessageTimer->stop(); | 3328 | mMessageTimer->stop(); |
3328 | topLevelWidget()->setCaption( i18n("KAddressbook/Pi") ); | 3329 | topLevelWidget()->setCaption( i18n("KAddressbook/Pi") ); |
3329 | } | 3330 | } |