author | zautrix <zautrix> | 2005-03-26 23:07:01 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-26 23:07:01 (UTC) |
commit | 9963563126c91d721406f24a49548b1d8f3dc415 (patch) (unidiff) | |
tree | 925a37684d46d8e89e9f5cbfb647d5b625a50c00 /korganizer | |
parent | 46b94158f6b115e175516a8432ec5b71f1403834 (diff) | |
download | kdepimpi-9963563126c91d721406f24a49548b1d8f3dc415.zip kdepimpi-9963563126c91d721406f24a49548b1d8f3dc415.tar.gz kdepimpi-9963563126c91d721406f24a49548b1d8f3dc415.tar.bz2 |
fix
-rw-r--r-- | korganizer/koviewmanager.cpp | 27 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 9 |
2 files changed, 19 insertions, 17 deletions
diff --git a/korganizer/koviewmanager.cpp b/korganizer/koviewmanager.cpp index b5de4a1..e80b3fc 100644 --- a/korganizer/koviewmanager.cpp +++ b/korganizer/koviewmanager.cpp | |||
@@ -202,9 +202,9 @@ void KOViewManager::showNextView() | |||
202 | { | 202 | { |
203 | if (mCurrentView == mWhatsNextView) goto NEXT_X; | 203 | if (mCurrentView == mWhatsNextView) goto NEXT_X; |
204 | 204 | ||
205 | if (mCurrentView == mAgendaView && mFlagShowNextxDays) goto LIST; | 205 | if (mCurrentView == mAgendaView && mFlagShowNextxDays) goto JOURNAL; |
206 | 206 | ||
207 | if (mCurrentView == mListView ) goto DAY_1; | 207 | if (mCurrentView == mJournalView ) goto DAY_1; |
208 | 208 | ||
209 | if (mCurrentView == mAgendaView && mCurrentAgendaView == 1 ) goto DAY_5; | 209 | if (mCurrentView == mAgendaView && mCurrentAgendaView == 1 ) goto DAY_5; |
210 | 210 | ||
@@ -214,16 +214,19 @@ void KOViewManager::showNextView() | |||
214 | 214 | ||
215 | if (mCurrentView == mMonthView && KOPrefs::instance()->mMonthViewWeek) goto MONTH; | 215 | if (mCurrentView == mMonthView && KOPrefs::instance()->mMonthViewWeek) goto MONTH; |
216 | 216 | ||
217 | if (mCurrentView == mMonthView ) goto TODO; | 217 | if (mCurrentView == mMonthView ) goto LIST; |
218 | |||
219 | if (mCurrentView == mListView ) goto TODO; | ||
220 | |||
221 | // if (mCurrentView == mTodoView ) goto LIST; | ||
218 | 222 | ||
219 | if (mCurrentView == mTodoView ) goto JOURNAL; | ||
220 | 223 | ||
221 | NEXT: | 224 | NEXT: |
222 | if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();return ;} | 225 | if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();return ;} |
223 | NEXT_X: | 226 | NEXT_X: |
224 | if ( KOPrefs::instance()->mShowIconNextDays ) { showNextXView() ;return ;} | 227 | if ( KOPrefs::instance()->mShowIconNextDays ) { showNextXView() ;return ;} |
225 | LIST: | 228 | JOURNAL: |
226 | if ( KOPrefs::instance()->mShowIconList ) { showListView() ;return ;} | 229 | if ( KOPrefs::instance()->mShowIconJournal ) { showJournalView() ;return ;} |
227 | DAY_1: | 230 | DAY_1: |
228 | if ( KOPrefs::instance()->mShowIconDay1 ) { showDayView() ;return ;} | 231 | if ( KOPrefs::instance()->mShowIconDay1 ) { showDayView() ;return ;} |
229 | DAY_5: | 232 | DAY_5: |
@@ -234,18 +237,16 @@ void KOViewManager::showNextView() | |||
234 | if ( KOPrefs::instance()->mShowIconDay6 ) { showMonthViewWeek();return ;} | 237 | if ( KOPrefs::instance()->mShowIconDay6 ) { showMonthViewWeek();return ;} |
235 | MONTH: | 238 | MONTH: |
236 | if ( KOPrefs::instance()->mShowIconMonth ) { showMonthView();return ;} | 239 | if ( KOPrefs::instance()->mShowIconMonth ) { showMonthView();return ;} |
240 | LIST: | ||
241 | if ( KOPrefs::instance()->mShowIconList ) { showListView() ;return ;} | ||
237 | TODO: | 242 | TODO: |
238 | if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;return ;} | 243 | if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;return ;} |
239 | JOURNAL: | ||
240 | if ( KOPrefs::instance()->mShowIconJournal ) { showJournalView() ;return ;} | ||
241 | |||
242 | |||
243 | 244 | ||
244 | if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();return ;} | 245 | if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();return ;} |
245 | 246 | ||
246 | if ( KOPrefs::instance()->mShowIconNextDays ) { showNextXView() ;return ;} | 247 | if ( KOPrefs::instance()->mShowIconNextDays ) { showNextXView() ;return ;} |
247 | 248 | ||
248 | if ( KOPrefs::instance()->mShowIconList ) { showListView() ;return ;} | 249 | if ( KOPrefs::instance()->mShowIconJournal ) { showJournalView() ;return ;} |
249 | 250 | ||
250 | if ( KOPrefs::instance()->mShowIconDay1 ) { showDayView() ;return ;} | 251 | if ( KOPrefs::instance()->mShowIconDay1 ) { showDayView() ;return ;} |
251 | 252 | ||
@@ -257,9 +258,9 @@ void KOViewManager::showNextView() | |||
257 | 258 | ||
258 | if ( KOPrefs::instance()->mShowIconMonth ) { showMonthView();return ;} | 259 | if ( KOPrefs::instance()->mShowIconMonth ) { showMonthView();return ;} |
259 | 260 | ||
260 | if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;return ;} | 261 | if ( KOPrefs::instance()->mShowIconList ) { showListView() ;return ;} |
261 | 262 | ||
262 | if ( KOPrefs::instance()->mShowIconJournal ) { showJournalView() ;return ;} | 263 | if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;return ;} |
263 | 264 | ||
264 | 265 | ||
265 | 266 | ||
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index b947cac..24055af 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -1009,8 +1009,8 @@ void MainWindow::initActions() | |||
1009 | whatsnext_action->addTo( iconToolBar ); | 1009 | whatsnext_action->addTo( iconToolBar ); |
1010 | if (p-> mShowIconNextDays) | 1010 | if (p-> mShowIconNextDays) |
1011 | xdays_action->addTo( iconToolBar ); | 1011 | xdays_action->addTo( iconToolBar ); |
1012 | if (p-> mShowIconList) | 1012 | if (p-> mShowIconJournal) |
1013 | showlist_action->addTo( iconToolBar ); | 1013 | viewjournal_action->addTo( iconToolBar ); |
1014 | if (p-> mShowIconDay1) | 1014 | if (p-> mShowIconDay1) |
1015 | day1_action->addTo( iconToolBar ); | 1015 | day1_action->addTo( iconToolBar ); |
1016 | if (p-> mShowIconDay5) | 1016 | if (p-> mShowIconDay5) |
@@ -1021,10 +1021,11 @@ void MainWindow::initActions() | |||
1021 | day6_action->addTo( iconToolBar ); | 1021 | day6_action->addTo( iconToolBar ); |
1022 | if (p-> mShowIconMonth) | 1022 | if (p-> mShowIconMonth) |
1023 | month_action->addTo( iconToolBar ); | 1023 | month_action->addTo( iconToolBar ); |
1024 | if (p-> mShowIconList) | ||
1025 | showlist_action->addTo( iconToolBar ); | ||
1024 | if (p-> mShowIconTodoview) | 1026 | if (p-> mShowIconTodoview) |
1025 | todoview_action->addTo( iconToolBar ); | 1027 | todoview_action->addTo( iconToolBar ); |
1026 | if (p-> mShowIconJournal) | 1028 | |
1027 | viewjournal_action->addTo( iconToolBar ); | ||
1028 | icon = loadPixmap( pathString + "2leftarrowB" ); | 1029 | icon = loadPixmap( pathString + "2leftarrowB" ); |
1029 | configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200, 14); | 1030 | configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200, 14); |
1030 | if (p-> mShowIconBackFast) { | 1031 | if (p-> mShowIconBackFast) { |