author | zautrix <zautrix> | 2004-11-08 21:38:38 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-11-08 21:38:38 (UTC) |
commit | 91edd790af2bb6c19954638da1e22158382203a0 (patch) (unidiff) | |
tree | f75e027f1d4e4bcfc0257593d0f2ee2c0405bbd8 | |
parent | 7b899c8a9c38cf96fca6c46b20ae406a716dd213 (diff) | |
download | kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.zip kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.tar.gz kdepimpi-91edd790af2bb6c19954638da1e22158382203a0.tar.bz2 |
menu rearranged
-rw-r--r-- | kaddressbook/kabcore.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 755da11..d99a9cd 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1985,96 +1985,97 @@ void KABCore::initActions() | |||
1985 | // KDE uses a XML format to plug the actions, but we work her without this overhead. | 1985 | // KDE uses a XML format to plug the actions, but we work her without this overhead. |
1986 | void KABCore::addActionsManually() | 1986 | void KABCore::addActionsManually() |
1987 | { | 1987 | { |
1988 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); | 1988 | //US qDebug("KABCore::initActions(): mIsPart %i", mIsPart); |
1989 | 1989 | ||
1990 | #ifdef KAB_EMBEDDED | 1990 | #ifdef KAB_EMBEDDED |
1991 | QPopupMenu *fileMenu = new QPopupMenu( this ); | 1991 | QPopupMenu *fileMenu = new QPopupMenu( this ); |
1992 | QPopupMenu *editMenu = new QPopupMenu( this ); | 1992 | QPopupMenu *editMenu = new QPopupMenu( this ); |
1993 | QPopupMenu *helpMenu = new QPopupMenu( this ); | 1993 | QPopupMenu *helpMenu = new QPopupMenu( this ); |
1994 | 1994 | ||
1995 | KToolBar* tb = mMainWindow->toolBar(); | 1995 | KToolBar* tb = mMainWindow->toolBar(); |
1996 | 1996 | ||
1997 | #ifndef DESKTOP_VERSION | 1997 | #ifndef DESKTOP_VERSION |
1998 | if ( KABPrefs::instance()->mFullMenuBarVisible ) { | 1998 | if ( KABPrefs::instance()->mFullMenuBarVisible ) { |
1999 | #endif | 1999 | #endif |
2000 | QMenuBar* mb = mMainWindow->menuBar(); | 2000 | QMenuBar* mb = mMainWindow->menuBar(); |
2001 | 2001 | ||
2002 | //US setup menubar. | 2002 | //US setup menubar. |
2003 | //Disable the following block if you do not want to have a menubar. | 2003 | //Disable the following block if you do not want to have a menubar. |
2004 | mb->insertItem( i18n("&File"), fileMenu ); | 2004 | mb->insertItem( i18n("&File"), fileMenu ); |
2005 | mb->insertItem( i18n("&Edit"), editMenu ); | 2005 | mb->insertItem( i18n("&Edit"), editMenu ); |
2006 | mb->insertItem( i18n("&View"), viewMenu ); | 2006 | mb->insertItem( i18n("&View"), viewMenu ); |
2007 | mb->insertItem( i18n("&Settings"), settingsMenu ); | 2007 | mb->insertItem( i18n("&Settings"), settingsMenu ); |
2008 | mb->insertItem( i18n("Synchronize"), syncMenu ); | 2008 | mb->insertItem( i18n("Synchronize"), syncMenu ); |
2009 | mb->insertItem( i18n("&Change selected"), changeMenu ); | 2009 | //mb->insertItem( i18n("&Change"), changeMenu ); |
2010 | mb->insertItem( i18n("&Help"), helpMenu ); | 2010 | mb->insertItem( i18n("&Help"), helpMenu ); |
2011 | mIncSearchWidget = new IncSearchWidget( tb ); | 2011 | mIncSearchWidget = new IncSearchWidget( tb ); |
2012 | // tb->insertWidget(-1, 0, mIncSearchWidget); | 2012 | // tb->insertWidget(-1, 0, mIncSearchWidget); |
2013 | #ifndef DESKTOP_VERSION | 2013 | #ifndef DESKTOP_VERSION |
2014 | } else { | 2014 | } else { |
2015 | //US setup toolbar | 2015 | //US setup toolbar |
2016 | QPEMenuBar *menuBarTB = new QPEMenuBar( tb ); | 2016 | QPEMenuBar *menuBarTB = new QPEMenuBar( tb ); |
2017 | QPopupMenu *popupBarTB = new QPopupMenu( this ); | 2017 | QPopupMenu *popupBarTB = new QPopupMenu( this ); |
2018 | menuBarTB->insertItem( "ME", popupBarTB); | 2018 | menuBarTB->insertItem( "ME", popupBarTB); |
2019 | tb->insertWidget(-1, 0, menuBarTB); | 2019 | tb->insertWidget(-1, 0, menuBarTB); |
2020 | mIncSearchWidget = new IncSearchWidget( tb ); | 2020 | mIncSearchWidget = new IncSearchWidget( tb ); |
2021 | 2021 | ||
2022 | tb->enableMoving(false); | 2022 | tb->enableMoving(false); |
2023 | popupBarTB->insertItem( i18n("&File"), fileMenu ); | 2023 | popupBarTB->insertItem( i18n("&File"), fileMenu ); |
2024 | popupBarTB->insertItem( i18n("&Edit"), editMenu ); | 2024 | popupBarTB->insertItem( i18n("&Edit"), editMenu ); |
2025 | popupBarTB->insertItem( i18n("&View"), viewMenu ); | 2025 | popupBarTB->insertItem( i18n("&View"), viewMenu ); |
2026 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); | 2026 | popupBarTB->insertItem( i18n("&Settings"), settingsMenu ); |
2027 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); | 2027 | popupBarTB->insertItem( i18n("Synchronize"), syncMenu ); |
2028 | mViewManager->getFilterAction()->plug ( popupBarTB); | 2028 | mViewManager->getFilterAction()->plug ( popupBarTB); |
2029 | popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); | 2029 | //popupBarTB->insertItem( i18n("&Change selected"), changeMenu ); |
2030 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); | 2030 | popupBarTB->insertItem( i18n("&Help"), helpMenu ); |
2031 | if (QApplication::desktop()->width() > 320 ) { | 2031 | if (QApplication::desktop()->width() > 320 ) { |
2032 | // mViewManager->getFilterAction()->plug ( tb); | 2032 | // mViewManager->getFilterAction()->plug ( tb); |
2033 | } | 2033 | } |
2034 | } | 2034 | } |
2035 | #endif | 2035 | #endif |
2036 | // mActionQuit->plug ( mMainWindow->toolBar()); | 2036 | // mActionQuit->plug ( mMainWindow->toolBar()); |
2037 | 2037 | ||
2038 | 2038 | ||
2039 | 2039 | ||
2040 | //US Now connect the actions with the menue entries. | 2040 | //US Now connect the actions with the menue entries. |
2041 | mActionPrint->plug( fileMenu ); | 2041 | mActionPrint->plug( fileMenu ); |
2042 | mActionMail->plug( fileMenu ); | 2042 | mActionMail->plug( fileMenu ); |
2043 | fileMenu->insertSeparator(); | 2043 | fileMenu->insertSeparator(); |
2044 | 2044 | ||
2045 | mActionNewContact->plug( fileMenu ); | 2045 | mActionNewContact->plug( fileMenu ); |
2046 | mActionNewContact->plug( tb ); | 2046 | mActionNewContact->plug( tb ); |
2047 | 2047 | ||
2048 | mActionEditAddressee->plug( fileMenu ); | 2048 | mActionEditAddressee->plug( fileMenu ); |
2049 | // if ((KGlobal::getDesktopSize() > KGlobal::Small ) || | 2049 | // if ((KGlobal::getDesktopSize() > KGlobal::Small ) || |
2050 | // (!KABPrefs::instance()->mMultipleViewsAtOnce )) | 2050 | // (!KABPrefs::instance()->mMultipleViewsAtOnce )) |
2051 | mActionEditAddressee->plug( tb ); | 2051 | mActionEditAddressee->plug( tb ); |
2052 | 2052 | ||
2053 | fileMenu->insertSeparator(); | 2053 | fileMenu->insertSeparator(); |
2054 | mActionSave->plug( fileMenu ); | 2054 | mActionSave->plug( fileMenu ); |
2055 | fileMenu->insertItem( "&Import", ImportMenu ); | 2055 | fileMenu->insertItem( "&Import", ImportMenu ); |
2056 | fileMenu->insertItem( "&Export", ExportMenu ); | 2056 | fileMenu->insertItem( "&Export", ExportMenu ); |
2057 | fileMenu->insertItem( i18n("&Change"), changeMenu ); | ||
2057 | fileMenu->insertSeparator(); | 2058 | fileMenu->insertSeparator(); |
2058 | mActionMailVCard->plug( fileMenu ); | 2059 | mActionMailVCard->plug( fileMenu ); |
2059 | #ifndef DESKTOP_VERSION | 2060 | #ifndef DESKTOP_VERSION |
2060 | if ( Ir::supported() ) mActionBeamVCard->plug( fileMenu ); | 2061 | if ( Ir::supported() ) mActionBeamVCard->plug( fileMenu ); |
2061 | if ( Ir::supported() ) mActionBeam->plug(fileMenu ); | 2062 | if ( Ir::supported() ) mActionBeam->plug(fileMenu ); |
2062 | #endif | 2063 | #endif |
2063 | fileMenu->insertSeparator(); | 2064 | fileMenu->insertSeparator(); |
2064 | mActionQuit->plug( fileMenu ); | 2065 | mActionQuit->plug( fileMenu ); |
2065 | #ifdef _WIN32_ | 2066 | #ifdef _WIN32_ |
2066 | mActionImportOL->plug( ImportMenu ); | 2067 | mActionImportOL->plug( ImportMenu ); |
2067 | #endif | 2068 | #endif |
2068 | // edit menu | 2069 | // edit menu |
2069 | mActionUndo->plug( editMenu ); | 2070 | mActionUndo->plug( editMenu ); |
2070 | mActionRedo->plug( editMenu ); | 2071 | mActionRedo->plug( editMenu ); |
2071 | editMenu->insertSeparator(); | 2072 | editMenu->insertSeparator(); |
2072 | mActionCut->plug( editMenu ); | 2073 | mActionCut->plug( editMenu ); |
2073 | mActionCopy->plug( editMenu ); | 2074 | mActionCopy->plug( editMenu ); |
2074 | mActionPaste->plug( editMenu ); | 2075 | mActionPaste->plug( editMenu ); |
2075 | mActionDelete->plug( editMenu ); | 2076 | mActionDelete->plug( editMenu ); |
2076 | editMenu->insertSeparator(); | 2077 | editMenu->insertSeparator(); |
2077 | mActionSelectAll->plug( editMenu ); | 2078 | mActionSelectAll->plug( editMenu ); |
2078 | 2079 | ||
2079 | mActionRemoveVoice->plug( changeMenu ); | 2080 | mActionRemoveVoice->plug( changeMenu ); |
2080 | // settings menu | 2081 | // settings menu |
@@ -2205,52 +2206,56 @@ void KABCore::manageCategories( ) | |||
2205 | int i; | 2206 | int i; |
2206 | if ( catIncList.count() ) { | 2207 | if ( catIncList.count() ) { |
2207 | newCatList.clear(); | 2208 | newCatList.clear(); |
2208 | for( i = 0; i< catIncList.count(); ++i ) { | 2209 | for( i = 0; i< catIncList.count(); ++i ) { |
2209 | if ( catList.contains (catIncList[i])) { | 2210 | if ( catList.contains (catIncList[i])) { |
2210 | newCatList.append( catIncList[i] ); | 2211 | newCatList.append( catIncList[i] ); |
2211 | } | 2212 | } |
2212 | } | 2213 | } |
2213 | newCatList.sort(); | 2214 | newCatList.sort(); |
2214 | (*it).setCategories( newCatList ); | 2215 | (*it).setCategories( newCatList ); |
2215 | mAddressBook->insertAddressee( (*it) ); | 2216 | mAddressBook->insertAddressee( (*it) ); |
2216 | } | 2217 | } |
2217 | } | 2218 | } |
2218 | setModified( true ); | 2219 | setModified( true ); |
2219 | mViewManager->refreshView(); | 2220 | mViewManager->refreshView(); |
2220 | mDetails->refreshView(); | 2221 | mDetails->refreshView(); |
2221 | message( i18n("Removing categories done!")); | 2222 | message( i18n("Removing categories done!")); |
2222 | } | 2223 | } |
2223 | delete cp; | 2224 | delete cp; |
2224 | } | 2225 | } |
2225 | void KABCore::removeVoice() | 2226 | void KABCore::removeVoice() |
2226 | { | 2227 | { |
2227 | 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 ) | 2228 | 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 ) |
2228 | return; | 2229 | return; |
2229 | KABC::Addressee::List list = mViewManager->selectedAddressees(); | 2230 | KABC::Addressee::List list; |
2231 | XXPortSelectDialog dlg( this, false, this ); | ||
2232 | if ( dlg.exec() ) | ||
2233 | list = dlg.contacts(); | ||
2234 | else | ||
2235 | return; | ||
2230 | KABC::Addressee::List::Iterator it; | 2236 | KABC::Addressee::List::Iterator it; |
2231 | for ( it = list.begin(); it != list.end(); ++it ) { | 2237 | for ( it = list.begin(); it != list.end(); ++it ) { |
2232 | |||
2233 | if ( (*it).removeVoice() ) | 2238 | if ( (*it).removeVoice() ) |
2234 | contactModified((*it) ); | 2239 | contactModified((*it) ); |
2235 | } | 2240 | } |
2236 | } | 2241 | } |
2237 | 2242 | ||
2238 | 2243 | ||
2239 | 2244 | ||
2240 | void KABCore::clipboardDataChanged() | 2245 | void KABCore::clipboardDataChanged() |
2241 | { | 2246 | { |
2242 | 2247 | ||
2243 | if ( mReadWrite ) | 2248 | if ( mReadWrite ) |
2244 | mActionPaste->setEnabled( !QApplication::clipboard()->text().isEmpty() ); | 2249 | mActionPaste->setEnabled( !QApplication::clipboard()->text().isEmpty() ); |
2245 | 2250 | ||
2246 | } | 2251 | } |
2247 | 2252 | ||
2248 | void KABCore::updateActionMenu() | 2253 | void KABCore::updateActionMenu() |
2249 | { | 2254 | { |
2250 | UndoStack *undo = UndoStack::instance(); | 2255 | UndoStack *undo = UndoStack::instance(); |
2251 | RedoStack *redo = RedoStack::instance(); | 2256 | RedoStack *redo = RedoStack::instance(); |
2252 | 2257 | ||
2253 | if ( undo->isEmpty() ) | 2258 | if ( undo->isEmpty() ) |
2254 | mActionUndo->setText( i18n( "Undo" ) ); | 2259 | mActionUndo->setText( i18n( "Undo" ) ); |
2255 | else | 2260 | else |
2256 | mActionUndo->setText( i18n( "Undo %1" ).arg( undo->top()->name() ) ); | 2261 | mActionUndo->setText( i18n( "Undo %1" ).arg( undo->top()->name() ) ); |