summaryrefslogtreecommitdiff
authorumopapisdn <umopapisdn>2003-04-13 22:25:35 (UTC)
committer umopapisdn <umopapisdn>2003-04-13 22:25:35 (UTC)
commit053c38bb48ae8e7563293bc029f3c9d029b947f7 (patch) (unidiff)
tree4277c6ba37ceed2233df07bf8ead89b049977f2f
parent1745c6565e18506d5cb5631ae13cfc5fab060fee (diff)
downloadopie-053c38bb48ae8e7563293bc029f3c9d029b947f7.zip
opie-053c38bb48ae8e7563293bc029f3c9d029b947f7.tar.gz
opie-053c38bb48ae8e7563293bc029f3c9d029b947f7.tar.bz2
New Feature: Quick entries now honors the duration selected.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebookday.cpp19
1 files changed, 14 insertions, 5 deletions
diff --git a/core/pim/datebook/datebookday.cpp b/core/pim/datebook/datebookday.cpp
index 0a40ea9..e212807 100644
--- a/core/pim/datebook/datebookday.cpp
+++ b/core/pim/datebook/datebookday.cpp
@@ -1,374 +1,383 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of 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 <qmessagebox.h> 20#include <qmessagebox.h>
21 21
22#include "datebookday.h" 22#include "datebookday.h"
23#include "datebookdayheaderimpl.h" 23#include "datebookdayheaderimpl.h"
24 24
25#include <qpe/datebookdb.h> 25#include <qpe/datebookdb.h>
26#include <qpe/resource.h> 26#include <qpe/resource.h>
27#include <qpe/event.h> 27#include <qpe/event.h>
28#include <qpe/qpeapplication.h> 28#include <qpe/qpeapplication.h>
29#include <qpe/timestring.h> 29#include <qpe/timestring.h>
30#include <qpe/qpedebug.h> 30#include <qpe/qpedebug.h>
31#include <qpe/ir.h> 31#include <qpe/ir.h>
32 32
33#include <qheader.h> 33#include <qheader.h>
34#include <qdatetime.h> 34#include <qdatetime.h>
35#include <qpainter.h> 35#include <qpainter.h>
36#include <qsimplerichtext.h> 36#include <qsimplerichtext.h>
37#include <qpopupmenu.h> 37#include <qpopupmenu.h>
38#include <qtextcodec.h> 38#include <qtextcodec.h>
39#include <qpalette.h> 39#include <qpalette.h>
40 40
41#include <qlineedit.h> 41#include <qlineedit.h>
42 42
43#include <qtimer.h> 43#include <qtimer.h>
44 44
45DateBookDayView::DateBookDayView( bool whichClock, QWidget *parent, const char *name ) 45DateBookDayView::DateBookDayView( bool whichClock, QWidget *parent, const char *name )
46 : QTable( 24, 1, parent, name ), ampm( whichClock ), currDate( QDate::currentDate() ) 46 : QTable( 24, 1, parent, name ), ampm( whichClock ), currDate( QDate::currentDate() )
47{ 47{
48 enableClipper(TRUE); 48 enableClipper(TRUE);
49 setTopMargin( 0 ); 49 setTopMargin( 0 );
50 horizontalHeader()->hide(); 50 horizontalHeader()->hide();
51 setLeftMargin(38); 51 setLeftMargin(38);
52 setColumnStretchable( 0, TRUE ); 52 setColumnStretchable( 0, TRUE );
53 setHScrollBarMode( QScrollView::AlwaysOff ); 53 setHScrollBarMode( QScrollView::AlwaysOff );
54 verticalHeader()->setPalette(white); 54 verticalHeader()->setPalette(white);
55 verticalHeader()->setResizeEnabled(FALSE); 55 verticalHeader()->setResizeEnabled(FALSE);
56 setSelectionMode( Single ); 56 setSelectionMode( Single );
57 57
58 // get rid of being able to edit things... 58 // get rid of being able to edit things...
59 QTableItem *tmp; 59 QTableItem *tmp;
60 int row; 60 int row;
61 for ( row = 0; row < numRows(); row++ ) { 61 for ( row = 0; row < numRows(); row++ ) {
62 tmp = new QTableItem( this, QTableItem::Never, QString::null); 62 tmp = new QTableItem( this, QTableItem::Never, QString::null);
63 setItem( row, 0, tmp ); 63 setItem( row, 0, tmp );
64 //setRowHeight( row, 40); 64 //setRowHeight( row, 40);
65 } 65 }
66 66
67 initHeader(); 67 initHeader();
68 QObject::connect( qApp, SIGNAL(clockChanged(bool)), this, SLOT(slotChangeClock(bool)) ); 68 QObject::connect( qApp, SIGNAL(clockChanged(bool)), this, SLOT(slotChangeClock(bool)) );
69} 69}
70 70
71void DateBookDayView::initHeader() 71void DateBookDayView::initHeader()
72{ 72{
73 QString strTmp; 73 QString strTmp;
74 for ( int i = 0; i < 24; ++i ) { 74 for ( int i = 0; i < 24; ++i ) {
75 if ( ampm ) { 75 if ( ampm ) {
76 if ( i == 0 ) 76 if ( i == 0 )
77 strTmp = QString::number(12) + ":00"; 77 strTmp = QString::number(12) + ":00";
78 else if ( i == 12 ) 78 else if ( i == 12 )
79 strTmp = QString::number(12) + tr(":00p"); 79 strTmp = QString::number(12) + tr(":00p");
80 else if ( i > 12 ) 80 else if ( i > 12 )
81 strTmp = QString::number( i - 12 ) + tr(":00p"); 81 strTmp = QString::number( i - 12 ) + tr(":00p");
82 else 82 else
83 strTmp = QString::number(i) + ":00"; 83 strTmp = QString::number(i) + ":00";
84 } else { 84 } else {
85 if ( i < 10 ) 85 if ( i < 10 )
86 strTmp = "0" + QString::number(i) + ":00"; 86 strTmp = "0" + QString::number(i) + ":00";
87 else 87 else
88 strTmp = QString::number(i) + ":00"; 88 strTmp = QString::number(i) + ":00";
89 } 89 }
90 strTmp = strTmp.rightJustify( 6, ' ' ); 90 strTmp = strTmp.rightJustify( 6, ' ' );
91 verticalHeader()->setLabel( i, strTmp ); 91 verticalHeader()->setLabel( i, strTmp );
92 setRowStretchable( i, FALSE ); 92 setRowStretchable( i, FALSE );
93 } 93 }
94} 94}
95 95
96void DateBookDayView::slotDateChanged( int y, int m, int d ) 96void DateBookDayView::slotDateChanged( int y, int m, int d )
97{ 97{
98 currDate.setYMD(y,m,d); 98 currDate.setYMD(y,m,d);
99} 99}
100 100
101void DateBookDayView::slotChangeClock( bool newClock ) 101void DateBookDayView::slotChangeClock( bool newClock )
102{ 102{
103 ampm = newClock; 103 ampm = newClock;
104 initHeader(); 104 initHeader();
105} 105}
106 106
107bool DateBookDayView::whichClock() const 107bool DateBookDayView::whichClock() const
108{ 108{
109 return ampm; 109 return ampm;
110} 110}
111 111
112void DateBookDayView::moveUp() 112void DateBookDayView::moveUp()
113{ 113{
114 scrollBy(0, -20); 114 scrollBy(0, -20);
115} 115}
116 116
117void DateBookDayView::moveDown() 117void DateBookDayView::moveDown()
118{ 118{
119 scrollBy(0, 20); 119 scrollBy(0, 20);
120} 120}
121 121
122void DateBookDayView::paintCell( QPainter *p, int, int, const QRect &cr, bool ) 122void DateBookDayView::paintCell( QPainter *p, int, int, const QRect &cr, bool )
123{ 123{
124 int w = cr.width(); 124 int w = cr.width();
125 int h = cr.height(); 125 int h = cr.height();
126 p->fillRect( 0, 0, w, h, colorGroup().brush( QColorGroup::Base ) ); 126 p->fillRect( 0, 0, w, h, colorGroup().brush( QColorGroup::Base ) );
127 if ( showGrid() ) { 127 if ( showGrid() ) {
128 // Draw our lines 128 // Draw our lines
129 int x2 = w - 1; 129 int x2 = w - 1;
130 int y2 = h - 1; 130 int y2 = h - 1;
131 QPen pen( p->pen() ); 131 QPen pen( p->pen() );
132 p->setPen( colorGroup().dark() ); 132 p->setPen( colorGroup().dark() );
133 p->drawLine( x2, 0, x2, y2 ); 133 p->drawLine( x2, 0, x2, y2 );
134 p->drawLine( 0, y2, x2, y2 ); 134 p->drawLine( 0, y2, x2, y2 );
135 135
136 p->setPen( colorGroup().midlight() ); 136 p->setPen( colorGroup().midlight() );
137 p->drawLine( 0, y2 - h/2, x2, y2 - h/2); 137 p->drawLine( 0, y2 - h/2, x2, y2 - h/2);
138 138
139 p->setPen( pen ); 139 p->setPen( pen );
140 } 140 }
141} 141}
142 142
143void DateBookDayView::paintFocus( QPainter *, const QRect & ) 143void DateBookDayView::paintFocus( QPainter *, const QRect & )
144{ 144{
145} 145}
146 146
147void DateBookDayView::resizeEvent( QResizeEvent *e ) 147void DateBookDayView::resizeEvent( QResizeEvent *e )
148{ 148{
149 QTable::resizeEvent( e ); 149 QTable::resizeEvent( e );
150 columnWidthChanged( 0 ); 150 columnWidthChanged( 0 );
151 emit sigColWidthChanged(); 151 emit sigColWidthChanged();
152} 152}
153 153
154void DateBookDayView::keyPressEvent( QKeyEvent *e ) 154void DateBookDayView::keyPressEvent( QKeyEvent *e )
155{ 155{
156 QString txt = e->text(); 156 QString txt = e->text();
157 if ( !txt.isNull() && txt[0] > ' ' && e->key() < 0x1000 ) { 157 if ( !txt.isNull() && txt[0] > ' ' && e->key() < 0x1000 ) {
158 // we this is some sort of thing we know about... 158 // we this is some sort of thing we know about...
159 e->accept(); 159 e->accept();
160 emit sigCapturedKey( txt ); 160 emit sigCapturedKey( txt );
161 } else { 161 } else {
162 // I don't know what this key is, do you? 162 // I don't know what this key is, do you?
163 e->ignore(); 163 e->ignore();
164 } 164 }
165} 165}
166 166
167void DateBookDayView::setRowStyle( int style ) 167void DateBookDayView::setRowStyle( int style )
168{ 168{
169 if (style<0) style = 0; 169 if (style<0) style = 0;
170 170
171 for (int i=0; i<numRows(); i++) 171 for (int i=0; i<numRows(); i++)
172 setRowHeight(i, style*10+20); 172 setRowHeight(i, style*10+20);
173} 173}
174 174
175void DateBookDayView::contentsMouseReleaseEvent( QMouseEvent *e ) 175void DateBookDayView::contentsMouseReleaseEvent( QMouseEvent *e )
176{ 176{
177 int y=e->y(); 177 int sh=99,eh=-1;
178 int diff=y%(this->rowHeight(0)); 178
179 int hour=y/this->rowHeight(0); 179 for(int i=0;i<this->numSelections();i++) {
180 quickLineEdit=new DateBookDayViewQuickLineEdit(QDateTime(currDate,QTime(hour,0,0,0)),QDateTime(currDate,QTime(hour,59,0,0)),this->viewport(),"quickedit"); 180 QTableSelection sel = this->selection( i );
181 sh = QMIN(sh,sel.topRow());
182 eh = QMAX(sh,sel.bottomRow()+1);
183 }
184 if (sh > 23 || eh < 1) {
185 sh=8;
186 eh=9;
187 }
188
189 quickLineEdit=new DateBookDayViewQuickLineEdit(QDateTime(currDate,QTime(sh,0,0,0)),QDateTime(currDate,QTime(eh,0,0,0)),this->viewport(),"quickedit");
181 quickLineEdit->setGeometry(0,0,this->columnWidth(0)-1,this->rowHeight(0)); 190 quickLineEdit->setGeometry(0,0,this->columnWidth(0)-1,this->rowHeight(0));
182 this->moveChild(quickLineEdit,0,y-diff); 191 this->moveChild(quickLineEdit,0,sh*this->rowHeight(0));
183 quickLineEdit->setFocus(); 192 quickLineEdit->setFocus();
184 quickLineEdit->show(); 193 quickLineEdit->show();
185} 194}
186 195
187//=========================================================================== 196//===========================================================================
188 197
189DateBookDayViewQuickLineEdit::DateBookDayViewQuickLineEdit(const QDateTime &start, const QDateTime &end,QWidget * parent, const char *name=0) : QLineEdit(parent,name) 198DateBookDayViewQuickLineEdit::DateBookDayViewQuickLineEdit(const QDateTime &start, const QDateTime &end,QWidget * parent, const char *name=0) : QLineEdit(parent,name)
190{ 199{
191 active=1; 200 active=1;
192 quickEvent.setStart(start); 201 quickEvent.setStart(start);
193 quickEvent.setEnd(end); 202 quickEvent.setEnd(end);
194 connect(this,SIGNAL(returnPressed()),this,SLOT(slotReturnPressed())); 203 connect(this,SIGNAL(returnPressed()),this,SLOT(slotReturnPressed()));
195} 204}
196 205
197void DateBookDayViewQuickLineEdit::slotReturnPressed() 206void DateBookDayViewQuickLineEdit::slotReturnPressed()
198{ 207{
199 if(active && (!this->text().isEmpty())) {// Fix to avoid having this event beeing added multiple times. 208 if(active && (!this->text().isEmpty())) {// Fix to avoid having this event beeing added multiple times.
200 quickEvent.setDescription(this->text()); 209 quickEvent.setDescription(this->text());
201 connect(this,SIGNAL(insertEvent(const Event &)),this->topLevelWidget(),SLOT(insertEvent(const Event &))); 210 connect(this,SIGNAL(insertEvent(const Event &)),this->topLevelWidget(),SLOT(insertEvent(const Event &)));
202 emit(insertEvent(quickEvent)); 211 emit(insertEvent(quickEvent));
203 active=0; 212 active=0;
204 } 213 }
205 this->close(true);// Close and also delete this widget 214 this->close(true);// Close and also delete this widget
206} 215}
207 216
208void DateBookDayViewQuickLineEdit::focusOutEvent ( QFocusEvent * e ) 217void DateBookDayViewQuickLineEdit::focusOutEvent ( QFocusEvent * e )
209{ 218{
210 slotReturnPressed(); // Reuse code to add event and close this widget. 219 slotReturnPressed(); // Reuse code to add event and close this widget.
211} 220}
212 221
213//=========================================================================== 222//===========================================================================
214 223
215DateBookDay::DateBookDay( bool ampm, bool startOnMonday, DateBookDB *newDb, QWidget *parent, const char *name ) 224DateBookDay::DateBookDay( bool ampm, bool startOnMonday, DateBookDB *newDb, QWidget *parent, const char *name )
216 : QVBox( parent, name ), currDate( QDate::currentDate() ), db( newDb ), startTime( 0 ) 225 : QVBox( parent, name ), currDate( QDate::currentDate() ), db( newDb ), startTime( 0 )
217{ 226{
218 widgetList.setAutoDelete( true ); 227 widgetList.setAutoDelete( true );
219 header = new DateBookDayHeader( startOnMonday, this, "day header" ); 228 header = new DateBookDayHeader( startOnMonday, this, "day header" );
220 header->setDate( currDate.year(), currDate.month(), currDate.day() ); 229 header->setDate( currDate.year(), currDate.month(), currDate.day() );
221 view = new DateBookDayView( ampm, this, "day view" ); 230 view = new DateBookDayView( ampm, this, "day view" );
222 231
223 connect( header, SIGNAL( dateChanged( int, int, int ) ), this, SLOT( dateChanged( int, int, int ) ) ); 232 connect( header, SIGNAL( dateChanged( int, int, int ) ), this, SLOT( dateChanged( int, int, int ) ) );
224 connect( header, SIGNAL( dateChanged( int, int, int ) ), view, SLOT( slotDateChanged( int, int, int ) ) ); 233 connect( header, SIGNAL( dateChanged( int, int, int ) ), view, SLOT( slotDateChanged( int, int, int ) ) );
225 connect( view, SIGNAL( sigColWidthChanged() ), this, SLOT( slotColWidthChanged() ) ); 234 connect( view, SIGNAL( sigColWidthChanged() ), this, SLOT( slotColWidthChanged() ) );
226 connect( qApp, SIGNAL(weekChanged(bool)), this, SLOT(slotWeekChanged(bool)) ); 235 connect( qApp, SIGNAL(weekChanged(bool)), this, SLOT(slotWeekChanged(bool)) );
227 connect( view, SIGNAL(sigCapturedKey(const QString &)), this, SIGNAL(sigNewEvent(const QString&)) ); 236 connect( view, SIGNAL(sigCapturedKey(const QString &)), this, SIGNAL(sigNewEvent(const QString&)) );
228 237
229 QTimer *timer = new QTimer( this ); 238 QTimer *timer = new QTimer( this );
230 239
231 connect( timer, SIGNAL(timeout()), this, SLOT(updateView()) );//connect timer for updating timeMarker & daywidgetcolors 240 connect( timer, SIGNAL(timeout()), this, SLOT(updateView()) );//connect timer for updating timeMarker & daywidgetcolors
232 timer->start( 1000*60*5, FALSE ); //update every 5min 241 timer->start( 1000*60*5, FALSE ); //update every 5min
233 242
234 selectedWidget = 0; 243 selectedWidget = 0;
235 244
236 timeMarker = new DateBookDayTimeMarker( this ); 245 timeMarker = new DateBookDayTimeMarker( this );
237 timeMarker->setTime( QTime::currentTime() ); 246 timeMarker->setTime( QTime::currentTime() );
238 rowStyle = -1; // initialize with bogus values 247 rowStyle = -1; // initialize with bogus values
239} 248}
240 249
241void DateBookDay::setJumpToCurTime( bool bJump ) 250void DateBookDay::setJumpToCurTime( bool bJump )
242{ 251{
243 jumpToCurTime = bJump; 252 jumpToCurTime = bJump;
244} 253}
245 254
246void DateBookDay::setRowStyle( int style ) 255void DateBookDay::setRowStyle( int style )
247{ 256{
248 if (rowStyle != style) view->setRowStyle( style ); 257 if (rowStyle != style) view->setRowStyle( style );
249 rowStyle = style; 258 rowStyle = style;
250} 259}
251 260
252void DateBookDay::updateView( void ) 261void DateBookDay::updateView( void )
253{ 262{
254 timeMarker->setTime( QTime::currentTime() ); 263 timeMarker->setTime( QTime::currentTime() );
255 //need to find a way to update all DateBookDayWidgets 264 //need to find a way to update all DateBookDayWidgets
256} 265}
257 266
258void DateBookDay::setSelectedWidget( DateBookDayWidget *w ) 267void DateBookDay::setSelectedWidget( DateBookDayWidget *w )
259{ 268{
260 selectedWidget = w; 269 selectedWidget = w;
261} 270}
262 271
263DateBookDayWidget * DateBookDay::getSelectedWidget( void ) 272DateBookDayWidget * DateBookDay::getSelectedWidget( void )
264{ 273{
265 return selectedWidget; 274 return selectedWidget;
266} 275}
267 276
268void DateBookDay::selectedDates( QDateTime &start, QDateTime &end ) 277void DateBookDay::selectedDates( QDateTime &start, QDateTime &end )
269{ 278{
270 start.setDate( currDate ); 279 start.setDate( currDate );
271 end.setDate( currDate ); 280 end.setDate( currDate );
272 281
273 int sh=99,eh=-1; 282 int sh=99,eh=-1;
274 283
275 int n = dayView()->numSelections(); 284 int n = dayView()->numSelections();
276 285
277 for (int i=0; i<n; i++) { 286 for (int i=0; i<n; i++) {
278 QTableSelection sel = dayView()->selection( i ); 287 QTableSelection sel = dayView()->selection( i );
279 sh = QMIN(sh,sel.topRow()); 288 sh = QMIN(sh,sel.topRow());
280 eh = QMAX(sh,sel.bottomRow()+1); 289 eh = QMAX(sh,sel.bottomRow()+1);
281 } 290 }
282 291
283 if (sh > 23 || eh < 1) { 292 if (sh > 23 || eh < 1) {
284 sh=8; 293 sh=8;
285 eh=9; 294 eh=9;
286 } 295 }
287 296
288 start.setTime( QTime( sh, 0, 0 ) ); 297 start.setTime( QTime( sh, 0, 0 ) );
289 end.setTime( QTime( eh, 0, 0 ) ); 298 end.setTime( QTime( eh, 0, 0 ) );
290} 299}
291 300
292void DateBookDay::setDate( int y, int m, int d ) 301void DateBookDay::setDate( int y, int m, int d )
293{ 302{
294 header->setDate( y, m, d ); 303 header->setDate( y, m, d );
295 selectedWidget = 0; 304 selectedWidget = 0;
296} 305}
297 306
298void DateBookDay::setDate( QDate d) 307void DateBookDay::setDate( QDate d)
299{ 308{
300 header->setDate( d.year(), d.month(), d.day() ); 309 header->setDate( d.year(), d.month(), d.day() );
301 selectedWidget = 0; 310 selectedWidget = 0;
302} 311}
303 312
304void DateBookDay::dateChanged( int y, int m, int d ) 313void DateBookDay::dateChanged( int y, int m, int d )
305{ 314{
306 QDate date( y, m, d ); 315 QDate date( y, m, d );
307 if ( currDate == date ) 316 if ( currDate == date )
308 return; 317 return;
309 currDate.setYMD( y, m, d ); 318 currDate.setYMD( y, m, d );
310 relayoutPage(); 319 relayoutPage();
311 dayView()->clearSelection(); 320 dayView()->clearSelection();
312 QTableSelection ts; 321 QTableSelection ts;
313 322
314 if (jumpToCurTime && this->date() == QDate::currentDate()) 323 if (jumpToCurTime && this->date() == QDate::currentDate())
315 { 324 {
316 ts.init( QTime::currentTime().hour(), 0); 325 ts.init( QTime::currentTime().hour(), 0);
317 ts.expandTo( QTime::currentTime().hour(), 0); 326 ts.expandTo( QTime::currentTime().hour(), 0);
318 } else { 327 } else {
319 ts.init( startTime, 0 ); 328 ts.init( startTime, 0 );
320 ts.expandTo( startTime, 0 ); 329 ts.expandTo( startTime, 0 );
321 } 330 }
322 331
323 dayView()->addSelection( ts ); 332 dayView()->addSelection( ts );
324 selectedWidget = 0; 333 selectedWidget = 0;
325} 334}
326 335
327void DateBookDay::redraw() 336void DateBookDay::redraw()
328{ 337{
329 if ( isUpdatesEnabled() ) 338 if ( isUpdatesEnabled() )
330 relayoutPage(); 339 relayoutPage();
331} 340}
332 341
333void DateBookDay::getEvents() 342void DateBookDay::getEvents()
334{ 343{
335 widgetList.clear(); 344 widgetList.clear();
336 345
337 QValueList<EffectiveEvent> eventList = db->getEffectiveEvents( currDate, currDate ); 346 QValueList<EffectiveEvent> eventList = db->getEffectiveEvents( currDate, currDate );
338 QValueListIterator<EffectiveEvent> it; 347 QValueListIterator<EffectiveEvent> it;
339 for ( it = eventList.begin(); it != eventList.end(); ++it ) { 348 for ( it = eventList.begin(); it != eventList.end(); ++it ) {
340 EffectiveEvent ev=*it; 349 EffectiveEvent ev=*it;
341 if(!((ev.end().hour()==0) && (ev.end().minute()==0) && (ev.startDate()!=ev.date()))) {// Skip events ending at 00:00 starting at another day. 350 if(!((ev.end().hour()==0) && (ev.end().minute()==0) && (ev.startDate()!=ev.date()))) {// Skip events ending at 00:00 starting at another day.
342 DateBookDayWidget* w = new DateBookDayWidget( *it, this ); 351 DateBookDayWidget* w = new DateBookDayWidget( *it, this );
343 connect( w, SIGNAL( deleteMe( const Event & ) ), this, SIGNAL( removeEvent( const Event & ) ) ); 352 connect( w, SIGNAL( deleteMe( const Event & ) ), this, SIGNAL( removeEvent( const Event & ) ) );
344 connect( w, SIGNAL( duplicateMe( const Event & ) ), this, SIGNAL( duplicateEvent( const Event & ) ) ); 353 connect( w, SIGNAL( duplicateMe( const Event & ) ), this, SIGNAL( duplicateEvent( const Event & ) ) );
345 connect( w, SIGNAL( editMe( const Event & ) ), this, SIGNAL( editEvent( const Event & ) ) ); 354 connect( w, SIGNAL( editMe( const Event & ) ), this, SIGNAL( editEvent( const Event & ) ) );
346 connect( w, SIGNAL( beamMe( const Event & ) ), this, SIGNAL( beamEvent( const Event & ) ) ); 355 connect( w, SIGNAL( beamMe( const Event & ) ), this, SIGNAL( beamEvent( const Event & ) ) );
347 widgetList.append( w ); 356 widgetList.append( w );
348 } 357 }
349 } 358 }
350} 359}
351 360
352static int place( const DateBookDayWidget *item, bool *used, int maxn ) 361static int place( const DateBookDayWidget *item, bool *used, int maxn )
353{ 362{
354 int place = 0; 363 int place = 0;
355 int start = item->event().start().hour(); 364 int start = item->event().start().hour();
356 QTime e = item->event().end(); 365 QTime e = item->event().end();
357 int end = e.hour(); 366 int end = e.hour();
358 if ( e.minute() < 5 ) 367 if ( e.minute() < 5 )
359 end--; 368 end--;
360 if ( end < start ) 369 if ( end < start )
361 end = start; 370 end = start;
362 while ( place < maxn ) { 371 while ( place < maxn ) {
363 bool free = TRUE; 372 bool free = TRUE;
364 int s = start; 373 int s = start;
365 while( s <= end ) { 374 while( s <= end ) {
366 if ( used[10*s+place] ) { 375 if ( used[10*s+place] ) {
367 free = FALSE; 376 free = FALSE;
368 break; 377 break;
369 } 378 }
370 s++; 379 s++;
371 } 380 }
372 if ( free ) 381 if ( free )
373 break; 382 break;
374 place++; 383 place++;