-rw-r--r-- | korganizer/calendarview.cpp | 60 | ||||
-rw-r--r-- | korganizer/calendarview.h | 8 | ||||
-rw-r--r-- | korganizer/koviewmanager.cpp | 10 |
3 files changed, 50 insertions, 28 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 697093e..776cdd3 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -367,12 +367,11 @@ void CalendarView::init() | |||
367 | mNextAlarmDateTime = QDateTime::currentDateTime(); | 367 | mNextAlarmDateTime = QDateTime::currentDateTime(); |
368 | setFocusPolicy ( NoFocus ); | 368 | setFocusPolicy ( NoFocus ); |
369 | mViewerCallerIsSearchDialog = false; | 369 | mViewerCallerIsSearchDialog = false; |
370 | mBlockShowDates = false; | 370 | mBlockShowDates = false; |
371 | beamDialog = new KOBeamPrefs(); | 371 | |
372 | mDatePickerMode = 0; | 372 | mDatePickerMode = 0; |
373 | mCurrentSyncDevice = ""; | 373 | mCurrentSyncDevice = ""; |
374 | writeLocale(); | ||
375 | mViewManager = new KOViewManager( this ); | 374 | mViewManager = new KOViewManager( this ); |
376 | mDialogManager = new KODialogManager( this ); | 375 | mDialogManager = new KODialogManager( this ); |
377 | mEventViewerDialog = 0; | 376 | mEventViewerDialog = 0; |
378 | mModified = false; | 377 | mModified = false; |
@@ -444,9 +443,11 @@ void CalendarView::init() | |||
444 | mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); | 443 | mLeftFrame->setMinimizeDirection ( KDGanttMinimizeSplitter::Up ); |
445 | } | 444 | } |
446 | mMainFrame->setSizePolicy( QSizePolicy (QSizePolicy::Expanding,QSizePolicy::Expanding) ); | 445 | mMainFrame->setSizePolicy( QSizePolicy (QSizePolicy::Expanding,QSizePolicy::Expanding) ); |
447 | //QBoxLayout * leftFrameLayout; | 446 | //QBoxLayout * leftFrameLayout; |
447 | mDateScrollBar = new QScrollBar ( 0, 364, 1,30, 200,QScrollBar::Horizontal, this ); | ||
448 | topLayout->addWidget( mMainFrame ); | 448 | topLayout->addWidget( mMainFrame ); |
449 | topLayout->addWidget( mDateScrollBar ); | ||
449 | //mainBoxLayout->addWidget (mLeftFrame); | 450 | //mainBoxLayout->addWidget (mLeftFrame); |
450 | mDateNavigator = new DateNavigatorContainer( mLeftFrame, | 451 | mDateNavigator = new DateNavigatorContainer( mLeftFrame, |
451 | "CalendarView::DateNavigator" ); | 452 | "CalendarView::DateNavigator" ); |
452 | #if 0 | 453 | #if 0 |
@@ -467,8 +468,9 @@ void CalendarView::init() | |||
467 | connect( mCalEditView, SIGNAL( removeCalendar(int) ),mCalendar, SLOT( setCalendarRemove(int)) ); | 468 | connect( mCalEditView, SIGNAL( removeCalendar(int) ),mCalendar, SLOT( setCalendarRemove(int)) ); |
468 | connect( mCalEditView, SIGNAL( calendarAdded(int) ),this, SLOT( addCalendarId(int)) ); | 469 | connect( mCalEditView, SIGNAL( calendarAdded(int) ),this, SLOT( addCalendarId(int)) ); |
469 | connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateView()) ); | 470 | connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateView()) ); |
470 | connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateUnmanagedViews()) ); | 471 | connect( mCalEditView, SIGNAL( needsUpdate() ),this, SLOT( updateUnmanagedViews()) ); |
472 | connect( mDateScrollBar, SIGNAL( valueChanged ( int ) ),this, SLOT( scrollBarValue( int )) ); | ||
471 | mTodoList->setNavigator( mNavigator ); | 473 | mTodoList->setNavigator( mNavigator ); |
472 | #if 0 | 474 | #if 0 |
473 | if ( QApplication::desktop()->width() < 480 ) { | 475 | if ( QApplication::desktop()->width() < 480 ) { |
474 | leftFrameLayout->addWidget(mFilterView); | 476 | leftFrameLayout->addWidget(mFilterView); |
@@ -641,12 +643,35 @@ CalendarView::~CalendarView() | |||
641 | delete mDialogManager; | 643 | delete mDialogManager; |
642 | delete mViewManager; | 644 | delete mViewManager; |
643 | delete mStorage; | 645 | delete mStorage; |
644 | delete mDateFrame ; | 646 | delete mDateFrame ; |
645 | delete beamDialog; | ||
646 | delete mEventViewerDialog; | 647 | delete mEventViewerDialog; |
647 | //kdDebug() << "~CalendarView() done" << endl; | 648 | //kdDebug() << "~CalendarView() done" << endl; |
648 | } | 649 | } |
650 | void CalendarView::setScrollBarStep(int val ) | ||
651 | { | ||
652 | mDateScrollBar->setLineStep ( val ); | ||
653 | } | ||
654 | void CalendarView::scrollBarValue(int val ) | ||
655 | { | ||
656 | static bool block = false; | ||
657 | if ( block ) return; | ||
658 | block = true; | ||
659 | val = val/mDateScrollBar->lineStep ()*mDateScrollBar->lineStep(); | ||
660 | //qDebug("VAL %d ",val ); | ||
661 | int count = mNavigator->selectedDates().count(); | ||
662 | int year = mNavigator->selectedDates().first().year(); | ||
663 | int day = mNavigator->selectedDates().first().dayOfYear(); | ||
664 | if ( val == day -1 ) { | ||
665 | block = false; | ||
666 | return; | ||
667 | } | ||
668 | QDate d ( year,1,1 ); | ||
669 | mNavigator->selectDates( d.addDays( val ), count ); | ||
670 | block = false; | ||
671 | |||
672 | } | ||
673 | |||
649 | void CalendarView::checkAlarms() | 674 | void CalendarView::checkAlarms() |
650 | { | 675 | { |
651 | KConfig *config = KOGlobals::config(); | 676 | KConfig *config = KOGlobals::config(); |
652 | config->setGroup( "AppRun" ); | 677 | config->setGroup( "AppRun" ); |
@@ -2466,29 +2491,11 @@ void CalendarView::goNextMonth() | |||
2466 | void CalendarView::goPreviousMonth() | 2491 | void CalendarView::goPreviousMonth() |
2467 | { | 2492 | { |
2468 | mNavigator->selectPreviousMonth(); | 2493 | mNavigator->selectPreviousMonth(); |
2469 | } | 2494 | } |
2470 | void CalendarView::writeLocale() | 2495 | |
2471 | { | ||
2472 | //KPimGlobalPrefs::instance()->setGlobalConfig(); | ||
2473 | #if 0 | ||
2474 | KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime ); | ||
2475 | KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday ); | ||
2476 | KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate ); | ||
2477 | KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage ); | ||
2478 | QString dummy = KOPrefs::instance()->mUserDateFormatLong; | ||
2479 | KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") )); | ||
2480 | dummy = KOPrefs::instance()->mUserDateFormatShort; | ||
2481 | KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") )); | ||
2482 | KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving, | ||
2483 | KOPrefs::instance()->mDaylightsavingStart, | ||
2484 | KOPrefs::instance()->mDaylightsavingEnd ); | ||
2485 | KGlobal::locale()->setTimezone( KPimGlobalPrefs::instance()->mTimeZoneId ); | ||
2486 | #endif | ||
2487 | } | ||
2488 | void CalendarView::updateConfig() | 2496 | void CalendarView::updateConfig() |
2489 | { | 2497 | { |
2490 | writeLocale(); | ||
2491 | if ( KOPrefs::instance()->mUseAppColors ) | 2498 | if ( KOPrefs::instance()->mUseAppColors ) |
2492 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); | 2499 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); |
2493 | emit configChanged(); | 2500 | emit configChanged(); |
2494 | mTodoList->updateConfig(); | 2501 | mTodoList->updateConfig(); |
@@ -2576,8 +2583,9 @@ void CalendarView::updateTodoViews() | |||
2576 | 2583 | ||
2577 | 2584 | ||
2578 | void CalendarView::updateView(const QDate &start, const QDate &end) | 2585 | void CalendarView::updateView(const QDate &start, const QDate &end) |
2579 | { | 2586 | { |
2587 | mDateScrollBar->setValue( start.dayOfYear()-1); | ||
2580 | mTodoList->updateView(); | 2588 | mTodoList->updateView(); |
2581 | mViewManager->updateView(start, end); | 2589 | mViewManager->updateView(start, end); |
2582 | //mDateNavigator->updateView(); | 2590 | //mDateNavigator->updateView(); |
2583 | } | 2591 | } |
@@ -2843,9 +2851,11 @@ void CalendarView::beamFilteredCalendar() | |||
2843 | beamIncidenceList( delSel ); | 2851 | beamIncidenceList( delSel ); |
2844 | } | 2852 | } |
2845 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) | 2853 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) |
2846 | { | 2854 | { |
2847 | if ( beamDialog->exec () == QDialog::Rejected ) | 2855 | |
2856 | KOBeamPrefs beamDialog; | ||
2857 | if ( beamDialog.exec () == QDialog::Rejected ) | ||
2848 | return; | 2858 | return; |
2849 | #ifdef DESKTOP_VERSION | 2859 | #ifdef DESKTOP_VERSION |
2850 | QString fn = locateLocal( "tmp", "kopibeamfile" ); | 2860 | QString fn = locateLocal( "tmp", "kopibeamfile" ); |
2851 | #else | 2861 | #else |
@@ -2855,9 +2865,9 @@ void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) | |||
2855 | bool createbup = true; | 2865 | bool createbup = true; |
2856 | if ( createbup ) { | 2866 | if ( createbup ) { |
2857 | QString description = "\n"; | 2867 | QString description = "\n"; |
2858 | CalendarLocal* cal = new CalendarLocal(); | 2868 | CalendarLocal* cal = new CalendarLocal(); |
2859 | if ( beamDialog->beamLocal() ) | 2869 | if ( beamDialog.beamLocal() ) |
2860 | cal->setLocalTime(); | 2870 | cal->setLocalTime(); |
2861 | else | 2871 | else |
2862 | cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 2872 | cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
2863 | Incidence *incidence = delSel.first(); | 2873 | Incidence *incidence = delSel.first(); |
@@ -2879,9 +2889,9 @@ void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) | |||
2879 | description += in->summary() + "\n"; | 2889 | description += in->summary() + "\n"; |
2880 | cal->addIncidence( in ); | 2890 | cal->addIncidence( in ); |
2881 | incidence = delSel.next(); | 2891 | incidence = delSel.next(); |
2882 | } | 2892 | } |
2883 | if ( beamDialog->beamVcal() ) { | 2893 | if ( beamDialog.beamVcal() ) { |
2884 | fn += ".vcs"; | 2894 | fn += ".vcs"; |
2885 | FileStorage storage( cal, fn, new VCalFormat ); | 2895 | FileStorage storage( cal, fn, new VCalFormat ); |
2886 | storage.save(); | 2896 | storage.save(); |
2887 | } else { | 2897 | } else { |
diff --git a/korganizer/calendarview.h b/korganizer/calendarview.h index be18e8f..c89bbf7 100644 --- a/korganizer/calendarview.h +++ b/korganizer/calendarview.h | |||
@@ -29,8 +29,9 @@ | |||
29 | #include <qwidget.h> | 29 | #include <qwidget.h> |
30 | #include <qptrlist.h> | 30 | #include <qptrlist.h> |
31 | #include <qvbox.h> | 31 | #include <qvbox.h> |
32 | #include <qmap.h> | 32 | #include <qmap.h> |
33 | #include <qscrollbar.h> | ||
33 | #ifndef DESKTOP_VERSION | 34 | #ifndef DESKTOP_VERSION |
34 | #include <qtopia/ir.h> | 35 | #include <qtopia/ir.h> |
35 | #else | 36 | #else |
36 | #define Ir char | 37 | #define Ir char |
@@ -491,8 +492,9 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser | |||
491 | void showDay( QDate ); | 492 | void showDay( QDate ); |
492 | void undo_delete(); | 493 | void undo_delete(); |
493 | protected slots: | 494 | protected slots: |
494 | void resetFocus(); | 495 | void resetFocus(); |
496 | void scrollBarValue(int); | ||
495 | void slotViewerClosed(); | 497 | void slotViewerClosed(); |
496 | void timerAlarm(); | 498 | void timerAlarm(); |
497 | void suspendAlarm(); | 499 | void suspendAlarm(); |
498 | void beamDone( Ir *ir ); | 500 | void beamDone( Ir *ir ); |
@@ -521,19 +523,20 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser | |||
521 | bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); | 523 | bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); |
522 | int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); | 524 | int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); |
523 | //Attendee* getYourAttendee(Event *event); | 525 | //Attendee* getYourAttendee(Event *event); |
524 | void setBlockShowDates( bool b ) { mBlockShowDates = b ;} | 526 | void setBlockShowDates( bool b ) { mBlockShowDates = b ;} |
527 | void setScrollBarStep(int val ); | ||
528 | |||
525 | protected: | 529 | protected: |
526 | void schedule(Scheduler::Method, Incidence *incidence = 0); | 530 | void schedule(Scheduler::Method, Incidence *incidence = 0); |
527 | 531 | ||
528 | // returns KMsgBox::OKCandel() | 532 | // returns KMsgBox::OKCandel() |
529 | int msgItemDelete(const QString name); | 533 | int msgItemDelete(const QString name); |
530 | void showEventEditor(); | 534 | void showEventEditor(); |
531 | void showTodoEditor(); | 535 | void showTodoEditor(); |
532 | void writeLocale(); | ||
533 | Todo *selectedTodo(); | 536 | Todo *selectedTodo(); |
534 | |||
535 | private: | 537 | private: |
538 | QScrollBar * mDateScrollBar; | ||
536 | QDateTime mNextAlarmDateTime; | 539 | QDateTime mNextAlarmDateTime; |
537 | bool mViewerCallerIsSearchDialog; | 540 | bool mViewerCallerIsSearchDialog; |
538 | bool mBlockShowDates; | 541 | bool mBlockShowDates; |
539 | KSyncManager* mSyncManager; | 542 | KSyncManager* mSyncManager; |
@@ -552,9 +555,8 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser | |||
552 | void checkExternalId( Incidence * inc ); | 555 | void checkExternalId( Incidence * inc ); |
553 | int mGlobalSyncMode; | 556 | int mGlobalSyncMode; |
554 | QString mCurrentSyncDevice; | 557 | QString mCurrentSyncDevice; |
555 | QString mCurrentSyncName; | 558 | QString mCurrentSyncName; |
556 | KOBeamPrefs* beamDialog; | ||
557 | void init(); | 559 | void init(); |
558 | int mDatePickerMode; | 560 | int mDatePickerMode; |
559 | bool mFlagEditDescription; | 561 | bool mFlagEditDescription; |
560 | QDateTime mLastCalendarSync; | 562 | QDateTime mLastCalendarSync; |
diff --git a/korganizer/koviewmanager.cpp b/korganizer/koviewmanager.cpp index 7b307f7..bd191d8 100644 --- a/korganizer/koviewmanager.cpp +++ b/korganizer/koviewmanager.cpp | |||
@@ -467,8 +467,9 @@ void KOViewManager::showListView() | |||
467 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_L_VIEW; | 467 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_L_VIEW; |
468 | showView(mListView, KOPrefs::instance()->mFullViewTodo); | 468 | showView(mListView, KOPrefs::instance()->mFullViewTodo); |
469 | //mFlagShowNextxDays = temp; | 469 | //mFlagShowNextxDays = temp; |
470 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_L_VIEW; | 470 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_L_VIEW; |
471 | mMainView->setScrollBarStep( 7 ); | ||
471 | } | 472 | } |
472 | 473 | ||
473 | void KOViewManager::showAgendaView( bool fullScreen ) | 474 | void KOViewManager::showAgendaView( bool fullScreen ) |
474 | { | 475 | { |
@@ -534,8 +535,9 @@ void KOViewManager::showAgendaView( bool fullScreen ) | |||
534 | 535 | ||
535 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_A_VIEW; | 536 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_A_VIEW; |
536 | showView( mAgendaView, full); | 537 | showView( mAgendaView, full); |
537 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_A_VIEW; | 538 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_A_VIEW; |
539 | mMainView->setScrollBarStep( 1 ); | ||
538 | } | 540 | } |
539 | 541 | ||
540 | void KOViewManager::showDayView() | 542 | void KOViewManager::showDayView() |
541 | { | 543 | { |
@@ -550,8 +552,9 @@ void KOViewManager::showDayView() | |||
550 | globalFlagBlockAgenda = 2; | 552 | globalFlagBlockAgenda = 2; |
551 | globalFlagBlockLabel = 0; | 553 | globalFlagBlockLabel = 0; |
552 | mMainView->dateNavigator()->selectDates( 1 ); | 554 | mMainView->dateNavigator()->selectDates( 1 ); |
553 | mCurrentAgendaView = 1 ; | 555 | mCurrentAgendaView = 1 ; |
556 | mMainView->setScrollBarStep( 1 ); | ||
554 | 557 | ||
555 | } | 558 | } |
556 | 559 | ||
557 | void KOViewManager::showWorkWeekView() | 560 | void KOViewManager::showWorkWeekView() |
@@ -567,8 +570,9 @@ void KOViewManager::showWorkWeekView() | |||
567 | globalFlagBlockAgenda = 2; | 570 | globalFlagBlockAgenda = 2; |
568 | globalFlagBlockLabel = 0; | 571 | globalFlagBlockLabel = 0; |
569 | mMainView->dateNavigator()->selectWorkWeek(); | 572 | mMainView->dateNavigator()->selectWorkWeek(); |
570 | mCurrentAgendaView = 5 ; | 573 | mCurrentAgendaView = 5 ; |
574 | mMainView->setScrollBarStep( 1 ); | ||
571 | 575 | ||
572 | } | 576 | } |
573 | 577 | ||
574 | void KOViewManager::showWeekView() | 578 | void KOViewManager::showWeekView() |
@@ -585,8 +589,9 @@ void KOViewManager::showWeekView() | |||
585 | globalFlagBlockAgenda = 2; | 589 | globalFlagBlockAgenda = 2; |
586 | globalFlagBlockLabel = 0; | 590 | globalFlagBlockLabel = 0; |
587 | mMainView->dateNavigator()->selectWeek(); | 591 | mMainView->dateNavigator()->selectWeek(); |
588 | mCurrentAgendaView = 7 ; | 592 | mCurrentAgendaView = 7 ; |
593 | mMainView->setScrollBarStep( 1 ); | ||
589 | } | 594 | } |
590 | 595 | ||
591 | void KOViewManager::showNextXView() | 596 | void KOViewManager::showNextXView() |
592 | { | 597 | { |
@@ -601,8 +606,9 @@ void KOViewManager::showNextXView() | |||
601 | KOPrefs::instance()->mNextXDays ); | 606 | KOPrefs::instance()->mNextXDays ); |
602 | mFlagShowNextxDays = true; | 607 | mFlagShowNextxDays = true; |
603 | mCurrentAgendaView = 3 ; | 608 | mCurrentAgendaView = 3 ; |
604 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_NX_VIEW; | 609 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_NX_VIEW; |
610 | mMainView->setScrollBarStep( KOPrefs::instance()->mNextXDays ); | ||
605 | } | 611 | } |
606 | bool KOViewManager::showsNextDays() | 612 | bool KOViewManager::showsNextDays() |
607 | { | 613 | { |
608 | return mFlagShowNextxDays; | 614 | return mFlagShowNextxDays; |
@@ -694,8 +700,9 @@ void KOViewManager::showMonthViewWeek() | |||
694 | mMainView->dateNavigator()->selectWeek(); | 700 | mMainView->dateNavigator()->selectWeek(); |
695 | showView(mMonthView, full ); | 701 | showView(mMonthView, full ); |
696 | mMonthView->setKeyBFocus(); | 702 | mMonthView->setKeyBFocus(); |
697 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_ML_VIEW ; | 703 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_ML_VIEW ; |
704 | mMainView->setScrollBarStep( 7 ); | ||
698 | } | 705 | } |
699 | 706 | ||
700 | void KOViewManager::showMonth( const QDate & date ) | 707 | void KOViewManager::showMonth( const QDate & date ) |
701 | { | 708 | { |
@@ -726,8 +733,9 @@ void KOViewManager::showMonthView() | |||
726 | 733 | ||
727 | showView(mMonthView, full ); | 734 | showView(mMonthView, full ); |
728 | mMonthView->setKeyBFocus(); | 735 | mMonthView->setKeyBFocus(); |
729 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_M_VIEW ; | 736 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_M_VIEW ; |
737 | mMainView->setScrollBarStep( 7 ); | ||
730 | 738 | ||
731 | } | 739 | } |
732 | 740 | ||
733 | void KOViewManager::showTodoView() | 741 | void KOViewManager::showTodoView() |
@@ -783,8 +791,9 @@ void KOViewManager::showTodoView() | |||
783 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_T_VIEW ; | 791 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_T_VIEW ; |
784 | globalFlagBlockAgenda = 1; | 792 | globalFlagBlockAgenda = 1; |
785 | showView( mTodoView, true ); | 793 | showView( mTodoView, true ); |
786 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_T_VIEW ; | 794 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_T_VIEW ; |
795 | mMainView->setScrollBarStep( 7 ); | ||
787 | 796 | ||
788 | } | 797 | } |
789 | 798 | ||
790 | void KOViewManager::showJournalView() | 799 | void KOViewManager::showJournalView() |
@@ -802,8 +811,9 @@ void KOViewManager::showJournalView() | |||
802 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_J_VIEW ; | 811 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_J_VIEW ; |
803 | showView(mJournalView); | 812 | showView(mJournalView); |
804 | mMainView->dateNavigator()->selectDates( 1 ); | 813 | mMainView->dateNavigator()->selectDates( 1 ); |
805 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_J_VIEW ; | 814 | KOPrefs::instance()->mCurrentDisplayedView = VIEW_J_VIEW ; |
815 | mMainView->setScrollBarStep( 1 ); | ||
806 | } | 816 | } |
807 | 817 | ||
808 | void KOViewManager::showTimeSpanView() | 818 | void KOViewManager::showTimeSpanView() |
809 | { | 819 | { |