summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookweek.h
Side-by-side diff
Diffstat (limited to 'core/pim/datebook/datebookweek.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebookweek.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/pim/datebook/datebookweek.h b/core/pim/datebook/datebookweek.h
index c273e30..ddf54ed 100644
--- a/core/pim/datebook/datebookweek.h
+++ b/core/pim/datebook/datebookweek.h
@@ -19,24 +19,25 @@
**********************************************************************/
#ifndef DATEBOOKWEEK
#define DATEBOOKWEEK
#include <qpe/event.h>
#include <qlist.h>
#include <qscrollview.h>
#include <qstring.h>
#include <qvaluelist.h>
class DateBookDB;
+class DateBookDBHoliday;
class DateBookWeekHeader;
class QDate;
class QLabel;
class QResizeEvent;
class QSpinBox;
class QTimer;
class QHeader;
class DateBookWeekItem
{
public:
DateBookWeekItem( const EffectiveEvent e );
@@ -49,25 +50,25 @@ public:
private:
const EffectiveEvent ev;
QRect r;
QColor c;
};
class DateBookWeekView : public QScrollView
{
Q_OBJECT
public:
DateBookWeekView( bool ampm, bool weekOnMonday, QWidget *parent = 0,
- const char *name = 0 );
+ const char *name = 0 );
bool whichClock() const;
void showEvents( QValueList<EffectiveEvent> &ev );
void moveToHour( int h );
void setStartOfWeek( bool bOnMonday );
signals:
void showDay( int d );
void signalShowEvent( const EffectiveEvent & );
void signalHideEvent();
protected slots:
@@ -91,26 +92,26 @@ private:
bool bOnMonday;
QHeader *header;
QList<DateBookWeekItem> items;
int rowHeight;
bool showingEvent;
};
class DateBookWeek : public QWidget
{
Q_OBJECT
public:
- DateBookWeek( bool ampm, bool weekOnMonday, DateBookDB *newDB,
- QWidget *parent = 0, const char *name = 0 );
+ DateBookWeek( bool ampm, bool weekOnMonday, DateBookDBHoliday *newDB,
+ QWidget *parent = 0, const char *name = 0 );
void setDate( int y, int m, int d );
void setDate( QDate d );
QDate date() const;
DateBookWeekView *weekView() const { return view; }
void setStartViewTime( int startHere );
int startViewTime() const;
int week() const { return _week; };
QDate weekDate() const;
public slots:
void redraw();
void slotWeekChanged( bool bStartOnMonday );
@@ -144,23 +145,23 @@ private:
/**
* This will add the times to the text
* It will be shown in the Tooltip bubble
*/
void generateNormalTooltext( QString& text,
const EffectiveEvent &ev);
int year;
int _week;
int dow;
QDate bdate;
DateBookWeekHeader *header;
DateBookWeekView *view;
- DateBookDB *db;
+ DateBookDBHoliday *db;
QLabel *lblDesc;
QTimer *tHide;
int startTime;
bool ampm;
bool bStartOnMonday;
};
bool calcWeek( const QDate &d, int &week, int &year, bool startOnMonday = false );
#endif