summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookweeklst.h
blob: 39c956d5c817320dc4ac7b58a1cbc0f50e0c413e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#ifndef DATEBOOKWEEKLST
#define DATEBOOKWEEKLST

#include <qwidget.h>
#include <qdatetime.h> 
#include <qpe/event.h>
#include <qlabel.h> 
#include <qscrollview.h>

#include "datebookweeklstheader.h"
#include "datebookweeklstdayhdr.h"

#include "clickablelabel.h"

class QDateTime;
class DateBookDB;

class DateBookWeekLstHeader: public DateBookWeekLstHeaderBase
{
    Q_OBJECT
public:
    DateBookWeekLstHeader(bool onM, QWidget* parent = 0, const char* name = 0, 
			  WFlags fl = 0 );
    ~DateBookWeekLstHeader();
    void setDate(const QDate &d);
    
public slots:
    void nextWeek();
    void prevWeek();
    void pickDate();
    void setDate(int y, int m, int d);
signals:
    void dateChanged(int y, int w);
private:
    QDate date;
    bool onMonday;
};

class DateBookWeekLstDayHdr: public DateBookWeekLstDayHdrBase
{
    Q_OBJECT
public:
    DateBookWeekLstDayHdr(const QDate &d, bool onM,
			  QWidget* parent = 0, const char* name = 0, 
			  WFlags fl = 0 );
public slots:
    void showDay();
    void newEvent(); 
signals:
    void showDate(int y, int m, int d);
    void addEvent(const QDateTime &start, const QDateTime &stop,
		  const QString &str);
private:
    QDate date;
};

class DateBookWeekLstEvent: public ClickableLabel 
{
  Q_OBJECT
public:
    DateBookWeekLstEvent(const EffectiveEvent &ev, 
			 QWidget* parent = 0, const char* name = 0, 
			 WFlags fl = 0);
signals:
    void editEvent(const Event &e);
private slots:
    void editMe();
private:
    const EffectiveEvent event;
};

class DateBookWeekLstView: public QWidget
{
    Q_OBJECT
public:
    DateBookWeekLstView(QValueList<EffectiveEvent> &ev, QDate &d, bool onM,
			QWidget* parent = 0, const char* name = 0, 
			WFlags fl = 0 );
    ~DateBookWeekLstView();
signals:
    void editEvent(const Event &e);
    void showDate(int y, int m, int d);
    void addEvent(const QDateTime &start, const QDateTime &stop,
		  const QString &str);
private:
    bool onMonday;
protected slots:
    void keyPressEvent(QKeyEvent *);
};

class DateBookWeekLst : public QWidget 
{
    Q_OBJECT

public:
    DateBookWeekLst( bool ampm, bool onM, DateBookDB *newDB, 
		     QWidget *parent = 0, 
		     const char *name = 0 );
    void setDate( int y, int w );
    void setDate(const QDate &d );
    int week() const { return _week; };
    QDate date() const;
    
public slots:
    void redraw();
    void dateChanged(int y, int w);
protected slots:
    void keyPressEvent(QKeyEvent *);

signals:
    void showDate(int y, int m, int d);
    void addEvent(const QDateTime &start, const QDateTime &stop, 
		  const QString &str);
    void editEvent(const Event &e);

private:
  DateBookDB *db;
  int startTime;
  bool ampm;
  bool onMonday;
  int year, _week;
  DateBookWeekLstHeader *header;
  DateBookWeekLstView *view;
  QVBoxLayout *layout;
  QScrollView *scroll;
  
  void getEvents();
};

#endif