summaryrefslogtreecommitdiff
path: root/library/datebookmonth.cpp
authoreilers <eilers>2003-08-08 14:45:49 (UTC)
committer eilers <eilers>2003-08-08 14:45:49 (UTC)
commit14d394e6c107b037a09a31a92605034fe50f7813 (patch) (unidiff)
tree800699cf4dc9681c3eb023340634dd6a15fd04c8 /library/datebookmonth.cpp
parentdbc6ea35f5535a1f69deb7ebbafc0f721721dbf2 (diff)
downloadopie-14d394e6c107b037a09a31a92605034fe50f7813.zip
opie-14d394e6c107b037a09a31a92605034fe50f7813.tar.gz
opie-14d394e6c107b037a09a31a92605034fe50f7813.tar.bz2
Merged branches from BRANCH_1_0
Diffstat (limited to 'library/datebookmonth.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/datebookmonth.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/library/datebookmonth.cpp b/library/datebookmonth.cpp
index e8be313..728045f 100644
--- a/library/datebookmonth.cpp
+++ b/library/datebookmonth.cpp
@@ -1,362 +1,367 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include "config.h" 20#include "config.h"
21#include "datebookmonth.h" 21#include "datebookmonth.h"
22#include "datebookdb.h" 22#include "datebookdb.h"
23#include <qtopia/private/event.h> 23#include <qtopia/private/event.h>
24#include "resource.h" 24#include "resource.h"
25#include <qpe/qpeapplication.h> 25#include <qpe/qpeapplication.h>
26#include "timestring.h" 26#include "timestring.h"
27 27
28#include <qtoolbutton.h> 28#include <qtoolbutton.h>
29#include <qspinbox.h> 29#include <qspinbox.h>
30#include <qcombobox.h> 30#include <qcombobox.h>
31#include <qdatetime.h> 31#include <qdatetime.h>
32#include <qpainter.h> 32#include <qpainter.h>
33#include <qpopupmenu.h> 33#include <qpopupmenu.h>
34#include <qvaluestack.h> 34#include <qvaluestack.h>
35#include <qwhatsthis.h> 35#include <qwhatsthis.h>
36 36
37 37
38DateBookMonthHeader::DateBookMonthHeader( QWidget *parent, const char *name ) 38DateBookMonthHeader::DateBookMonthHeader( QWidget *parent, const char *name )
39 : QHBox( parent, name ) 39 : QHBox( parent, name )
40{ 40{
41 setBackgroundMode( PaletteButton ); 41 setBackgroundMode( PaletteButton );
42 42
43 begin = new QToolButton( this ); 43 begin = new QToolButton( this );
44 begin->setFocusPolicy(NoFocus); 44 begin->setFocusPolicy(NoFocus);
45 begin->setPixmap( Resource::loadPixmap( "start" ) ); 45 begin->setPixmap( Resource::loadPixmap( "start" ) );
46 begin->setAutoRaise( TRUE ); 46 begin->setAutoRaise( TRUE );
47 begin->setFixedSize( begin->sizeHint() ); 47 begin->setFixedSize( begin->sizeHint() );
48 QWhatsThis::add( begin, tr("Show January in the selected year") ); 48 QWhatsThis::add( begin, tr("Show January in the selected year") );
49 49
50 back = new QToolButton( this ); 50 back = new QToolButton( this );
51 back->setFocusPolicy(NoFocus); 51 back->setFocusPolicy(NoFocus);
52 back->setPixmap( Resource::loadPixmap( "back" ) ); 52 back->setPixmap( Resource::loadPixmap( "back" ) );
53 back->setAutoRaise( TRUE ); 53 back->setAutoRaise( TRUE );
54 back->setFixedSize( back->sizeHint() ); 54 back->setFixedSize( back->sizeHint() );
55 QWhatsThis::add( back, tr("Show the previous month") ); 55 QWhatsThis::add( back, tr("Show the previous month") );
56 56
57 month = new QComboBox( FALSE, this ); 57 month = new QComboBox( FALSE, this );
58 for ( int i = 0; i < 12; ++i ) 58 for ( int i = 0; i < 12; ++i )
59 month->insertItem( Calendar::nameOfMonth( i + 1 ) ); 59 month->insertItem( Calendar::nameOfMonth( i + 1 ) );
60 60
61 year = new QSpinBox( 1752, 8000, 1, this ); 61 year = new QSpinBox( 1752, 8000, 1, this );
62 62
63 next = new QToolButton( this ); 63 next = new QToolButton( this );
64 next->setFocusPolicy(NoFocus); 64 next->setFocusPolicy(NoFocus);
65 next->setPixmap( Resource::loadPixmap( "forward" ) ); 65 next->setPixmap( Resource::loadPixmap( "forward" ) );
66 next->setAutoRaise( TRUE ); 66 next->setAutoRaise( TRUE );
67 next->setFixedSize( next->sizeHint() ); 67 next->setFixedSize( next->sizeHint() );
68 QWhatsThis::add( next, tr("Show the next month") ); 68 QWhatsThis::add( next, tr("Show the next month") );
69 69
70 end = new QToolButton( this ); 70 end = new QToolButton( this );
71 end->setFocusPolicy(NoFocus); 71 end->setFocusPolicy(NoFocus);
72 end->setPixmap( Resource::loadPixmap( "finish" ) ); 72 end->setPixmap( Resource::loadPixmap( "finish" ) );
73 end->setAutoRaise( TRUE ); 73 end->setAutoRaise( TRUE );
74 end->setFixedSize( end->sizeHint() ); 74 end->setFixedSize( end->sizeHint() );
75 QWhatsThis::add( end, tr("Show December in the selected year") ); 75 QWhatsThis::add( end, tr("Show December in the selected year") );
76 76
77 connect( month, SIGNAL( activated( int ) ), 77 connect( month, SIGNAL( activated( int ) ),
78 this, SLOT( updateDate() ) ); 78 this, SLOT( updateDate() ) );
79 connect( year, SIGNAL( valueChanged( int ) ), 79 connect( year, SIGNAL( valueChanged( int ) ),
80 this, SLOT( updateDate() ) ); 80 this, SLOT( updateDate() ) );
81 connect( begin, SIGNAL( clicked() ), 81 connect( begin, SIGNAL( clicked() ),
82 this, SLOT( firstMonth() ) ); 82 this, SLOT( firstMonth() ) );
83 connect( end, SIGNAL( clicked() ), 83 connect( end, SIGNAL( clicked() ),
84 this, SLOT( lastMonth() ) ); 84 this, SLOT( lastMonth() ) );
85 connect( back, SIGNAL( clicked() ), 85 connect( back, SIGNAL( clicked() ),
86 this, SLOT( monthBack() ) ); 86 this, SLOT( monthBack() ) );
87 connect( next, SIGNAL( clicked() ), 87 connect( next, SIGNAL( clicked() ),
88 this, SLOT( monthForward() ) ); 88 this, SLOT( monthForward() ) );
89 back->setAutoRepeat( TRUE ); 89 back->setAutoRepeat( TRUE );
90 next->setAutoRepeat( TRUE ); 90 next->setAutoRepeat( TRUE );
91} 91}
92 92
93 93
94DateBookMonthHeader::~DateBookMonthHeader() 94DateBookMonthHeader::~DateBookMonthHeader()
95{ 95{
96 96
97} 97}
98 98
99void DateBookMonthHeader::updateDate() 99void DateBookMonthHeader::updateDate()
100{ 100{
101 emit dateChanged( year->value(), month->currentItem() + 1 ); 101 emit dateChanged( year->value(), month->currentItem() + 1 );
102} 102}
103 103
104void DateBookMonthHeader::firstMonth() 104void DateBookMonthHeader::firstMonth()
105{ 105{
106 emit dateChanged( year->value(), 1 ); 106 emit dateChanged( year->value(), 1 );
107 month->setCurrentItem( 0 ); 107 month->setCurrentItem( 0 );
108} 108}
109 109
110void DateBookMonthHeader::lastMonth() 110void DateBookMonthHeader::lastMonth()
111{ 111{
112 emit dateChanged( year->value(), 12 ); 112 emit dateChanged( year->value(), 12 );
113 month->setCurrentItem( 11 ); 113 month->setCurrentItem( 11 );
114} 114}
115 115
116void DateBookMonthHeader::monthBack() 116void DateBookMonthHeader::monthBack()
117{ 117{
118 if ( month->currentItem() > 0 ) { 118 if ( month->currentItem() > 0 ) {
119 emit dateChanged( year->value(), month->currentItem() ); 119 emit dateChanged( year->value(), month->currentItem() );
120 month->setCurrentItem( month->currentItem() - 1 ); 120 month->setCurrentItem( month->currentItem() - 1 );
121 } else { 121 } else {
122 emit dateChanged( year->value() - 1, 12 ); 122 emit dateChanged( year->value() - 1, 12 );
123 // we have a signal set to a changed value in year so we only need to change 123 // we have a signal set to a changed value in year so we only need to change
124 // year to get the result... 124 // year to get the result...
125 month->setCurrentItem( 11 ); 125 month->setCurrentItem( 11 );
126 year->setValue( year->value() - 1 ); 126 year->setValue( year->value() - 1 );
127 } 127 }
128} 128}
129 129
130void DateBookMonthHeader::monthForward() 130void DateBookMonthHeader::monthForward()
131{ 131{
132 if ( month->currentItem() < 11 ) { 132 if ( month->currentItem() < 11 ) {
133 emit dateChanged( year->value(), month->currentItem() + 2 ); 133 emit dateChanged( year->value(), month->currentItem() + 2 );
134 month->setCurrentItem( month->currentItem() + 1 ); 134 month->setCurrentItem( month->currentItem() + 1 );
135 } else { 135 } else {
136 // we have a signal set to a changed value in year so we only need to change 136 // we have a signal set to a changed value in year so we only need to change
137 // year to get the result... 137 // year to get the result...
138 month->setCurrentItem( 0 ); 138 month->setCurrentItem( 0 );
139 year->setValue( year->value() + 1 ); 139 year->setValue( year->value() + 1 );
140 } 140 }
141} 141}
142 142
143void DateBookMonthHeader::setDate( int y, int m ) 143void DateBookMonthHeader::setDate( int y, int m )
144{ 144{
145 year->setValue( y ); 145 year->setValue( y );
146 month->setCurrentItem( m - 1 ); 146 month->setCurrentItem( m - 1 );
147} 147}
148 148
149//--------------------------------------------------------------------------- 149//---------------------------------------------------------------------------
150 150
151class DateBookMonthTablePrivate 151class DateBookMonthTablePrivate
152{ 152{
153public: 153public:
154 DateBookMonthTablePrivate() {}; 154 DateBookMonthTablePrivate() {};
155 ~DateBookMonthTablePrivate() { mMonthEvents.clear(); }; 155 ~DateBookMonthTablePrivate() { mMonthEvents.clear(); };
156 156
157 QValueList<EffectiveEvent> mMonthEvents; 157 QValueList<EffectiveEvent> mMonthEvents;
158 bool onMonday; 158 bool onMonday;
159}; 159};
160 160
161DateBookMonthTable::DateBookMonthTable( QWidget *parent, const char *name, 161DateBookMonthTable::DateBookMonthTable( QWidget *parent, const char *name,
162 DateBookDB *newDb ) 162 DateBookDB *newDb )
163 : QTable( 6, 7, parent, name ), 163 : QTable( 6, 7, parent, name ),
164 db( newDb ) 164 db( newDb )
165{ 165{
166 d = new DateBookMonthTablePrivate(); 166 d = new DateBookMonthTablePrivate();
167 selYear = -1; 167 selYear = -1;
168 selMonth = -1; 168 selMonth = -1;
169 selDay = -1; 169 selDay = -1;
170 170
171 /* init these as well make valgrind happy and be consistent with Qtopia1.6 -zecke */
172 year = -1;
173 month = -1;
174 day = -1;
175
171 Config cfg( "qpe" ); 176 Config cfg( "qpe" );
172 cfg.setGroup( "Time" ); 177 cfg.setGroup( "Time" );
173 d->onMonday = cfg.readBoolEntry( "MONDAY" ); 178 d->onMonday = cfg.readBoolEntry( "MONDAY" );
174 179
175 horizontalHeader()->setResizeEnabled( FALSE ); 180 horizontalHeader()->setResizeEnabled( FALSE );
176 // we have to do this here... or suffer the consequences later... 181 // we have to do this here... or suffer the consequences later...
177 for ( int i = 0; i < 7; i++ ){ 182 for ( int i = 0; i < 7; i++ ){
178 horizontalHeader()->resizeSection( i, 30 ); 183 horizontalHeader()->resizeSection( i, 30 );
179 setColumnStretchable( i, TRUE ); 184 setColumnStretchable( i, TRUE );
180 } 185 }
181 setupLabels(); 186 setupLabels();
182 187
183 verticalHeader()->hide(); 188 verticalHeader()->hide();
184 setLeftMargin( 0 ); 189 setLeftMargin( 0 );
185 for ( int i = 0; i < 6; ++i ) 190 for ( int i = 0; i < 6; ++i )
186 setRowStretchable( i, TRUE ); 191 setRowStretchable( i, TRUE );
187 192
188 setSelectionMode( NoSelection ); 193 setSelectionMode( NoSelection );
189 194
190 connect( this, SIGNAL( clicked( int, int, int, const QPoint & ) ), 195 connect( this, SIGNAL( clicked( int, int, int, const QPoint & ) ),
191 this, SLOT( dayClicked( int, int ) ) ); 196 this, SLOT( dayClicked( int, int ) ) );
192 connect( this, SIGNAL( currentChanged( int, int ) ), 197 connect( this, SIGNAL( currentChanged( int, int ) ),
193 this, SLOT( dragDay( int, int ) ) ); 198 this, SLOT( dragDay( int, int ) ) );
194 setVScrollBarMode( AlwaysOff ); 199 setVScrollBarMode( AlwaysOff );
195 setHScrollBarMode( AlwaysOff ); 200 setHScrollBarMode( AlwaysOff );
196} 201}
197 202
198DateBookMonthTable::~DateBookMonthTable() 203DateBookMonthTable::~DateBookMonthTable()
199{ 204{
200 monthsEvents.clear(); 205 monthsEvents.clear();
201 delete d; 206 delete d;
202} 207}
203 208
204void DateBookMonthTable::setDate(int y, int m, int d) 209void DateBookMonthTable::setDate(int y, int m, int d)
205{ 210{
206 if (month == m && year == y) { 211 if (month == m && year == y) {
207 if ( selYear == -1 ) 212 if ( selYear == -1 )
208 year = selYear; 213 year = selYear;
209 if ( selMonth == -1 ) 214 if ( selMonth == -1 )
210 month = selMonth; 215 month = selMonth;
211 int r1, c1, r2, c2; 216 int r1, c1, r2, c2;
212 findDay(selDay, r1, c1); 217 findDay(selDay, r1, c1);
213 selDay = day = d; 218 selDay = day = d;
214 findDay(selDay, r2, c2); 219 findDay(selDay, r2, c2);
215 setCurrentCell( r2, c2 ); 220 setCurrentCell( r2, c2 );
216 //updateCell(r1,c1); 221 //updateCell(r1,c1);
217 //updateCell(r2,c2); 222 //updateCell(r2,c2);
218 } else { 223 } else {
219 selYear = year = y; 224 selYear = year = y;
220 selMonth = month = m; 225 selMonth = month = m;
221 selDay = day = d; 226 selDay = day = d;
222 setupTable(); 227 setupTable();
223 } 228 }
224} 229}
225 230
226void DateBookMonthTable::redraw() 231void DateBookMonthTable::redraw()
227{ 232{
228 setupLabels(); 233 setupLabels();
229 setupTable(); 234 setupTable();
230} 235}
231 236
232void DateBookMonthTable::setWeekStart( bool onMonday ) 237void DateBookMonthTable::setWeekStart( bool onMonday )
233{ 238{
234 d->onMonday = onMonday; 239 d->onMonday = onMonday;
235 setupLabels(); 240 setupLabels();
236 setupTable(); 241 setupTable();
237} 242}
238 243
239void DateBookMonthTable::setupTable() 244void DateBookMonthTable::setupTable()
240{ 245{
241 QValueList<Calendar::Day> days = Calendar::daysOfMonth( year, month, d->onMonday ); 246 QValueList<Calendar::Day> days = Calendar::daysOfMonth( year, month, d->onMonday );
242 QValueList<Calendar::Day>::Iterator it = days.begin(); 247 QValueList<Calendar::Day>::Iterator it = days.begin();
243 int row = 0, col = 0; 248 int row = 0, col = 0;
244 int crow = 0; 249 int crow = 0;
245 int ccol = 0; 250 int ccol = 0;
246 for ( ; it != days.end(); ++it ) { 251 for ( ; it != days.end(); ++it ) {
247 DayItemMonth *i = (DayItemMonth *)item( row, col ); 252 DayItemMonth *i = (DayItemMonth *)item( row, col );
248 if ( !i ) { 253 if ( !i ) {
249 i = new DayItemMonth( this, QTableItem::Never, "" ); 254 i = new DayItemMonth( this, QTableItem::Never, "" );
250 setItem( row, col, i ); 255 setItem( row, col, i );
251 } 256 }
252 Calendar::Day calDay = *it; 257 Calendar::Day calDay = *it;
253 i->clearEffEvents(); 258 i->clearEffEvents();
254 i->setDay( calDay.date ); 259 i->setDay( calDay.date );
255 i->setType( calDay.type ); 260 i->setType( calDay.type );
256 if ( i->day() == day && calDay.type == Calendar::Day::ThisMonth ) { 261 if ( i->day() == day && calDay.type == Calendar::Day::ThisMonth ) {
257 crow = row; 262 crow = row;
258 ccol = col; 263 ccol = col;
259 } 264 }
260 265
261 updateCell( row, col ); 266 updateCell( row, col );
262 267
263 if ( col == 6 ) { 268 if ( col == 6 ) {
264 ++row; 269 ++row;
265 col = 0; 270 col = 0;
266 } else { 271 } else {
267 ++col; 272 ++col;
268 } 273 }
269 } 274 }
270 setCurrentCell( crow, ccol ); 275 setCurrentCell( crow, ccol );
271 getEvents(); 276 getEvents();
272} 277}
273 278
274void DateBookMonthTable::findDay( int day, int &row, int &col ) 279void DateBookMonthTable::findDay( int day, int &row, int &col )
275{ 280{
276 QDate dtBegin( year, month, 1 ); 281 QDate dtBegin( year, month, 1 );
277 int skips = dtBegin.dayOfWeek(); 282 int skips = dtBegin.dayOfWeek();
278 int effective_day = day + skips - 1; // row/columns begin at 0 283 int effective_day = day + skips - 1; // row/columns begin at 0
279 // make an extra adjustment if we start on Mondays. 284 // make an extra adjustment if we start on Mondays.
280 if ( d->onMonday ) 285 if ( d->onMonday )
281 effective_day--; 286 effective_day--;
282 row = effective_day / 7; 287 row = effective_day / 7;
283 col = effective_day % 7; 288 col = effective_day % 7;
284} 289}
285 290
286void DateBookMonthTable::dayClicked( int row, int col ) 291void DateBookMonthTable::dayClicked( int row, int col )
287{ 292{
288 changeDaySelection( row, col ); 293 changeDaySelection( row, col );
289 emit dateClicked( selYear, selMonth, selDay ); 294 emit dateClicked( selYear, selMonth, selDay );
290} 295}
291 296
292void DateBookMonthTable::dragDay( int row, int col ) 297void DateBookMonthTable::dragDay( int row, int col )
293{ 298{
294 changeDaySelection( row, col ); 299 changeDaySelection( row, col );
295} 300}
296 301
297void DateBookMonthTable::changeDaySelection( int row, int col ) 302void DateBookMonthTable::changeDaySelection( int row, int col )
298{ 303{
299 DayItemMonth *i = (DayItemMonth*)item( row, col ); 304 DayItemMonth *i = (DayItemMonth*)item( row, col );
300 if ( !i ) 305 if ( !i )
301 return; 306 return;
302 switch ( i->type() ) { 307 switch ( i->type() ) {
303 case Calendar::Day::ThisMonth: 308 case Calendar::Day::ThisMonth:
304 selMonth = month; 309 selMonth = month;
305 break; 310 break;
306 case Calendar::Day::PrevMonth: 311 case Calendar::Day::PrevMonth:
307 selMonth = month-1; 312 selMonth = month-1;
308 break; 313 break;
309 default: 314 default:
310 selMonth = month+1; 315 selMonth = month+1;
311 } 316 }
312 317
313 selYear = year; 318 selYear = year;
314 if ( selMonth <= 0 ) { 319 if ( selMonth <= 0 ) {
315 selMonth = 12; 320 selMonth = 12;
316 selYear--; 321 selYear--;
317 } else if ( selMonth > 12 ) { 322 } else if ( selMonth > 12 ) {
318 selMonth = 1; 323 selMonth = 1;
319 selYear++; 324 selYear++;
320 } 325 }
321 selDay = i->day(); 326 selDay = i->day();
322} 327}
323 328
324 329
325void DateBookMonthTable::viewportMouseReleaseEvent( QMouseEvent * ) 330void DateBookMonthTable::viewportMouseReleaseEvent( QMouseEvent * )
326{ 331{
327 dayClicked( currentRow(), currentColumn() ); 332 dayClicked( currentRow(), currentColumn() );
328} 333}
329 334
330void DateBookMonthTable::getEvents() 335void DateBookMonthTable::getEvents()
331{ 336{
332 if ( !db ) 337 if ( !db )
333 return; 338 return;
334 339
335 QDate dtStart( year, month, 1 ); 340 QDate dtStart( year, month, 1 );
336 d->mMonthEvents = db->getEffectiveEvents( dtStart, 341 d->mMonthEvents = db->getEffectiveEvents( dtStart,
337 QDate( year, month, 342 QDate( year, month,
338 dtStart.daysInMonth() ) ); 343 dtStart.daysInMonth() ) );
339 QValueListIterator<EffectiveEvent> it = d->mMonthEvents.begin(); 344 QValueListIterator<EffectiveEvent> it = d->mMonthEvents.begin();
340 // now that the events are sorted, basically go through the list, make 345 // now that the events are sorted, basically go through the list, make
341 // a small list for every day and set it for each item... 346 // a small list for every day and set it for each item...
342 // clear all the items... 347 // clear all the items...
343 while ( it != d->mMonthEvents.end() ) { 348 while ( it != d->mMonthEvents.end() ) {
344 QValueList<EffectiveEvent> dayEvent; 349 QValueList<EffectiveEvent> dayEvent;
345 EffectiveEvent e = *it; 350 EffectiveEvent e = *it;
346 ++it; 351 ++it;
347 dayEvent.append( e ); 352 dayEvent.append( e );
348 while ( it != d->mMonthEvents.end() 353 while ( it != d->mMonthEvents.end()
349 && e.date() == (*it).date() ) { 354 && e.date() == (*it).date() ) {
350 dayEvent.append( *it ); 355 dayEvent.append( *it );
351 ++it; 356 ++it;
352 } 357 }
353 int row, col; 358 int row, col;
354 findDay( e.date().day(), row, col ); 359 findDay( e.date().day(), row, col );
355 DayItemMonth* w = static_cast<DayItemMonth*>( item( row, col ) ); 360 DayItemMonth* w = static_cast<DayItemMonth*>( item( row, col ) );
356 w->setEvents( dayEvent ); 361 w->setEvents( dayEvent );
357 updateCell( row, col ); 362 updateCell( row, col );
358 dayEvent.clear(); 363 dayEvent.clear();
359 } 364 }
360} 365}
361 366
362 367