summaryrefslogtreecommitdiff
path: root/core/pim/datebook
Unidiff
Diffstat (limited to 'core/pim/datebook') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/datebookweeklst.cpp65
-rw-r--r--core/pim/datebook/datebookweeklst.h24
-rw-r--r--core/pim/datebook/datebookweeklstheader.ui99
3 files changed, 174 insertions, 14 deletions
diff --git a/core/pim/datebook/datebookweeklst.cpp b/core/pim/datebook/datebookweeklst.cpp
index dc141c0..7083bc5 100644
--- a/core/pim/datebook/datebookweeklst.cpp
+++ b/core/pim/datebook/datebookweeklst.cpp
@@ -10,2 +10,3 @@
10#include <qpe/datebookmonth.h> 10#include <qpe/datebookmonth.h>
11#include <qpe/config.h>
11 12
@@ -45,2 +46,3 @@ DateBookWeekLstHeader::DateBookWeekLstHeader(bool onM, QWidget* parent,
45 connect(labelWeek, SIGNAL(clicked()), this, SLOT(pickDate())); 46 connect(labelWeek, SIGNAL(clicked()), this, SLOT(pickDate()));
47 connect(dbl, SIGNAL(toggled(bool)), this, SIGNAL(setDbl(bool)));
46 onMonday=onM; 48 onMonday=onM;
@@ -158,2 +160,3 @@ DateBookWeekLstEvent::DateBookWeekLstEvent(const EffectiveEvent &ev,
158 connect(this, SIGNAL(clicked()), this, SLOT(editMe())); 160 connect(this, SIGNAL(clicked()), this, SLOT(editMe()));
161 setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) );
159} 162}
@@ -165,3 +168,3 @@ void DateBookWeekLstEvent::editMe() {
165DateBookWeekLstView::DateBookWeekLstView(QValueList<EffectiveEvent> &ev, 168DateBookWeekLstView::DateBookWeekLstView(QValueList<EffectiveEvent> &ev,
166 QDate &d, bool onM, 169 const QDate &d, bool onM,
167 QWidget* parent, 170 QWidget* parent,
@@ -217,2 +220,35 @@ void DateBookWeekLstView::keyPressEvent(QKeyEvent *e) {e->ignore();}
217 220
221DateBookWeekLstDblView::DateBookWeekLstDblView(QValueList<EffectiveEvent> &ev1,
222 QValueList<EffectiveEvent> &ev2,
223 QDate &d, bool onM,
224 QWidget* parent,
225 const char* name, WFlags fl)
226 : QWidget( parent, name, fl )
227{
228 QHBoxLayout *layout = new QHBoxLayout( this );
229
230 DateBookWeekLstView *w=new DateBookWeekLstView(ev1,d,onM,this);
231 layout->addWidget(w);
232 connect (w, SIGNAL(editEvent(const Event &)),
233 this, SIGNAL(editEvent(const Event &)));
234 connect (w, SIGNAL(showDate(int,int,int)),
235 this, SIGNAL(showDate(int,int,int)));
236 connect (w, SIGNAL(addEvent(const QDateTime &, const QDateTime &,
237 const QString &)),
238 this, SIGNAL(addEvent(const QDateTime &, const QDateTime &,
239 const QString &)));
240
241
242 w=new DateBookWeekLstView(ev2,d.addDays(7),onM,this);
243 layout->addWidget(w);
244 connect (w, SIGNAL(editEvent(const Event &)),
245 this, SIGNAL(editEvent(const Event &)));
246 connect (w, SIGNAL(showDate(int,int,int)),
247 this, SIGNAL(showDate(int,int,int)));
248 connect (w, SIGNAL(addEvent(const QDateTime &, const QDateTime &,
249 const QString &)),
250 this, SIGNAL(addEvent(const QDateTime &, const QDateTime &,
251 const QString &)));
252}
253
218DateBookWeekLst::DateBookWeekLst( bool ap, bool onM, DateBookDB *newDB, 254DateBookWeekLst::DateBookWeekLst( bool ap, bool onM, DateBookDB *newDB,
@@ -232,3 +268,6 @@ DateBookWeekLst::DateBookWeekLst( bool ap, bool onM, DateBookDB *newDB,
232 layout->addWidget( header ); 268 layout->addWidget( header );
233 connect(header, SIGNAL(dateChanged(int,int)), this, SLOT(dateChanged(int,int))); 269 connect(header, SIGNAL(dateChanged(int,int)),
270 this, SLOT(dateChanged(int,int)));
271 connect(header, SIGNAL(setDbl(bool)),
272 this, SLOT(setDbl(bool)));
234 273
@@ -241,4 +280,12 @@ DateBookWeekLst::DateBookWeekLst( bool ap, bool onM, DateBookDB *newDB,
241 view=NULL; 280 view=NULL;
281 Config config("DateBook");
282 config.setGroup("Main");
283 dbl=config.readBoolEntry("weeklst_dbl", false);
284 header->dbl->setOn(dbl);
285}
286DateBookWeekLst::~DateBookWeekLst(){
287 Config config("DateBook");
288 config.setGroup("Main");
289 config.writeEntry("weeklst_dbl", dbl);
242} 290}
243
244 291
@@ -251,2 +298,6 @@ void DateBookWeekLst::setDate(const QDate &d) {
251} 298}
299void DateBookWeekLst::setDbl(bool on) {
300 dbl=on;
301 redraw();
302}
252void DateBookWeekLst::redraw() {getEvents();} 303void DateBookWeekLst::redraw() {getEvents();}
@@ -272,3 +323,11 @@ void DateBookWeekLst::getEvents() {
272 if (view) delete view; 323 if (view) delete view;
324 if (dbl) {
325 QDate start2=start.addDays(7);
326 stop=start2.addDays(6);
327 QValueList<EffectiveEvent> el2 = db->getEffectiveEvents(start2, stop);
328
329 view=new DateBookWeekLstDblView(el,el2,start,onMonday,scroll);
330 } else {
273 view=new DateBookWeekLstView(el,start,onMonday,scroll); 331 view=new DateBookWeekLstView(el,start,onMonday,scroll);
332 }
274 333
diff --git a/core/pim/datebook/datebookweeklst.h b/core/pim/datebook/datebookweeklst.h
index 39c956d..b0b0417 100644
--- a/core/pim/datebook/datebookweeklst.h
+++ b/core/pim/datebook/datebookweeklst.h
@@ -33,2 +33,3 @@ signals:
33 void dateChanged(int y, int w); 33 void dateChanged(int y, int w);
34 void setDbl(bool on);
34private: 35private:
@@ -75,3 +76,3 @@ class DateBookWeekLstView: public QWidget
75public: 76public:
76 DateBookWeekLstView(QValueList<EffectiveEvent> &ev, QDate &d, bool onM, 77 DateBookWeekLstView(QValueList<EffectiveEvent> &ev, const QDate &d, bool onM,
77 QWidget* parent = 0, const char* name = 0, 78 QWidget* parent = 0, const char* name = 0,
@@ -90,2 +91,17 @@ protected slots:
90 91
92class DateBookWeekLstDblView: public QWidget {
93 Q_OBJECT
94public:
95 DateBookWeekLstDblView(QValueList<EffectiveEvent> &ev1,
96 QValueList<EffectiveEvent> &ev2,
97 QDate &d, bool onM,
98 QWidget* parent = 0, const char* name = 0,
99 WFlags fl = 0 );
100signals:
101 void editEvent(const Event &e);
102 void showDate(int y, int m, int d);
103 void addEvent(const QDateTime &start, const QDateTime &stop,
104 const QString &str);
105};
106
91class DateBookWeekLst : public QWidget 107class DateBookWeekLst : public QWidget
@@ -98,2 +114,3 @@ public:
98 const char *name = 0 ); 114 const char *name = 0 );
115 ~DateBookWeekLst();
99 void setDate( int y, int w ); 116 void setDate( int y, int w );
@@ -106,4 +123,6 @@ public slots:
106 void dateChanged(int y, int w); 123 void dateChanged(int y, int w);
124
107protected slots: 125protected slots:
108 void keyPressEvent(QKeyEvent *); 126 void keyPressEvent(QKeyEvent *);
127 void setDbl(bool on);
109 128
@@ -120,5 +139,6 @@ private:
120 bool onMonday; 139 bool onMonday;
140 bool dbl;
121 int year, _week; 141 int year, _week;
122 DateBookWeekLstHeader *header; 142 DateBookWeekLstHeader *header;
123 DateBookWeekLstView *view; 143 QWidget *view;
124 QVBoxLayout *layout; 144 QVBoxLayout *layout;
diff --git a/core/pim/datebook/datebookweeklstheader.ui b/core/pim/datebook/datebookweeklstheader.ui
index 666e896..9de64ae 100644
--- a/core/pim/datebook/datebookweeklstheader.ui
+++ b/core/pim/datebook/datebookweeklstheader.ui
@@ -12,5 +12,5 @@
12 <x>0</x> 12 <x>0</x>
13 <y>51</y> 13 <y>183</y>
14 <width>535</width> 14 <width>447</width>
15 <height>25</height> 15 <height>45</height>
16 </rect> 16 </rect>
@@ -37,3 +37,3 @@
37 <name>margin</name> 37 <name>margin</name>
38 <number>0</number> 38 <number>11</number>
39 </property> 39 </property>
@@ -52,3 +52,3 @@
52 <sizepolicy> 52 <sizepolicy>
53 <hsizetype>1</hsizetype> 53 <hsizetype>7</hsizetype>
54 <vsizetype>0</vsizetype> 54 <vsizetype>0</vsizetype>
@@ -65,2 +65,6 @@
65 <property stdset="1"> 65 <property stdset="1">
66 <name>toggleButton</name>
67 <bool>false</bool>
68 </property>
69 <property stdset="1">
66 <name>autoRepeat</name> 70 <name>autoRepeat</name>
@@ -72,2 +76,10 @@
72 </property> 76 </property>
77 <property stdset="1">
78 <name>toggleButton</name>
79 <bool>false</bool>
80 </property>
81 <property>
82 <name>toolTip</name>
83 <string></string>
84 </property>
73 </widget> 85 </widget>
@@ -118,2 +130,6 @@
118 <property stdset="1"> 130 <property stdset="1">
131 <name>toggleButton</name>
132 <bool>false</bool>
133 </property>
134 <property stdset="1">
119 <name>autoRaise</name> 135 <name>autoRaise</name>
@@ -121,2 +137,10 @@
121 </property> 137 </property>
138 <property stdset="1">
139 <name>toggleButton</name>
140 <bool>false</bool>
141 </property>
142 <property>
143 <name>toolTip</name>
144 <string></string>
145 </property>
122 </widget> 146 </widget>
@@ -144,2 +168,63 @@
144 <widget> 168 <widget>
169 <class>QToolButton</class>
170 <property stdset="1">
171 <name>name</name>
172 <cstring>dbl</cstring>
173 </property>
174 <property stdset="1">
175 <name>sizePolicy</name>
176 <sizepolicy>
177 <hsizetype>3</hsizetype>
178 <vsizetype>0</vsizetype>
179 </sizepolicy>
180 </property>
181 <property stdset="1">
182 <name>font</name>
183 <font>
184 <bold>1</bold>
185 </font>
186 </property>
187 <property stdset="1">
188 <name>text</name>
189 <string>2</string>
190 </property>
191 <property stdset="1">
192 <name>toggleButton</name>
193 <bool>true</bool>
194 </property>
195 <property stdset="1">
196 <name>autoRaise</name>
197 <bool>false</bool>
198 </property>
199 <property stdset="1">
200 <name>toggleButton</name>
201 <bool>true</bool>
202 </property>
203 <property>
204 <name>toolTip</name>
205 <string></string>
206 </property>
207 </widget>
208 <spacer>
209 <property>
210 <name>name</name>
211 <cstring>Spacer1_3_2</cstring>
212 </property>
213 <property stdset="1">
214 <name>orientation</name>
215 <enum>Horizontal</enum>
216 </property>
217 <property stdset="1">
218 <name>sizeType</name>
219 <enum>Expanding</enum>
220 </property>
221 <property>
222 <name>sizeHint</name>
223 <size>
224 <width>20</width>
225 <height>20</height>
226 </size>
227 </property>
228 </spacer>
229 <widget>
145 <class>QLabel</class> 230 <class>QLabel</class>
@@ -166,6 +251,2 @@
166 </property> 251 </property>
167 <property stdset="1">
168 <name>alignment</name>
169 <set>AlignCenter</set>
170 </property>
171 <property> 252 <property>