summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookweeklst.h
blob: 38d7777ea89535ded6a9b2f28187a12aacfb9a37 (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#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 <opie2/oclickablelabel.h>

class QDateTime;
class DateBookDB;
class DateBookDBHoliday;

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 nextMonth();
    void prevMonth();
    void pickDate();
    void setDate(int y, int m, int d);
signals:
    void dateChanged(QDate &newdate);
    void setDbl(bool on);
private:
    QDate date;
//  bool onMonday;
    bool bStartOnMonday;
};

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, const QString &location);
private:
    QDate date;
};

class DateBookWeekLstEvent: public Opie::Ui::OClickableLabel
{
  Q_OBJECT
public:
    DateBookWeekLstEvent(const EffectiveEvent &ev, int weeklistviewconfig =1,
             QWidget* parent = 0, const char* name = 0,
             WFlags fl = 0);
signals:
    void editEvent(const Event &e);
    void duplicateEvent(const Event &e);
    void removeEvent(const Event &e);
    void beamEvent(const Event &e);
    void redraw();
private slots:
    void editMe();
    void duplicateMe();
    void deleteMe();
    void beamMe();
private:
    const EffectiveEvent event;
    QPopupMenu* popmenue;
protected:
    void mousePressEvent( QMouseEvent *e );
};

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

class DateBookWeekLstDblView: public QWidget {
        Q_OBJECT
public:
    DateBookWeekLstDblView(QValueList<EffectiveEvent> &ev1,
               QValueList<EffectiveEvent> &ev2,
               QDate &d, bool onM,
               QWidget* parent = 0, const char* name = 0,
               WFlags fl = 0 );
signals:
    void editEvent(const Event &e);
    void duplicateEvent(const Event &e);
    void removeEvent(const Event &e);
    void beamEvent(const Event &e);
    void redraw();
    void showDate(int y, int m, int d);
    void addEvent(const QDateTime &start, const QDateTime &stop,
          const QString &str, const QString &location);
};

class DateBookWeekLst : public QWidget
{
    Q_OBJECT

public:
    DateBookWeekLst( bool ampm, bool onM, DateBookDBHoliday *newDB,
             QWidget *parent = 0,
             const char *name = 0 );
    ~DateBookWeekLst();
    void setDate( int y, int w );
    void setDate(const QDate &d );
    int week() const { return _week; };
    QDate date();
    QDate weekDate() const;

public slots:
    void redraw();
    void dateChanged(QDate &date);

protected slots:
    void keyPressEvent(QKeyEvent *);
    void setDbl(bool on);

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

private:
    DateBookDBHoliday *db;
    int startTime;
    bool ampm;
    bool bStartOnMonday;
    bool dbl;
    QDate bdate;
    int year, _week,dow;
    DateBookWeekLstHeader *header;
    QWidget *view;
    QVBoxLayout *layout;
    QScrollView *scroll;

    void getEvents();
};

#endif