author | zautrix <zautrix> | 2005-01-18 23:10:44 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-18 23:10:44 (UTC) |
commit | c626089f47244d0c0a9ba73bcd12f42927acb28f (patch) (unidiff) | |
tree | 2f0ca8591dab470ed3ddd6c2af860c2a8081db97 /kaddressbook | |
parent | bfb2947510c52f9c6b35c35786490f261adf30e3 (diff) | |
download | kdepimpi-c626089f47244d0c0a9ba73bcd12f42927acb28f.zip kdepimpi-c626089f47244d0c0a9ba73bcd12f42927acb28f.tar.gz kdepimpi-c626089f47244d0c0a9ba73bcd12f42927acb28f.tar.bz2 |
fix
-rw-r--r-- | kaddressbook/kabcore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index e88706e..505cbf4 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1653,385 +1653,385 @@ void KABCore::configurationChanged() | |||
1653 | { | 1653 | { |
1654 | mExtensionManager->reconfigure(); | 1654 | mExtensionManager->reconfigure(); |
1655 | } | 1655 | } |
1656 | 1656 | ||
1657 | void KABCore::addressBookChanged() | 1657 | void KABCore::addressBookChanged() |
1658 | { | 1658 | { |
1659 | /*US | 1659 | /*US |
1660 | QDictIterator<AddresseeEditorDialog> it( mEditorDict ); | 1660 | QDictIterator<AddresseeEditorDialog> it( mEditorDict ); |
1661 | while ( it.current() ) { | 1661 | while ( it.current() ) { |
1662 | if ( it.current()->dirty() ) { | 1662 | if ( it.current()->dirty() ) { |
1663 | QString text = i18n( "Data has been changed externally. Unsaved " | 1663 | QString text = i18n( "Data has been changed externally. Unsaved " |
1664 | "changes will be lost." ); | 1664 | "changes will be lost." ); |
1665 | KMessageBox::information( this, text ); | 1665 | KMessageBox::information( this, text ); |
1666 | } | 1666 | } |
1667 | it.current()->setAddressee( mAddressBook->findByUid( it.currentKey() ) ); | 1667 | it.current()->setAddressee( mAddressBook->findByUid( it.currentKey() ) ); |
1668 | ++it; | 1668 | ++it; |
1669 | } | 1669 | } |
1670 | */ | 1670 | */ |
1671 | if (mEditorDialog) | 1671 | if (mEditorDialog) |
1672 | { | 1672 | { |
1673 | if (mEditorDialog->dirty()) | 1673 | if (mEditorDialog->dirty()) |
1674 | { | 1674 | { |
1675 | QString text = i18n( "Data has been changed externally. Unsaved " | 1675 | QString text = i18n( "Data has been changed externally. Unsaved " |
1676 | "changes will be lost." ); | 1676 | "changes will be lost." ); |
1677 | KMessageBox::information( this, text ); | 1677 | KMessageBox::information( this, text ); |
1678 | } | 1678 | } |
1679 | QString currentuid = mEditorDialog->addressee().uid(); | 1679 | QString currentuid = mEditorDialog->addressee().uid(); |
1680 | mEditorDialog->setAddressee( mAddressBook->findByUid( currentuid ) ); | 1680 | mEditorDialog->setAddressee( mAddressBook->findByUid( currentuid ) ); |
1681 | } | 1681 | } |
1682 | mViewManager->refreshView(); | 1682 | mViewManager->refreshView(); |
1683 | 1683 | ||
1684 | 1684 | ||
1685 | } | 1685 | } |
1686 | 1686 | ||
1687 | AddresseeEditorDialog *KABCore::createAddresseeEditorDialog( QWidget *parent, | 1687 | AddresseeEditorDialog *KABCore::createAddresseeEditorDialog( QWidget *parent, |
1688 | const char *name ) | 1688 | const char *name ) |
1689 | { | 1689 | { |
1690 | 1690 | ||
1691 | if ( mEditorDialog == 0 ) { | 1691 | if ( mEditorDialog == 0 ) { |
1692 | mEditorDialog = new AddresseeEditorDialog( this, parent, | 1692 | mEditorDialog = new AddresseeEditorDialog( this, parent, |
1693 | name ? name : "editorDialog" ); | 1693 | name ? name : "editorDialog" ); |
1694 | 1694 | ||
1695 | 1695 | ||
1696 | connect( mEditorDialog, SIGNAL( contactModified( const KABC::Addressee& ) ), | 1696 | connect( mEditorDialog, SIGNAL( contactModified( const KABC::Addressee& ) ), |
1697 | SLOT( contactModified( const KABC::Addressee& ) ) ); | 1697 | SLOT( contactModified( const KABC::Addressee& ) ) ); |
1698 | //connect( mEditorDialog, SIGNAL( editorDestroyed( const QString& ) ), | 1698 | //connect( mEditorDialog, SIGNAL( editorDestroyed( const QString& ) ), |
1699 | // SLOT( slotEditorDestroyed( const QString& ) ) ; | 1699 | // SLOT( slotEditorDestroyed( const QString& ) ) ; |
1700 | } | 1700 | } |
1701 | 1701 | ||
1702 | return mEditorDialog; | 1702 | return mEditorDialog; |
1703 | } | 1703 | } |
1704 | 1704 | ||
1705 | void KABCore::slotEditorDestroyed( const QString &uid ) | 1705 | void KABCore::slotEditorDestroyed( const QString &uid ) |
1706 | { | 1706 | { |
1707 | //mEditorDict.remove( uid ); | 1707 | //mEditorDict.remove( uid ); |
1708 | } | 1708 | } |
1709 | 1709 | ||
1710 | void KABCore::initGUI() | 1710 | void KABCore::initGUI() |
1711 | { | 1711 | { |
1712 | #ifndef KAB_EMBEDDED | 1712 | #ifndef KAB_EMBEDDED |
1713 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1713 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1714 | topLayout->setSpacing( KDialogBase::spacingHint() ); | 1714 | topLayout->setSpacing( KDialogBase::spacingHint() ); |
1715 | 1715 | ||
1716 | mExtensionBarSplitter = new QSplitter( this ); | 1716 | mExtensionBarSplitter = new QSplitter( this ); |
1717 | mExtensionBarSplitter->setOrientation( Qt::Vertical ); | 1717 | mExtensionBarSplitter->setOrientation( Qt::Vertical ); |
1718 | 1718 | ||
1719 | mDetailsSplitter = new QSplitter( mExtensionBarSplitter ); | 1719 | mDetailsSplitter = new QSplitter( mExtensionBarSplitter ); |
1720 | 1720 | ||
1721 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); | 1721 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); |
1722 | mIncSearchWidget = new IncSearchWidget( viewSpace ); | 1722 | mIncSearchWidget = new IncSearchWidget( viewSpace ); |
1723 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 1723 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
1724 | SLOT( incrementalSearch( const QString& ) ) ); | 1724 | SLOT( incrementalSearch( const QString& ) ) ); |
1725 | 1725 | ||
1726 | mViewManager = new ViewManager( this, viewSpace ); | 1726 | mViewManager = new ViewManager( this, viewSpace ); |
1727 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1727 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1728 | 1728 | ||
1729 | mDetails = new ViewContainer( mDetailsSplitter ); | 1729 | mDetails = new ViewContainer( mDetailsSplitter ); |
1730 | 1730 | ||
1731 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1731 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1732 | 1732 | ||
1733 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1733 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1734 | 1734 | ||
1735 | topLayout->addWidget( mExtensionBarSplitter ); | 1735 | topLayout->addWidget( mExtensionBarSplitter ); |
1736 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); | 1736 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); |
1737 | topLayout->addWidget( mJumpButtonBar ); | 1737 | topLayout->addWidget( mJumpButtonBar ); |
1738 | topLayout->setStretchFactor( mJumpButtonBar, 1 ); | 1738 | topLayout->setStretchFactor( mJumpButtonBar, 1 ); |
1739 | 1739 | ||
1740 | mXXPortManager = new XXPortManager( this, this ); | 1740 | mXXPortManager = new XXPortManager( this, this ); |
1741 | 1741 | ||
1742 | #else //KAB_EMBEDDED | 1742 | #else //KAB_EMBEDDED |
1743 | //US initialize viewMenu before settingup viewmanager. | 1743 | //US initialize viewMenu before settingup viewmanager. |
1744 | // Viewmanager needs this menu to plugin submenues. | 1744 | // Viewmanager needs this menu to plugin submenues. |
1745 | viewMenu = new QPopupMenu( this ); | 1745 | viewMenu = new QPopupMenu( this ); |
1746 | settingsMenu = new QPopupMenu( this ); | 1746 | settingsMenu = new QPopupMenu( this ); |
1747 | //filterMenu = new QPopupMenu( this ); | 1747 | //filterMenu = new QPopupMenu( this ); |
1748 | ImportMenu = new QPopupMenu( this ); | 1748 | ImportMenu = new QPopupMenu( this ); |
1749 | ExportMenu = new QPopupMenu( this ); | 1749 | ExportMenu = new QPopupMenu( this ); |
1750 | syncMenu = new QPopupMenu( this ); | 1750 | syncMenu = new QPopupMenu( this ); |
1751 | changeMenu= new QPopupMenu( this ); | 1751 | changeMenu= new QPopupMenu( this ); |
1752 | beamMenu= new QPopupMenu( this ); | 1752 | beamMenu= new QPopupMenu( this ); |
1753 | 1753 | ||
1754 | //US since we have no splitter for the embedded system, setup | 1754 | //US since we have no splitter for the embedded system, setup |
1755 | // a layout with two frames. One left and one right. | 1755 | // a layout with two frames. One left and one right. |
1756 | 1756 | ||
1757 | QBoxLayout *topLayout; | 1757 | QBoxLayout *topLayout; |
1758 | 1758 | ||
1759 | // = new QHBoxLayout( this ); | 1759 | // = new QHBoxLayout( this ); |
1760 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); | 1760 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); |
1761 | 1761 | ||
1762 | // QWidget *mainBox = new QWidget( this ); | 1762 | // QWidget *mainBox = new QWidget( this ); |
1763 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); | 1763 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); |
1764 | 1764 | ||
1765 | #ifdef DESKTOP_VERSION | 1765 | #ifdef DESKTOP_VERSION |
1766 | topLayout = new QHBoxLayout( this ); | 1766 | topLayout = new QHBoxLayout( this ); |
1767 | 1767 | ||
1768 | 1768 | ||
1769 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); | 1769 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); |
1770 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 1770 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
1771 | 1771 | ||
1772 | topLayout->addWidget(mMiniSplitter ); | 1772 | topLayout->addWidget(mMiniSplitter ); |
1773 | 1773 | ||
1774 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); | 1774 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); |
1775 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); | 1775 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); |
1776 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); | 1776 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); |
1777 | mDetails = new ViewContainer( mMiniSplitter ); | 1777 | mDetails = new ViewContainer( mMiniSplitter ); |
1778 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1778 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1779 | #else | 1779 | #else |
1780 | if ( QApplication::desktop()->width() > 480 ) { | 1780 | if ( QApplication::desktop()->width() > 480 ) { |
1781 | topLayout = new QHBoxLayout( this ); | 1781 | topLayout = new QHBoxLayout( this ); |
1782 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); | 1782 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); |
1783 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 1783 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
1784 | } else { | 1784 | } else { |
1785 | 1785 | ||
1786 | topLayout = new QHBoxLayout( this ); | 1786 | topLayout = new QHBoxLayout( this ); |
1787 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Vertical, this); | 1787 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Vertical, this); |
1788 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); | 1788 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); |
1789 | } | 1789 | } |
1790 | 1790 | ||
1791 | topLayout->addWidget(mMiniSplitter ); | 1791 | topLayout->addWidget(mMiniSplitter ); |
1792 | mViewManager = new ViewManager( this, mMiniSplitter ); | 1792 | mViewManager = new ViewManager( this, mMiniSplitter ); |
1793 | mDetails = new ViewContainer( mMiniSplitter ); | 1793 | mDetails = new ViewContainer( mMiniSplitter ); |
1794 | 1794 | ||
1795 | 1795 | ||
1796 | mExtensionManager = new ExtensionManager( this, mMiniSplitter ); | 1796 | mExtensionManager = new ExtensionManager( this, mMiniSplitter ); |
1797 | #endif | 1797 | #endif |
1798 | //eh->hide(); | 1798 | //eh->hide(); |
1799 | // topLayout->addWidget(mExtensionManager ); | 1799 | // topLayout->addWidget(mExtensionManager ); |
1800 | 1800 | ||
1801 | 1801 | ||
1802 | /*US | 1802 | /*US |
1803 | #ifndef KAB_NOSPLITTER | 1803 | #ifndef KAB_NOSPLITTER |
1804 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1804 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1805 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); | 1805 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); |
1806 | topLayout->setSpacing( 10 ); | 1806 | topLayout->setSpacing( 10 ); |
1807 | 1807 | ||
1808 | mDetailsSplitter = new QSplitter( this ); | 1808 | mDetailsSplitter = new QSplitter( this ); |
1809 | 1809 | ||
1810 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); | 1810 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); |
1811 | 1811 | ||
1812 | mViewManager = new ViewManager( this, viewSpace ); | 1812 | mViewManager = new ViewManager( this, viewSpace ); |
1813 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1813 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1814 | 1814 | ||
1815 | mDetails = new ViewContainer( mDetailsSplitter ); | 1815 | mDetails = new ViewContainer( mDetailsSplitter ); |
1816 | 1816 | ||
1817 | topLayout->addWidget( mDetailsSplitter ); | 1817 | topLayout->addWidget( mDetailsSplitter ); |
1818 | topLayout->setStretchFactor( mDetailsSplitter, 100 ); | 1818 | topLayout->setStretchFactor( mDetailsSplitter, 100 ); |
1819 | #else //KAB_NOSPLITTER | 1819 | #else //KAB_NOSPLITTER |
1820 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1820 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1821 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); | 1821 | //US topLayout->setSpacing( KDialogBase::spacingHint() ); |
1822 | topLayout->setSpacing( 10 ); | 1822 | topLayout->setSpacing( 10 ); |
1823 | 1823 | ||
1824 | // mDetailsSplitter = new QSplitter( this ); | 1824 | // mDetailsSplitter = new QSplitter( this ); |
1825 | 1825 | ||
1826 | QVBox *viewSpace = new QVBox( this ); | 1826 | QVBox *viewSpace = new QVBox( this ); |
1827 | 1827 | ||
1828 | mViewManager = new ViewManager( this, viewSpace ); | 1828 | mViewManager = new ViewManager( this, viewSpace ); |
1829 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1829 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1830 | 1830 | ||
1831 | mDetails = new ViewContainer( this ); | 1831 | mDetails = new ViewContainer( this ); |
1832 | 1832 | ||
1833 | topLayout->addWidget( viewSpace ); | 1833 | topLayout->addWidget( viewSpace ); |
1834 | // topLayout->setStretchFactor( mDetailsSplitter, 100 ); | 1834 | // topLayout->setStretchFactor( mDetailsSplitter, 100 ); |
1835 | topLayout->addWidget( mDetails ); | 1835 | topLayout->addWidget( mDetails ); |
1836 | #endif //KAB_NOSPLITTER | 1836 | #endif //KAB_NOSPLITTER |
1837 | */ | 1837 | */ |
1838 | 1838 | ||
1839 | syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::KAPI, KABPrefs::instance(), syncMenu); | 1839 | syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::KAPI, KABPrefs::instance(), syncMenu); |
1840 | syncManager->setBlockSave(false); | 1840 | syncManager->setBlockSave(false); |
1841 | 1841 | ||
1842 | connect(syncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); | 1842 | connect(syncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); |
1843 | connect(syncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); | 1843 | connect(syncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); |
1844 | QString sync_file = sentSyncFile(); | 1844 | QString sync_file = sentSyncFile(); |
1845 | qDebug("KABCore::initGUI()::setting tmp sync file to:%s ",sync_file.latin1()); | 1845 | //qDebug("KABCore::initGUI()::setting tmp sync file to:%s ",sync_file.latin1()); |
1846 | syncManager->setDefaultFileName( sync_file ); | 1846 | syncManager->setDefaultFileName( sync_file ); |
1847 | //connect(syncManager , SIGNAL( ), this, SLOT( ) ); | 1847 | //connect(syncManager , SIGNAL( ), this, SLOT( ) ); |
1848 | 1848 | ||
1849 | #endif //KAB_EMBEDDED | 1849 | #endif //KAB_EMBEDDED |
1850 | initActions(); | 1850 | initActions(); |
1851 | 1851 | ||
1852 | #ifdef KAB_EMBEDDED | 1852 | #ifdef KAB_EMBEDDED |
1853 | addActionsManually(); | 1853 | addActionsManually(); |
1854 | //US make sure the export and import menues are initialized before creating the xxPortManager. | 1854 | //US make sure the export and import menues are initialized before creating the xxPortManager. |
1855 | mXXPortManager = new XXPortManager( this, this ); | 1855 | mXXPortManager = new XXPortManager( this, this ); |
1856 | 1856 | ||
1857 | // LR mIncSearchWidget = new IncSearchWidget( mMainWindow->getIconToolBar() ); | 1857 | // LR mIncSearchWidget = new IncSearchWidget( mMainWindow->getIconToolBar() ); |
1858 | //mMainWindow->toolBar()->insertWidget(-1, 4, mIncSearchWidget); | 1858 | //mMainWindow->toolBar()->insertWidget(-1, 4, mIncSearchWidget); |
1859 | // mActionQuit->plug ( mMainWindow->toolBar()); | 1859 | // mActionQuit->plug ( mMainWindow->toolBar()); |
1860 | //mIncSearchWidget = new IncSearchWidget( mMainWindow->toolBar() ); | 1860 | //mIncSearchWidget = new IncSearchWidget( mMainWindow->toolBar() ); |
1861 | //mMainWindow->toolBar()->insertWidget(-1, 0, mIncSearchWidget); | 1861 | //mMainWindow->toolBar()->insertWidget(-1, 0, mIncSearchWidget); |
1862 | // mIncSearchWidget->hide(); | 1862 | // mIncSearchWidget->hide(); |
1863 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 1863 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
1864 | SLOT( incrementalSearch( const QString& ) ) ); | 1864 | SLOT( incrementalSearch( const QString& ) ) ); |
1865 | connect( mIncSearchWidget, SIGNAL( scrollUP() ),mViewManager, SLOT( scrollUP() ) ); | 1865 | connect( mIncSearchWidget, SIGNAL( scrollUP() ),mViewManager, SLOT( scrollUP() ) ); |
1866 | connect( mIncSearchWidget, SIGNAL( scrollDOWN() ),mViewManager, SLOT( scrollDOWN() ) ); | 1866 | connect( mIncSearchWidget, SIGNAL( scrollDOWN() ),mViewManager, SLOT( scrollDOWN() ) ); |
1867 | 1867 | ||
1868 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1868 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1869 | 1869 | ||
1870 | topLayout->addWidget( mJumpButtonBar ); | 1870 | topLayout->addWidget( mJumpButtonBar ); |
1871 | //US topLayout->setStretchFactor( mJumpButtonBar, 10 ); | 1871 | //US topLayout->setStretchFactor( mJumpButtonBar, 10 ); |
1872 | 1872 | ||
1873 | // mMainWindow->getIconToolBar()->raise(); | 1873 | // mMainWindow->getIconToolBar()->raise(); |
1874 | 1874 | ||
1875 | #endif //KAB_EMBEDDED | 1875 | #endif //KAB_EMBEDDED |
1876 | 1876 | ||
1877 | } | 1877 | } |
1878 | void KABCore::initActions() | 1878 | void KABCore::initActions() |
1879 | { | 1879 | { |
1880 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); | 1880 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); |
1881 | 1881 | ||
1882 | #ifndef KAB_EMBEDDED | 1882 | #ifndef KAB_EMBEDDED |
1883 | connect( QApplication::clipboard(), SIGNAL( dataChanged() ), | 1883 | connect( QApplication::clipboard(), SIGNAL( dataChanged() ), |
1884 | SLOT( clipboardDataChanged() ) ); | 1884 | SLOT( clipboardDataChanged() ) ); |
1885 | #endif //KAB_EMBEDDED | 1885 | #endif //KAB_EMBEDDED |
1886 | 1886 | ||
1887 | // file menu | 1887 | // file menu |
1888 | 1888 | ||
1889 | mActionMail = KStdAction::mail( this, SLOT( sendMail() ), actionCollection() ); | 1889 | mActionMail = KStdAction::mail( this, SLOT( sendMail() ), actionCollection() ); |
1890 | //mActionPrint = KStdAction::print( this, SLOT( print() ), actionCollection() ); | 1890 | //mActionPrint = KStdAction::print( this, SLOT( print() ), actionCollection() ); |
1891 | mActionPrint = new KAction( i18n( "&Print View" ), "fileprint", CTRL + Key_P, mViewManager, | 1891 | mActionPrint = new KAction( i18n( "&Print View" ), "fileprint", CTRL + Key_P, mViewManager, |
1892 | SLOT( printView() ), actionCollection(), "kaddressbook_print" ); | 1892 | SLOT( printView() ), actionCollection(), "kaddressbook_print" ); |
1893 | 1893 | ||
1894 | 1894 | ||
1895 | mActionPrintDetails = new KAction( i18n( "&Print Details" ), "fileprint", 0, mDetails, | 1895 | mActionPrintDetails = new KAction( i18n( "&Print Details" ), "fileprint", 0, mDetails, |
1896 | SLOT( printView() ), actionCollection(), "kaddressbook_print2" ); | 1896 | SLOT( printView() ), actionCollection(), "kaddressbook_print2" ); |
1897 | 1897 | ||
1898 | mActionSave = new KAction( i18n( "&Save" ), "filesave", CTRL+Key_S, this, | 1898 | mActionSave = new KAction( i18n( "&Save" ), "filesave", CTRL+Key_S, this, |
1899 | SLOT( save() ), actionCollection(), "file_sync" ); | 1899 | SLOT( save() ), actionCollection(), "file_sync" ); |
1900 | 1900 | ||
1901 | mActionNewContact = new KAction( i18n( "&New Contact..." ), "filenew", CTRL+Key_N, this, | 1901 | mActionNewContact = new KAction( i18n( "&New Contact..." ), "filenew", CTRL+Key_N, this, |
1902 | SLOT( newContact() ), actionCollection(), "file_new_contact" ); | 1902 | SLOT( newContact() ), actionCollection(), "file_new_contact" ); |
1903 | 1903 | ||
1904 | mActionMailVCard = new KAction(i18n("Mail &vCard..."), "mail_post_to", 0, | 1904 | mActionMailVCard = new KAction(i18n("Mail &vCard..."), "mail_post_to", 0, |
1905 | this, SLOT( mailVCard() ), | 1905 | this, SLOT( mailVCard() ), |
1906 | actionCollection(), "file_mail_vcard"); | 1906 | actionCollection(), "file_mail_vcard"); |
1907 | 1907 | ||
1908 | mActionExport2phone = new KAction( i18n( "Export to phone" ), "ex2phone", 0, this, | 1908 | mActionExport2phone = new KAction( i18n( "Export to phone" ), "ex2phone", 0, this, |
1909 | SLOT( export2phone() ), actionCollection(), | 1909 | SLOT( export2phone() ), actionCollection(), |
1910 | "kaddressbook_ex2phone" ); | 1910 | "kaddressbook_ex2phone" ); |
1911 | 1911 | ||
1912 | mActionBeamVCard = 0; | 1912 | mActionBeamVCard = 0; |
1913 | mActionBeam = 0; | 1913 | mActionBeam = 0; |
1914 | 1914 | ||
1915 | #ifndef DESKTOP_VERSION | 1915 | #ifndef DESKTOP_VERSION |
1916 | if ( Ir::supported() ) { | 1916 | if ( Ir::supported() ) { |
1917 | mActionBeamVCard = new KAction( i18n( "Beam v&Card(s)..." ), "beam", 0, this, | 1917 | mActionBeamVCard = new KAction( i18n( "Beam v&Card(s)..." ), "beam", 0, this, |
1918 | SLOT( beamVCard() ), actionCollection(), | 1918 | SLOT( beamVCard() ), actionCollection(), |
1919 | "kaddressbook_beam_vcard" ); | 1919 | "kaddressbook_beam_vcard" ); |
1920 | 1920 | ||
1921 | mActionBeam = new KAction( i18n( "&Beam personal vCard" ), "beam", 0, this, | 1921 | mActionBeam = new KAction( i18n( "&Beam personal vCard" ), "beam", 0, this, |
1922 | SLOT( beamMySelf() ), actionCollection(), | 1922 | SLOT( beamMySelf() ), actionCollection(), |
1923 | "kaddressbook_beam_myself" ); | 1923 | "kaddressbook_beam_myself" ); |
1924 | } | 1924 | } |
1925 | #endif | 1925 | #endif |
1926 | 1926 | ||
1927 | mActionEditAddressee = new KAction( i18n( "&Edit Contact..." ), "edit", 0, | 1927 | mActionEditAddressee = new KAction( i18n( "&Edit Contact..." ), "edit", 0, |
1928 | this, SLOT( editContact2() ), | 1928 | this, SLOT( editContact2() ), |
1929 | actionCollection(), "file_properties" ); | 1929 | actionCollection(), "file_properties" ); |
1930 | 1930 | ||
1931 | #ifdef KAB_EMBEDDED | 1931 | #ifdef KAB_EMBEDDED |
1932 | // mActionQuit = KStdAction::quit( mMainWindow, SLOT( exit() ), actionCollection() ); | 1932 | // mActionQuit = KStdAction::quit( mMainWindow, SLOT( exit() ), actionCollection() ); |
1933 | mActionQuit = new KAction( i18n( "&Exit" ), "exit", 0, | 1933 | mActionQuit = new KAction( i18n( "&Exit" ), "exit", 0, |
1934 | mMainWindow, SLOT( exit() ), | 1934 | mMainWindow, SLOT( exit() ), |
1935 | actionCollection(), "quit" ); | 1935 | actionCollection(), "quit" ); |
1936 | #endif //KAB_EMBEDDED | 1936 | #endif //KAB_EMBEDDED |
1937 | 1937 | ||
1938 | // edit menu | 1938 | // edit menu |
1939 | if ( mIsPart ) { | 1939 | if ( mIsPart ) { |
1940 | mActionCopy = new KAction( i18n( "&Copy" ), "editcopy", CTRL + Key_C, this, | 1940 | mActionCopy = new KAction( i18n( "&Copy" ), "editcopy", CTRL + Key_C, this, |
1941 | SLOT( copyContacts() ), actionCollection(), | 1941 | SLOT( copyContacts() ), actionCollection(), |
1942 | "kaddressbook_copy" ); | 1942 | "kaddressbook_copy" ); |
1943 | mActionCut = new KAction( i18n( "Cu&t" ), "editcut", CTRL + Key_X, this, | 1943 | mActionCut = new KAction( i18n( "Cu&t" ), "editcut", CTRL + Key_X, this, |
1944 | SLOT( cutContacts() ), actionCollection(), | 1944 | SLOT( cutContacts() ), actionCollection(), |
1945 | "kaddressbook_cut" ); | 1945 | "kaddressbook_cut" ); |
1946 | mActionPaste = new KAction( i18n( "&Paste" ), "editpaste", CTRL + Key_V, this, | 1946 | mActionPaste = new KAction( i18n( "&Paste" ), "editpaste", CTRL + Key_V, this, |
1947 | SLOT( pasteContacts() ), actionCollection(), | 1947 | SLOT( pasteContacts() ), actionCollection(), |
1948 | "kaddressbook_paste" ); | 1948 | "kaddressbook_paste" ); |
1949 | mActionSelectAll = new KAction( i18n( "Select &All" ), CTRL + Key_A, this, | 1949 | mActionSelectAll = new KAction( i18n( "Select &All" ), CTRL + Key_A, this, |
1950 | SLOT( selectAllContacts() ), actionCollection(), | 1950 | SLOT( selectAllContacts() ), actionCollection(), |
1951 | "kaddressbook_select_all" ); | 1951 | "kaddressbook_select_all" ); |
1952 | mActionUndo = new KAction( i18n( "&Undo" ), "undo", CTRL + Key_Z, this, | 1952 | mActionUndo = new KAction( i18n( "&Undo" ), "undo", CTRL + Key_Z, this, |
1953 | SLOT( undo() ), actionCollection(), | 1953 | SLOT( undo() ), actionCollection(), |
1954 | "kaddressbook_undo" ); | 1954 | "kaddressbook_undo" ); |
1955 | mActionRedo = new KAction( i18n( "Re&do" ), "redo", CTRL + SHIFT + Key_Z, | 1955 | mActionRedo = new KAction( i18n( "Re&do" ), "redo", CTRL + SHIFT + Key_Z, |
1956 | this, SLOT( redo() ), actionCollection(), | 1956 | this, SLOT( redo() ), actionCollection(), |
1957 | "kaddressbook_redo" ); | 1957 | "kaddressbook_redo" ); |
1958 | } else { | 1958 | } else { |
1959 | mActionCopy = KStdAction::copy( this, SLOT( copyContacts() ), actionCollection() ); | 1959 | mActionCopy = KStdAction::copy( this, SLOT( copyContacts() ), actionCollection() ); |
1960 | mActionCut = KStdAction::cut( this, SLOT( cutContacts() ), actionCollection() ); | 1960 | mActionCut = KStdAction::cut( this, SLOT( cutContacts() ), actionCollection() ); |
1961 | mActionPaste = KStdAction::paste( this, SLOT( pasteContacts() ), actionCollection() ); | 1961 | mActionPaste = KStdAction::paste( this, SLOT( pasteContacts() ), actionCollection() ); |
1962 | mActionSelectAll = KStdAction::selectAll( this, SLOT( selectAllContacts() ), actionCollection() ); | 1962 | mActionSelectAll = KStdAction::selectAll( this, SLOT( selectAllContacts() ), actionCollection() ); |
1963 | mActionUndo = KStdAction::undo( this, SLOT( undo() ), actionCollection() ); | 1963 | mActionUndo = KStdAction::undo( this, SLOT( undo() ), actionCollection() ); |
1964 | mActionRedo = KStdAction::redo( this, SLOT( redo() ), actionCollection() ); | 1964 | mActionRedo = KStdAction::redo( this, SLOT( redo() ), actionCollection() ); |
1965 | } | 1965 | } |
1966 | 1966 | ||
1967 | mActionDelete = new KAction( i18n( "&Delete Contact" ), "editdelete", | 1967 | mActionDelete = new KAction( i18n( "&Delete Contact" ), "editdelete", |
1968 | Key_Delete, this, SLOT( deleteContacts() ), | 1968 | Key_Delete, this, SLOT( deleteContacts() ), |
1969 | actionCollection(), "edit_delete" ); | 1969 | actionCollection(), "edit_delete" ); |
1970 | 1970 | ||
1971 | mActionUndo->setEnabled( false ); | 1971 | mActionUndo->setEnabled( false ); |
1972 | mActionRedo->setEnabled( false ); | 1972 | mActionRedo->setEnabled( false ); |
1973 | 1973 | ||
1974 | // settings menu | 1974 | // settings menu |
1975 | #ifdef KAB_EMBEDDED | 1975 | #ifdef KAB_EMBEDDED |
1976 | //US special menuentry to configure the addressbook resources. On KDE | 1976 | //US special menuentry to configure the addressbook resources. On KDE |
1977 | // you do that through the control center !!! | 1977 | // you do that through the control center !!! |
1978 | mActionConfigResources = new KAction( i18n( "Configure &Resources..." ), "configure_resources", 0, this, | 1978 | mActionConfigResources = new KAction( i18n( "Configure &Resources..." ), "configure_resources", 0, this, |
1979 | SLOT( configureResources() ), actionCollection(), | 1979 | SLOT( configureResources() ), actionCollection(), |
1980 | "kaddressbook_configure_resources" ); | 1980 | "kaddressbook_configure_resources" ); |
1981 | #endif //KAB_EMBEDDED | 1981 | #endif //KAB_EMBEDDED |
1982 | 1982 | ||
1983 | if ( mIsPart ) { | 1983 | if ( mIsPart ) { |
1984 | mActionConfigKAddressbook = new KAction( i18n( "&Configure KAddressBook..." ), "configure", 0, this, | 1984 | mActionConfigKAddressbook = new KAction( i18n( "&Configure KAddressBook..." ), "configure", 0, this, |
1985 | SLOT( openConfigDialog() ), actionCollection(), | 1985 | SLOT( openConfigDialog() ), actionCollection(), |
1986 | "kaddressbook_configure" ); | 1986 | "kaddressbook_configure" ); |
1987 | 1987 | ||
1988 | //US not implemented yet | 1988 | //US not implemented yet |
1989 | //mActionConfigShortcuts = new KAction( i18n( "Configure S&hortcuts..." ), "configure_shortcuts", 0, | 1989 | //mActionConfigShortcuts = new KAction( i18n( "Configure S&hortcuts..." ), "configure_shortcuts", 0, |
1990 | // this, SLOT( configureKeyBindings() ), actionCollection(), | 1990 | // this, SLOT( configureKeyBindings() ), actionCollection(), |
1991 | // "kaddressbook_configure_shortcuts" ); | 1991 | // "kaddressbook_configure_shortcuts" ); |
1992 | #ifdef KAB_EMBEDDED | 1992 | #ifdef KAB_EMBEDDED |
1993 | mActionConfigureToolbars = KStdAction::configureToolbars( this, SLOT( mMainWindow->configureToolbars() ), actionCollection() ); | 1993 | mActionConfigureToolbars = KStdAction::configureToolbars( this, SLOT( mMainWindow->configureToolbars() ), actionCollection() ); |
1994 | mActionConfigureToolbars->setEnabled( false ); | 1994 | mActionConfigureToolbars->setEnabled( false ); |
1995 | #endif //KAB_EMBEDDED | 1995 | #endif //KAB_EMBEDDED |
1996 | 1996 | ||
1997 | } else { | 1997 | } else { |
1998 | mActionConfigKAddressbook = KStdAction::preferences( this, SLOT( openConfigDialog() ), actionCollection() ); | 1998 | mActionConfigKAddressbook = KStdAction::preferences( this, SLOT( openConfigDialog() ), actionCollection() ); |
1999 | 1999 | ||
2000 | //US not implemented yet | 2000 | //US not implemented yet |
2001 | //mActionKeyBindings = KStdAction::keyBindings( this, SLOT( configureKeyBindings() ), actionCollection() ); | 2001 | //mActionKeyBindings = KStdAction::keyBindings( this, SLOT( configureKeyBindings() ), actionCollection() ); |
2002 | } | 2002 | } |
2003 | 2003 | ||
2004 | mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, | 2004 | mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, |
2005 | actionCollection(), "options_show_jump_bar" ); | 2005 | actionCollection(), "options_show_jump_bar" ); |
2006 | connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBarVisible( bool ) ) ); | 2006 | connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBarVisible( bool ) ) ); |
2007 | 2007 | ||
2008 | mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, | 2008 | mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, |
2009 | actionCollection(), "options_show_details" ); | 2009 | actionCollection(), "options_show_details" ); |
2010 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); | 2010 | connect( mActionDetails, SIGNAL( toggled( bool ) ), SLOT( setDetailsVisible( bool ) ) ); |
2011 | 2011 | ||
2012 | 2012 | ||
2013 | mActionBR = new KToggleAction( i18n( "Beam receive enabled" ), "beam", 0, this, | 2013 | mActionBR = new KToggleAction( i18n( "Beam receive enabled" ), "beam", 0, this, |
2014 | SLOT( toggleBeamReceive() ), actionCollection(), | 2014 | SLOT( toggleBeamReceive() ), actionCollection(), |
2015 | "kaddressbook_beam_rec" ); | 2015 | "kaddressbook_beam_rec" ); |
2016 | 2016 | ||
2017 | 2017 | ||
2018 | // misc | 2018 | // misc |
2019 | // only enable LDAP lookup if we can handle the protocol | 2019 | // only enable LDAP lookup if we can handle the protocol |
2020 | #ifndef KAB_EMBEDDED | 2020 | #ifndef KAB_EMBEDDED |
2021 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { | 2021 | if ( KProtocolInfo::isKnownProtocol( KURL( "ldap://localhost" ) ) ) { |
2022 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, | 2022 | new KAction( i18n( "&Lookup Addresses in Directory" ), "find", 0, |
2023 | this, SLOT( openLDAPDialog() ), actionCollection(), | 2023 | this, SLOT( openLDAPDialog() ), actionCollection(), |
2024 | "ldap_lookup" ); | 2024 | "ldap_lookup" ); |
2025 | } | 2025 | } |
2026 | #else //KAB_EMBEDDED | 2026 | #else //KAB_EMBEDDED |
2027 | //qDebug("KABCore::initActions() LDAP has to be implemented"); | 2027 | //qDebug("KABCore::initActions() LDAP has to be implemented"); |
2028 | #endif //KAB_EMBEDDED | 2028 | #endif //KAB_EMBEDDED |
2029 | 2029 | ||
2030 | 2030 | ||
2031 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, | 2031 | mActionWhoAmI = new KAction( i18n( "Set Who Am I" ), "personal", 0, this, |
2032 | SLOT( setWhoAmI() ), actionCollection(), | 2032 | SLOT( setWhoAmI() ), actionCollection(), |
2033 | "set_personal" ); | 2033 | "set_personal" ); |
2034 | 2034 | ||
2035 | 2035 | ||
2036 | mActionCategories = new KAction( i18n( "Set Categories" ), 0, this, | 2036 | mActionCategories = new KAction( i18n( "Set Categories" ), 0, this, |
2037 | SLOT( setCategories() ), actionCollection(), | 2037 | SLOT( setCategories() ), actionCollection(), |