author | zautrix <zautrix> | 2005-01-27 10:51:32 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-27 10:51:32 (UTC) |
commit | 9ff00e650e32d6f348a2333c9cf21da9c9a137ff (patch) (unidiff) | |
tree | efabd55edbaf0be0129c54b3fcd156c028085530 | |
parent | 1501a5d8a25e3474fb450d7e0b272feb14821d1c (diff) | |
download | kdepimpi-9ff00e650e32d6f348a2333c9cf21da9c9a137ff.zip kdepimpi-9ff00e650e32d6f348a2333c9cf21da9c9a137ff.tar.gz kdepimpi-9ff00e650e32d6f348a2333c9cf21da9c9a137ff.tar.bz2 |
fix
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 3 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 24 |
2 files changed, 20 insertions, 7 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index 21f5b2f..6c4cb7b 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -3,4 +3,6 @@ Info about the changes in new versions of KDE-Pim/Pi | |||
3 | ********** VERSION 2.0.0 ************ | 3 | ********** VERSION 2.0.0 ************ |
4 | 4 | ||
5 | Stable release 2.0.0! | ||
6 | |||
5 | KO/Pi: | 7 | KO/Pi: |
6 | Fixed problem in edit dialog recreation at startup. | 8 | Fixed problem in edit dialog recreation at startup. |
@@ -8,4 +10,5 @@ Made "toggle view*" menu items enabled context sensitive. | |||
8 | Changed agenda size menu to items 1-10. | 10 | Changed agenda size menu to items 1-10. |
9 | Made it possible to change agenda size quickly by pressing mouse on timelabels in agenda view and move mouse up/down. | 11 | Made it possible to change agenda size quickly by pressing mouse on timelabels in agenda view and move mouse up/down. |
12 | Usebility enhancements in the KO/Pi menus. | ||
10 | OM/Pi: | 13 | OM/Pi: |
11 | Added three info lines to display subject, from and to of selected mails. | 14 | Added three info lines to display subject, from and to of selected mails. |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 950d2ec..3feb4ab 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -524,6 +524,11 @@ void MainWindow::initActions() | |||
524 | menuBar1->insertItem( i18n("View"), viewMenu ); | 524 | menuBar1->insertItem( i18n("View"), viewMenu ); |
525 | menuBar1->insertItem( i18n("Actions"), actionMenu ); | 525 | menuBar1->insertItem( i18n("Actions"), actionMenu ); |
526 | #ifdef DESKTOP_VERSION | ||
526 | menuBar1->insertItem( i18n("Synchronize"), syncMenu ); | 527 | menuBar1->insertItem( i18n("Synchronize"), syncMenu ); |
527 | menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); | 528 | menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); |
529 | #else | ||
530 | menuBar1->insertItem( i18n("Sync"), syncMenu ); | ||
531 | menuBar1->insertItem( i18n("Agenda"),configureAgendaMenu ); | ||
532 | #endif | ||
528 | //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); | 533 | //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); |
529 | menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); | 534 | menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); |
@@ -597,4 +602,12 @@ void MainWindow::initActions() | |||
597 | connect( nt_action, SIGNAL( activated() ), | 602 | connect( nt_action, SIGNAL( activated() ), |
598 | mView, SLOT( newTodo() ) ); | 603 | mView, SLOT( newTodo() ) ); |
604 | |||
605 | icon = loadPixmap( pathString + "today" ); | ||
606 | QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); | ||
607 | today_action->addTo( viewMenu ); | ||
608 | connect( today_action, SIGNAL( activated() ), | ||
609 | mView, SLOT( goToday() ) ); | ||
610 | viewMenu->insertSeparator(); | ||
611 | |||
599 | icon = loadPixmap( pathString + "navi" ); | 612 | icon = loadPixmap( pathString + "navi" ); |
600 | action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); | 613 | action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); |
@@ -759,10 +772,5 @@ void MainWindow::initActions() | |||
759 | mView->dialogManager(), SLOT( showSearchDialog() ) ); | 772 | mView->dialogManager(), SLOT( showSearchDialog() ) ); |
760 | 773 | ||
761 | icon = loadPixmap( pathString + "today" ); | 774 | |
762 | configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); | ||
763 | QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); | ||
764 | today_action->addTo( actionMenu ); | ||
765 | connect( today_action, SIGNAL( activated() ), | ||
766 | mView, SLOT( goToday() ) ); | ||
767 | 775 | ||
768 | if ( KOPrefs::instance()->mShowFullMenu ) { | 776 | if ( KOPrefs::instance()->mShowFullMenu ) { |
@@ -975,5 +983,7 @@ void MainWindow::initActions() | |||
975 | mView, SLOT( goPrevious() ) ); | 983 | mView, SLOT( goPrevious() ) ); |
976 | action->addTo( iconToolBar ); | 984 | action->addTo( iconToolBar ); |
977 | } | 985 | } |
986 | icon = loadPixmap( pathString + "today" ); | ||
987 | configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); | ||
978 | if (p-> mShowIconToday) | 988 | if (p-> mShowIconToday) |
979 | today_action->addTo( iconToolBar ); | 989 | today_action->addTo( iconToolBar ); |