summaryrefslogtreecommitdiffabout
path: root/korganizer/koviewmanager.cpp
authorzautrix <zautrix>2005-03-30 20:15:13 (UTC)
committer zautrix <zautrix>2005-03-30 20:15:13 (UTC)
commit28ac86e2efbc10f210dbd2d5ac0053f4e6198d57 (patch) (side-by-side diff)
treefce7d5a7d9f834f0df1f76a206537b976981cbbf /korganizer/koviewmanager.cpp
parentb9ec42913b1dc7fc39848f245e55c7b36d7c2fa6 (diff)
downloadkdepimpi-28ac86e2efbc10f210dbd2d5ac0053f4e6198d57.zip
kdepimpi-28ac86e2efbc10f210dbd2d5ac0053f4e6198d57.tar.gz
kdepimpi-28ac86e2efbc10f210dbd2d5ac0053f4e6198d57.tar.bz2
fix
Diffstat (limited to 'korganizer/koviewmanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koviewmanager.cpp120
1 files changed, 73 insertions, 47 deletions
diff --git a/korganizer/koviewmanager.cpp b/korganizer/koviewmanager.cpp
index 548ffd3..f97aa98 100644
--- a/korganizer/koviewmanager.cpp
+++ b/korganizer/koviewmanager.cpp
@@ -61,7 +61,7 @@ KOViewManager::KOViewManager( CalendarView *mainView ) :
QObject(), mMainView( mainView )
{
mCurrentView = 0;
-
+ flagResetViewChangeDate = 0;
mWhatsNextView = 0;
mTodoView = 0;
mAgendaView = 0;
@@ -200,74 +200,100 @@ void KOViewManager::writeSettings(KConfig *config)
}
void KOViewManager::showNextView()
{
+ static int selecteddatescount = 0;
+ static QDate selecteddate = QDate ( 2000, 1, 1 );
+ static QDate baseCycleDate = QDate ( 2000, 1, 1 );
+ int newCount = mMainView->dateNavigator()->selectedDates().count();
+ if ( selecteddatescount != newCount && flagResetViewChangeDate == 0 ) {
+ flagResetViewChangeDate = 1;
+ }
+ if ( selecteddate != mMainView->dateNavigator()->selectedDates().first() )
+ flagResetViewChangeDate = 1;
+ if ( flagResetViewChangeDate > 0 ) {
+ baseCycleDate = mMainView->dateNavigator()->selectedDates().first();
+ //qDebug("newCycle ");
+ }
if (mCurrentView == mWhatsNextView) goto NEXT_X;
-
if (mCurrentView == mAgendaView && mFlagShowNextxDays) goto JOURNAL;
-
if (mCurrentView == mJournalView ) goto DAY_1;
-
if (mCurrentView == mAgendaView && mCurrentAgendaView == 1 ) goto DAY_5;
-
if (mCurrentView == mAgendaView && mCurrentAgendaView == 5 ) goto DAY_7;
-
if (mCurrentView == mAgendaView ) goto DAY_6;
-
if (mCurrentView == mMonthView && KOPrefs::instance()->mMonthViewWeek) goto MONTH;
-
if (mCurrentView == mMonthView ) goto LIST;
-
if (mCurrentView == mListView ) goto TODO;
-
- // if (mCurrentView == mTodoView ) goto LIST;
-
-
+ // if (mCurrentView == mTodoView ) goto NEXT;
NEXT:
- if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();return ;}
+ if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();goto ENTE ;}
NEXT_X:
- if ( KOPrefs::instance()->mShowIconNextDays ) { showNextXView() ;return ;}
+ if ( KOPrefs::instance()->mShowIconNextDays ) {
+ globalFlagBlockAgenda = 1;
+ if ( mCurrentAgendaView != 3 )
+ mCurrentAgendaView = -1;
+ showAgendaView(KOPrefs::instance()->mFullViewMonth);
+ globalFlagBlockAgenda = 2;
+ mMainView->dateNavigator()->selectDates( baseCycleDate ,
+ KOPrefs::instance()->mNextXDays );
+ mFlagShowNextxDays = true;
+ mCurrentAgendaView = 3 ;
+ goto ENTE ;
+ }
JOURNAL:
- if ( KOPrefs::instance()->mShowIconJournal ) { showJournalView() ;return ;}
+ if ( KOPrefs::instance()->mShowIconJournal ) {
+ resetDateSilent( baseCycleDate , 1 );
+ showJournalView() ;goto ENTE ;}
DAY_1:
- if ( KOPrefs::instance()->mShowIconDay1 ) { showDayView() ;return ;}
+ if ( KOPrefs::instance()->mShowIconDay1 ) {
+ resetDateSilent( baseCycleDate , 2 );
+ showDayView() ;goto ENTE ;}
DAY_5:
- if ( KOPrefs::instance()->mShowIconDay5 ) { showWorkWeekView() ;return ;}
+ if ( KOPrefs::instance()->mShowIconDay5 ) {
+ resetDateSilent( baseCycleDate , 2 );
+ showWorkWeekView() ;goto ENTE ;}
DAY_7:
- if ( KOPrefs::instance()->mShowIconDay7 ) { showWeekView();return ;}
+ if ( KOPrefs::instance()->mShowIconDay7 ) {
+ resetDateSilent( baseCycleDate , 2 );
+ showWeekView();goto ENTE ;}
DAY_6:
- if ( KOPrefs::instance()->mShowIconDay6 ) { showMonthViewWeek();return ;}
+ if ( KOPrefs::instance()->mShowIconDay6 ) {
+ resetDateSilent( baseCycleDate , 2 );
+ showMonthViewWeek();goto ENTE ;}
MONTH:
- if ( KOPrefs::instance()->mShowIconMonth ) { showMonthView();return ;}
+ if ( KOPrefs::instance()->mShowIconMonth ) {
+ resetDateSilent( baseCycleDate , 2 );
+ showMonthView();goto ENTE ;}
LIST:
- if ( KOPrefs::instance()->mShowIconList ) { showListView() ;return ;}
+ if ( KOPrefs::instance()->mShowIconList ) {
+ resetDateSilent( baseCycleDate , 2 );
+ showListView() ;goto ENTE ;}
TODO:
- if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;return ;}
-
- if ( KOPrefs::instance()->mShowIconNext ) { showWhatsNextView();return ;}
-
- if ( KOPrefs::instance()->mShowIconNextDays ) { showNextXView() ;return ;}
-
- if ( KOPrefs::instance()->mShowIconJournal ) { showJournalView() ;return ;}
-
- if ( KOPrefs::instance()->mShowIconDay1 ) { showDayView() ;return ;}
-
- if ( KOPrefs::instance()->mShowIconDay5 ) { showWorkWeekView() ;return ;}
-
- if ( KOPrefs::instance()->mShowIconDay7 ) { showWeekView();return ;}
-
- if ( KOPrefs::instance()->mShowIconDay6 ) { showMonthViewWeek();return ;}
-
- if ( KOPrefs::instance()->mShowIconMonth ) { showMonthView();return ;}
-
- if ( KOPrefs::instance()->mShowIconList ) { showListView() ;return ;}
-
- //if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;return ;}
-
-
-
+ if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;goto ENTE ;}
+ if ( KOPrefs::instance()->mShowIconNext ) { goto NEXT ;}
+ if ( KOPrefs::instance()->mShowIconNextDays ) { goto NEXT_X ;}
+ if ( KOPrefs::instance()->mShowIconJournal ) { goto JOURNAL;}
+ if ( KOPrefs::instance()->mShowIconDay1 ) { goto DAY_1 ;}
+ if ( KOPrefs::instance()->mShowIconDay5 ) { goto DAY_5 ;}
+ if ( KOPrefs::instance()->mShowIconDay7 ) { goto DAY_7 ;}
+ if ( KOPrefs::instance()->mShowIconDay6 ) { goto DAY_6 ;}
+ if ( KOPrefs::instance()->mShowIconMonth ) {goto MONTH ;}
+ if ( KOPrefs::instance()->mShowIconList ) { goto LIST ;}
+ //if ( KOPrefs::instance()->mShowIconTodoview ) { showTodoView() ;goto ENTE ;}
+ ENTE:
+ flagResetViewChangeDate = 0;
+ selecteddatescount = mMainView->dateNavigator()->selectedDates().count();
+ selecteddate = mMainView->dateNavigator()->selectedDates().first();
+
+}
+void KOViewManager::resetDateSilent( QDate date , int days )
+{
+ mMainView->dateNavigator()->blockSignals( true );
+ mMainView->dateNavigator()->selectDates( date , days );
+ mMainView->dateNavigator()->blockSignals( false );
}
void KOViewManager::showView(KOrg::BaseView *view, bool fullScreen )
{
-
+ if ( flagResetViewChangeDate < 10 )
+ ++flagResetViewChangeDate;
//mFlagShowNextxDays = false;
//if(view == mCurrentView) return;
if ( view == 0 ) {