summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookpluginwidget.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginwidget.cpp b/core/pim/today/plugins/datebook/datebookpluginwidget.cpp
index e2f492e..9a18408 100644
--- a/core/pim/today/plugins/datebook/datebookpluginwidget.cpp
+++ b/core/pim/today/plugins/datebook/datebookpluginwidget.cpp
@@ -35,18 +35,21 @@ DatebookPluginWidget::DatebookPluginWidget( QWidget *parent, const char* name)
35 35
36 if ( db ) { 36 if ( db ) {
37 delete db; 37 delete db;
38 } 38 }
39 db = new DateBookDB; 39 db = new DateBookDB;
40 40
41
41 if ( m_layoutDates ) { 42 if ( m_layoutDates ) {
42 delete m_layoutDates; 43 delete m_layoutDates;
43 } 44 }
44 m_layoutDates = new QVBoxLayout( this ); 45 m_layoutDates = new QVBoxLayout( this );
45 m_layoutDates->setAutoAdd( true ); 46 m_layoutDates->setAutoAdd( true );
46 47
48 m_eventsList.setAutoDelete( true );
49
47 readConfig(); 50 readConfig();
48 getDates(); 51 getDates();
49} 52}
50 53
51DatebookPluginWidget::~DatebookPluginWidget() { 54DatebookPluginWidget::~DatebookPluginWidget() {
52 delete db; 55 delete db;
@@ -66,40 +69,38 @@ void DatebookPluginWidget::readConfig() {
66 69
67void DatebookPluginWidget::refresh() { 70void DatebookPluginWidget::refresh() {
68 DateBookEvent* ev; 71 DateBookEvent* ev;
69 for ( ev = m_eventsList.first(); ev != 0; ev = m_eventsList.next() ) { 72 for ( ev = m_eventsList.first(); ev != 0; ev = m_eventsList.next() ) {
70 delete ev; 73 delete ev;
71 } 74 }
75 m_eventsList.clear();
72 getDates(); 76 getDates();
73} 77}
74 78
75/** 79/**
76 * Get all events that are in the datebook xml file for today 80 * Get all events that are in the datebook xml file for today
77 */ 81 */
78void DatebookPluginWidget::getDates() { 82void DatebookPluginWidget::getDates() {
79 83
80 QDate date = QDate::currentDate(); 84 QDate date = QDate::currentDate();
81
82 QValueList<EffectiveEvent> list = db->getEffectiveEvents( date, date.addDays( m_moreDays ) ); 85 QValueList<EffectiveEvent> list = db->getEffectiveEvents( date, date.addDays( m_moreDays ) );
83 qBubbleSort( list ); 86 qBubbleSort( list );
84 //Config config( "qpe" ); 87 int count = 0;
85 int count=0;
86 88
89 qDebug( QString("List count %1" ).arg(list.count() ) );
87 if ( list.count() > 0 ) { 90 if ( list.count() > 0 ) {
88 91
89 for ( QValueList<EffectiveEvent>::ConstIterator it = list.begin(); it != list.end(); ++it ) { 92 for ( QValueList<EffectiveEvent>::ConstIterator it = list.begin(); it != list.end(); ++it ) {
90 93
91 if ( count <= m_max_lines_meet ) { 94 if ( count <= m_max_lines_meet ) {
92 QTime time = QTime::currentTime();
93
94 if ( !m_onlyLater ) { 95 if ( !m_onlyLater ) {
95 count++; 96 count++;
96 DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes ); 97 DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes );
97 m_eventsList.append( l ); 98 m_eventsList.append( l );
98 QObject::connect ( l, SIGNAL( editEvent( const Event & ) ), l, SLOT( editEventSlot( const Event & ) ) ); 99 QObject::connect ( l, SIGNAL( editEvent( const Event & ) ), l, SLOT( editEventSlot( const Event & ) ) );
99 } else if ( ( time.toString() <= TimeString::dateString( (*it).event().end() ) ) ) { 100 } else if ( QDateTime::currentDateTime() <= (*it).event().end() ) {
100 count++; 101 count++;
101 // show only later appointments 102 // show only later appointments
102 DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes ); 103 DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes );
103 m_eventsList.append( l ); 104 m_eventsList.append( l );
104 QObject::connect ( l, SIGNAL( editEvent( const Event & ) ), l, SLOT( editEventSlot( const Event & ) ) ); 105 QObject::connect ( l, SIGNAL( editEvent( const Event & ) ), l, SLOT( editEventSlot( const Event & ) ) );
105 } 106 }