-rw-r--r-- | korganizer/calendarview.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/korganizer/calendarview.h b/korganizer/calendarview.h index be18e8f..c89bbf7 100644 --- a/korganizer/calendarview.h +++ b/korganizer/calendarview.h @@ -30,6 +30,7 @@ #include <qptrlist.h> #include <qvbox.h> #include <qmap.h> +#include <qscrollbar.h> #ifndef DESKTOP_VERSION #include <qtopia/ir.h> #else @@ -492,6 +493,7 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser void undo_delete(); protected slots: void resetFocus(); + void scrollBarValue(int); void slotViewerClosed(); void timerAlarm(); void suspendAlarm(); @@ -522,6 +524,8 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); //Attendee* getYourAttendee(Event *event); void setBlockShowDates( bool b ) { mBlockShowDates = b ;} + void setScrollBarStep(int val ); + protected: void schedule(Scheduler::Method, Incidence *incidence = 0); @@ -529,10 +533,9 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser int msgItemDelete(const QString name); void showEventEditor(); void showTodoEditor(); - void writeLocale(); Todo *selectedTodo(); - private: + QScrollBar * mDateScrollBar; QDateTime mNextAlarmDateTime; bool mViewerCallerIsSearchDialog; bool mBlockShowDates; @@ -553,7 +556,6 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser int mGlobalSyncMode; QString mCurrentSyncDevice; QString mCurrentSyncName; - KOBeamPrefs* beamDialog; void init(); int mDatePickerMode; bool mFlagEditDescription; |